Static Public Member Functions | |
| static | raiseWarning ($number, $text) |
| static | raiseNotice ($number, $text) |
| static | isError ($object) |
Definition at line 56 of file aliroJoomla.php.
| static JError::raiseWarning | ( | $ | number, | |
| $ | text | |||
| ) | [static] |
Definition at line 57 of file aliroJoomla.php.
References aliroRequest::getInstance().
00057 { 00058 aliroRequest::getInstance()->setErrorMessage($text, _ALIRO_ERROR_WARN); 00059 }
| static JError::raiseNotice | ( | $ | number, | |
| $ | text | |||
| ) | [static] |
Definition at line 60 of file aliroJoomla.php.
References aliroRequest::getInstance().
00060 { 00061 aliroRequest::getInstance()->setErrorMessage($text, _ALIRO_ERROR_INFORM); 00062 }
| static JError::isError | ( | $ | object | ) | [static] |
Definition at line 63 of file aliroJoomla.php.
00063 { 00064 return is_a($object, 'JException') OR is_a($object, 'JError') OR is_a($object, 'Exception'); 00065 }
1.5.5