function _tracker_user_access

Same name and namespace in other branches
  1. 7.x drupal-7.x/modules/tracker/tracker.module \_tracker_user_access()

Access callback for user/%user/track

1 string reference to '_tracker_user_access'
tracker_menu in drupal-6.x/modules/tracker/tracker.module
Implementation of hook_menu().

Archivo

drupal-6.x/modules/tracker/tracker.module, line 71
Enables tracking of recent posts for users.

Código

function _tracker_user_access($account) {
  return user_view_access($account) && user_access('access content');
}