You are here

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

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

Returns members of the meeting.

Return value

\Drupal\user\Entity\User[] Array of users.

Overrides MeetingInterface::getMembers

File

src/Entity/Meeting.php, line 270

Class

Meeting
Defines the Workspace entity.

Namespace

Drupal\opigno_moxtra\Entity

Code

public function getMembers() {
  $ids = $this
    ->getMembersIds();
  return User::loadMultiple($ids);
}