added google authenticator support to the gui

This commit is contained in:
SJ
2013-10-16 14:55:17 +02:00
parent 62e5dc8afa
commit dae73a577a
50 changed files with 10676 additions and 39 deletions

View File

@ -9,6 +9,7 @@ class ControllerCommonMenu extends Controller {
$this->template = "common/menu.tpl";
$db = Registry::get('db');
$session = Registry::get('session');
$this->load->model('saas/customer');
@ -18,6 +19,8 @@ class ControllerCommonMenu extends Controller {
$this->data['settings'] = $this->model_saas_customer->get_customer_settings_by_email();
$this->data['realname'] = $session->get('realname');
$this->render();
}