You are here

function phone_field_item_create in Phone 7.2

Callback for creating a new empty phone fields item.

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

File

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

Code

function phone_field_item_create() {
  return array(
    'numbertype' => NULL,
    'number' => NULL,
    'countrycode' => NULL,
    'extension' => NULL,
  );
}