constSQL_FORM_ELEMENT_SPECIFIC_CONTAINER="SELECT *, ? AS 'nestedInFieldSet' FROM FormElement AS fe WHERE fe.formId = ? AND fe.deleted = 'no' AND FIND_IN_SET(fe.class, ? ) AND fe.feIdContainer = ? AND fe.enabled='yes' ORDER BY fe.ord, fe.id";
constSQL_FORM_ELEMENT_ALL_CONTAINER="SELECT *, ? AS 'nestedInFieldSet' FROM FormElement AS fe WHERE fe.formId = ? AND fe.deleted = 'no' AND FIND_IN_SET(fe.class, ? ) AND fe.enabled='yes' ORDER BY fe.ord, fe.id";
constSTORE_TABLE_COLUMN_TYPES="M";// column types of primary table.
constSTORE_CLIENT="C";// Client: POST variable, if not found: GET variable
constSTORE_TYPO3="T";// Typo3 > Page content record > bodytext
constSTORE_VAR="V";// Generic Vars
constSTORE_ZERO="0";// value: 0, might helpfull if variable is empty but used in an SQL statement, which might produce a SQL error otherwise if substituted with an empty string
constSTORE_EMPTY="E";// value: '', might helpfull if variable is not defined and should result in an empty string instead of {{...}} (cause not replaced)
constSTORE_SYSTEM="Y";// various system values like db connection credentials