jcabanillas / yii2-cookie-consent
Yii2 Cookie Consent 用于提醒用户关于您 Yii2 网站上使用 Cookie 的情况。
dev-master
2021-07-19 22:03 UTC
Requires
- bower-asset/cookieconsent: ^2.0.0
- yiisoft/yii2: ^2.0.14
This package is auto-updated.
Last update: 2024-09-20 05:00:59 UTC
README
Yii2 Cookie Consent 用于提醒用户关于您 Yii2 网站上使用 Cookie 的情况,使用 Cookie Consent 脚本:https://github.com/insites/cookieconsent/tree/2.0.0
使用 Composer 安装
安装此扩展的首选方法是通过 composer。
运行以下命令之一:
$ php composer.phar require jcabanillas/yii2-cookie-consent "^1.5.0"
或者在 composer.json 中添加
"jcabanillas/yii2-cookie-consent": "^1.5.0"
插入小部件
您可以通过以下方式加载 CookieConsent 小部件
use jcabanillas\cookieconsent\widgets\CookieWidget;
<?= CookieWidget::widget([
'message' => 'This website uses cookies to ensure you get the best experience on our website.',
'dismiss' => 'Got It',
'learnMore' => 'More info',
'link' => 'http://silktide.com/privacy-policy',
'theme' => 'dark-bottom'
]); ?>
主题选项
- 所有选项在 https://silktide.com/tools/cookie-consent/docs/installation/
- 如果您不想设置更多信息链接,将 learnMore 设置为 null