* @since 2.0 */ class Alert { /** * constants */ const CLASS_NAME = 'alert'; const TYPE_DEFAULT = ''; const TYPE_SUCCESS = 'alert-success'; const TYPE_INFORMATION = 'alert-info'; const TYPE_ERROR = 'alert-error'; const SIZE_BLOCK = 'alert-block'; /** * Generates an alert box * @param $message * @param array $htmlOptions * @param bool $dismiss whether to display dismissal link or not * @return string */ public static function create($message, $htmlOptions = array(), $dismiss = true) { // TODO: this method may should be added to ArrayHelper::add or ArrayHelper::append? if (isset($htmlOptions['class'])) $htmlOptions['class'] .= ' ' . static::CLASS_NAME; else $htmlOptions['class'] = static::CLASS_NAME; ob_start(); echo Html::beginTag('div', $htmlOptions); if ($dismiss) echo Button::closeLink('×', Enum::ALERT); echo $message; echo Html::endTag('div'); return ob_get_clean(); } }