function notifications_access_anonymous in Notifications 6.4
Same name and namespace in other branches
- 7 notifications.module \notifications_access_anonymous()
Check access for anonymous subscriptions
1 call to notifications_access_anonymous()
- notifications_access_subscribe in ./
notifications.module - Menu access callback for subscribe links
File
- ./
notifications.module, line 332 - Notifications module
Code
function notifications_access_anonymous() {
static $access;
if (!isset($access)) {
$access = module_exists('notifications_anonymous') && notifications_anonymous_send_methods() && notifications_anonymous_send_intervals();
}
return $access;
}