-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDateRange.php
115 lines (96 loc) · 2.95 KB
/
DateRange.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?php
/**
* This file is part of the Grido (http://grido.bugyik.cz)
*
* Copyright (c) 2011 Petr Bugyík (http://petr.bugyik.cz)
*
* For the full copyright and license information, please view
* the file LICENSE.md that was distributed with this source code.
*/
namespace Grido\Components\Filters;
use Nette\Utils\Strings;
/**
* Date-range input filter.
*
* @package Grido
* @subpackage Components\Filters
* @author Petr Bugyík
*
* @property string $mask
*/
class DateRange extends Date
{
/** @var string */
protected $condition = 'BETWEEN ? AND ?';
/** @var string */
protected $mask = '/(.*)\s?-\s?(.*)/';
/** @var array */
protected $dateFormatOutput = array('Y-m-d', 'Y-m-d G:i:s');
/**
* @param string $formatFrom
* @param string $formatTo
* @return \Grido\Components\Filters\DateRange
*/
public function setDateFormatOutput($formatFrom, $formatTo = NULL)
{
$formatTo = $formatTo === NULL
? $formatFrom
: $formatTo;
$this->dateFormatOutput = array($formatFrom, $formatTo);
return $this;
}
/**
* Sets mask by regular expression.
* @param string $mask
* @return DateRange
*/
public function setMask($mask)
{
$this->mask = $mask;
return $this;
}
/**
* @return string
*/
public function getMask()
{
return $this->mask;
}
/**
* @return \Nette\Forms\Controls\TextInput
*/
protected function getFormControl()
{
$control = parent::getFormControl();
$prototype = $control->getControlPrototype();
array_pop($prototype->class); //remove "date" class
$prototype->class[] = 'daterange';
return $control;
}
/**
* @param string $value
* @return Condition|bool
* @throws \Exception
* @internal
*/
public function __getCondition($value)
{
if ($this->where === NULL && is_string($this->condition)) {
list (, $from, $to) = \Nette\Utils\Strings::match($value, $this->mask);
$from = \DateTime::createFromFormat($this->dateFormatInput, trim($from));
$to = \DateTime::createFromFormat($this->dateFormatInput, trim($to));
if ($to && !Strings::match($this->dateFormatInput, '/G|H/i')) { //input format haven't got hour option
Strings::contains($this->dateFormatOutput[1], 'G') || Strings::contains($this->dateFormatOutput[1], 'H')
? $to->setTime(23, 59, 59)
: $to->setTime(11, 59, 59);
}
$values = $from && $to
? array($from->format($this->dateFormatOutput[0]), $to->format($this->dateFormatOutput[1]))
: NULL;
return $values
? Condition::setup($this->getColumn(), $this->condition, $values)
: Condition::setupEmpty();
}
return parent::__getCondition($value);
}
}