function _notifications_anonymous_access in Notifications 6.4
Check for object access
1 call to _notifications_anonymous_access()
- notifications_anonymous_manage_links in notifications_anonymous/
notifications_anonymous.module - Get raw /formatted links to manage subscription / destination
File
- notifications_anonymous/
notifications_anonymous.module, line 254 - Notifications for anonymous users
Code
function _notifications_anonymous_access($type, $object, $op) {
if (function_exists($function = 'notifications_anonymous_' . $type . '_access')) {
return $function($op, $object);
}
}