class InlineParagraphsWidget in Paragraphs Sets 8
Plugin definition of the 'entity_reference paragraphs sets' widget.
Plugin annotation
@FieldWidget(
id = "entity_reference_paragraphs_sets",
label = @Translation("Paragraphs sets classic"),
description = @Translation("A paragraphs inline form widget with sets."),
field_types = {
"entity_reference_revisions"
}
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\Core\Field\PluginSettingsBase implements DependentPluginInterface, PluginSettingsInterface
- class \Drupal\Core\Field\WidgetBase implements WidgetInterface, ContainerFactoryPluginInterface uses AllowedTagsXssTrait
- class \Drupal\paragraphs\Plugin\Field\FieldWidget\InlineParagraphsWidget
- class \Drupal\paragraphs_sets\Plugin\Field\FieldWidget\InlineParagraphsWidget
- class \Drupal\paragraphs\Plugin\Field\FieldWidget\InlineParagraphsWidget
- class \Drupal\Core\Field\WidgetBase implements WidgetInterface, ContainerFactoryPluginInterface uses AllowedTagsXssTrait
- class \Drupal\Core\Field\PluginSettingsBase implements DependentPluginInterface, PluginSettingsInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of InlineParagraphsWidget
File
- src/
Plugin/ Field/ FieldWidget/ InlineParagraphsWidget.php, line 26
Namespace
Drupal\paragraphs_sets\Plugin\Field\FieldWidgetView source
class InlineParagraphsWidget extends ParagraphsInlineParagraphsWidget {
/**
* {@inheritdoc}
*/
public function settingsForm(array $form, FormStateInterface $form_state) {
$elements = parent::settingsForm($form, $form_state);
$options = [];
foreach (static::getSets() as $key => $set) {
$options[$key] = $set['label'];
}
$elements['default_paragraph_type']['#title'] = $this
->t('Default paragraph set');
$elements['default_paragraph_type']['#description'] = $this
->t('When creating a new host entity, the selected set of paragraphs are added.');
$elements['default_paragraph_type']['#options'] = $options;
return $elements;
}
/**
* {@inheritdoc}
*/
public function settingsSummary() {
$summary = parent::settingsSummary();
if ($this
->getDefaultParagraphTypeLabelName() !== NULL) {
// Find "Default paragraph type" in summary and replace it.
foreach ($summary as $key => $value) {
if (strpos($value, 'Default paragraph type') !== 0) {
continue;
}
$summary[$key] = $this
->t('Default paragraphs set: @default_paragraph_set', [
'@default_paragraph_set' => $this
->getDefaultParagraphTypeLabelName(),
]);
}
}
return $summary;
}
/**
* {@inheritdoc}
*/
public function formMultipleElements(FieldItemListInterface $items, array &$form, FormStateInterface $form_state) {
$host = $items
->getEntity();
$field_name = $this->fieldDefinition
->getName();
$cardinality = $this->fieldDefinition
->getFieldStorageDefinition()
->getCardinality();
$this->fieldParents = $form['#parents'];
$field_state = static::getWidgetState($this->fieldParents, $field_name, $form_state);
$user_input =& $form_state
->getUserInput();
$max = $field_state['items_count'];
$entity_type_manager = \Drupal::entityTypeManager();
$sets = static::getSets();
$set = isset($field_state['selected_set']) ? $field_state['selected_set'] : NULL;
// Consider adding a default paragraph for new host entities.
if ($max == 0 && $items
->getEntity()
->isNew() && empty($set)) {
$set = $this
->getDefaultParagraphTypeMachineName();
}
if ($set) {
if (isset($field_state['button_type']) && 'set_selection_button' === $field_state['button_type']) {
// Clear all items.
$items
->filter(function () {
return FALSE;
});
// Clear field state.
$field_state['paragraphs'] = [];
// Clear user input.
foreach ($user_input[$field_name] as $key => $value) {
if (!is_numeric($key) || empty($value['subform'])) {
continue;
}
unset($user_input[$field_name][$key]);
}
$max = 0;
}
$target_type = $this
->getFieldSetting('target_type');
$context = [
'set' => $set,
'field' => $this->fieldDefinition,
'form' => $form,
'form_state' => $form_state,
'entity' => $host,
];
foreach ($sets[$set]['paragraphs'] as $key => $info) {
$alter_hooks = [
'paragraphs_set_data',
'paragraphs_set_' . $set . '_data',
'paragraphs_set_' . $set . '_' . $field_name . '_data',
];
$context['key'] = $key;
$context['paragraphs_bundle'] = $info['type'];
$data = $info['data'];
\Drupal::moduleHandler()
->alter($alter_hooks, $data, $context);
$item_values = [
'type' => $info['type'],
] + $data;
$max++;
$paragraphs_entity = $entity_type_manager
->getStorage($target_type)
->create($item_values);
$display = EntityFormDisplay::collectRenderDisplay($paragraphs_entity, $this
->getSetting('form_display_mode'));
$field_state['paragraphs'][$max - 1] = [
'entity' => $paragraphs_entity,
'display' => $display,
'mode' => 'edit',
'original_delta' => $max,
];
}
$field_state['items_count'] = $max;
$field_state['selected_set'] = NULL;
}
$this->realItemCount = $max;
$is_multiple = $this->fieldDefinition
->getFieldStorageDefinition()
->isMultiple();
$title = $this->fieldDefinition
->getLabel();
$description = FieldFilteredMarkup::create(\Drupal::token()
->replace($this->fieldDefinition
->getDescription()));
$elements = [];
$this->fieldIdPrefix = implode('-', array_merge($this->fieldParents, [
$field_name,
]));
$this->fieldWrapperId = Html::getUniqueId($this->fieldIdPrefix . '-add-more-wrapper');
$elements['#prefix'] = '<div id="' . $this->fieldWrapperId . '">';
$elements['#suffix'] = '</div>';
$field_state['ajax_wrapper_id'] = $this->fieldWrapperId;
// Persist the widget state so formElement() can access it.
static::setWidgetState($this->fieldParents, $field_name, $form_state, $field_state);
if ($max > 0) {
for ($delta = 0; $delta < $max; $delta++) {
// Add a new empty item if it doesn't exist yet at this delta.
if (!isset($items[$delta])) {
$items
->appendItem();
}
// For multiple fields, title and description are handled by the
// wrapping table.
$element = [
'#title' => $is_multiple ? '' : $title,
'#description' => $is_multiple ? '' : $description,
'#paragraphs_bundle' => '',
];
$element = $this
->formSingleElement($items, $delta, $element, $form, $form_state);
if ($element) {
$widget_state = static::getWidgetState($element['#field_parents'], $field_name, $form_state);
$element['#paragraphs_bundle'] = $widget_state['paragraphs'][$delta]['entity']
->bundle();
// Input field for the delta (drag-n-drop reordering).
if ($is_multiple) {
// We name the element '_weight' to avoid clashing with elements
// defined by widget.
$element['_weight'] = [
'#type' => 'weight',
'#title' => $this
->t('Weight for row @number', [
'@number' => $delta + 1,
]),
'#title_display' => 'invisible',
// This 'delta' is the FAPI #type 'weight' element's property.
'#delta' => $max,
'#default_value' => $items[$delta]->_weight ?: $delta,
'#weight' => 100,
];
}
// Access for the top element is set to FALSE only when the paragraph
// was removed. A paragraphs that a user can not edit has access on
// lower level.
if (isset($element['#access']) && !$element['#access']) {
$this->realItemCount--;
}
else {
$elements[$delta] = $element;
}
}
}
}
$field_state = static::getWidgetState($this->fieldParents, $field_name, $form_state);
$field_state['real_item_count'] = $this->realItemCount;
$field_state['add_mode'] = $this
->getSetting('add_mode');
$field_state['selected_set'] = NULL;
static::setWidgetState($this->fieldParents, $field_name, $form_state, $field_state);
$elements += [
'#element_validate' => [
[
$this,
'multipleElementValidate',
],
],
'#required' => $this->fieldDefinition
->isRequired(),
'#field_name' => $field_name,
'#cardinality' => $cardinality,
'#max_delta' => $max - 1,
];
if ($this->realItemCount > 0) {
$elements += [
'#theme' => 'field_multiple_value_form__paragraphs_sets',
'#cardinality_multiple' => $is_multiple,
'#title' => $title,
'#description' => $description,
];
}
else {
$classes = $this->fieldDefinition
->isRequired() ? [
'form-required',
] : [];
$elements += [
'#type' => 'container',
'#theme_wrappers' => [
'container',
],
'#cardinality_multiple' => TRUE,
'title' => [
'#type' => 'html_tag',
'#tag' => 'strong',
'#value' => $title,
'#attributes' => [
'class' => $classes,
],
],
'text' => [
'#type' => 'container',
'value' => [
'#markup' => $this
->t('No @title added yet.', [
'@title' => $this
->getSetting('title'),
]),
'#prefix' => '<em>',
'#suffix' => '</em>',
],
],
];
if ($this->fieldDefinition
->isRequired()) {
$elements['title']['#attributes']['class'][] = 'form-required';
}
if ($description) {
$elements['description'] = [
'#type' => 'container',
'value' => [
'#markup' => $description,
],
'#attributes' => [
'class' => [
'description',
],
],
];
}
}
$this
->initIsTranslating($form_state, $host);
$elements['set_selection'] = $this
->buildSelectSetSelection($form_state, $set);
if (($this->realItemCount < $cardinality || $cardinality == FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED) && !$form_state
->isProgrammed() && !$this->isTranslating) {
$elements['add_more'] = $this
->buildAddActions();
}
$elements['#attached']['library'][] = 'paragraphs/drupal.paragraphs.admin';
$elements['#attached']['library'][] = 'paragraphs_sets/drupal.paragraphs_sets.admin';
return $elements;
}
/**
* Builds select element for set selection.
*
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The current state of the form.
* @param string $default
* Current selected set.
*
* @return array
* The form element array.
*/
protected function buildSelectSetSelection(FormStateInterface $form_state, $default = NULL) {
$field_name = $this->fieldDefinition
->getName();
$title = $this->fieldDefinition
->getLabel();
$cardinality = $this->fieldDefinition
->getFieldStorageDefinition()
->getCardinality();
$options = [
'_none' => $this
->t('- None -'),
];
foreach (static::getSets() as $key => $set) {
if ($cardinality !== FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED && count($set['paragraphs']) > $cardinality - $this->realItemCount) {
// Do not add sets having more paragraphs than allowed.
continue;
}
$options[$key] = $set['label'];
}
$selection_elements = [
'#type' => 'container',
'#theme_wrappers' => [
'container',
],
'#attributes' => [
'class' => [
'set-selection-wrapper',
],
],
];
$selection_elements['set_selection_select'] = [
'#type' => 'select',
'#options' => $options,
'#default_value' => $default,
'#title' => $this
->t('@title set', [
'@title' => $this
->getSetting('title'),
]),
'#label_display' => 'hidden',
];
$selection_elements['set_selection_button'] = [
'#type' => 'submit',
'#name' => strtr($this->fieldIdPrefix, '-', '_') . '_set_selection',
'#value' => $this
->t('Select set'),
'#attributes' => [
'class' => [
'field-set-selection-submit',
],
],
'#limit_validation_errors' => [
array_merge($this->fieldParents, [
$field_name,
'set_selection',
]),
],
'#submit' => [
[
get_class($this),
'setSetSubmit',
],
],
'#ajax' => [
'callback' => [
get_class($this),
'setSetAjax',
],
'wrapper' => $this->fieldWrapperId,
'effect' => 'fade',
],
];
$selection_elements['set_selection_button']['#prefix'] = '<div class="paragraphs-set-button paragraphs-set-button-set">';
$selection_elements['set_selection_button']['#suffix'] = $this
->t('for %type', [
'%type' => $title,
]) . '</div>';
if ($this->realItemCount && ($this->realItemCount < $cardinality || $cardinality == FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED) && !$form_state
->isProgrammed() && !$this->isTranslating) {
$selection_elements['append_selection_button'] = [
'#type' => 'submit',
'#name' => strtr($this->fieldIdPrefix, '-', '_') . '_append_selection',
'#value' => $this
->t('Append set'),
'#attributes' => [
'class' => [
'field-append-selection-submit',
],
],
'#limit_validation_errors' => [
array_merge($this->fieldParents, [
$field_name,
'append_selection',
]),
],
'#submit' => [
[
get_class($this),
'setSetSubmit',
],
],
'#ajax' => [
'callback' => [
get_class($this),
'setSetAjax',
],
'wrapper' => $this->fieldWrapperId,
'effect' => 'fade',
],
];
$selection_elements['append_selection_button']['#prefix'] = '<div class="paragraphs-set-button paragraphs-set-button-append">';
$selection_elements['append_selection_button']['#suffix'] = $this
->t('to %type', [
'%type' => $title,
]) . '</div>';
}
return $selection_elements;
}
/**
* {@inheritdoc}
*/
public static function setSetAjax(array $form, FormStateInterface $form_state) {
$button = $form_state
->getTriggeringElement();
// Go one level up in the form, to the widgets container.
$element = NestedArray::getValue($form, array_slice($button['#array_parents'], 0, -2));
return $element;
}
/**
* {@inheritdoc}
*/
public static function setSetSubmit(array $form, FormStateInterface $form_state) {
$button = $form_state
->getTriggeringElement();
// Go one level up in the form, to the widgets container.
$element = NestedArray::getValue($form, array_slice($button['#array_parents'], 0, -2));
$field_name = $element['#field_name'];
$parents = $element['#field_parents'];
$button_type = end($button['#array_parents']);
// Increment the items count.
$widget_state = static::getWidgetState($parents, $field_name, $form_state);
$widget_state['button_type'] = $button_type;
if (isset($button['#set_machine_name'])) {
$widget_state['selected_set'] = $button['#set_machine_name'];
}
else {
$widget_state['selected_set'] = $element['set_selection']['set_selection_select']['#value'];
}
static::setWidgetState($parents, $field_name, $form_state, $widget_state);
$form_state
->setRebuild();
}
/**
* Get the list of all defined sets.
*
* @return array
* List of sets keyed by set ID.
*/
public static function getSets() {
$query = \Drupal::entityQuery('paragraphs_set');
$config_factory = \Drupal::configFactory();
$results = $query
->execute();
$sets = [];
foreach ($results as $id) {
/** @var \Drupal\Core\Config\ImmutableConfig $config */
if ($config = $config_factory
->get("paragraphs_sets.set.{$id}")) {
$sets[$id] = $config
->getRawData();
}
}
return $sets;
}
/**
* Returns the default paragraph type.
*
* @return string
* Label name for default paragraph type.
*/
protected function getDefaultParagraphTypeLabelName() {
if ($this
->getDefaultParagraphTypeMachineName() !== NULL) {
$allowed_types = static::getSets();
return $allowed_types[$this
->getDefaultParagraphTypeMachineName()]['label'];
}
return NULL;
}
/**
* Returns the machine name for default paragraph set.
*
* @return string
* Machine name for default paragraph set.
*/
protected function getDefaultParagraphTypeMachineName() {
$default_type = $this
->getSetting('default_paragraph_type');
$allowed_types = static::getSets();
if ($default_type && isset($allowed_types[$default_type])) {
return $default_type;
}
// Check if the user explicitly selected not to have any default Paragraph
// set. Otherwise, if there is only one set available, that one is the
// default.
if ($default_type === '_none') {
return NULL;
}
if (count($allowed_types) === 1) {
return key($allowed_types);
}
return NULL;
}
/**
* {@inheritdoc}
*/
public function massageFormValues(array $values, array $form, FormStateInterface $form_state) {
$values = array_filter($values, function ($item) {
return !isset($item['set_selection_select']);
});
return parent::massageFormValues($values, $form, $form_state);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AllowedTagsXssTrait:: |
public | function | Returns a list of tags allowed by AllowedTagsXssTrait::fieldFilterXss(). | |
AllowedTagsXssTrait:: |
public | function | Returns a human-readable list of allowed tags for display in help texts. | |
AllowedTagsXssTrait:: |
public | function | Filters an HTML string to prevent XSS vulnerabilities. | |
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
InlineParagraphsWidget:: |
protected | property | Accessible paragraphs types. | |
InlineParagraphsWidget:: |
protected | property | Id to name ajax buttons that includes field parents and field name. | |
InlineParagraphsWidget:: |
protected | property | Parents for the current paragraph. | |
InlineParagraphsWidget:: |
protected | property | Wrapper id to identify the paragraphs. | |
InlineParagraphsWidget:: |
protected | property | Indicates whether the current widget instance is in translation. | |
InlineParagraphsWidget:: |
protected | property | Number of paragraphs item on form. | |
InlineParagraphsWidget:: |
public static | function |
Ajax callback for the "Add another item" button. Overrides WidgetBase:: |
|
InlineParagraphsWidget:: |
public static | function |
Submission handler for the "Add another item" button. Overrides WidgetBase:: |
|
InlineParagraphsWidget:: |
public static | function | After-build callback for adding the translatability clue from the widget. | |
InlineParagraphsWidget:: |
protected | function | Add 'add more' button, if not working with a programmed form. | |
InlineParagraphsWidget:: |
protected | function | Builds dropdown button for adding new paragraph. | |
InlineParagraphsWidget:: |
protected | function | Builds list of actions based on paragraphs type. | |
InlineParagraphsWidget:: |
protected | function | Builds select element for set selection. | |
InlineParagraphsWidget:: |
public static | function |
Defines the default settings for this plugin. Overrides PluginSettingsBase:: |
|
InlineParagraphsWidget:: |
public | function | ||
InlineParagraphsWidget:: |
public | function |
Assigns a field-level validation error to the right widget sub-element. Overrides WidgetBase:: |
|
InlineParagraphsWidget:: |
public | function |
Extracts field values from submitted form values. Overrides WidgetBase:: |
|
InlineParagraphsWidget:: |
public | function |
Creates a form element for a field. Overrides WidgetBase:: |
|
InlineParagraphsWidget:: |
public | function |
Uses a similar approach to populate a new translation. Overrides WidgetInterface:: |
|
InlineParagraphsWidget:: |
public | function |
Special handling to create form elements for multiple values. Overrides InlineParagraphsWidget:: |
|
InlineParagraphsWidget:: |
protected | function | Returns the available paragraphs type. | |
InlineParagraphsWidget:: |
public | function | Returns the sorted allowed types for a entity reference field. | |
InlineParagraphsWidget:: |
protected | function | Gets current language code from the form state or item. | |
InlineParagraphsWidget:: |
protected | function |
Returns the default paragraph type. Overrides InlineParagraphsWidget:: |
|
InlineParagraphsWidget:: |
protected | function |
Returns the machine name for default paragraph set. Overrides InlineParagraphsWidget:: |
|
InlineParagraphsWidget:: |
protected | function | Counts the number of paragraphs in a certain mode in a form substructure. | |
InlineParagraphsWidget:: |
protected | function | Returns the value of a setting for the entity reference selection handler. | |
InlineParagraphsWidget:: |
public static | function | Get the list of all defined sets. | |
InlineParagraphsWidget:: |
protected | function | Initializes the translation form state. | |
InlineParagraphsWidget:: |
public static | function |
Returns if the widget can be used for the provided field. Overrides WidgetBase:: |
|
InlineParagraphsWidget:: |
protected | function | Checks whether a content entity is referenced. | |
InlineParagraphsWidget:: |
public static | function | ||
InlineParagraphsWidget:: |
public | function |
Massages the form values into the format expected for field values. Overrides InlineParagraphsWidget:: |
|
InlineParagraphsWidget:: |
public | function | Special handling to validate form elements with multiple values. | |
InlineParagraphsWidget:: |
public static | function | ||
InlineParagraphsWidget:: |
public static | function | ||
InlineParagraphsWidget:: |
public static | function | ||
InlineParagraphsWidget:: |
public | function |
Returns a form to configure settings for the widget. Overrides InlineParagraphsWidget:: |
|
InlineParagraphsWidget:: |
public | function |
Returns a short summary for the current widget settings. Overrides InlineParagraphsWidget:: |
|
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginSettingsBase:: |
protected | property | Whether default settings have been merged into the current $settings. | |
PluginSettingsBase:: |
protected | property | The plugin settings injected by third party modules. | |
PluginSettingsBase:: |
public | function |
Calculates dependencies for the configured plugin. Overrides DependentPluginInterface:: |
6 |
PluginSettingsBase:: |
public | function |
Returns the value of a setting, or its default value if absent. Overrides PluginSettingsInterface:: |
|
PluginSettingsBase:: |
public | function |
Returns the array of settings, including defaults for missing settings. Overrides PluginSettingsInterface:: |
|
PluginSettingsBase:: |
public | function |
Gets the list of third parties that store information. Overrides ThirdPartySettingsInterface:: |
|
PluginSettingsBase:: |
public | function |
Gets the value of a third-party setting. Overrides ThirdPartySettingsInterface:: |
|
PluginSettingsBase:: |
public | function |
Gets all third-party settings of a given module. Overrides ThirdPartySettingsInterface:: |
|
PluginSettingsBase:: |
protected | function | Merges default settings values into $settings. | |
PluginSettingsBase:: |
public | function |
Informs the plugin that some configuration it depends on will be deleted. Overrides PluginSettingsInterface:: |
3 |
PluginSettingsBase:: |
public | function |
Sets the value of a setting for the plugin. Overrides PluginSettingsInterface:: |
|
PluginSettingsBase:: |
public | function |
Sets the settings for the plugin. Overrides PluginSettingsInterface:: |
|
PluginSettingsBase:: |
public | function |
Sets the value of a third-party setting. Overrides ThirdPartySettingsInterface:: |
|
PluginSettingsBase:: |
public | function |
Unsets a third-party setting. Overrides ThirdPartySettingsInterface:: |
|
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
WidgetBase:: |
protected | property | The field definition. | |
WidgetBase:: |
protected | property |
The widget settings. Overrides PluginSettingsBase:: |
|
WidgetBase:: |
public static | function | After-build handler for field elements in a form. | |
WidgetBase:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
5 |
WidgetBase:: |
public | function |
Reports field-level validation errors against actual form elements. Overrides WidgetBaseInterface:: |
2 |
WidgetBase:: |
protected | function | Generates the form element for a single copy of the widget. | |
WidgetBase:: |
protected | function | Returns the value of a field setting. | |
WidgetBase:: |
protected | function | Returns the array of field settings. | |
WidgetBase:: |
protected | function | Returns the filtered field description. | |
WidgetBase:: |
public static | function |
Retrieves processing information about the widget from $form_state. Overrides WidgetBaseInterface:: |
|
WidgetBase:: |
protected static | function | Returns the location of processing information within $form_state. | |
WidgetBase:: |
protected | function | Returns whether the widget handles multiple values. | |
WidgetBase:: |
protected | function | Returns whether the widget used for default value form. | |
WidgetBase:: |
public static | function |
Stores processing information about the widget in $form_state. Overrides WidgetBaseInterface:: |
|
WidgetBase:: |
public | function |
Constructs a WidgetBase object. Overrides PluginBase:: |
5 |