You are here

public function Task::setCreatedTime in General Data Protection Regulation 3.0.x

Same name and namespace in other branches
  1. 8.2 modules/gdpr_tasks/src/Entity/Task.php \Drupal\gdpr_tasks\Entity\Task::setCreatedTime()
  2. 8 modules/gdpr_tasks/src/Entity/Task.php \Drupal\gdpr_tasks\Entity\Task::setCreatedTime()

Sets the Task creation timestamp.

Parameters

int $timestamp: The Task creation timestamp.

Return value

\Drupal\gdpr_tasks\Entity\TaskInterface The called Task entity.

Overrides TaskInterface::setCreatedTime

File

modules/gdpr_tasks/src/Entity/Task.php, line 81

Class

Task
Defines the Task entity.

Namespace

Drupal\gdpr_tasks\Entity

Code

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