function Notifications_Field::check_value in Notifications 7
Check if the field has a valid value or the parameter is a valid value
File
- ./
notifications.field.inc, line 257 - Drupal Notifications Framework - Default class file
Class
- Notifications_Field
- Base class for Notifications fields
Code
function check_value() {
return isset($this->value) ? $this
->valid_value($this->value) : FALSE;
}