You are here

public function ScopeDeleteConfirmForm::getDescription in OAuth2 Server 2.0.x

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

Returns additional text to display as a description.

Return value

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

Overrides EntityConfirmFormBase::getDescription

File

src/Form/ScopeDeleteConfirmForm.php, line 26

Class

ScopeDeleteConfirmForm
Class Scope Delete Confirm Form.

Namespace

Drupal\oauth2_server\Form

Code

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