Contribution Date
Technology
Contribution Project
Contribution Details
Since color_field option is not available, try creating a select list of list colors. Adding example code:
$form['background_color'] = [
'#type' => 'select',
'#title' => $this->t('Background Color'),
'#options' => [
'black' => $this->t('Black'),
'white' => $this->t('White'),
'grey' => $this->t('Grey'),
],
'#default_value' => $this->configuration['background_color'] ?? "black",
];
Contribution Issue Link
Files count
0
Patches count
0