ereminmdev / yii2-noty
v1.0.1
2021-04-06 04:36 UTC
Requires
- php: >=7.0
- needim/noty: ^3.1
- yiisoft/yii2: ~2.0.1
This package is auto-updated.
Last update: 2024-03-07 11:52:55 UTC
README
为Yii框架提供替代的警报 - 成功 - 错误 - 警告 - 信息 - 确认消息。
基于JavaScript库: https://ned.im/noty/#/
安装
composer require --prefer-dist ereminmdev/yii2-noty
文档
查看clientOptions: https://ned.im/noty/#/options
使用
将小部件插入视图
<?= \ereminmdev\yii2\noty\NotyWidget::widget([
'text' => 'Some text...',
]); ?>
或使用更多选项
<?= \ereminmdev\yii2\noty\NotyWidget::widget([
'text' => 'Some text...',
'type' => 'alert',
'layout' => 'topRight',
'theme' => 'bootstrap-v3',
'clientOptions' => [
...
],
]); ?>
查看所有客户端选项: https://ned.im/noty/#/options