function checkbox_validate_validation in Checkbox Validate 6
Same name and namespace in other branches
- 5 checkbox_validate.module \checkbox_validate_validation()
1 string reference to 'checkbox_validate_validation'
File
- ./
checkbox_validate.module, line 41
Code
function checkbox_validate_validation($element) {
if (empty($element['#value'])) {
form_error($element, t('!title field is required.', array(
'!title' => filter_xss_admin($element['#title']),
)));
}
return;
}