function notifications_user_account_access in Notifications 7
Check access to user account tab
1 string reference to 'notifications_user_account_access'
- notifications_user_menu in notifications_user/notifications_user.module 
- Implementation of hook_menu()
File
- notifications_user/notifications_user.module, line 33 
- Notifications module - User subscriptions tabs
Code
function notifications_user_account_access($account, $type) {
  return module_exists('notifications_account') && notifications_account_tab_access($account, $type);
}