|
@@ -0,0 +1,39 @@
|
|
|
+<?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\Form\FormTypeInterface;
|
|
|
+use Symfony\Component\Form\FormBuilder;
|
|
|
+
|
|
|
+use Symfony\Component\Translation\TranslatorInterface;
|
|
|
+
|
|
|
+class DateRangeType extends AbstractType
|
|
|
+{
|
|
|
+ protected $translator;
|
|
|
+
|
|
|
+ public function __construct(TranslatorInterface $translator)
|
|
|
+ {
|
|
|
+ $this->translator = $translator;
|
|
|
+ }
|
|
|
+
|
|
|
+ public function buildForm(FormBuilder $builder, array $options)
|
|
|
+ {
|
|
|
+ $builder->add('start', 'date', array('required' => false));
|
|
|
+ $builder->add('end', 'date', array('required' => false));
|
|
|
+ }
|
|
|
+
|
|
|
+ public function getName()
|
|
|
+ {
|
|
|
+ return 'sonata_type_date_range';
|
|
|
+ }
|
|
|
+}
|