mvo/contao-group-widget

Adds a new group widget that allows repeating a set of DCA fields.

Installs: 42 554

Dependents: 10

Suggesters: 1

Security: 0

Stars: 24

Watchers: 5

Forks: 8

Open Issues: 12

Type:contao-bundle

v1.5.6 2024-01-31 14:03 UTC

README

Latest version on packagist

This Contao CMS extension provides an input type group that allows repeatable groups of fields in the backend. The resulting data is either stored as a serialized array or in a custom entity relationship (ORM).

Design decisions / Limitations

The group element widgets are still 'first class citizens' of the respective DCA. Only their definition will be made on the fly. This way we're not messing with the act of rendering and state of the displayed child widgets. As a result, adding new elements via the plus button will submit the current DCA form to add the new element.

Visual reordering of elements is done via the CSS order property. This way iframes can be kept alive (the DOM won't change) which is especially helpful when dealing with components like the tinyMCE rich text editor.

Documentation

TLDR;

Just give me an example, ok?

$GLOBALS['TL_DCA']['tl_content']['fields']['my_group'] = [
    'inputType' => 'group',
    'palette' => ['amount', 'singleSRC', 'text'],   
    'fields' => [
        'amount' => [ // additional field, defined inline
            'inputType' => 'text',
            'eval' => ['tl_class' => 'w50'],
        ],
        '&singleSRC' => [ // let's change some properties of the existing field
            'eval' => ['mandatory' => false],
        ]   
    ],   
    
    // force at least 1, at max 5 elements
    'min' => 1,
    'max' => 5,
    
    // disable ordering (on by default)
    'order' => false,
    
    // store serialized into a blob (default storage backend)
    'sql' => [
        'type' => 'blob',
        'length' => \Doctrine\DBAL\Platforms\MySqlPlatform::LENGTH_LIMIT_BLOB,
        'notnull' => false,
    ],
];