mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 06:51:58 +01:00
33 lines
678 B
PHP
33 lines
678 B
PHP
<?php
|
|
|
|
|
|
class ControllerCommonMenu extends Controller {
|
|
|
|
protected function index() {
|
|
|
|
$this->id = "menu";
|
|
$this->template = "common/menu.tpl";
|
|
|
|
$db = Registry::get('db');
|
|
$session = Registry::get('session');
|
|
|
|
$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->data['realname'] = $session->get('realname');
|
|
|
|
$this->render();
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|