コード例 #1
0
 public function sitesInterface()
 {
     require_once 'class.uisites.inc.php';
     //Only accessible to admin
     if (!$GLOBALS['egw_info']['user']['apps']['admin']) {
         $this->addLog("Unauthorized Access to Admin Module - Administrator has been notified", FATAL);
     }
     global $configEtude;
     $ui = new uisites($configEtude, $this->m_ctrl);
     $GLOBALS['egw_info']['flags']['app_header'];
     $this->create_header();
     echo $ui->getInterface();
     $this->create_footer();
 }
コード例 #2
0
 public function sitesInterface()
 {
     require_once 'class.uisites.inc.php';
     global $configEtude;
     $ui = new uisites($configEtude, $this->m_ctrl);
     $GLOBALS['egw_info']['flags']['app_header'];
     $this->create_header();
     echo $ui->getInterface();
     $this->create_footer();
 }