sminnee/silverstripe-verbosefields

This package is abandoned and no longer maintained. No replacement package was suggested.

Silverstripe admin fields that let you provide more description content

Installs: 205

Dependents: 0

Suggesters: 0

Security: 0

Stars: 6

Watchers: 3

Forks: 3

Open Issues: 3

Type:silverstripe-vendormodule

0.1.0 2020-07-03 01:52 UTC

This package is auto-updated.

Last update: 2024-03-07 11:11:49 UTC


README

This is an addon for Silverstripe CMS that provides some custom field types providing more room to describe the options. It is designed only for use with the admin UI.

Right now, only VerboseOptionsetField is implemented, but I'd welcome contributions of a VerboseCheckboxSetField.

Animated screenshot of the field

Status

Experimental. This module has been freshly rolled out of some project code, and is yet to get its 2nd implementation. If you successfully use this on a project, please let me know!

Usage

First, install the module.

> composer require sminnee/silverstripe-verbosefields

The field is used much like an OptionsetField. setSourceDescriptions() lets you specify a map of HTML descriptions for each item.

use Sminnee\VerboseFields\VerboseOptionsetField;

// ...

function getCMSFields() {
    $fields = parent::getCMSFields();

    $descriptions = [
        'Apple' => '<b>Apple</b><p>A delicious fruit and also a hardware manufacturerer.<p><p><img src="..."></p>',
        'Orange' => '<b>Orange</b><p>A fruit that is usually turned into juice, rendering something somewhat healthy into a healthy-seeming confection.</p>',
        'Pear' => '<b>Pear</b><p>A ripe pear is an excellent choice for when your hands are too clean and need to be stickier.</p>',
    ];

    $source = [
        'Apple' => 'Apple',
        'Orange' => 'Orange',
        'Pear' => 'Pear',
    ];

    $fields->addFieldToTab(
        'Root.Tab',
        (new VerboseOptionsetField('Fruit', 'Fruit'))
            ->setSource($source)
            ->setSourceDescriptions($descriptions);
}

Contribution

Pull requests are loved! Issues are tolerated.