public function deviationsInterface()
 {
     //Only accessible to CRA, DM and SPONSOR
     if (!$this->m_ctrl->boacl()->existUserProfileId(array("CRA", "DM", "SPO"))) {
         $this->addLog("Unauthorized Access to Deviations Module - Administrator has been notified", FATAL);
     }
     require_once 'class.uideviations.inc.php';
     global $configEtude;
     $ui = new uideviations($configEtude, $this->m_ctrl);
     $GLOBALS['egw_info']['flags']['app_header'];
     $this->create_header();
     echo $ui->getInterface();
     $this->create_footer();
 }
 public function deviationsInterface()
 {
     require_once 'class.uideviations.inc.php';
     global $configEtude;
     $ui = new uideviations($configEtude, $this->m_ctrl);
     $GLOBALS['egw_info']['flags']['app_header'];
     $this->create_header();
     echo $ui->getInterface();
     $this->create_footer();
 }