DateFilter.php 560 B

123456789101112131415161718192021222324252627
  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 DateFilter extends AbstractDateFilter
  12. {
  13. /**
  14. * This filter has no range
  15. * @var boolean
  16. */
  17. protected $range = false;
  18. /**
  19. * This filter does not allow filtering by time
  20. * @var boolean
  21. */
  22. protected $time = false;
  23. }