1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?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\AbstractType;
- use Symfony\Component\OptionsResolver\OptionsResolverInterface;
- class StatusType extends AbstractType
- {
- protected $class;
- protected $getter;
- protected $name;
- /**
- * @param string $class
- * @param string $getter
- * @param string $name
- */
- public function __construct($class, $getter, $name)
- {
- $this->class = $class;
- $this->getter = $getter;
- $this->name = $name;
- }
- /**
- * {@inheritDoc}
- */
- public function getParent()
- {
- return 'choice';
- }
- /**
- * {@inheritDoc}
- */
- public function getName()
- {
- return $this->name;
- }
- /**
- * {@inheritDoc}
- */
- public function setDefaultOptions(OptionsResolverInterface $resolver)
- {
- $resolver->setDefaults(array(
- 'choice' => call_user_func(array($this->class, $this->getter))
- ));
- }
- }
|