summaryrefslogtreecommitdiff
path: root/modules/field/field.api.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/field/field.api.php')
-rw-r--r--modules/field/field.api.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/modules/field/field.api.php b/modules/field/field.api.php
index 2a1c4197b..f2da46c45 100644
--- a/modules/field/field.api.php
+++ b/modules/field/field.api.php
@@ -614,9 +614,13 @@ function hook_field_rename_bundle($bundle_old, $bundle_new) {
*
* This hook is invoked after the field module has performed the operation.
*
- * See field_attach_delete_bundle() for details and arguments.
+ * @param $bundle
+ * The bundle that was just deleted.
+ * @param $instances
+ * An array of all instances that existed for $bundle before it was
+ * deleted.
*/
-function hook_field_attach_delete_bundle($bundle) {
+function hook_field_attach_delete_bundle($bundle, $instances) {
}
/**