piler/webui/controller/common/layout-audit-removal.php

30 lines
561 B
PHP
Raw Normal View History

<?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();
}
}