function hook_bundle_fields_info
3.x tripal.fields.api.inc | hook_bundle_fields_info($entity_type, $bundle) |
Allows a module to return a bundles field info.
Parameters
$entity_type: The name of the entity, like 'TripalEntity'.
$bundle: The bundle object.
Related topics
2 functions implement hook_bundle_fields_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_fields_info in tripal_chado/
includes/ tripal_chado.fields.inc - Implements hook_bundle_fields_info().
- tripal_ws_bundle_fields_info in tripal_ws/
includes/ tripal_ws.fields.inc - Implements hook_bundle_fields_info().
2 invocations of hook_bundle_fields_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 93 - Provides an application programming interface (API) for working with fields attached to TripalEntity content types (bundles).
Code
function hook_bundle_fields_info($entity_type, $bundle) {
}