function ThemeUninstallConfirmForm::getQuestion

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