piler/webui/controller/common/layout-audit.php
Janos SUTO f22cd3daaa Refactored advanced search to modal popup
Signed-off-by: Janos SUTO <sj@acts.hu>
2021-03-10 18:31:37 +01:00

29 lines
508 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",
"common/footer"
);
$this->render();
}
}