You are here

public function JsonapiResourceConfigDeleteForm::getQuestion in JSON:API Extras 8.2

Same name and namespace in other branches
  1. 8.3 src/Form/JsonapiResourceConfigDeleteForm.php \Drupal\jsonapi_extras\Form\JsonapiResourceConfigDeleteForm::getQuestion()
  2. 8 src/Form/JsonapiResourceConfigDeleteForm.php \Drupal\jsonapi_extras\Form\JsonapiResourceConfigDeleteForm::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/JsonapiResourceConfigDeleteForm.php, line 17

Class

JsonapiResourceConfigDeleteForm
Builds the form to delete JSON API Resource Config entities.

Namespace

Drupal\jsonapi_extras\Form

Code

public function getQuestion() {
  return $this
    ->t('Are you sure you want to revert %id to default?', [
    '%id' => $this->entity
      ->id(),
  ]);
}