You are here

public function SmartQueue::defaultConfiguration in Entityqueue 8

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides EntityQueueHandlerBase::defaultConfiguration

File

modules/entityqueue_smartqueue/src/Plugin/EntityQueueHandler/SmartQueue.php, line 79

Class

SmartQueue
Plugin annotation @EntityQueueHandler( id = "smartqueue", title = @Translation("Smart queue"), description = @Translation("Provides automated subqueues for each entity of a given type."), )

Namespace

Drupal\entityqueue_smartqueue\Plugin\EntityQueueHandler

Code

public function defaultConfiguration() {
  return parent::defaultConfiguration() + [
    'entity_type' => '',
    'bundles' => '',
  ];
}