function Notifications_Field::get_value in Notifications 7
Get field value
5 calls to Notifications_Field::get_value()
- Notifications_Field::element_edit in ./
notifications.field.inc - Build a form element to edit this field
- Notifications_Field::get_name in ./
notifications.field.inc - Get field value name
- Notifications_Field::save in ./
notifications.field.inc - Save to db
- Notifications_Field_Select::element_edit in ./
notifications.field.inc - Build a form element to edit this field
- Notifications_Field_Select::get_name in ./
notifications.field.inc - Translate name into options
File
- ./
notifications.field.inc, line 82 - Drupal Notifications Framework - Default class file
Class
- Notifications_Field
- Base class for Notifications fields
Code
function get_value() {
return isset($this->value) ? $this->value : NULL;
}