function WorkspacePublishForm::getQuestion

Same name in this branch
  1. 11.x core/modules/workspaces/src/Form/WorkspacePublishForm.php \Drupal\workspaces\Form\WorkspacePublishForm::getQuestion()
Same name and namespace in other branches
  1. 10 core/modules/workspaces/src/Form/WorkspacePublishForm.php \Drupal\workspaces\Form\WorkspacePublishForm::getQuestion()
  2. 9 core/modules/workspaces/src/Form/WorkspacePublishForm.php \Drupal\workspaces\Form\WorkspacePublishForm::getQuestion()
  3. main core/modules/workspaces_ui/src/Form/WorkspacePublishForm.php \Drupal\workspaces_ui\Form\WorkspacePublishForm::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/workspaces_ui/src/Form/WorkspacePublishForm.php, line 122

Class

WorkspacePublishForm
Provides the workspace publishing form.

Namespace

Drupal\workspaces_ui\Form

Code

public function getQuestion() {
  return $this->t('Would you like to publish the contents of the %label workspace?', [
    '%label' => $this->workspace
      ->label(),
  ]);
}

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