smile/ezee-phoneformfield-bundle

Phone Field for eZ Studio Form Builder

Maintainers

Package info

github.com/Smile-SA/EzEEPhoneFormFieldBundle

Type:ezstudio-bundle

pkg:composer/smile/ezee-phoneformfield-bundle

Statistics

Installs: 1

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0.0 2017-03-10 14:14 UTC

This package is auto-updated.

Last update: 2026-02-17 12:18:12 UTC


README

SensioLabsInsight

Add new eZStudio Form Field named Phone displaying select field with country list

Installation

Get the bundle using composer

Add SmileEzEEPhoneFormFieldBundle by running this command from the terminal at the root of your eZStudio project:

composer require smile/ezee-phoneformfield-bundle

Enable the bundle

To start using the bundle, register the bundle in your application's kernel class:

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

Add assetic

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