SaveToDatabase finisher
The "SaveToDatabase finisher" saves the data of a submitted form into a database table.
Table of contents
Note
This finisher cannot be used from the backend editor. It can only be inserted directly into the YAML form definition or programmatically.
Important
Finishers are executed in the order defined in your form definition.
Options of the SaveToDatabase finisher
The following options can be set directly in the form definition YAML or programmatically in the options array:
table
-
- Type
- string
- Required
true
Insert or update values into this table.
mode
-
- Type
- string
- Default
'insert'
insert
- will create a new database row with the values from the submitted form and/or some predefined values. See also elements and databaseColumnMappings.
update
- will update a given database row with the values from the submitted form and/or some predefined values. In this case whereClause is required.
whereClause
-
- Type
- array
- Required
true
- Default
[]
This where clause will be used for a database update action.
elements
-
- Type
- array
- Required
true
Use
options.
to map form element values to existing database columns. Each key withinelements options.
has to match with a form element identifier. The value for each key withinelements options.
is an array with additional information.elements
elements.<formElementIdentifier>.mapOnDatabaseColumn
-
- Type
- string
- Required
true
The value from the submitted form element with the identifier
<form
will be written into this database column.Element Identifier>
elements.<formElementIdentifier>.skipIfValueIsEmpty
-
- Type
- bool
- Default
false
Set this to true if the database column should not be written if the value from the submitted form element with the identifier
<form
is empty (e.g. for password fields). Empty means strings without content, whitespace is valid content.Element Identifier>
elements.<formElementIdentifier>.hashed
-
- Type
- bool
- Default
false
Set this to true if the value from the submitted form element should be hashed before writing into the database.
elements.<formElementIdentifier>.saveFileIdentifierInsteadOfUid
-
- Type
- bool
- Default
false
By default, the uid of the FAL object will be written into the database column. Set this to true if you want to store the FAL identifier (e.g.
1:/
) instead.user_ uploads/ some_ uploaded_ pic. jpg This only applies for form elements which create a FAL object like
File
orUpload Image
.Upload
elements.<formElementIdentifier>.dateFormat
-
- Type
- string
- Default
'U'
If the internal datatype is
\Date
(true for the form element typesTime Date
andPicker Date
), the object needs to be converted into a string. This option defines the format of the date. You can use any format accepted by the PHPdate
function. Default is() 'U'
(Unix timestamp).
databaseColumnMappings
-
- Type
- array
- Default
[]
Use this to map database columns to static values. Each key within
options.
has to match an existing database column. The value for each key withindatabase Column Mappings options.
is an array with additional information.database Column Mappings This mapping is done before the elements mapping. If you map both, the value from elements will override the databaseColumnMappings.<databaseColumnName>.value value.
databaseColumnMappings.<databaseColumnName>.value
-
- Type
- string
- Required
true
The value which will be written to the database column. You can also use the FormRuntime accessor feature to access properties from the
Form
, e.g.Runtime {<form
.Element Identifier>}
databaseColumnMappings.<databaseColumnName>.skipIfValueIsEmpty
-
- Type
- bool
- Default
false
Set this to true if the database column should not be written if the value from databaseColumnMappings.<databaseColumnName>.value is empty.
SaveToDatabase finisher in the YAML form definition
This finisher saves the data from a submitted form into a database table.
Usage of the FlashMessage finisher in PHP code
Developers can create a confirmation finisher by using the key Save
:
<?php
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Form\Domain\Finishers\ClosureFinisher;
use TYPO3\CMS\Form\Domain\Model\FormDefinition;
class SomeClass
{
private function addDeleteUploadsFinisherWithMessage(FormDefinition $formDefinition, string $message)
{
$formDefinition->createFinisher('SaveToDatabase', [
'table' => 'fe_users',
'mode' => 'update',
'whereClause' => [
'uid' => 1,
],
'databaseColumnMappings' => [
'pid' => ['value' => 1],
],
'elements' => [
'textfield-identifier-1' => ['mapOnDatabaseColumn' => 'first_name'],
'textfield-identifier-2' => ['mapOnDatabaseColumn' => 'last_name'],
'textfield-identifier-3' => ['mapOnDatabaseColumn' => 'username'],
'advancedpassword-1' => [
'mapOnDatabaseColumn' => 'password',
'skipIfValueIsEmpty' => true,
'hashed' => true
],
],
]);
}
}
This finisher is implemented in
\TYPO3\
.
Multiple database operations
You can write options as an array to perform multiple database operations.
Usage within form definition.
-
identifier: SaveToDatabase
options:
-
table: tx_news_domain_model_news
mode: insert
elements:
my-field:
mapOnDatabaseColumn: bodytext
imageupload-1:
mapOnDatabaseColumn: fal_media
fileupload-1:
mapOnDatabaseColumn: fal_related_files
databaseColumnMappings:
pid:
value: 3
tstamp:
value: '{__currentTimestamp}'
datetime:
value: '{__currentTimestamp}'
crdate:
value: '{__currentTimestamp}'
hidden:
value: 1
-
table: sys_file_reference
mode: insert
elements:
imageupload-1:
mapOnDatabaseColumn: uid_local
skipIfValueIsEmpty: true
databaseColumnMappings:
tablenames:
value: tx_news_domain_model_news
fieldname:
value: fal_media
tstamp:
value: '{__currentTimestamp}'
crdate:
value: '{__currentTimestamp}'
showinpreview:
value: 1
uid_foreign:
value: '{SaveToDatabase.insertedUids.0}'
-
table: sys_file_reference
mode: insert
elements:
fileupload-1:
mapOnDatabaseColumn: uid_local
skipIfValueIsEmpty: true
databaseColumnMappings:
tablenames:
value: tx_news_domain_model_news
fieldname:
value: fal_related_files
tstamp:
value: '{__currentTimestamp}'
crdate:
value: '{__currentTimestamp}'
uid_foreign:
value: '{SaveToDatabase.insertedUids.0}'
-
table: sys_file_reference
mode: update
whereClause:
uid_foreign: '{SaveToDatabase.insertedUids.0}'
uid_local: 0
databaseColumnMappings:
pid:
value: 0
uid_foreign:
value: 0
Usage through code:
<?php
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Form\Domain\Finishers\ClosureFinisher;
use TYPO3\CMS\Form\Domain\Model\FormDefinition;
class SomeClass
{
private function addDeleteUploadsFinisherWithMessage(FormDefinition $formDefinition, string $message)
{
$formDefinition->createFinisher('SaveToDatabase', [
'table' => 'fe_users',
'mode' => 'update',
'whereClause' => [
'uid' => 1,
],
'databaseColumnMappings' => [
'pid' => ['value' => 1],
],
'elements' => [
'textfield-identifier-1' => ['mapOnDatabaseColumn' => 'first_name'],
'textfield-identifier-2' => ['mapOnDatabaseColumn' => 'last_name'],
'textfield-identifier-3' => ['mapOnDatabaseColumn' => 'username'],
'advancedpassword-1' => [
'mapOnDatabaseColumn' => 'password',
'skipIfValueIsEmpty' => true,
'hashed' => true
],
],
]);
}
}
This performs 2 database operations.
One insert and one update.
You can access the inserted UIDs through '{SaveToDatabase.insertedUids.<theArrayKeyNumberWithinOptions>}' If you perform an insert operation, the value of the inserted database row will be stored within the FinisherVariableProvider. <theArrayKeyNumberWithinOptions> references to the numeric options.* key.