mw / tag-admin-bundle
Bundle that combines the FPNTagBundle together with the SonataAdminBundle.
Installs: 2 835
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 4
Forks: 2
Open Issues: 1
Type:symfony-bundle
Requires
- php: >=5.4.0
- fpn/tag-bundle: *
- sonata-project/admin-bundle: *
- symfony/framework-bundle: >=2.0
This package is not auto-updated.
Last update: 2024-09-20 14:05:29 UTC
README
The goal of this bundle is to make it easy to use the FPNTagBundle together with the SonataAdminBundle.
In your entities:
class ... implements \DoctrineExtensions\Taggable\Taggable { use \MW\Bundle\TagAdminBundle\Entity\Traits\Taggable; ... }
In your admin classes:
class ...Admin extends Admin { use \MW\Bundle\TagAdminBundle\Admin\Traits\TagHandler; ... protected function configureFormFields(FormMapper $formMapper) { $formMapper ... ->add('tags_plain', 'textarea', array('required' => false)) ->end() ; } } ... }
In your service definitions:
<service id="..." class="..."> <tag name="sonata.admin" manager_type="..." group="..." label="..."/> <argument /> <argument>...</argument> <argument>...</argument> <call method="setTagTransformer"> <argument type="service" id="mw.text_to_tag_transformer" /> </call> </service>