function ThemeUninstallConfirmForm::getQuestion

Same name and namespace in other branches
  1. main core/modules/system/src/Form/ThemeUninstallConfirmForm.php \Drupal\system\Form\ThemeUninstallConfirmForm::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

core/modules/system/src/Form/ThemeUninstallConfirmForm.php, line 46

Class

ThemeUninstallConfirmForm
Builds a confirmation form to uninstall a theme.

Namespace

Drupal\system\Form

Code

public function getQuestion() : TranslatableMarkup {
  if ($this->themeLabel) {
    return $this->t('Uninstall %theme theme', [
      '%theme' => $this->themeLabel,
    ]);
  }
  return $this->t('Uninstall theme');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.