Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 11 |
|
0.00% |
0 / 4 |
CRAP | |
0.00% |
0 / 1 |
tao_helpers_form_validators_Regex | |
0.00% |
0 / 11 |
|
0.00% |
0 / 4 |
72 | |
0.00% |
0 / 1 |
isPreValidationRequired | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setOptions | |
0.00% |
0 / 5 |
|
0.00% |
0 / 1 |
12 | |||
evaluate | |
0.00% |
0 / 4 |
|
0.00% |
0 / 1 |
12 | |||
getDefaultMessage | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | /** |
4 | * This program is free software; you can redistribute it and/or |
5 | * modify it under the terms of the GNU General Public License |
6 | * as published by the Free Software Foundation; under version 2 |
7 | * of the License (non-upgradable). |
8 | * |
9 | * This program is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 | * GNU General Public License for more details. |
13 | * |
14 | * You should have received a copy of the GNU General Public License |
15 | * along with this program; if not, write to the Free Software |
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
17 | * |
18 | * Copyright (c) 2008-2010 (original work) Deutsche Institut für Internationale Pädagogische Forschung |
19 | * (under the project TAO-TRANSFER); |
20 | * 2009-2012 (update and modification) Public Research Centre Henri Tudor |
21 | * (under the project TAO-SUSTAIN & TAO-DEV); |
22 | * 2022 (original work) Open Assessment Technologies SA. |
23 | */ |
24 | |
25 | declare(strict_types=1); |
26 | |
27 | use oat\tao\helpers\form\validators\PreliminaryValidationInterface; |
28 | |
29 | /** |
30 | * @author Joel Bout, <joel.bout@tudor.lu> |
31 | */ |
32 | class tao_helpers_form_validators_Regex extends tao_helpers_form_Validator implements PreliminaryValidationInterface |
33 | { |
34 | public const USER_FORM_SERVICE_ID = self::class . '::USER_FORM'; |
35 | |
36 | public function isPreValidationRequired(): bool |
37 | { |
38 | return $this->getOption('isPreValidationRequired', false); |
39 | } |
40 | |
41 | public function setOptions(array $options) |
42 | { |
43 | parent::setOptions($options); |
44 | |
45 | if (!$this->hasOption('format')) { |
46 | throw new common_Exception("Please set the format options (define your regular expression)!"); |
47 | } |
48 | |
49 | if ($this->hasOption('message')) { |
50 | $this->setMessage($this->getOption('message')); |
51 | } |
52 | } |
53 | |
54 | /** |
55 | * Short description of method evaluate |
56 | * |
57 | * @access public |
58 | * @author Joel Bout, <joel.bout@tudor.lu> |
59 | * @param values |
60 | * @return boolean |
61 | */ |
62 | public function evaluate($values) |
63 | { |
64 | $returnValue = false; |
65 | |
66 | if (is_string($values) || is_numeric($values)) { |
67 | $returnValue = (preg_match($this->getOption('format'), $values) === 1); |
68 | } |
69 | |
70 | return $returnValue; |
71 | } |
72 | |
73 | protected function getDefaultMessage() |
74 | { |
75 | return __('The format of this field is not valid.'); |
76 | } |
77 | } |