You are here

public function MeetingDeleteForm::getQuestion in Opigno Moxtra 8

Same name and namespace in other branches
  1. 3.x src/Form/MeetingDeleteForm.php \Drupal\opigno_moxtra\Form\MeetingDeleteForm::getQuestion()

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

src/Form/MeetingDeleteForm.php, line 86

Class

MeetingDeleteForm
Provides a form for deleting a opigno_moxtra_meeting entity.

Namespace

Drupal\opigno_moxtra\Form

Code

public function getQuestion() {
  return $this
    ->t('Are you sure you want to delete the %meeting Live Meeting?', [
    '%meeting' => $this->entity
      ->label(),
  ]);
}