You are here

public function MeetingResultDeleteForm::getQuestion in Opigno Moxtra 8

Same name and namespace in other branches
  1. 3.x src/Form/MeetingResultDeleteForm.php \Drupal\opigno_moxtra\Form\MeetingResultDeleteForm::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/MeetingResultDeleteForm.php, line 17

Class

MeetingResultDeleteForm
Provides a form for deleting a opigno_moxtra_meeting_result entity.

Namespace

Drupal\opigno_moxtra\Form

Code

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