public function RuleSchedule::getInQueue in RNG - Events and Registrations 8
Same name and namespace in other branches
- 8.2 src/Entity/RuleSchedule.php \Drupal\rng\Entity\RuleSchedule::getInQueue()
- 3.x src/Entity/RuleSchedule.php \Drupal\rng\Entity\RuleSchedule::getInQueue()
Get if rule schedule is in queue.
Return value
boolean $in_queue Whether the rule is in the queue for execution.
Overrides RuleScheduleInterface::getInQueue
File
- src/
Entity/ RuleSchedule.php, line 54
Class
- RuleSchedule
- Defines the rule scheduler entity.
Namespace
Drupal\rng\EntityCode
public function getInQueue() {
return $this
->get('in_queue')->value;
}