You are here

public function Schedule::getCreatedTime in Business Rules 2.x

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

Gets the Schedule creation timestamp.

Return value

int Creation timestamp of the Schedule.

Overrides ScheduleInterface::getCreatedTime

File

src/Entity/Schedule.php, line 163

Class

Schedule
Defines the Schedule entity.

Namespace

Drupal\business_rules\Entity

Code

public function getCreatedTime() {
  return $this
    ->get('created')->value;
}