| Current Path : /var/www/html/dvs/common/widgets/flash/ |
| Current File : /var/www/html/dvs/common/widgets/flash/flashWidget.php |
<?php
namespace common\widgets\flash;
use yii\base\Widget;
use yii\helpers\Html;
class flashWidget extends Widget
{
public $model;
public function init()
{
parent::init();
}
public function run()
{
// Register AssetBundle
flashAsset::register($this->getView());
return $this->render('@common/widgets/flash/views/_flash');
}
}