smile / ezee-sectionformfield-bundle
Section Field for eZ Studio Form Builder
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 9
Forks: 1
Open Issues: 1
Type:ezstudio-bundle
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-10-17 10:01:51 UTC
README
Add new eZStudio Form Field named Section to organize Form Fields.
This new Field is not really a Form Field, just a Form section delimiter.
Installation
Get the bundle using composer
Add SmileEzEESectionFormFieldBundle by running this command from the terminal at the root of your eZStudio project:
composer require smile/ezee-sectionformfield-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\EzEESectionFormFieldBundle\SmileEzEESectionFormFieldBundle(), // ... ); }
Add assetic
{% stylesheets filter='cssrewrite'
...
'bundles/smileezeesectionformfield/css/smileform_section.css'
%}
<link rel="stylesheet" type="text/css" href="{{ asset_url }}">
{% endstylesheets %}