You are here

function notifications_object_page_objects in Notifications 6.4

Get objects to which we can subscribe on current page

1 call to notifications_object_page_objects()
notifications_ui_page_options in notifications_ui/notifications_ui.module
Get subscription options for current page/user and a display type

File

includes/object.inc, line 420
Notifications object and fields

Code

function notifications_object_page_objects() {
  $objects =& messaging_static(__FUNCTION__);
  if (!isset($objects)) {
    $objects = messaging_module_invoke_all('notifications_subscription', 'page objects');
  }
  return $objects;
}