* * 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\Form\FormTypeInterface; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\Translation\TranslatorInterface; use Symfony\Component\OptionsResolver\OptionsResolverInterface; class DateTimeRangeType extends AbstractType { protected $translator; /** * @param \Symfony\Component\Translation\TranslatorInterface $translator */ public function __construct(TranslatorInterface $translator) { $this->translator = $translator; } /** * {@inheritDoc} */ public function buildForm(FormBuilderInterface $builder, array $options) { $builder->add('start', 'datetime', array_merge(array('required' => false), $options['field_options'])); $builder->add('end', 'datetime', array_merge(array('required' => false), $options['field_options'])); } /** * {@inheritDoc} */ public function getName() { return 'sonata_type_datetime_range'; } /** * {@inheritDoc} */ public function setDefaultOptions(OptionsResolverInterface $resolver) { $resolver->setDefaults(array( 'field_options' => array() )); } }