public function Meeting::setSessionKey in Opigno Moxtra 8
Same name and namespace in other branches
- 3.x src/Entity/Meeting.php \Drupal\opigno_moxtra\Entity\Meeting::setSessionKey()
Sets the entity's Moxtra session key.
Parameters
string $key: The Moxtra session key.
Return value
$this
Overrides MeetingInterface::setSessionKey
File
- src/
Entity/ Meeting.php, line 135
Class
- Meeting
- Defines the Workspace entity.
Namespace
Drupal\opigno_moxtra\EntityCode
public function setSessionKey($key) {
$this
->set('session_key', $key);
return $this;
}