You are here

public function WorkspacePublishForm::getQuestion in Drupal 10

Same name and namespace in other branches
  1. 9 core/modules/workspaces/src/Form/WorkspacePublishForm.php \Drupal\workspaces\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/src/Form/WorkspacePublishForm.php, line 119

Class

WorkspacePublishForm
Provides the workspace publishing form.

Namespace

Drupal\workspaces\Form

Code

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