class PagerTestWidget in Entity Browser 8
Same name and namespace in other branches
- 8.2 tests/modules/entity_browser_test/src/Plugin/EntityBrowser/Widget/PagerTestWidget.php \Drupal\entity_browser_test\Plugin\EntityBrowser\Widget\PagerTestWidget
Pager test widget implementation for test purposes.
Plugin annotation
@EntityBrowserWidget(
id = "pager_test",
label = @Translation("Pager test widget"),
description = @Translation("Pager test 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\PagerTestWidget
- class \Drupal\entity_browser\WidgetBase implements ContainerFactoryPluginInterface, WidgetInterface uses PluginConfigurationFormTrait
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of PagerTestWidget
File
- tests/
modules/ entity_browser_test/ src/ Plugin/ EntityBrowser/ Widget/ PagerTestWidget.php, line 19
Namespace
Drupal\entity_browser_test\Plugin\EntityBrowser\WidgetView source
class PagerTestWidget extends WidgetBase {
/**
* Entity to be returned.
*
* @var \Drupal\Core\Entity\EntityInterface
*/
public $entity;
/**
* {@inheritdoc}
*/
public function getForm(array &$original_form, FormStateInterface $form_state, array $additional_widget_parameters) {
$form = parent::getForm($original_form, $form_state, $additional_widget_parameters);
$form['message'] = [
'#markup' => $this
->t('Current page reported by the element is: @page.', [
'@page' => EntityBrowserPagerElement::getCurrentPage($form_state),
]),
];
$form['first'] = [
'#type' => 'submit',
'#value' => $this
->t('First page'),
'#submit' => [
[
static::class,
'submitFirst',
],
],
];
$form['last'] = [
'#type' => 'submit',
'#value' => $this
->t('Last page'),
'#submit' => [
[
static::class,
'submitLast',
],
],
];
$form['pager_eb'] = [
'#type' => 'entity_browser_pager',
'#total_pages' => 4,
];
return $form;
}
/**
* Submit callback for first page reset button.
*/
public function submitFirst(array &$form, FormStateInterface $form_state) {
EntityBrowserPagerElement::setCurrentPage($form_state);
$form_state
->setRebuild();
}
/**
* Submit callback for last page reset button.
*/
public function submitLast(array &$form, FormStateInterface $form_state) {
EntityBrowserPagerElement::setCurrentPage($form_state, 4);
$form_state
->setRebuild();
}
/**
* {@inheritdoc}
*/
protected function prepareEntities(array $form, FormStateInterface $form_state) {
}
}
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 | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
PagerTestWidget:: |
public | property | Entity to be returned. | |
PagerTestWidget:: |
public | function |
Returns widget form. Overrides WidgetBase:: |
|
PagerTestWidget:: |
protected | function |
Prepares the entities without saving them. Overrides WidgetBase:: |
|
PagerTestWidget:: |
public | function | Submit callback for first page reset button. | |
PagerTestWidget:: |
public | function | Submit callback for last page reset button. | |
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 |
Defines if the widget is visible / accessible in a given context. Overrides WidgetInterface:: |
3 |
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 default configuration for this plugin. Overrides ConfigurableInterface:: |
4 |
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 |
Submits form. Overrides WidgetInterface:: |
5 |
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 |