friendsofvictoire/date-widget

Victoire DCMS 日期小部件

安装数: 9,153

依赖项: 0

建议者: 0

安全性: 0

星级: 1

关注者: 5

分支: 1

开放问题: 1

语言:HTML

类型:symfony-bundle

2.0.2 2017-04-04 16:04 UTC

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;
        }
    }