You are here

public function BBBNodeTypeDeleteForm::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/BBBNodeTypeDeleteForm.php, line 17

Class

BBBNodeTypeDeleteForm
Provides an administration settings form.

Namespace

Drupal\bbb_node\Form

Code

public function getQuestion() {
  return $this
    ->t('Do you want to remove the BigBlueButton settings for %name?', array(
    '%name' => $this->entity
      ->label(),
  ));
}