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