public function Schedule::setExecutedTime in Business Rules 8
Same name and namespace in other branches
- 2.x src/Entity/Schedule.php \Drupal\business_rules\Entity\Schedule::setExecutedTime()
1 call to Schedule::setExecutedTime()
- Schedule::setExecuted in src/
Entity/ Schedule.php - Sets the executed status of a Schedule.
File
- src/
Entity/ Schedule.php, line 214
Class
- Schedule
- Defines the Schedule entity.
Namespace
Drupal\business_rules\EntityCode
public function setExecutedTime($timestamp) {
$this
->set('executed', $timestamp);
return $this;
}