piler/webui/controller/audit/removal.php
Janos SUTO 8e920260a8 Removal fixes
Signed-off-by: Janos SUTO <sj@acts.hu>
2019-08-19 13:23:05 +02:00

27 lines
604 B
PHP

<?php
class ControllerAuditRemoval extends Controller {
public function index(){
$this->id = "content";
$this->template = "audit/removal.tpl";
$this->layout = "common/layout-audit-removal";
$request = Registry::get('request');
$db = Registry::get('db');
$this->load->model('audit/removal');
if(Registry::get('admin_user') == 0 && Registry::get('auditor_user') == 0 && Registry::get('data_officer') == 0) {
die("go away");
}
$this->data['data'] = $this->model_audit_removal->get_pending_removals();
$this->render();
}
}