Yii2 Toastr Notification
This is the Toastr extension for Yii 2. It encapsulates Toastr plugin in terms of Yii widgets, and makes ajax notification easy to implement., (*1)
Installation
The preferred way to install this extension is through composer., (*2)
Either run, (*3)
php composer.phar require --prefer-dist gbksoft/yii2-toastr "*"
or add, (*4)
"gbksoft/yii2-toastr": "*"
to the require section of your composer.json
file., (*5)
Usage
Once the extension is installed, you can test that the extension works by simply use it in your code by :, (*6)
<?= \gbksoft\yii2toastr\Toastr::widget([
'toastType' => 'error',
'message' => 'This is an error.',
'customStyle' => false
]);?>
There are 2 main useful widgets, (*7)
ToastrFlash
displays Yii flash messages in toastr notification style, (*8)
<?php
$session = \Yii::$app->getSession();
$session->setFlash('error', "msg1");
$session->setFlash('danger', "msg2");
$session->setFlash('warning', "msg3");
$session->setFlash('info', "msg4");
$session->setFlash('success', "msg5");
?>
```php
= \gbksoft\yii2toastr\ToastrFlash::widget([
'options' => [
'positionClass' => 'toast-bottom-left'
]
]);?>, (*9)
ToastrAjaxFeed
--------------
fetch notification from ajax url
```php
<?= \gbksoft\yii2toastr\ToastrAjaxFeed::widget([
'feedUrl' => yii\helpers\Url::toRoute('/user/profile/notification-feed'),
'interval' => 5000,
'options' => [
'positionClass' => 'toast-bottom-left'
]
]);?>
the ajax controller should return an array like this, (*10)
public function actionNotificationFeed(){
$ret = [
[
'type' => 'error',
'message' => 'error message',
'title' => 'Hey!'
],
[
'type' => 'info',
'message' => 'another message',
'title' => 'Hello'
]
];
return \yii\helpers\Json::encode($ret);
}