powerkernel/yii2-bootstrapsocial

为 Yii2 的 Bootstrap Social 扩展

安装数: 5,183

依赖者: 0

建议者: 0

安全: 0

星星: 0

关注者: 2

分支: 0

开放问题: 1

类型:yii2-extension

1.0.0 2017-12-04 04:29 UTC

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
]) ?>