You are here

function field_collection_field_collection_from_field_get_child in Field collection 7

Get child callback.

1 string reference to 'field_collection_field_collection_from_field_get_child'
field_collection_from_field.inc in ctools/relationships/field_collection_from_field.inc
Plugin to provide a relationship handler for a field collection field.

File

ctools/relationships/field_collection_from_field.inc, line 22
Plugin to provide a relationship handler for a field collection field.

Code

function field_collection_field_collection_from_field_get_child($plugin, $parent, $child) {
  $plugins = field_collection_field_collection_from_field_get_children($plugin, $parent);
  return $plugins[$parent . ':' . $child];
}