Browse Source

Alert types for flash messages are now configurable.

Each flash variable can be mapped to a bootstrap alert type through a configuration array passed to this widget.
tags/2.0.0-alpha
Kartik Visweswaran 11 years ago
parent
commit
2bff5f80bc
  1. 29
      apps/advanced/frontend/widgets/Alert.php

29
apps/advanced/frontend/widgets/Alert.php

@ -21,9 +21,18 @@ namespace frontend\widgets;
class Alert extends \yii\bootstrap\Widget
{
/**
* @var array the allowed bootstrap alert types.
* @var array the alert types configuration for the flash messages.
* This array is setup as $key => $value, where:
* - $key is the name of the session flash variable
* - $value is the bootstrap alert type (i.e. danger, success, info, warning)
*/
public $allowedTypes = ['error', 'danger', 'success', 'info', 'warning'];
public $alertTypes = [
'error' => 'danger',
'danger' => 'danger',
'success' => 'success',
'info' => 'info',
'warning' => 'warning'
];
/**
* @var array the options for rendering the close button tag.
@ -37,15 +46,13 @@ class Alert extends \yii\bootstrap\Widget
$appendCss = isset($this->options['class']) ? ' ' . $this->options['class'] : '';
foreach ($flashes as $type => $message) {
if (in_array($type, $this->allowedTypes)) {
$this->options['class'] = (($type === 'error') ? 'alert-danger' : 'alert-' . $type) . $appendCss;
echo \yii\bootstrap\Alert::widget([
'body' => $message,
'closeButton' => $this->closeButton,
'options' => $this->options
]);
$session->removeFlash($type);
}
$this->options['class'] = 'alert-' . $this->alertTypes[$type] . $appendCss;
echo \yii\bootstrap\Alert::widget([
'body' => $message,
'closeButton' => $this->closeButton,
'options' => $this->options
]);
$session->removeFlash($type);
}
parent::init();
}

Loading…
Cancel
Save