You are here

function uuid_entity_uuid_get_child in Universally Unique IDentifier 7

Fetches the "child" information for a given parent entity.

@todo document me properly.

Return value

array The children.

1 string reference to 'uuid_entity_uuid_get_child'
entity_uuid.inc in plugins/arguments/entity_uuid.inc
Plugin to provide an argument handler for all entity IDs.

File

plugins/arguments/entity_uuid.inc, line 27
Plugin to provide an argument handler for all entity IDs.

Code

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