field_collection.resource.inc 324 B

123456789101112
  1. <?php
  2. function _field_collection_resource_definition() {
  3. if (module_exists('field_collection')) {
  4. // We will allow uuid_services_services_resources_alter() to add the
  5. // default UUID-related operations to this resource.
  6. return array('field_collection_item' => array());
  7. }
  8. else {
  9. return array();
  10. }
  11. }