The "/record/commit" route
This route is a gateway for posting form data to the
\TYPO3\
.
You can send data to this file either as GET or POST vars where POST takes precedence. The variable names you can use are:
data
-
- Data type
- array
Data array on the form
[tablename]
.[uid] [fieldname] = value Typically it comes from a POST form which submits a form field like
<input name="data
.[tt_ content] [123] [header]" value="This is the headline">
cmd
-
- Data type
- array
Command array on the form
[tablename]
. This array may get additional data set internally based on clipboard commands send in CB var![uid] [command] = value Typically this comes from GET vars passed to the script like
&cmd
which will delete the content element with UID 123.[tt_ content] [123] [delete]=1
cacheCmd
-
- Data type
- string
Cache command sent to
Data
.Handler->clear_ cache Cmd ()
redirect
-
- Data type
- string
Redirect URL. The script will redirect to this location after performing operations (unless errors has occurred).
flags
-
- Data type
- array
Accepts options to be set in DataHandler object. Currently, it supports "reverseOrder" (boolean).
mirror
-
- Data type
- array
Example:
[mirror]
will look for content in[table] [11] = '22,33' [data]
and copy it to[table] [11] [data]
and[table] [22] [data]
.[table] [33]
CB
-
- Data type
- array
Clipboard command array. May trigger changes in "cmd".
vC
-
- Data type
- string
Verification code.