abstract class EntityQueueHandlerBase in Entityqueue 8
Base class for EntityQueueHandler plugins.
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\entityqueue\EntityQueueHandlerBase implements EntityQueueHandlerInterface uses DependencySerializationTrait, StringTranslationTrait
Expanded class hierarchy of EntityQueueHandlerBase
3 files declare their use of EntityQueueHandlerBase
- Multiple.php in src/
Plugin/ EntityQueueHandler/ Multiple.php - Simple.php in src/
Plugin/ EntityQueueHandler/ Simple.php - Test.php in tests/
modules/ entityqueue_test/ src/ Plugin/ EntityQueueHandler/ Test.php
File
- src/
EntityQueueHandlerBase.php, line 15
Namespace
Drupal\entityqueueView source
abstract class EntityQueueHandlerBase extends PluginBase implements EntityQueueHandlerInterface {
use DependencySerializationTrait;
use StringTranslationTrait;
/**
* The entity queue that is using this plugin.
*
* @var \Drupal\entityqueue\EntityQueueInterface
*/
protected $queue;
/**
* {@inheritdoc}
*/
public function __construct(array $configuration, $plugin_id, array $plugin_definition) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this
->setConfiguration($configuration);
}
/**
* {@inheritdoc}
*/
public function getConfiguration() {
return $this->configuration;
}
/**
* {@inheritdoc}
*/
public function setConfiguration(array $configuration) {
$this->configuration = NestedArray::mergeDeep($this
->defaultConfiguration(), $configuration);
}
/**
* {@inheritdoc}
*/
public function defaultConfiguration() {
return [];
}
/**
* {@inheritdoc}
*/
public function calculateDependencies() {
return [];
}
/**
* {@inheritdoc}
*/
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
return $form;
}
/**
* {@inheritdoc}
*/
public function validateConfigurationForm(array &$form, FormStateInterface $form_state) {
// Override this.
}
/**
* {@inheritdoc}
*/
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
// Override this.
}
/**
* {@inheritdoc}
*/
public function setQueue(EntityQueueInterface $queue) {
$this->queue = $queue;
return $this;
}
/**
* {@inheritdoc}
*/
public function getQueueListBuilderOperations() {
// Add an operation to list all subqueues by default.
$operations['view_subqueues'] = [
'title' => $this
->t('View subqueues'),
'weight' => -9,
'url' => $this->queue
->toUrl('subqueue-list'),
];
return $operations;
}
/**
* {@inheritdoc}
*/
public function onQueuePreSave(EntityQueueInterface $queue, EntityStorageInterface $storage) {
}
/**
* {@inheritdoc}
*/
public function onQueuePostSave(EntityQueueInterface $queue, EntityStorageInterface $storage, $update = TRUE) {
}
/**
* {@inheritdoc}
*/
public function onQueuePreDelete(EntityQueueInterface $queue, EntityStorageInterface $storage) {
}
/**
* {@inheritdoc}
*/
public function onQueuePostDelete(EntityQueueInterface $queue, EntityStorageInterface $storage) {
}
/**
* {@inheritdoc}
*/
public function onQueuePostLoad(EntityQueueInterface $queue, EntityStorageInterface $storage) {
}
}
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 | |
EntityQueueHandlerBase:: |
protected | property | The entity queue that is using this plugin. | |
EntityQueueHandlerBase:: |
public | function |
Form constructor. Overrides PluginFormInterface:: |
2 |
EntityQueueHandlerBase:: |
public | function |
Calculates dependencies for the configured plugin. Overrides DependentPluginInterface:: |
|
EntityQueueHandlerBase:: |
public | function |
Gets default configuration for this plugin. Overrides ConfigurableInterface:: |
2 |
EntityQueueHandlerBase:: |
public | function |
Gets this plugin's configuration. Overrides ConfigurableInterface:: |
|
EntityQueueHandlerBase:: |
public | function |
Gets this queue handler's list builder operations. Overrides EntityQueueHandlerInterface:: |
1 |
EntityQueueHandlerBase:: |
public | function |
Acts on deleted entity queues before the delete hook is invoked. Overrides EntityQueueHandlerInterface:: |
2 |
EntityQueueHandlerBase:: |
public | function |
Acts on loaded entity queues. Overrides EntityQueueHandlerInterface:: |
|
EntityQueueHandlerBase:: |
public | function |
Acts on an entity queue before the insert or update hook is invoked. Overrides EntityQueueHandlerInterface:: |
2 |
EntityQueueHandlerBase:: |
public | function |
Acts on entity queues before they are deleted and before hooks are invoked. Overrides EntityQueueHandlerInterface:: |
|
EntityQueueHandlerBase:: |
public | function |
Acts on an entity queue before the presave hook is invoked. Overrides EntityQueueHandlerInterface:: |
|
EntityQueueHandlerBase:: |
public | function |
Sets the configuration for this plugin instance. Overrides ConfigurableInterface:: |
|
EntityQueueHandlerBase:: |
public | function |
Sets the entity queue that is using this plugin. Overrides EntityQueueHandlerInterface:: |
|
EntityQueueHandlerBase:: |
public | function |
Form submission handler. Overrides PluginFormInterface:: |
2 |
EntityQueueHandlerBase:: |
public | function |
Form validation handler. Overrides PluginFormInterface:: |
1 |
EntityQueueHandlerBase:: |
public | function |
Constructs a \Drupal\Component\Plugin\PluginBase object. Overrides PluginBase:: |
2 |
EntityQueueHandlerInterface:: |
public | function | Whether or not the handler contains subqueues with an automated lifecycle. | 3 |
EntityQueueHandlerInterface:: |
public | function | Whether or not the handler supports multiple subqueues. | 3 |
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. | |
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. |