You are here

function hybridauth_fields_list in HybridAuth Social Login 7.2

Same name and namespace in other branches
  1. 6.2 hybridauth.module \hybridauth_fields_list()

Returns HybridAuth fields.

4 calls to hybridauth_fields_list()
hybridauth_additional_info_form in ./hybridauth.pages.inc
hybridauth_tokens in ./hybridauth.tokens.inc
Implements hook_tokens().
hybridauth_token_info in ./hybridauth.tokens.inc
Implements hook_token_info().
_hybridauth_ulogin_data_convert in hybridauth_ulogin/hybridauth_ulogin.admin.inc

File

./hybridauth.module, line 780
Main file for the HybridAuth module.

Code

function hybridauth_fields_list() {
  return array(
    'provider' => t('Authentication provider'),
    'identifier' => t('UID'),
    'profileURL' => t('Profile URL'),
    'webSiteURL' => t('Website URL'),
    'photoURL' => t('Photo URL'),
    'displayName' => t('Nickname'),
    'description' => t('Short bio or about me'),
    'firstName' => t('First name'),
    'lastName' => t('Last name'),
    'gender' => t('Gender'),
    'language' => t('Language'),
    'age' => t('Age'),
    'birthDay' => t('Birth day'),
    'birthMonth' => t('Birth month'),
    'birthYear' => t('Birth year'),
    'email' => t('E-mail address'),
    'emailVerified' => t('Verified email address'),
    'phone' => t('Phone number'),
    'address' => t('Address'),
    'country' => t('Country'),
    'region' => t('State or region'),
    'city' => t('City'),
    'zip' => t('Postal code or zipcode'),
  );
}