Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 10
0.00% covered (danger)
0.00%
0 / 4
CRAP
0.00% covered (danger)
0.00%
0 / 1
Validators
0.00% covered (danger)
0.00%
0 / 10
0.00% covered (danger)
0.00%
0 / 4
42
0.00% covered (danger)
0.00%
0 / 1
 getOptions
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
6
 getOptionValidatorName
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
6
 setValue
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getValidationRuleRegistry
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
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) 2015-2022 (original work) Open Assessment Technologies SA;
19 *
20 */
21
22declare(strict_types=1);
23
24namespace oat\tao\helpers\form\elements;
25
26use tao_helpers_form_elements_MultipleElement;
27use oat\tao\helpers\form\ValidationRuleRegistry;
28use tao_helpers_form_Validator;
29
30/**
31 * Implementation model selector
32 *
33 * @abstract
34 * @package tao
35 */
36abstract class Validators extends tao_helpers_form_elements_MultipleElement
37{
38    public const WIDGET_ID = 'http://www.tao.lu/datatypes/WidgetDefinitions.rdf#ValidationSelector';
39
40    /**
41     * (non-PHPdoc)
42     * @see tao_helpers_form_elements_MultipleElement::getOptions()
43     */
44    public function getOptions()
45    {
46        $options = [];
47        foreach ($this->getValidationRuleRegistry()->getMap() as $id => $validator) {
48            $options[$id] = $id;
49        }
50
51        return $options;
52    }
53
54    public function getOptionValidatorName(string $id): ?string
55    {
56        $validator = $this->getValidationRuleRegistry()->get($id);
57
58        if ($validator instanceof tao_helpers_form_Validator) {
59            return $validator->getName();
60        }
61
62        return null;
63    }
64
65    /**
66     * (non-PHPdoc)
67     * @see tao_helpers_form_elements_MultipleElement::setValue()
68     */
69    public function setValue($value)
70    {
71        $this->addValue($value);
72    }
73
74    private function getValidationRuleRegistry(): ValidationRuleRegistry
75    {
76        return ValidationRuleRegistry::getRegistry();
77    }
78}