You are here

public function AuthLoginNoticeForm::getDescription in Open Social 8.5

Same name and namespace in other branches
  1. 8.9 modules/custom/social_auth_extra/src/Form/AuthLoginNoticeForm.php \Drupal\social_auth_extra\Form\AuthLoginNoticeForm::getDescription()
  2. 8 modules/custom/social_auth_extra/src/Form/AuthLoginNoticeForm.php \Drupal\social_auth_extra\Form\AuthLoginNoticeForm::getDescription()
  3. 8.2 modules/custom/social_auth_extra/src/Form/AuthLoginNoticeForm.php \Drupal\social_auth_extra\Form\AuthLoginNoticeForm::getDescription()
  4. 8.3 modules/custom/social_auth_extra/src/Form/AuthLoginNoticeForm.php \Drupal\social_auth_extra\Form\AuthLoginNoticeForm::getDescription()
  5. 8.4 modules/custom/social_auth_extra/src/Form/AuthLoginNoticeForm.php \Drupal\social_auth_extra\Form\AuthLoginNoticeForm::getDescription()
  6. 8.6 modules/custom/social_auth_extra/src/Form/AuthLoginNoticeForm.php \Drupal\social_auth_extra\Form\AuthLoginNoticeForm::getDescription()
  7. 8.7 modules/custom/social_auth_extra/src/Form/AuthLoginNoticeForm.php \Drupal\social_auth_extra\Form\AuthLoginNoticeForm::getDescription()
  8. 8.8 modules/custom/social_auth_extra/src/Form/AuthLoginNoticeForm.php \Drupal\social_auth_extra\Form\AuthLoginNoticeForm::getDescription()

Returns additional text to display as a description.

Return value

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

Overrides ConfirmFormBase::getDescription

File

modules/custom/social_auth_extra/src/Form/AuthLoginNoticeForm.php, line 47

Class

AuthLoginNoticeForm
Class AuthLoginNoticeForm.

Namespace

Drupal\social_auth_extra\Form

Code

public function getDescription() {
  return $this
    ->t('There is no account connected to this @network account. You can create new account.', [
    '@network' => $this->socialNetwork['social_network'],
  ]);
}