Your IP : 216.73.216.79


Current Path : /var/www/html/maiwp.bak/common/widgets/flash/views/
Upload File :
Current File : /var/www/html/maiwp.bak/common/widgets/flash/views/_flash.php

<?php

$html = '';
$flash = \Yii::$app->session;           
switch(true)
{
    case $flash->hasFlash('success'):
    $html .= "toastr.success('".$flash->getFlash('success')."');";
    break;
    case $flash->hasFlash('warning'):
    $html .= "toastr.warning('".$flash->getFlash('warning')."');";
    break;
    case $flash->hasFlash('info'):
    $html .= "toastr.info('".$flash->getFlash('info')."');";
    break;
    case $flash->hasFlash('error'):
    $html .= "toastr.error('".$flash->getFlash('error')."');";
    break;
}

$this->registerJs("
jQuery(document).ready(function () {
    toastr.options.timeOut = 1500; // 1.5s
    {$html}
});
");

?>