Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
BlogBundle/Bridge/Doctrine/Form/Type/TagsType.php
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
66 lines (58 sloc)
1.42 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Stfalcon\Bundle\BlogBundle\Bridge\Doctrine\Form\Type; | |
use Symfony\Component\Form\AbstractType; | |
use Symfony\Component\Form\FormBuilderInterface; | |
use Symfony\Bridge\Doctrine\RegistryInterface; | |
use Stfalcon\Bundle\BlogBundle\Bridge\Doctrine\Form\DataTransformer\EntitiesToStringTransformer; | |
/** | |
* Form type for tags | |
* | |
* @author Stepan Tanasiychuk <ceo@stfalcon.com> | |
*/ | |
class TagsType extends AbstractType | |
{ | |
protected $registry; | |
/** | |
* Constructor injection | |
* | |
* @param RegistryInterface $registry Doctrine registry object | |
* | |
* @return void | |
*/ | |
public function __construct(RegistryInterface $registry) | |
{ | |
$this->registry = $registry; | |
} | |
/** | |
* Builds the form. | |
* | |
* @param FormBuilderInterface $builder The form builder | |
* @param array $options The options | |
* | |
* @return void | |
*/ | |
public function buildForm(FormBuilderInterface $builder, array $options) | |
{ | |
$builder->prependClientTransformer( | |
new EntitiesToStringTransformer($this->registry->getEntityManager()) | |
); | |
} | |
/** | |
* Returns the name of the parent type. | |
* | |
* @return string | |
*/ | |
public function getParent() | |
{ | |
return 'text'; | |
} | |
/** | |
* Returns the name of this type. | |
* | |
* @return string The name of this type | |
*/ | |
public function getName() | |
{ | |
return 'tags'; | |
} | |
} |