class DummyWidget in Entity Browser 8
Same name and namespace in other branches
- 8.2 tests/modules/entity_browser_test/src/Plugin/EntityBrowser/Widget/DummyWidget.php \Drupal\entity_browser_test\Plugin\EntityBrowser\Widget\DummyWidget
Dummy widget implementation for test purposes.
Plugin annotation
@EntityBrowserWidget(
id = "dummy",
label = @Translation("Dummy widget"),
description = @Translation("Dummy widget existing for testing purposes."),
auto_select = FALSE
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\entity_browser\WidgetBase implements ContainerFactoryPluginInterface, WidgetInterface uses PluginConfigurationFormTrait
- class \Drupal\entity_browser_test\Plugin\EntityBrowser\Widget\DummyWidget
- class \Drupal\entity_browser\WidgetBase implements ContainerFactoryPluginInterface, WidgetInterface uses PluginConfigurationFormTrait
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of DummyWidget
File
- tests/
modules/ entity_browser_test/ src/ Plugin/ EntityBrowser/ Widget/ DummyWidget.php, line 19
Namespace
Drupal\entity_browser_test\Plugin\EntityBrowser\WidgetView source
class DummyWidget extends WidgetBase {
/**
* Entity to be returned.
*
* @var \Drupal\Core\Entity\EntityInterface
*/
public $entity;
/**
* {@inheritdoc}
*/
public function defaultConfiguration() {
return [
'text' => '',
] + parent::defaultConfiguration();
}
/**
* {@inheritdoc}
*/
public function getForm(array &$original_form, FormStateInterface $form_state, array $additional_widget_parameters) {
return [
'#markup' => $this->configuration['text'],
'#parents' => [],
];
}
/**
* {@inheritdoc}
*/
public function submit(array &$element, array &$form, FormStateInterface $form_state) {
$this
->selectEntities([
$this->entity,
], $form_state);
}
/**
* {@inheritdoc}
*/
protected function prepareEntities(array $form, FormStateInterface $form_state) {
return $form_state
->getValue('dummy_entities', []);
}
/**
* {@inheritdoc}
*/
public function access() {
if (\Drupal::state()
->get('eb_test_dummy_widget_access', TRUE)) {
$access = AccessResult::allowed();
$access
->addCacheContexts([
'eb_dummy',
]);
}
else {
$access = AccessResult::forbidden();
$access
->addCacheContexts([
'eb_dummy',
]);
}
return $access;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
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 | |
DummyWidget:: |
public | property | Entity to be returned. | |
DummyWidget:: |
public | function |
Defines if the widget is visible / accessible in a given context. Overrides WidgetBase:: |
|
DummyWidget:: |
public | function |
Gets default configuration for this plugin. Overrides WidgetBase:: |
|
DummyWidget:: |
public | function |
Returns widget form. Overrides WidgetBase:: |
|
DummyWidget:: |
protected | function |
Prepares the entities without saving them. Overrides WidgetBase:: |
|
DummyWidget:: |
public | function |
Submits form. Overrides WidgetBase:: |
|
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. | |
PluginConfigurationFormTrait:: |
public | function | Implements PluginFormInterface::submitConfigurationForm(). | 3 |
PluginConfigurationFormTrait:: |
public | function | Implements PluginFormInterface::validateConfigurationForm(). | 2 |
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 | Entity type manager service. | |
WidgetBase:: |
protected | property | Event dispatcher service. | |
WidgetBase:: |
protected | property | Plugin id. | |
WidgetBase:: |
protected | property | Plugin label. | |
WidgetBase:: |
protected | property | Plugin uuid. | |
WidgetBase:: |
protected | property | The Widget Validation Manager service. | |
WidgetBase:: |
protected | property | Plugin weight. | |
WidgetBase:: |
public | function |
Implements PluginFormInterface::buildConfigurationForm(). Overrides PluginConfigurationFormTrait:: |
3 |
WidgetBase:: |
public | function |
Calculates dependencies for the configured plugin. Overrides DependentPluginInterface:: |
1 |
WidgetBase:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
3 |
WidgetBase:: |
public | function |
Gets this plugin's configuration. Overrides ConfigurableInterface:: |
|
WidgetBase:: |
public | function |
Returns the widget's weight. Overrides WidgetInterface:: |
|
WidgetBase:: |
protected | function | Allow configuration overrides at runtime based on widget context passed to this widget from the Entity Browser element. | |
WidgetBase:: |
public | function |
Returns the widget id. Overrides WidgetInterface:: |
|
WidgetBase:: |
public | function |
Returns the widget label. Overrides WidgetInterface:: |
|
WidgetBase:: |
public | function |
Returns if widget requires JS commands support by selection display. Overrides WidgetInterface:: |
|
WidgetBase:: |
protected | function | Run widget validators. | |
WidgetBase:: |
protected | function | Dispatches event that informs all subscribers about new selected entities. | |
WidgetBase:: |
public | function |
Sets the configuration for this plugin instance. Overrides ConfigurableInterface:: |
|
WidgetBase:: |
public | function |
Sets the widget's label. Overrides WidgetInterface:: |
|
WidgetBase:: |
public | function |
Sets the widget's weight. Overrides WidgetInterface:: |
|
WidgetBase:: |
public | function |
Returns the widget UUID. Overrides WidgetInterface:: |
|
WidgetBase:: |
public | function |
Validates form. Overrides WidgetInterface:: |
1 |
WidgetBase:: |
public | function |
WidgetBase constructor. Overrides PluginBase:: |
3 |