parser_massage.php
291 Bytes
<?php
use yii\helpers\Html;
Html::tag('br');
if ( $msg = \Yii::$app->session->getFlash('success') ) {
echo Html::tag('p', $msg, ['class' => 'bg-success']);
} elseif ( $msg = \Yii::$app->session->getFlash('warning') ) {
echo Html::tag('p', $msg, ['class' => 'bg-warning']);
}?>