You are here

public function Meeting::setMembersIds in Opigno Moxtra 3.x

Same name and namespace in other branches
  1. 8 src/Entity/Meeting.php \Drupal\opigno_moxtra\Entity\Meeting::setMembersIds()

Set members to the meeting.

Parameters

int[] $ids: The users IDs.

Return value

$this

Overrides MeetingInterface::setMembersIds

File

src/Entity/Meeting.php, line 262

Class

Meeting
Defines the Workspace entity.

Namespace

Drupal\opigno_moxtra\Entity

Code

public function setMembersIds($ids) {
  $this
    ->set('members', $ids);
  return $this;
}