You are here

function _ulogin_fields_list in uLogin (advanced version) 6

Same name and namespace in other branches
  1. 7 ulogin.module \_ulogin_fields_list()
2 calls to _ulogin_fields_list()
ulogin_settings_form in ./ulogin.admin.inc
ulogin_token_list in ./ulogin.tokens.inc
Implements hook_token_list().

File

./ulogin.module, line 322

Code

function _ulogin_fields_list() {
  return array(
    'first_name' => t('First name'),
    'last_name' => t('Last name'),
    'email' => t('Email address'),
    'nickname' => t('Nickname'),
    'bdate' => t('Birthday'),
    'sex' => t('Gender'),
    'photo' => t('Photo'),
    'photo_big' => t('Big photo'),
    'country' => t('Country'),
    'city' => t('City'),
    'phone' => t('Phone number'),
  );
}