smile / ezee-countryformfield-bundle
适用于eZ Studio表单构建器的国家字段
1.0.1
2017-03-06 11:43 UTC
Requires
- php: ~5.6|~7.0
- ezsystems/ezpublish-kernel: ~6.8
- ezsystems/ezstudio-form-builder: ~1.1
This package is auto-updated.
Last update: 2024-09-17 10:18:15 UTC
README
添加新的eZStudio表单字段“国家”,显示带有国家列表的选取字段
安装
使用composer获取此包
从您eZStudio项目的根目录运行以下命令以添加SmileEzEECountryFormFieldBundle
composer require smile/ezee-countryformfield-bundle
启用该包
要开始使用此包,请在您的应用程序的内核类中注册该包
// ezpublish/EzPublishKernel.php public function registerBundles() { $bundles = array( // ... new Smile\EzEECountryFormFieldBundle\SmileEzEECountryFormFieldBundle(), // ... ); }