You are here

public function ImceProfileDeleteForm::getQuestion in IMCE 8.2

Same name and namespace in other branches
  1. 8 src/Form/ImceProfileDeleteForm.php \Drupal\imce\Form\ImceProfileDeleteForm::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/ImceProfileDeleteForm.php, line 17

Class

ImceProfileDeleteForm
Provides a deletion confirmation form for Imce Profile.

Namespace

Drupal\imce\Form

Code

public function getQuestion() {
  return $this
    ->t('Are you sure you want to delete the profile %name?', [
    '%name' => $this->entity
      ->label(),
  ]);
}