ereminmdev/yii2-noty

此包已被 废弃 且不再维护。作者建议使用ereminmdev/yii2-notyf 包。

为Yii框架提供的替代确认消息。

安装: 10

依赖: 0

建议者: 0

安全性: 0

星标: 0

关注者: 1

分支: 0

开放问题: 0

类型:yii2-extension

v1.0.1 2021-04-06 04:36 UTC

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