function Notifications_Field::valid_value in Notifications 7
Check if this is a valid value for this field
2 calls to Notifications_Field::valid_value()
- Notifications_Field::check_value in ./
notifications.field.inc - Check if the field has a valid value or the parameter is a valid value
- Notifications_Field::set_value in ./
notifications.field.inc - Set value for this field, update related properties
1 method overrides Notifications_Field::valid_value()
- Notifications_Field_Select::valid_value in ./
notifications.field.inc - Check valid value
File
- ./
notifications.field.inc, line 278 - Drupal Notifications Framework - Default class file
Class
- Notifications_Field
- Base class for Notifications fields
Code
function valid_value($value = NULL) {
return $this
->validate_value($value, $this->data_type);
}