function restws_field_collection_info in RESTful Web Services Field Collection 7
Get information about field collections provided by modules.
5 calls to restws_field_collection_info()
- restws_field_collection_entity_property_info_alter in ./
restws_field_collection.module - Implements hook_entity_property_info_alter().
- restws_field_collection_item_create in ./
restws_field_collection.module - Create a field collection item and attach it to an entity.
- restws_field_collection_property_get in ./
restws_field_collection.module - Get a field collection property.
- restws_field_collection_property_set in ./
restws_field_collection.module - Sets a field collection property.
- restws_field_collection_restws_response_alter in ./
restws_field_collection.module - Implements hook_restws_response_alter().
File
- ./
restws_field_collection.module, line 11 - RESTful Web Services Field collection module.
Code
function restws_field_collection_info() {
$info =& drupal_static(__FUNCTION__);
if (!isset($info)) {
$info = module_invoke_all('restws_field_collection_info');
}
return $info;
}