You are here

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

Same name and namespace in other branches
  1. 8 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\Entity

Code

public function setSessionKey($key) {
  $this
    ->set('session_key', $key);
  return $this;
}