You are here

public function Meeting::getTitle in Opigno Moxtra 8

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

Returns the Live Meeting title.

Return value

string|null The Live Meeting title, or NULL in case title field has not been set on the entity.

Overrides MeetingInterface::getTitle

File

src/Entity/Meeting.php, line 98

Class

Meeting
Defines the Workspace entity.

Namespace

Drupal\opigno_moxtra\Entity

Code

public function getTitle() {
  return $this
    ->get('title')->value;
}