powerkernel / yii2-bootstrapsocial
为 Yii2 的 Bootstrap Social 扩展
1.0.0
2017-12-04 04:29 UTC
Requires
- bower-asset/bootstrap-social: ~5.0
- powerkernel/yii2-fontawesome: ~1.0
- yiisoft/yii2: ~2.0.4
This package is auto-updated.
Last update: 2024-09-16 20:49:42 UTC
README
为 Yii2 的 Bootstrap Social 扩展
安装
安装此扩展的首选方式是通过 composer.
运行以下命令之一
php composer.phar require --prefer-dist powerkernel/yii2-bootstrapsocial "*"
或者将以下内容添加到你的 composer.json
文件的 require 部分。
"powerkernel/yii2-bootstrapsocial": "*"
使用方法
扩展安装完成后,只需在你的代码中使用它即可
<?= \powerkernel\bootstrapsocial\Button::widget([
'button' => 'twitter', // Available buttons see https://github.com/lipis/bootstrap-social/
'iconOnly' => false, // set true if only want the icon
'link' => '#your-url', // the button URL
'label'=> 'Button label', // button label
]) ?>