knowledge-8.x-1.x-dev/src/Plugin/Field/FieldWidget/RadioWidget.php
src/Plugin/Field/FieldWidget/RadioWidget.php
<?php
namespace Drupal\knowledge\Plugin\Field\FieldWidget;
use Drupal\Core\Field\FieldFilteredMarkup;
use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Field\WidgetBase;
use Drupal\Core\Form\FormStateInterface;
use Symfony\Component\Validator\ConstraintViolationInterface;
/**
* Plugin implementation of the 'nullable_bool' widget.
*
* @FieldWidget(
* id = "nullable_bool",
* label = @Translation("Nullable radio field"),
* field_types = {
* "integer"
* }
* )
*/
class RadioWidget extends WidgetBase {
/**
* {@inheritdoc}
*/
public static function defaultSettings() {
return [
'placeholder' => '',
'no' => '',
'yes' => '',
] + parent::defaultSettings();
}
/**
* {@inheritdoc}
*/
public function settingsForm(array $form, FormStateInterface $form_state) {
$element['placeholder'] = [
'#type' => 'textfield',
'#title' => $this->t('Placeholder'),
'#default_value' => $this->getSetting('placeholder'),
'#description' => $this->t('Text that will be shown inside the field until a value is entered. This hint is usually a sample value or a brief description of the expected format.'),
];
$element['no'] = [
'#type' => 'textfield',
'#title' => $this->t('No'),
'#default_value' => $this->getSetting('no'),
'#description' => $this->t('Text that will be shown for 0 value.'),
];
$element['yes'] = [
'#type' => 'textfield',
'#title' => $this->t('Yes'),
'#default_value' => $this->getSetting('yes'),
'#description' => $this->t('Text that will be shown for 1 value.'),
];
return $element;
}
/**
* {@inheritdoc}
*/
public function settingsSummary() {
$summary = [];
$yes = $this->getSetting('yes');
$yes = strlen($yes) == 0 ? 'Yes' : $yes;
$no = $this->getSetting('no');
$no = strlen($no) == 0 ? 'No' : $no;
$summary[] = $this->t('@yes/@no', ['@yes' => $yes, '@no' => $no]);
return $summary;
}
/**
* {@inheritdoc}
*/
public function formElement(FieldItemListInterface $items, $delta, array $element, array &$form, FormStateInterface $form_state) {
$value = $items[$delta]->value ?? NULL;
$field_settings = $this->getFieldSettings();
$no = $this->getSetting('no');
$no = strlen($no) == 0 ? 'No' : $no;
$yes = $this->getSetting('yes');
$yes = strlen($yes) == 0 ? 'Yes' : $yes;
$options = [
$no,
$yes,
];
$element += [
'#type' => 'radios',
'#default_value' => $value,
'#options' => $options,
];
// Set the step for floating point and decimal numbers.
switch ($this->fieldDefinition->getType()) {
case 'decimal':
$element['#step'] = pow(0.1, $field_settings['scale']);
break;
case 'float':
$element['#step'] = 'any';
break;
}
// Set minimum and maximum.
if (is_numeric($field_settings['min'])) {
$element['#min'] = $field_settings['min'];
}
if (is_numeric($field_settings['max'])) {
$element['#max'] = $field_settings['max'];
}
// Add prefix and suffix.
if ($field_settings['prefix']) {
$prefixes = explode('|', $field_settings['prefix']);
$element['#field_prefix'] = FieldFilteredMarkup::create(array_pop($prefixes));
}
if ($field_settings['suffix']) {
$suffixes = explode('|', $field_settings['suffix']);
$element['#field_suffix'] = FieldFilteredMarkup::create(array_pop($suffixes));
}
return ['value' => $element];
}
/**
* {@inheritdoc}
*/
public function errorElement(array $element, ConstraintViolationInterface $violation, array $form, FormStateInterface $form_state) {
return $element['value'];
}
}
