mirror of
				https://bitbucket.org/jsuto/piler.git
				synced 2025-10-31 09:22:26 +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();
 | |
| 
 | |
|    }
 | |
| 
 | |
| 
 | |
| }
 | |
| 
 | |
| 
 | |
| ?>
 |