You are here

public function NodeMeeting::get in BigBlueButton 8

Return a meeting object.

Parameters

\Drupal\node\NodeInterface $node: Node instance.

\Drupal\Core\Session\AccountInterface|null $account: User instance.

bool $cached: Flag of returning cached results.

Return value

array Meeting info.

File

modules/bbb_node/src/Service/NodeMeeting.php, line 106

Class

NodeMeeting
Class NodeMeeting.

Namespace

Drupal\bbb_node\Service

Code

public function get(NodeInterface $node, $account = NULL, $cached = TRUE) {
  return $this->meetingApi
    ->get($node
    ->uuid(), $account, $cached);
}