Exemplo n.º 1
0
if ($notifications->models) {
    ?>
                        <?php 
    \yii\widgets\Pjax::begin(['id' => 'ajax_content_notification', 'enablePushState' => false]);
    ?>


                            <?php 
    foreach ($notifications->models as $notification) {
        ?>
                                <?php 
        /** @var $model Notification */
        ?>

                                <div class="<?php 
        echo Notification::getTypeAlertCss($notification->type);
        ?>
" role="alert" >
                                    <button type="button" class="close delete" data-dismiss="alert" aria-hidden="true" data-id="<?php 
        echo $notification->id;
        ?>
">&times;</button>
                                    <i class="icon <?php 
        echo Notification::getTypeCss($notification->type, false);
        ?>
"></i><?php 
        echo $notification->message;
        ?>
                                </div>
                            <?php 
    }