plan2net/form-options-csv

There is no license information available for the latest version (2.0.0) of this package.

Import CSV data for Core form extension select options

Installs: 199

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 6

Forks: 2

Open Issues: 2

Type:typo3-cms-extension

2.0.0 2024-02-09 15:29 UTC

This package is auto-updated.

Last update: 2024-05-09 15:59:55 UTC


README

What does it do?

The extension adds a new field to the following elements:

  • Single select
  • Multi select
  • Multi checkbox
  • Radio button

(all elements where there's a Choices field)

Backend form

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.

Backend form after import

(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
  1. Label is set to 'Label 1', value is set to '1' and the option is selected as default
  2. Label is set to 'Label 2', value is set to '2'
  3. Label and value are set to 'Label 3'
  4. Label and value are set to 'Label 4' and the option is set as default
  5. 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.

Known issues

  • Doesn't work within fieldset (yet)