public function KanbanLog::getCreatedTime in Content Planner 8
Gets the Kanban Log creation timestamp.
Return value
int Creation timestamp of the Kanban Log.
Overrides KanbanLogInterface::getCreatedTime
File
- modules/
content_kanban/ src/ Entity/ KanbanLog.php, line 88
Class
- KanbanLog
- Defines the Kanban Log entity.
Namespace
Drupal\content_kanban\EntityCode
public function getCreatedTime() {
return $this
->get('created')->value;
}