You are here

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

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

Returns members of the meeting that received the email notification.

Return value

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

Overrides MeetingInterface::getNotifiedMembers

File

src/Entity/Meeting.php, line 316

Class

Meeting
Defines the Workspace entity.

Namespace

Drupal\opigno_moxtra\Entity

Code

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