function clientside_validation_settings_update in Clientside Validation 7.2
Same name and namespace in other branches
- 7 clientside_validation.module \clientside_validation_settings_update()
1 call to clientside_validation_settings_update()
File
- ./
clientside_validation.module, line 638 - Add client side validation to forms.
Code
function clientside_validation_settings_update($cvs_type, $cvs_formid, $settings) {
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_update('clientside_validation_settings')
->fields(array(
'settings' => serialize($settings),
))
->condition('type', $cvs_type)
->condition('form_id', $cvs_formid)
->execute();
}