function hook_bundle_delete

3.x tripal.entities.api.inc hook_bundle_delete($bundle)

Allows a module to perform tasks before a TripalBundle object is deleted.

Parameters

$bundle: The newly created TripalBundle object.

Related topics

2 functions implement hook_bundle_delete()

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_delete in tripal_chado/includes/tripal_chado.bundle.inc
Implements hook_bundle_delete().
tripal_ds_bundle_delete in tripal_ds/tripal_ds.module
Trigger the update to the tripal_ds table when a tripal pane is deleted.
1 invocation of hook_bundle_delete()
TripalBundleController::delete in tripal/includes/TripalBundleController.inc
Overrides the parent delete function.

File

tripal/api/tripal.entities.api.inc, line 112
Provides an application programming interface (API) for working with TripalEntity content types (bundles) and their entities.

Code

function hook_bundle_delete($bundle) {

}