function hook_field_purge_field
Same name in other branches
- 9 core/modules/field/field.api.php \hook_field_purge_field()
- 8.9.x core/modules/field/field.api.php \hook_field_purge_field()
- 10 core/modules/field/field.api.php \hook_field_purge_field()
- 11.x core/modules/field/field.api.php \hook_field_purge_field()
Acts when a field record is being purged.
In field_purge_field(), after the field configuration has been removed from the database, the field storage module has had a chance to run its hook_field_storage_purge_field(), and the field info cache has been cleared, this hook is invoked on all modules to allow them to respond to the field being purged.
Parameters
$field: The field being purged.
Related topics
1 invocation of hook_field_purge_field()
- field_purge_field in modules/
field/ field.crud.inc - Purges a field record from the database.
File
-
modules/
field/ field.api.php, line 2633
Code
function hook_field_purge_field($field) {
db_delete('my_module_field_info')->condition('id', $field['id'])
->execute();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.