function services_views_field_formatter_info_alter in Services Views 7
Implements hook_field_formatter_info_alter().
File
- ./
services_views.module, line 311 - Provides a generic but powerful API for web services.
Code
function services_views_field_formatter_info_alter(&$formatters) {
$field_types = field_info_field_types();
if (!empty($field_types)) {
$formatters['services']['field types'] = array_keys($field_types);
}
}