friendsofvictoire / alertbutton-widget
Victoire AlertButton 小部件
2.0.1
2017-04-03 09:03 UTC
Requires
- php: >=5.5.9
- friendsofvictoire/button-widget: ~2.0
- symfony/framework-bundle: ~2.8|~3.0
- victoire/victoire: ~2.0|~3.0
This package is not auto-updated.
Last update: 2024-09-14 17:31:58 UTC
README
##本扩展包的用途是什么
此扩展包为您提供了访问 AlertButton 小部件 的权限。
##设置 Victoire
如果您还没有设置,可以按照以下步骤在 这里 设置 Victoire
##安装 AlertButton 扩展包
运行以下 composer 命令
php composer.phar require friendsofvictoire/alertbutton-widget
###注意
请务必将扩展包添加到您的 AppKernel 中!
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
...
new Victoire\Widget\AlertButtonBundle\VictoireWidgetAlertButtonBundle(),
);
return $bundles;
}
}