getUser()->addMessage( new Message($msg, Zend_Log::INFO) ); Session::getSession()->write(); } /** * Send a message with the logging level Zend_Log::ERR to the current user and * commit the changes to the underlying session. * * @param $msg The message content */ protected function addErrorMessage($msg) { AuthenticationManager::getInstance()->getUser()->addMessage( new Message($msg, Zend_Log::ERR) ); Session::getSession()->write(); } /* * Return an array of tabs provided by this configuration controller. * * Those tabs will automatically be added to the application's configuration dialog * * @return array */ public static function createProvidedTabs() { return array(); } }