You are here

public function Meeting::setTitle in Opigno Moxtra 8

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

Sets the Live Meeting title.

Parameters

string $title: The Live Meeting title.

Return value

$this

Overrides MeetingInterface::setTitle

File

src/Entity/Meeting.php, line 105

Class

Meeting
Defines the Workspace entity.

Namespace

Drupal\opigno_moxtra\Entity

Code

public function setTitle($title) {
  $this
    ->set('title', $title);
  return $this;
}