PHP code example of yii2mod / yii2-bootstrap-notify

1. Go to this page and download the library: Download yii2mod/yii2-bootstrap-notify library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

yii2mod / yii2-bootstrap-notify example snippets


Yii::$app->session->setFlash('success', 'This is the message');
Yii::$app->session->setFlash('info', 'Your message');
Yii::$app->session->setFlash('warning', 'Your message');
Yii::$app->session->setFlash('error', 'Your message');

Yii::$app->session->setFlash('error', ['Error 1', 'Error 2']);

 echo \yii2mod\notify\BootstrapNotify::widget(); 

 echo \yii2mod\notify\BootstrapNotify::widget([
    'useSessionFlash' => false,
    'options' => [
        'message' => 'Your message',
    ],
    'clientOptions' => [
        'type' => \yii2mod\notify\BootstrapNotify::TYPE_SUCCESS,
        'showProgressbar' => true
    ]
]); 

php composer.phar