function hook_field_purge_field

hook_field_purge_field($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

File

modules/field/field.api.php, line 2633
Hooks provided by the Field module.

Code

function hook_field_purge_field($field) {
  db_delete('my_module_field_info')
    ->condition('id', $field['id'])
    ->execute();
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!field!field.api.php/function/hook_field_purge_field/7.x