You are here

public function RenameForm::getQuestion in Filebrowser 3.x

Same name and namespace in other branches
  1. 8.2 src/Form/RenameForm.php \Drupal\filebrowser\Form\RenameForm::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/RenameForm.php, line 114

Class

RenameForm

Namespace

Drupal\filebrowser\Form

Code

public function getQuestion() {
  return $this
    ->t('Rename selected items ...');
}