You are here

function notifications_content_user_access in Notifications 7

Check access to user account tab

1 string reference to 'notifications_content_user_access'
notifications_content_menu in notifications_content/notifications_content.module
Implementation of hook_menu_()

File

notifications_content/notifications_content.module, line 60
Subscriptions to content events

Code

function notifications_content_user_access($account, $type) {
  return module_exists('notifications_account') && notifications_account_tab_access($account, $type);
}