public function EntityQueueHandlerBase::defaultConfiguration in Entityqueue 8
Gets default configuration for this plugin.
Return value
array An associative array with the default configuration.
Overrides ConfigurableInterface::defaultConfiguration
2 calls to EntityQueueHandlerBase::defaultConfiguration()
- EntityQueueHandlerBase::setConfiguration in src/
EntityQueueHandlerBase.php - Sets the configuration for this plugin instance.
- SmartQueue::defaultConfiguration in modules/
entityqueue_smartqueue/ src/ Plugin/ EntityQueueHandler/ SmartQueue.php - Gets default configuration for this plugin.
2 methods override EntityQueueHandlerBase::defaultConfiguration()
- SmartQueue::defaultConfiguration in modules/
entityqueue_smartqueue/ src/ Plugin/ EntityQueueHandler/ SmartQueue.php - Gets default configuration for this plugin.
- Test::defaultConfiguration in tests/
modules/ entityqueue_test/ src/ Plugin/ EntityQueueHandler/ Test.php - Gets default configuration for this plugin.
File
- src/
EntityQueueHandlerBase.php, line 52
Class
- EntityQueueHandlerBase
- Base class for EntityQueueHandler plugins.
Namespace
Drupal\entityqueueCode
public function defaultConfiguration() {
return [];
}