function field_sql_storage_field_storage_delete

field_sql_storage_field_storage_delete($entity_type, $entity, $fields)

Implements hook_field_storage_delete().

This function deletes data for all fields for an entity from the database.

File

modules/field/modules/field_sql_storage/field_sql_storage.module, line 525
Default implementation of the field storage API.

Code

function field_sql_storage_field_storage_delete($entity_type, $entity, $fields) {
  list($id, $vid, $bundle) = entity_extract_ids($entity_type, $entity);

  foreach (field_info_instances($entity_type, $bundle) as $instance) {
    if (isset($fields[$instance['field_id']])) {
      $field = field_info_field_by_id($instance['field_id']);
      field_sql_storage_field_storage_purge($entity_type, $entity, $field, $instance);
    }
  }
}

© 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!modules!field_sql_storage!field_sql_storage.module/function/field_sql_storage_field_storage_delete/7.x