flashes as $flash) { if (Yii::$app->session->hasFlash($flash)) { $message = Yii::$app->session->getFlash($flash); $js = ' new PNotify({ title: "' . Yii::t('core', 'Notification') . ':", text: "' . $message . '", type: "' . $flash . '", styling: "bootstrap3", icon: "glyphicon glyphicon-exclamation-sign" }); '; return $this->render('_flash', [ 'js' => $js ]); } } return ''; } }