public function Notifications_Field::get_title in Notifications 7
Get title for field
4 calls to Notifications_Field::get_title()
- Notifications_Field::element_edit in ./
notifications.field.inc - Build a form element to edit this field
- Notifications_Field::element_info in ./
notifications.field.inc - Build a form element to display this field
- Notifications_Field::format in ./
notifications.field.inc - Format title and value
- Notifications_Field_Select::element_edit in ./
notifications.field.inc - Build a form element to edit this field
6 methods override Notifications_Field::get_title()
- Notifications_Field_Default::get_title in ./
notifications.field.inc - Get title for field
- Notifications_Node_Field::get_title in ./
notifications.field.inc - Get field name
- Notifications_Node_Type_Field::get_title in notifications_content/
notifications_content.inc - Get title for field
- Notifications_Taxonomy_Term_Field::get_title in notifications_tags/
notifications_tags.inc - Get field name
- Notifications_Taxonomy_Vocabulary_Field::get_title in notifications_tags/
notifications_tags.inc - Get field name
File
- ./
notifications.field.inc, line 88 - Drupal Notifications Framework - Default class file
Class
- Notifications_Field
- Base class for Notifications fields
Code
public function get_title() {
return $this
->get_property('title', '');
}