You are here

public function ServiceEndpointDeleteForm::getQuestion in Services 9.0.x

Same name and namespace in other branches
  1. 8.4 src/Form/ServiceEndpointDeleteForm.php \Drupal\services\Form\ServiceEndpointDeleteForm::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/ServiceEndpointDeleteForm.php, line 16

Class

ServiceEndpointDeleteForm
Builds the form to delete service endpoint entities.

Namespace

Drupal\services\Form

Code

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