public function Multiple::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
1 method overrides Multiple::hasAutomatedSubqueues()
- SmartQueue::hasAutomatedSubqueues in modules/
entityqueue_smartqueue/ src/ Plugin/ EntityQueueHandler/ SmartQueue.php - Whether or not the handler contains subqueues with an automated lifecycle.
File
- src/
Plugin/ EntityQueueHandler/ Multiple.php, line 70
Class
- Multiple
- Defines an entity queue handler that manages multiple subqueues.
Namespace
Drupal\entityqueue\Plugin\EntityQueueHandlerCode
public function hasAutomatedSubqueues() {
return FALSE;
}