piler/webui/controller/common/not_found.php

24 lines
310 B
PHP
Raw Normal View History

2012-02-08 23:14:28 +01:00
<?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();
}
}
?>