You are here

public function AdminActionConfirm::getQuestion in Calendar Systems 8.2

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/AdminActionConfirm.php, line 58
Contains Drupal\CalendarSystems\Form\AdminSettings.

Class

AdminActionConfirm

Namespace

Drupal\calendar_systems\Form

Code

public function getQuestion() {
  return t('Do you want to delete settings for %id?', [
    '%id' => $this->id,
  ]);
}