mirror of
				https://bitbucket.org/jsuto/piler.git
				synced 2025-11-04 16:12:27 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			310 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			310 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
 | 
						|
class ControllerCommonNotfound extends Controller {
 | 
						|
 | 
						|
   public function index(){
 | 
						|
 | 
						|
      $this->id = "content";
 | 
						|
      $this->template = "common/not_found.tpl";
 | 
						|
      $this->layout = "common/layout";
 | 
						|
 | 
						|
      $this->document->title = $this->data['title_not_found'];
 | 
						|
 | 
						|
 | 
						|
      $this->render();
 | 
						|
 | 
						|
   }
 | 
						|
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
?>
 |