public function EndMeetingConfirmForm::getQuestion in BigBlueButton 8
Returns the question to ask the user.
Return value
\Drupal\Core\StringTranslation\TranslatableMarkup The form question. The page title will be set to this value.
Overrides ConfirmFormInterface::getQuestion
File
- modules/
bbb_node/ src/ Form/ EndMeetingConfirmForm.php, line 44
Class
- EndMeetingConfirmForm
- Provides an administration settings form.
Namespace
Drupal\bbb_node\FormCode
public function getQuestion() {
$node = $this
->getRequest()
->get('node');
return $this
->t('Are you sure you want to terminate the meeting %name?', [
'%name' => $node
->getTitle(),
]);
}