added layout-audit-removal.php

Signed-off-by: Janos SUTO <sj@acts.hu>
This commit is contained in:
Janos SUTO 2019-08-20 11:29:08 +02:00
parent 8358dc6ef1
commit 816f004bf1
3 changed files with 33 additions and 7 deletions

View File

@ -0,0 +1,29 @@
<?php
class ControllerCommonLayoutAuditRemoval extends Controller {
protected function index() {
$this->data['title'] = $this->document->title;
$this->template = "common/layout-audit-removal.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();
}
}

View File

@ -27,6 +27,3 @@ class ControllerCommonLayoutAudit extends Controller {
}
?>