You are here

public function EntityExtraFieldFormDelete::getQuestion in Entity Extra Field 2.0.x

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

Class

EntityExtraFieldFormDelete
Define entity extra form delete.

Namespace

Drupal\entity_extra_field\Form

Code

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