You are here

public function ContentUploadConfirmForm::getQuestion in GatherContent 8.3

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 ContentConfirmForm::getQuestion

File

src/Form/ContentUploadConfirmForm.php, line 25

Class

ContentUploadConfirmForm
Provides a node deletion confirmation form.

Namespace

Drupal\gathercontent\Form

Code

public function getQuestion() {
  return $this
    ->formatPlural(count($this->nodeIds), 'Confirm upload selection (@count item)', 'Confirm upload selection (@count items)');
}