You are here

public function Schedule::isExecuted in Business Rules 8

Same name and namespace in other branches
  1. 2.x src/Entity/Schedule.php \Drupal\business_rules\Entity\Schedule::isExecuted()

Returns the Schedule executed status indicator.

Return value

bool TRUE if the Schedule was executed.

Overrides ScheduleInterface::isExecuted

File

src/Entity/Schedule.php, line 75

Class

Schedule
Defines the Schedule entity.

Namespace

Drupal\business_rules\Entity

Code

public function isExecuted() {
  return (bool) $this
    ->getEntityKey('status');
}