* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * @deprecated - use ChoiceType with the translation_domain option instead */ namespace Sonata\AdminBundle\Form\Type; use Symfony\Component\Translation\TranslatorInterface; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormInterface; use Symfony\Component\Form\FormView; use Symfony\Component\OptionsResolver\Options; use Symfony\Component\OptionsResolver\OptionsResolverInterface; class TranslatableChoiceType extends AbstractType { protected $translator; /** * @param \Symfony\Component\Translation\TranslatorInterface $translator */ public function __construct(TranslatorInterface $translator) { $this->translator = $translator; } /** * {@inheritDoc} */ public function setDefaultOptions(OptionsResolverInterface $resolver) { $resolver->setDefaults(array( 'catalogue' => 'messages', )); } /** * {@inheritDoc} */ public function buildView(FormView $view, FormInterface $form, array $options) { $view->vars['translation_domain'] = $options['catalogue']; } /** * {@inheritDoc} */ public function getParent() { return 'choice'; } /** * {@inheritDoc} */ public function getName() { return 'sonata_type_translatable_choice'; } }