smile / ezee-countryformfield-bundle

适用于eZ Studio表单构建器的国家字段

安装: 3

依赖项: 0

建议者: 0

安全: 0

星星: 0

关注者: 9

分支: 1

公开问题: 0

类型:ezstudio-bundle

1.0.1 2017-03-06 11:43 UTC

This package is auto-updated.

Last update: 2024-09-17 10:18:15 UTC


README

SensioLabsInsight

添加新的eZStudio表单字段“国家”,显示带有国家列表的选取字段

安装

使用composer获取此包

从您eZStudio项目的根目录运行以下命令以添加SmileEzEECountryFormFieldBundle

composer require smile/ezee-countryformfield-bundle

启用该包

要开始使用此包,请在您的应用程序的内核类中注册该包

// ezpublish/EzPublishKernel.php
public function registerBundles()
{
    $bundles = array(
        // ...
        new Smile\EzEECountryFormFieldBundle\SmileEzEECountryFormFieldBundle(),
        // ...
    );
}