function Notifications_Event::get_text in Notifications 7
Same name and namespace in other branches
- 6.4 includes/notifications_event.class.inc \Notifications_Event::get_text()
Get event text if available
File
- ./
notifications.event.inc, line 177 - Drupal Notifications Framework - Default class file
Class
- Notifications_Event
- Notifications Event class
Code
function get_text($key) {
if (isset($this->text[$key])) {
return $this->text[$key];
}
}