Blame view

backend/views/templates/parser_massage.php 291 Bytes
78641da2   Mihail   rewrite parser wr...
1
2
3
4
5
6
7
8
9
  <?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']);
  }?>