public function MeetingController::title in Opigno Moxtra 3.x
Same name and namespace in other branches
- 8 src/Controller/MeetingController.php \Drupal\opigno_moxtra\Controller\MeetingController::title()
Returns title for the live meeting.
Parameters
\Drupal\opigno_moxtra\MeetingInterface $opigno_moxtra_meeting: The Live Meeting.
Return value
string Meeting title.
1 string reference to 'MeetingController::title'
File
- src/
Controller/ MeetingController.php, line 344
Class
- MeetingController
- Class MeetingController.
Namespace
Drupal\opigno_moxtra\ControllerCode
public function title(MeetingInterface $opigno_moxtra_meeting) {
return $opigno_moxtra_meeting
->getTitle();
}