public function ILT::setNotifiedMembersIds in Opigno Instructor-led Trainings 8
Same name and namespace in other branches
- 3.x src/Entity/ILT.php \Drupal\opigno_ilt\Entity\ILT::setNotifiedMembersIds()
Sets ids of the recipient for email notification to the ILT.
Parameters
int[] $ids: The users IDs.
Return value
$this
Overrides ILTInterface::setNotifiedMembersIds
File
- src/
Entity/ ILT.php, line 324
Class
- ILT
- Defines the ILT entity.
Namespace
Drupal\opigno_ilt\EntityCode
public function setNotifiedMembersIds(array $ids) {
$this
->set('notified_members', $ids);
return $this;
}