friendsofvictoire / date-widget
Victoire DCMS 日期小部件
2.0.2
2017-04-04 16:04 UTC
Requires
- victoire/victoire: >=2.0.0|~3.0
This package is not auto-updated.
Last update: 2024-09-14 17:48:27 UTC
README
##此捆绑包的用途是什么
此捆绑包将在您的Victoire项目中安装日期小部件。它可以以您想要的任何格式渲染日期。
##设置Victoire
如果您还没有设置,可以按照以下步骤设置Victoire 在此处
##安装捆绑包
运行以下composer命令
php composer.phar require friendsofvictoire/date-widget
###提醒
别忘了将捆绑包添加到您的AppKernel !
class AppKernel extends Kernel { public function registerBundles() { $bundles = array( ... new Victoire\Widget\DateBundle\VictoireWidgetDateBundle(), ); return $bundles; } }