friendsofvictoire / tab-widget
此包已被废弃且不再维护。未建议替代包。
Victoire DCMS 选项卡小部件
2.0.5
2017-08-29 08:30 UTC
Requires
- php: >=5.5.9
- symfony/framework-bundle: ~2.8|~3.0
- victoire/victoire: >=2.0.0
This package is not auto-updated.
Last update: 2021-12-21 22:44:43 UTC
README
##此包的用途是什么
此包提供访问 Tab 小部件 的权限,该小部件可以使您的网站拥有选项卡功能。
##设置 Victoire
如果您尚未设置,可以按照以下步骤设置 Victoire 这里
##安装包
php composer.phar require friendsofvictoire/tab-widget
###注意事项
不要忘记在 AppKernel 中添加此包!
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
...
new Victoire\Widget\TabBundle\VictoireWidgetTabBundle(),
);
return $bundles;
}
}