You are here

public function KanbanLog::setCreatedTime in Content Planner 8

Sets the Kanban Log creation timestamp.

Parameters

int $timestamp: The Kanban Log creation timestamp.

Return value

\Drupal\content_kanban\Entity\KanbanLogInterface The called Kanban Log entity.

Overrides KanbanLogInterface::setCreatedTime

File

modules/content_kanban/src/Entity/KanbanLog.php, line 95

Class

KanbanLog
Defines the Kanban Log entity.

Namespace

Drupal\content_kanban\Entity

Code

public function setCreatedTime($timestamp) {
  $this
    ->set('created', $timestamp);
  return $this;
}