You are here

public function UserModuleStatus::setFinished in Opigno module 8

Same name and namespace in other branches
  1. 3.x src/Entity/UserModuleStatus.php \Drupal\opigno_module\Entity\UserModuleStatus::setFinished()
1 call to UserModuleStatus::setFinished()
UserModuleStatus::finishAttempt in src/Entity/UserModuleStatus.php
Finish user attempt.

File

src/Entity/UserModuleStatus.php, line 161

Class

UserModuleStatus
Defines the User module status entity.

Namespace

Drupal\opigno_module\Entity

Code

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