plan2net / form-options-csv
Import CSV data for Core form extension select options
Installs: 178
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 6
Forks: 1
Open Issues: 1
Type:typo3-cms-extension
Requires
- typo3/cms-core: ^8.7 || ^9.5
- typo3/cms-form: *
This package is auto-updated.
Last update: 2023-05-15 18:03:15 UTC
README
Important information
There's currently a core bug in ArrayUtility
which makes an implicit type cast
and therefor no integer or float values are possible as checked/selected default values.
See https://forge.typo3.org/issues/86938 for more information.
So the examples below are only correct after this bug is fixed.
The current result would be that only "Level 4" will get checked/selected as default, because it has a string as value.
What does it do?
The extension adds a new field to the following elements:
- Single select
- Multi select
- Multi checkbox
(all elements where there's a Choices field)
You can insert CSV data (see below for possible format and options) in this field. If you save the element, the CSV data is imported as Choices rows.
(see below for the given data for this result)
Installation
Require via composer
composer require "plan2net/form-options-csv"
and activate the extension through the Extension manager.
Possible values in the import field
1: Label 1;1;1
2: Label 2;2
3: Label 3
4: Label 4;;1
5: "Label with ; works too";5;1
- Label is set to 'Label 1', value is set to '1' and the option is selected as default
- Label is set to 'Label 2', value is set to '2'
- Label and value are set to 'Label 3'
- Label and value are set to 'Label 4' and the option is set as default
- Escape the label with
""
(CSV standard) and you can use;
in the text too
The import field is cleared after the form element is saved.
For single select values only the first entry with a selected option is set and ignored for all other entries.