示例#1
0
 /**
  * Action to provide information about the lab.
  */
 public function indexAction()
 {
     $this->view->headTitle($this->_headPrefix . 'News');
     $this->view->messages = $this->_flashMessenger->getMessages();
     $inst = Zend_Registry::get('config')->institution;
     $this->view->inst = $inst;
     if (is_file(Bootstrap::$rootDirectory . '/../institution/' . $inst . '/News.php')) {
         $newsClass = $inst . '_News';
         $news = new $newsClass();
     } else {
         $news = new Sahara_DefaultInfo();
     }
     $this->view->news = $news->getNews();
 }