function clientside_validation_settings_delete in Clientside Validation 7.2
Same name and namespace in other branches
- 7 clientside_validation.module \clientside_validation_settings_delete()
1 call to clientside_validation_settings_delete()
File
- ./
clientside_validation.module, line 570 - Add client side validation to forms.
Code
function clientside_validation_settings_delete($cvs_type, $cvs_formid) {
if (!db_table_exists('clientside_validation_settings')) {
drupal_set_message(t("You need to run the database update script so that Clientside Validation can function properly. Click !here to run the database update script.", array(
'!here' => l('here', 'update.php'),
)));
return;
}
db_delete('clientside_validation_settings')
->condition('type', $cvs_type)
->condition('form_id', $cvs_formid)
->execute();
}