mirror of
				https://bitbucket.org/jsuto/piler.git
				synced 2025-11-04 10:32:28 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			553 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			553 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php  
 | 
						|
 | 
						|
class ControllerCommonLayoutAudit extends Controller {
 | 
						|
 | 
						|
      protected function index() {
 | 
						|
 | 
						|
 | 
						|
         $this->data['title'] = $this->document->title;
 | 
						|
 | 
						|
         $this->template = "common/layout-audit.tpl";
 | 
						|
 | 
						|
         $this->data['search_args'] = '';
 | 
						|
 | 
						|
         $this->data['open_saved_search_box'] = 0;
 | 
						|
 | 
						|
 | 
						|
         $this->children = array(
 | 
						|
                      "common/menu",
 | 
						|
                      "search/folder",
 | 
						|
                      "search/popup",
 | 
						|
                      "common/footer"
 | 
						|
         );
 | 
						|
 | 
						|
         $this->render();
 | 
						|
 | 
						|
      }
 | 
						|
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
?>
 |