function _tracker_myrecent_access
Same name in other branches
- 8.9.x core/modules/tracker/tracker.module \_tracker_myrecent_access()
Access callback for tracker/%user_uid_optional.
1 string reference to '_tracker_myrecent_access'
- tracker_menu in modules/
tracker/ tracker.module - Implements hook_menu().
File
-
modules/
tracker/ tracker.module, line 158
Code
function _tracker_myrecent_access($account) {
// This path is only allowed for authenticated users looking at their own content.
return $account->uid && $GLOBALS['user']->uid == $account->uid && user_access('access content');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.