abushamleh/yii2-toast Yii2 toast alert

  1. Installation
  2. Usage

Installation

Run the Composer command to install the latest version: composer require abushamleh/yii2-toast "dev-master"

Usage

ToastAlert
use abushamleh\toast\ToastAlert;

echo ToastAlert::widget([
    'options'   => [],
    'heading'   => 'heading',
    'text'      => 'text',
    'type'      => 'type',
]);

ToastBlock

ToastBlock widget renders a message from session flash. All flash messages are displayed in the sequence they were assigned using setFlash. `php use abushamleh\toast\ToastBlock;

//You can set message as following: Yii::$app->session->setFlash('error', 'This is the message'); Yii::$app->session->setFlash('success', 'This is the message'); Yii::$app->session->setFlash('info', 'This is the message'); Yii::$app->session->setFlash('info', ['heading' => 'Message title' 'text' => 'This is the message']);

//Multiple messages could be set as follows: Yii::$app->session->setFlash('error', ['Error 1', 'Error 2']); Yii::$app->session->setFlash('error', [['heading' => 'Message title' 'text' => 'This is the message'], 'Error 2']);

echo ToastBlock::widget([

'options' => []

]);


1 0
2 followers
2 267 downloads
Yii Version: 2.0
License: MIT
Category: User Interface
Developed by: Abdulhadi Abu-Shamleh
Created on: Nov 4, 2018
Last updated: (not set)
Packagist Profile
Github Repository

Related Extensions