function field_test_field_storage_delete_field

Implements hook_field_storage_delete_field().

File

modules/field/tests/field_test.storage.inc, line 283

Code

function field_test_field_storage_delete_field($field) {
    $data = _field_test_storage_data();
    $field_data =& $data[$field['id']];
    foreach (array(
        'current',
        'revisions',
    ) as $sub_table) {
        foreach ($field_data[$sub_table] as &$row) {
            $row->deleted = TRUE;
        }
    }
    _field_test_storage_data($data);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.