1 | <?php |
||
7 | class Filters |
||
8 | { |
||
9 | |||
10 | /** |
||
11 | * @param $data |
||
12 | * @return FilterModel |
||
13 | */ |
||
14 | 1 | public function filterEmail($data) |
|
21 | |||
22 | /** |
||
23 | * @param $data |
||
24 | * @return FilterModel |
||
25 | */ |
||
26 | public function filterEncoded($data) |
||
32 | |||
33 | /** |
||
34 | * @param $data |
||
35 | * @return FilterModel |
||
36 | */ |
||
37 | public function filterFloat($data) |
||
44 | |||
45 | /** |
||
46 | * @param $data |
||
47 | * @return FilterModel |
||
48 | */ |
||
49 | public function filterFloatFraction($data) |
||
54 | |||
55 | /** |
||
56 | * @param $data |
||
57 | * @return FilterModel |
||
58 | */ |
||
59 | public function filterInt($data) |
||
67 | |||
68 | /** |
||
69 | * @param $data |
||
70 | * @return FilterModel |
||
71 | */ |
||
72 | public function filterFullSpecialChar($data) |
||
79 | |||
80 | /** |
||
81 | * @param $data |
||
82 | * @return FilterModel |
||
83 | */ |
||
84 | public function filterUrl($data) |
||
92 | |||
93 | /** |
||
94 | * @param $data |
||
95 | * @return FilterModel |
||
96 | */ |
||
97 | public function filterString($data) |
||
104 | |||
105 | /** |
||
106 | * @param $data |
||
107 | * @return FilterModel |
||
108 | */ |
||
109 | public function filterSpecial($data) |
||
116 | |||
117 | } |