Skip to content

Commit fa7985d

Browse files
committed
Add "check" to valid known core column types and numeric config keys
1 parent f8ea4f7 commit fa7985d

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/main/java/com/cedricziel/idea/typo3/util/TCAUtil.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public class TCAUtil {
2424
};
2525

2626
public static final String[] TCA_CORE_TYPES = {
27+
"check",
2728
"flex",
2829
"group",
2930
"imageManipulation",
@@ -52,6 +53,14 @@ public class TCAUtil {
5253
"textTable",
5354
};
5455

56+
public static final String[] TCA_NUMERIC_CONFIG_KEYS = {
57+
"size",
58+
"min",
59+
"max",
60+
"maxitems",
61+
"autoSizeMax",
62+
};
63+
5564
private static final String EXT_LOCALCONF_FILENAME = "ext_localconf.php";
5665

5766
private static final String NODE_FACTORY_CLASS = "TYPO3\\CMS\\Backend\\Form\\NodeFactory";

0 commit comments

Comments
 (0)