mirror of
				https://bitbucket.org/jsuto/piler.git
				synced 2025-11-04 12:42:27 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			370 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			370 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php  
 | 
						|
 | 
						|
class ControllerCommonLayout extends Controller {
 | 
						|
 | 
						|
      protected function index() {
 | 
						|
 | 
						|
 | 
						|
         $this->data['title'] = $this->document->title;
 | 
						|
 | 
						|
         $this->template = "common/layout.tpl";
 | 
						|
 | 
						|
 | 
						|
         $this->children = array(
 | 
						|
                      "common/menu",
 | 
						|
                      "common/footer"
 | 
						|
         );
 | 
						|
 | 
						|
         $this->render();
 | 
						|
 | 
						|
      }
 | 
						|
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
?>
 |