Exemplo n.º 1
0
 private function displayFlashMessagesIfIsset()
 {
     $textmaster_data_with_cookie_manage_obj = new TextMasterDataWithCookiesManager();
     if ($success_message = $textmaster_data_with_cookie_manage_obj->getSuccessMessage()) {
         $this->_html .= $this->displayConfirmation($success_message);
     }
     if ($warning_message = $textmaster_data_with_cookie_manage_obj->getWarningMessage()) {
         $this->_html .= $this->displayWarnings($warning_message);
     }
     if ($error_message = $textmaster_data_with_cookie_manage_obj->getErrorMessage()) {
         $this->_html .= $this->displayError($error_message);
     }
 }