You are here

public function ILT::addMember in Opigno Instructor-led Trainings 8

Same name and namespace in other branches
  1. 3.x src/Entity/ILT.php \Drupal\opigno_ilt\Entity\ILT::addMember()

Adds member to the ILT.

Parameters

int $uid: The user ID.

Return value

$this

Overrides ILTInterface::addMember

File

src/Entity/ILT.php, line 248

Class

ILT
Defines the ILT entity.

Namespace

Drupal\opigno_ilt\Entity

Code

public function addMember($uid) {
  $this
    ->get('members')
    ->appendItem([
    'target_id' => $uid,
  ]);
  return $this;
}