You are here

public function FlowPullConfirmation::getQuestion in CMS Content Sync 2.1.x

Same name and namespace in other branches
  1. 8 src/Form/FlowPullConfirmation.php \Drupal\cms_content_sync\Form\FlowPullConfirmation::getQuestion()
  2. 2.0.x src/Form/FlowPullConfirmation.php \Drupal\cms_content_sync\Form\FlowPullConfirmation::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

src/Form/FlowPullConfirmation.php, line 121

Class

FlowPullConfirmation
Provides a pool pull all confirmation page.

Namespace

Drupal\cms_content_sync\Form

Code

public function getQuestion() {
  return 'Do you really want to pull all entities from this flow?';
}