We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 084000e commit 4d89b63Copy full SHA for 4d89b63
_tools/studio/application/Classes/Forms/Class/Property.php
@@ -95,12 +95,15 @@ public static function getTypesScope() : array
95
$_constants = (new ReflectionClass( Form_Field::class ))->getConstants();
96
$constants = [];
97
foreach($_constants as $constant=>$value) {
98
-
99
$constants[$value] = 'Form_Field::'.$constant;
100
}
101
102
$types = [];
103
foreach(Factory_Form::getRegisteredFieldTypes() as $type) {
+ if($type==Form_Field::TYPE_CSRF_PROTECTION) {
104
+ continue;
105
+ }
106
+
107
$types[$type] = $constants[$type]??$type;
108
109
0 commit comments