mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-06-12 23:47:02 +02:00
major rewrite of the web interface
This commit is contained in:
@ -1,26 +0,0 @@
|
||||
<?php
|
||||
|
||||
class ControllerCommonLayoutHealth extends Controller {
|
||||
|
||||
protected function index() {
|
||||
|
||||
|
||||
$this->data['title'] = $this->document->title;
|
||||
|
||||
$this->template = "common/layout-health.tpl";
|
||||
|
||||
|
||||
$this->children = array(
|
||||
"common/menu",
|
||||
"common/footer"
|
||||
);
|
||||
|
||||
$this->render();
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
?>
|
@ -1,26 +0,0 @@
|
||||
<?php
|
||||
|
||||
class ControllerCommonLayoutMinimal extends Controller {
|
||||
|
||||
protected function index() {
|
||||
|
||||
|
||||
$this->data['title'] = $this->document->title;
|
||||
|
||||
$this->template = "common/layout-minimal.tpl";
|
||||
|
||||
|
||||
$this->children = array(
|
||||
"common/menu",
|
||||
"common/footer"
|
||||
);
|
||||
|
||||
$this->render();
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
?>
|
@ -1,13 +1,13 @@
|
||||
<?php
|
||||
|
||||
class ControllerCommonLayoutSearch extends Controller {
|
||||
class ControllerCommonLayoutNew extends Controller {
|
||||
|
||||
protected function index() {
|
||||
|
||||
|
||||
$this->data['title'] = $this->document->title;
|
||||
|
||||
$this->template = "common/layout-search.tpl";
|
||||
$this->template = "common/layout-new.tpl";
|
||||
|
||||
$this->data['search_args'] = '';
|
||||
|
||||
@ -23,6 +23,8 @@ class ControllerCommonLayoutSearch extends Controller {
|
||||
|
||||
$this->children = array(
|
||||
"common/menu",
|
||||
"search/folder",
|
||||
"search/popup",
|
||||
"common/footer"
|
||||
);
|
||||
|
Reference in New Issue
Block a user