You are here

public function SmartQueue::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 Multiple::hasAutomatedSubqueues

File

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

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 hasAutomatedSubqueues() {
  return TRUE;
}