piler/webui/controller/common/menu.php
2013-07-16 07:36:48 +02:00

30 lines
575 B
PHP

<?php
class ControllerCommonMenu extends Controller {
protected function index() {
$this->id = "menu";
$this->template = "common/menu.tpl";
$db = Registry::get('db');
$this->load->model('saas/customer');
$this->data['admin_user'] = Registry::get('admin_user');
$this->data['auditor_user'] = Registry::get('auditor_user');
$this->data['readonly_admin'] = Registry::get('readonly_admin');
$this->data['settings'] = $this->model_saas_customer->get_customer_settings_by_email();
$this->render();
}
}
?>