function hook_bundle_instances_info

3.x tripal.fields.api.inc hook_bundle_instances_info($entity_type, $bundle)

Allows a module to return the field instances of a bundle.

Parameters

$entity_type: The name of the entity, most likely 'TripalEntity'.

$bundle: The bundle object.

Related topics

2 functions implement hook_bundle_instances_info()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

tripal_chado_bundle_instances_info in tripal_chado/includes/tripal_chado.fields.inc
Impelments hook_create_tripalfield_instance().
tripal_ws_bundle_instances_info in tripal_ws/includes/tripal_ws.fields.inc
Implements hook_bundle_instances_info().
2 invocations of hook_bundle_instances_info()
tripal_create_bundle_fields in tripal/api/tripal.entities.api.inc
Refreshes the bundle such that new fields added by modules will be found.
tripal_tripal_cron_notification in tripal/api/tripal.entities.api.inc
Refreshes the bundle such that new fields added by modules will be found during cron.

File

tripal/api/tripal.fields.api.inc, line 106
Provides an application programming interface (API) for working with fields attached to TripalEntity content types (bundles).

Code

function hook_bundle_instances_info($entity_type, $bundle) {

}