more_fields-2.2.19/src/Plugin/Field/FieldWidget/ChartWidgetType.php
src/Plugin/Field/FieldWidget/ChartWidgetType.php
<?php
namespace Drupal\more_fields\Plugin\Field\FieldWidget;
use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Field\WidgetBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Field\Annotation\FieldWidget;
use Drupal\Core\Annotation\Translation;
/**
* Plugin implementation of the 'more_fields_chart_widget_type' widget.
*
* @FieldWidget(
* id = "more_fields_chart_widget_type",
* module = "more_fields",
* label = @Translation("Chart widget type"),
* field_types = {
* "more_fields_chart_field_type"
* }
* )
*/
class ChartWidgetType extends WidgetBase {
/**
*
* {@inheritdoc}
*/
public static function defaultSettings() {
return [
'label_1' => "Label",
'label_2' => "Niveau",
'label_3' => "Color"
] + parent::defaultSettings();
}
/**
*
* {@inheritdoc}
*/
public function settingsForm(array $form, FormStateInterface $form_state) {
$elements = [];
$elements['label_1'] = [
'#type' => 'textfield',
'#title' => t('label 1'),
'#default_value' => $this->getSetting('label_1')
];
$elements['label_2'] = [
'#type' => 'textfield',
'#title' => t('label 2'),
'#default_value' => $this->getSetting('label_2')
];
$elements['label_3'] = [
'#type' => 'textfield',
'#title' => t('label 3'),
'#default_value' => $this->getSetting('label_3')
];
return $elements;
}
/**
*
* {@inheritdoc}
*/
public function settingsSummary() {
$summary = [];
return $summary;
}
/**
*
* {@inheritdoc}
*/
public function formElement(FieldItemListInterface $items, $delta, array $element, array &$form, FormStateInterface $form_state) {
$elements = [];
if (!empty($element['#title_display']))
unset($element['#title_display']);
$elements['value'] = [
'#title' => $this->t('Value'),
'#type' => 'number',
'#default_value' => isset($items[$delta]->value) ? $items[$delta]->value : NULL
] + $element;
//
$elements['color'] = [
'#title' => $this->t('Color'),
'#type' => 'color',
'#default_value' => isset($items[$delta]->color) ? $items[$delta]->color : NULL
] + $element;
//
$elements['label'] = [
'#title' => $this->t('Label'),
'#type' => 'textfield',
'#default_value' => isset($items[$delta]->label) ? $items[$delta]->label : NULL
] + $element;
return $elements;
}
}
