You are here

public function ClientDeleteConfirmForm::getDescription in OAuth2 Server 8

Same name and namespace in other branches
  1. 2.0.x src/Form/ClientDeleteConfirmForm.php \Drupal\oauth2_server\Form\ClientDeleteConfirmForm::getDescription()

Returns additional text to display as a description.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The form description.

Overrides EntityConfirmFormBase::getDescription

File

src/Form/ClientDeleteConfirmForm.php, line 26

Class

ClientDeleteConfirmForm
Class Client Delete Confirm Form.

Namespace

Drupal\oauth2_server\Form

Code

public function getDescription() {
  return $this
    ->t('Deleting a client will disable all connectivity to it.');
}