You are here

public function Test::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

tests/modules/entityqueue_test/src/Plugin/EntityQueueHandler/Test.php, line 28

Class

Test
Defines an entity queue handler for testing.

Namespace

Drupal\entityqueue_test\Plugin\EntityQueueHandler

Code

public function hasAutomatedSubqueues() {
  return FALSE;
}