Exemple #1
0
 /**
  * @param $msg
  * @param string $debugInfo
  * @param bool $type
  * @param string $group
  * @param bool $addUserInfo
  */
 function logAndMessage($msg, $debugInfo = '', $type = false, $group = '', $addUserInfo = false)
 {
     $type = $type === false || $type === true ? $type ? GLZ_LOG_ERROR : GLZ_LOG_DEBUG : $type;
     if (class_exists('org_glizy_application_MessageStack')) {
         org_glizy_application_MessageStack::add($msg, $type == GLZ_LOG_ERROR ? GLZ_MESSAGE_ERROR : GLZ_MESSAGE_SUCCESS);
     }
     $this->log($msg . ' ' . $debugInfo, $type, $group, $addUserInfo);
 }
Exemple #2
0
 /**
  * @param $message
  */
 function validateAddError($message)
 {
     $validateError =& org_glizy_components_Component::validateErrors();
     $validateError[] = array('component' => &$this, 'message' => $message);
     org_glizy_application_MessageStack::add($message, GLZ_MESSAGE_ERROR);
 }