From 2bff5f80bcfbdb03133373f7548e22c9a3667579 Mon Sep 17 00:00:00 2001 From: Kartik Visweswaran Date: Wed, 20 Nov 2013 23:15:16 +0530 Subject: [PATCH] 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. --- apps/advanced/frontend/widgets/Alert.php | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/apps/advanced/frontend/widgets/Alert.php b/apps/advanced/frontend/widgets/Alert.php index d2ddab0..891c7e4 100644 --- a/apps/advanced/frontend/widgets/Alert.php +++ b/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(); }