Kernel::System::DynamicField::Driver::Role::Behavior::SupportsColorValues

NAME

Kernel::System::DynamicField::Driver::Role::Behavior::SupportsColorValues – Role for dynamic field drivers to add color information to its values.

PossibleValuesExtended()

Holds the possible values for the field extended with the selected color.

    my $PossibleValuesExtended = $Self->PossibleValuesExtended();

returns

    $PossibleValuesExtended = [
        'key-1' => {
            Value => 'Label 1',
            Color => '#333333'
        },
    ];

HasColorValues()

Holds whether the field has activated color values.

Scroll to Top