mw / tag-admin-bundle
This package is abandoned and no longer maintained.
No replacement package was suggested.
Bundle that combines the FPNTagBundle together with the SonataAdminBundle.
Package info
github.com/mweimerskirch/MWTagAdminBundle
Type:symfony-bundle
pkg:composer/mw/tag-admin-bundle
dev-master
2012-08-08 19:46 UTC
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>