You are here

function phone_field_property_country_options in Phone 7.2

Callback for getting the possible list of country codes for entity metadata.

1 string reference to 'phone_field_property_country_options'
phone_field_property_info_callback in ./phone.module
Additional callback to adapt the property info of phone fields.

File

./phone.module, line 290
The phone module lets administrators use a phone number field type.

Code

function phone_field_property_country_options($name, $info, $op) {
  return phone_countries(NULL, 'country');
}