You are here

public function GoogleApiServiceClientDeleteForm::getQuestion in Google API PHP Client 8.3

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

Class

GoogleApiServiceClientDeleteForm
Provides a form for deleting a google_api_service_client entity.

Namespace

Drupal\google_api_client\Form

Code

public function getQuestion() {
  return $this
    ->t('Are you sure you want to delete this google service account');
}