Esempio n. 1
0
 public function body()
 {
     if (!Base_AclCommon::check_permission('Dashboard')) {
         return;
     }
     $this->help('Dashboard Help', 'main');
     if (Utils_RecordBrowserInstall::is_installed()) {
         //speed up links to RB
         if (Utils_RecordBrowserCommon::check_for_jump()) {
             return;
         }
     }
     $this->dashboard();
     Base_ActionBarCommon::show_quick_access_shortcuts(true);
 }
Esempio n. 2
0
 public function check_for_jump() {
     $x = Utils_RecordBrowserCommon::check_for_jump();
     if($x)
         self::$browsed_records = $this->get_module_variable('set_browsed_records',null);
     return $x;
 }