ofilin / yii2-sweetalert
SweetAlert Asset
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: ~2.0.0
This package is auto-updated.
Last update: 2025-03-28 23:16:07 UTC
README
yii2-sweetalert
This asset override standard JavaScript yii.confirm
method. Plugin SweetAlert2
Installation
The preferred way to install this extension is through composer.
Either run
composer require --prefer-dist ofilin/yii2-sweetalert "*"
or add
"ofilin/yii2-sweetalert": "*"
to the require section of your composer.json
file and run composer update
Configure
In your Asset file add this SweetAlertAsset:
public $depends = [
'yii\web\YiiAsset',
'yii\bootstrap\BootstrapAsset',
\ofilin\sweetalert\SweetAlertAsset::class,
];
or register in view file:
\ofilin\sweetalert\SweetAlertAsset::register($this);
Show alerts:
Basic alert
<?= \ofilin\sweetalert\SweetAlertWidget::widget(['pluginOptions' => [
'type' => 'error',
'title'=>'Oops...',
'text' => 'Something went wrong!',
]]) ?>
Flash alert:
// in controller
Yii::$app->session->setFlash('success', "Статья сохранена");
<!-- in view/layout -->
<?= \ofilin\sweetalert\SweetAlertWidget::widget(['isFlash' => true]) ?>