DateTimeFilter.php 556 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /*
  3. * This file is part of the Sonata package.
  4. *
  5. * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Sonata\DoctrineORMAdminBundle\Filter;
  11. class DateTimeFilter extends AbstractDateFilter
  12. {
  13. /**
  14. * This filter has time
  15. *
  16. * @var boolean
  17. */
  18. protected $time = true;
  19. /**
  20. * This is not a rangle filter
  21. *
  22. * @var boolean
  23. */
  24. protected $range = false;
  25. }