You are here

public function WebhookEnableForm::getQuestion in Acquia Content Hub 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

modules/acquia_contenthub_publisher/src/Form/Webhook/WebhookEnableForm.php, line 119

Class

WebhookEnableForm
Class WebhookEnableForm.

Namespace

Drupal\acquia_contenthub_publisher\Form\Webhook

Code

public function getQuestion() {
  return t('Are you sure you want to re-enable webhook %uuid?', [
    '%uuid' => $this->uuid,
  ]);
}