You are here

function wsfields_wsfields_text_with_summary_data_alter in Web Service Data 7

Implements hook_wsfields_FIELD_TYPE_data_alter().

File

modules/wsfields/wsfields.module, line 90
Defines core functionality for web service powered fields

Code

function wsfields_wsfields_text_with_summary_data_alter($data, $field) {

  // Use the generalized data formater
  _wsfields_general_data_alter($data, $field);
  _wsfields_set_text_format($data, $field);
  return $data;
}