You are here

public function IdpDeleteForm::getQuestion in SAML Service Provider 4.x

Same name and namespace in other branches
  1. 8.3 src/Form/IdpDeleteForm.php \Drupal\saml_sp\Form\IdpDeleteForm::getQuestion()
  2. 8.2 src/Form/IdpDeleteForm.php \Drupal\saml_sp\Form\IdpDeleteForm::getQuestion()
  3. 3.x src/Form/IdpDeleteForm.php \Drupal\saml_sp\Form\IdpDeleteForm::getQuestion()

Overrides EntityDeleteFormTrait::getQuestion

File

src/Form/IdpDeleteForm.php, line 30

Class

IdpDeleteForm
Provides the user interface for deleting an IdP.

Namespace

Drupal\saml_sp\Form

Code

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