mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-06-12 23:27:03 +02:00
added the webui to the tarball
This commit is contained in:
23
webui/controller/common/not_found.php
Normal file
23
webui/controller/common/not_found.php
Normal file
@ -0,0 +1,23 @@
|
||||
<?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();
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
?>
|
Reference in New Issue
Block a user