public function usersInterface()
 {
     require_once 'class.uiusers.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 uiusers($configEtude, $this->m_ctrl);
     $this->create_header();
     echo $ui->getInterface();
     $this->create_footer();
 }
 public function usersInterface()
 {
     require_once 'class.uiusers.inc.php';
     global $configEtude;
     $ui = new uiusers($configEtude, $this->m_ctrl);
     $this->create_header();
     echo $ui->getInterface();
     $this->create_footer();
 }