-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCheck.php
72 lines (63 loc) · 1.38 KB
/
Check.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
<?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;
/**
* Check box filter.
*
* @package Grido
* @subpackage Components\Filters
* @author Petr Bugyík
*/
class Check extends Filter
{
/* representation TRUE in URI */
const TRUE = '✓';
/** @var string */
protected $condition = 'IS NOT NULL';
/**
* @return \Nette\Forms\Controls\Checkbox
*/
protected function getFormControl()
{
return new \Nette\Forms\Controls\Checkbox($this->label);
}
/**
* @param string $value
* @return Condition|bool
* @internal
*/
public function __getCondition($value)
{
$value = $value == self::TRUE
? TRUE
: FALSE;
return parent::__getCondition($value);
}
/**
* @param bool $value
* @return NULL
* @internal
*/
public function formatValue($value)
{
return NULL;
}
/**
* @param bool $value
* @return string
* @internal
*/
public function changeValue($value)
{
return (bool) $value === TRUE
? self::TRUE
: $value;
}
}