function _field_weight_multiple_remove_weights in Field display weights (per node) 7.2
1 call to _field_weight_multiple_remove_weights()
1 string reference to '_field_weight_multiple_remove_weights'
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();
}