You are here

public function Simple::hasAutomatedSubqueues in Entityqueue 8

Whether or not the handler contains subqueues with an automated lifecycle.

For example, this property controls whether the title of subqueues can be edited, or if they can be created or deleted through the UI or API calls.

Return value

bool

Overrides EntityQueueHandlerInterface::hasAutomatedSubqueues

File

src/Plugin/EntityQueueHandler/Simple.php, line 86

Class

Simple
Defines an entity queue handler that manages a single subqueue.

Namespace

Drupal\entityqueue\Plugin\EntityQueueHandler

Code

public function hasAutomatedSubqueues() {
  return TRUE;
}