public function Meeting::getMembers in Opigno Moxtra 8
Same name and namespace in other branches
- 3.x 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\EntityCode
public function getMembers() {
$ids = $this
->getMembersIds();
return User::loadMultiple($ids);
}