You are here

function hook_wsfields_FIELD_TYPE_data_alter in Web Service Data 7

Allows modules to alter and format field data prior to it being added to a field instance.

Parameters

array $instance: Instance of a field

Return value

array Returns a formatted array for use in a field instance

15 functions implement hook_wsfields_FIELD_TYPE_data_alter()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

wsfields_wsfields_list_boolean_data_alter in modules/wsfields/wsfields.module
Implements hook_wsfields_FIELD_TYPE_data_alter().
wsfields_wsfields_list_float_data_alter in modules/wsfields/wsfields.module
Implements hook_wsfields_FIELD_TYPE_data_alter().
wsfields_wsfields_list_integer_data_alter in modules/wsfields/wsfields.module
Implements hook_wsfields_FIELD_TYPE_data_alter().
wsfields_wsfields_list_text_data_alter in modules/wsfields/wsfields.module
Implements hook_wsfields_FIELD_TYPE_data_alter().
wsfields_wsfields_number_decimal_data_alter in modules/wsfields/wsfields.module
Implements hook_wsfields_FIELD_TYPE_data_alter().

... See full list

File

modules/wsfields/wsfields.api.php, line 20
API Documentation for wsfields

Code

function hook_wsfields_FIELD_TYPE_data_alter($data, $instance) {
}