smile/ezee-phoneformfield-bundle

适用于eZ Studio表单构建器的电话字段

安装: 1

依赖项: 0

建议者: 0

安全: 0

星级: 0

关注者: 9

分支: 1

开放问题: 0

类型:ezstudio-bundle

1.0.0 2017-03-10 14:14 UTC

This package is auto-updated.

Last update: 2024-09-17 09:23:07 UTC


README

SensioLabsInsight

添加名为 电话 的新eZStudio表单字段,显示带有国家列表的选择字段

安装

使用composer获取此包

从eZStudio项目的根目录终端运行此命令以添加SmileEzEEPhoneFormFieldBundle

composer require smile/ezee-phoneformfield-bundle

启用包

要开始使用此包,请在其应用程序的kernel类中注册该包

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

添加assetic

{% javascripts
    ...
    'bundles/smileezeephoneformfield/js/smileform_phone.js'
%}
   <script type="text/javascript" src="{{ asset_url }}"></script>
{% endjavascripts %}