public function Meeting::setNotifiedMembersIds in Opigno Moxtra 8
Same name and namespace in other branches
- 3.x src/Entity/Meeting.php \Drupal\opigno_moxtra\Entity\Meeting::setNotifiedMembersIds()
Set members that received the email notification to the meeting.
Parameters
int[] $ids: The users IDs.
Return value
$this
Overrides MeetingInterface::setNotifiedMembersIds
File
- src/
Entity/ Meeting.php, line 308
Class
- Meeting
- Defines the Workspace entity.
Namespace
Drupal\opigno_moxtra\EntityCode
public function setNotifiedMembersIds($ids) {
$this
->set('notified_members', $ids);
return $this;
}