public function Meeting::getSessionKey in Opigno Moxtra 8
Same name and namespace in other branches
- 3.x 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\EntityCode
public function getSessionKey() {
return $this
->get('session_key')->value;
}