1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- /*
- * This file is part of the Sonata package.
- *
- * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- *
- */
- namespace Sonata\AdminBundle\Form\Type;
- use Symfony\Component\Form\Extension\Core\Type\ChoiceType as FormChoiceType;
- use Symfony\Component\Translation\TranslatorInterface;
- use Symfony\Component\OptionsResolver\OptionsResolverInterface;
- class EqualType extends FormChoiceType
- {
- const TYPE_IS_EQUAL = 1;
- const TYPE_IS_NOT_EQUAL = 2;
- protected $translator;
- /**
- * @param \Symfony\Component\Translation\TranslatorInterface $translator
- */
- public function __construct(TranslatorInterface $translator)
- {
- $this->translator = $translator;
- }
- /**
- * {@inheritDoc}
- */
- public function setDefaultOptions(OptionsResolverInterface $resolver)
- {
- parent::setDefaultOptions($resolver);
- $resolver->setDefaults(array(
- 'choices' => array(
- self::TYPE_IS_EQUAL => $this->translator->trans('label_type_equals', array(), 'SonataAdminBundle'),
- self::TYPE_IS_NOT_EQUAL => $this->translator->trans('label_type_not_equals', array(), 'SonataAdminBundle'),
- )
- ));
- }
- /**
- * {@inheritDoc}
- */
- public function getParent()
- {
- return 'choice';
- }
- /**
- * {@inheritDoc}
- */
- public function getName()
- {
- return 'sonata_type_equal';
- }
- }
|