1 | <?php |
||
22 | class ContextNotFoundException extends FormzException |
||
23 | { |
||
24 | const FORM_CONTEXT_NOT_FOUND = 'The view helper "%s" must be used inside the view helper "%s".'; |
||
25 | |||
26 | const FIELD_CONTEXT_NOT_FOUND = 'The view helper "%s" must be used inside the view helper "%s".'; |
||
27 | |||
28 | /** |
||
29 | * @code 1465243085 |
||
30 | * |
||
31 | * @return ContextNotFoundException |
||
32 | */ |
||
33 | final public static function fieldViewHelperFormContextNotFound() |
||
43 | |||
44 | /** |
||
45 | * @code 1465243287 |
||
46 | * |
||
47 | * @return ContextNotFoundException |
||
48 | */ |
||
49 | final public static function optionViewHelperFieldContextNotFound() |
||
59 | |||
60 | /** |
||
61 | * @code 1488473956 |
||
62 | * |
||
63 | * @return ContextNotFoundException |
||
64 | */ |
||
65 | final public static function renderSlotViewHelperFieldContextNotFound() |
||
75 | |||
76 | /** |
||
77 | * @code 1488474106 |
||
78 | * |
||
79 | * @return ContextNotFoundException |
||
80 | */ |
||
81 | final public static function slotViewHelperFieldContextNotFound() |
||
91 | } |
||
92 |