piler/webui/controller/common/layout-audit.php
Janos SUTO 816f004bf1 added layout-audit-removal.php
Signed-off-by: Janos SUTO <sj@acts.hu>
2019-08-20 11:29:08 +02:00

30 lines
546 B
PHP

<?php
class ControllerCommonLayoutAudit extends Controller {
protected function index() {
$this->data['title'] = $this->document->title;
$this->template = "common/layout-audit.tpl";
$this->data['search_args'] = '';
$this->data['open_saved_search_box'] = 0;
$this->children = array(
"common/menu",
"search/folder",
"search/popup",
"common/footer"
);
$this->render();
}
}