You are here

function _civicrm_entity_options_username_format in CiviCRM Entity 7.2

1 string reference to '_civicrm_entity_options_username_format'
civicrm_entity_rules_action_info in ./civicrm_entity.rules.inc
Implements hook_rules_action_info().

File

./civicrm_entity.module, line 3126

Code

function _civicrm_entity_options_username_format($field, $instance) {
  $options = array(
    'display_name' => t('Display Name'),
    'first last' => t('First Last'),
    'firstlast' => t('FirstLast'),
    'first.last' => t('First.Last'),
    'f.last' => t('F.Last'),
    'first.middle.last' => t('First.Middle.Last'),
    'email' => 'Use E-mail Address',
  );
  return $options;
}