function Notifications_Event::get_object in Notifications 7
Same name and namespace in other branches
- 6.4 includes/notifications_event.class.inc \Notifications_Event::get_object()
Get single object
1 call to Notifications_Event::get_object()
- Notifications_Event::subscription_types in ./
notifications.event.inc - Get subscription types triggered by this event
File
- ./
notifications.event.inc, line 207 - Drupal Notifications Framework - Default class file
Class
- Notifications_Event
- Notifications Event class
Code
function get_object($type) {
return isset($this->objects[$type]) ? $this->objects[$type] : NULL;
}