You are here

function _field_weight_multiple_remove_weights in Field display weights (per node) 7.2

1 call to _field_weight_multiple_remove_weights()
_field_weight_multiple_after_field_weight_display_overview_form_submit in modules/field_weight_multiple.module
1 string reference to '_field_weight_multiple_remove_weights'
field_weight_multiple_form_field_weight_display_overview_form_alter in modules/field_weight_multiple.module
Implements hook_form_FORM_ID_alter().

File

modules/field_weight_multiple.module, line 309

Code

function _field_weight_multiple_remove_weights(&$form, &$form_state) {
  $node = $form_state['#node'];
  db_delete('field_weight_multiple')
    ->condition('vid', $node->vid)
    ->execute();
}