You are here

public function RuleSchedule::getInQueue in RNG - Events and Registrations 3.x

Same name and namespace in other branches
  1. 8.2 src/Entity/RuleSchedule.php \Drupal\rng\Entity\RuleSchedule::getInQueue()
  2. 8 src/Entity/RuleSchedule.php \Drupal\rng\Entity\RuleSchedule::getInQueue()

Get if rule schedule is in queue.

Return value

bool Whether the rule is in the queue for execution.

Overrides RuleScheduleInterface::getInQueue

File

src/Entity/RuleSchedule.php, line 53

Class

RuleSchedule
Defines the rule scheduler entity.

Namespace

Drupal\rng\Entity

Code

public function getInQueue() {
  return $this
    ->get('in_queue')->value;
}