You are here

public function GoogleApiClientDeleteForm::getDescription in Google API PHP Client 8.3

Same name and namespace in other branches
  1. 8.4 src/Form/GoogleApiClientDeleteForm.php \Drupal\google_api_client\Form\GoogleApiClientDeleteForm::getDescription()
  2. 8.2 src/Form/GoogleApiClientDeleteForm.php \Drupal\google_api_client\Form\GoogleApiClientDeleteForm::getDescription()

Returns additional text to display as a description.

Return value

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

Overrides ContentEntityConfirmFormBase::getDescription

File

src/Form/GoogleApiClientDeleteForm.php, line 26

Class

GoogleApiClientDeleteForm
Provides a form for deleting a google_api_client entity.

Namespace

Drupal\google_api_client\Form

Code

public function getDescription() {
  return $this
    ->t("This account will be deleted from the system and won't be available");
}