1
|
|
|
<?php |
2
|
|
|
/* |
3
|
|
|
* 2017 Romain CANON <[email protected]> |
4
|
|
|
* |
5
|
|
|
* This file is part of the TYPO3 FormZ project. |
6
|
|
|
* It is free software; you can redistribute it and/or modify it |
7
|
|
|
* under the terms of the GNU General Public License, either |
8
|
|
|
* version 3 of the License, or any later version. |
9
|
|
|
* |
10
|
|
|
* For the full copyright and license information, see: |
11
|
|
|
* http://www.gnu.org/licenses/gpl-3.0.html |
12
|
|
|
*/ |
13
|
|
|
|
14
|
|
|
namespace Romm\Formz\Exceptions; |
15
|
|
|
|
16
|
|
|
class InvalidConfigurationException extends FormzException |
17
|
|
|
{ |
18
|
|
|
const INVALID_FORM_CONFIGURATION = 'The form configuration contains errors.'; |
19
|
|
|
|
20
|
|
|
const AJAX_VALIDATION_NOT_ACTIVATED = 'The validation "%s" of the field "%s" is not configured to work with Ajax. Please add the option `useAjax`.'; |
21
|
|
|
|
22
|
|
|
const WRONG_BOOLEAN_NODE_OPERATOR = 'The boolean node has a wrong operator: "%s".'; |
23
|
|
|
|
24
|
|
|
/** |
25
|
|
|
* @code 1487671395 |
26
|
|
|
* |
27
|
|
|
* @return InvalidConfigurationException |
28
|
|
|
*/ |
29
|
|
|
final public static function ajaxControllerInvalidFormConfiguration() |
30
|
|
|
{ |
31
|
|
|
/** @var self $exception */ |
32
|
|
|
$exception = self::getNewExceptionInstance(self::INVALID_FORM_CONFIGURATION); |
33
|
|
|
|
34
|
|
|
return $exception; |
35
|
|
|
} |
36
|
|
|
|
37
|
|
|
/** |
38
|
|
|
* @code 1487673434 |
39
|
|
|
* |
40
|
|
|
* @param string $validationName |
41
|
|
|
* @param string $fieldName |
42
|
|
|
* @return InvalidConfigurationException |
43
|
|
|
*/ |
44
|
|
|
final public static function ajaxControllerAjaxValidationNotActivated($validationName, $fieldName) |
45
|
|
|
{ |
46
|
|
|
/** @var self $exception */ |
47
|
|
|
$exception = self::getNewExceptionInstance( |
48
|
|
|
self::AJAX_VALIDATION_NOT_ACTIVATED, |
49
|
|
|
[$validationName, $fieldName] |
50
|
|
|
); |
51
|
|
|
|
52
|
|
|
return $exception; |
53
|
|
|
} |
54
|
|
|
|
55
|
|
|
/** |
56
|
|
|
* @code 1458150438 |
57
|
|
|
* |
58
|
|
|
* @param string $operator |
59
|
|
|
* @return InvalidConfigurationException |
60
|
|
|
*/ |
61
|
|
|
final public static function wrongBooleanNodeOperator($operator) |
62
|
|
|
{ |
63
|
|
|
/** @var self $exception */ |
64
|
|
|
$exception = self::getNewExceptionInstance( |
65
|
|
|
self::WRONG_BOOLEAN_NODE_OPERATOR, |
66
|
|
|
[$operator] |
67
|
|
|
); |
68
|
|
|
|
69
|
|
|
return $exception; |
70
|
|
|
} |
71
|
|
|
} |
72
|
|
|
|