$store
$store : \qfq\Store
Class Qfq
$store : \qfq\Store
$db : \qfq\Database
$eval : \qfq\Evaluate
__construct(array $t3data = array(), $phpUnit = false)
Construct the Form Class and Store too. This is the base initialization moment.
As a result of instantiating of Form, the class Store will initially called the first time and therefore instantiated automatically. Store might throw an exception, in case the URL-passed SIP is invalid.
array | $t3data | |
$phpUnit |
loadFormSpecification(string $mode, string $foundInStore = '') : boolean|string
Load form. Evaluates form. Load FormElements.
After processing: Loaded Form is in $this->formSpec Loaded 'action' FormElements are in $this->feSpecAction Loaded 'native' FormElements are in $this->feSpecNative
string | $mode | FORM_LOAD|FORM_SAVE|FORM_UPDATE |
string | $foundInStore |
if found the formName, else 'false'.
getFormName(string $mode, string $foundInStore = '') : array|boolean|mixed|null|string
Get the formName from STORE_TYPO3 (bodytext), STORE_SIP or by STORE_CLIENT (URL).
FORM_LOAD:
Specified in T3 body text with form=
FORM_SAVE: Specified in SIP
string | $mode | FORM_LOAD|FORM_SAVE|FORM_UPDATE |
string | $foundInStore |
Formname (Form.name) or FALSE, if no formname found.