You are here

function _addressfield_phone_number_options_list in Address Field Phone 7

1 call to _addressfield_phone_number_options_list()
addressfield_phone_form_field_ui_field_edit_form_alter in ./addressfield_phone.module
Implements hook_form_FORM_ID_alter().

File

./addressfield_phone.module, line 345
Add additional phone fields to addressfield.

Code

function _addressfield_phone_number_options_list() {
  $types = array(
    'phone' => 'Phone',
    'extension' => 'Extension',
    'mobile' => 'Mobile',
    'fax' => 'Fax',
  );
  return $types;
}