You are here

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

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

Returns the entity's Moxtra session key.

Return value

string|null The Moxtra session key, or NULL in case the session key field has not been set on the entity.

Overrides MeetingInterface::getSessionKey

File

src/Entity/Meeting.php, line 128

Class

Meeting
Defines the Workspace entity.

Namespace

Drupal\opigno_moxtra\Entity

Code

public function getSessionKey() {
  return $this
    ->get('session_key')->value;
}