function _tracker_myrecent_access
Same name and namespace in other branches
- 7.x drupal-7.x/modules/tracker/tracker.module \_tracker_myrecent_access()
Access callback for tracker/%user_uid_optional
1 string reference to '_tracker_myrecent_access'
- tracker_menu in drupal-6.x/
modules/ tracker/ tracker.module - Implementation of hook_menu().
Archivo
- drupal-6.x/
modules/ tracker/ tracker.module, line 63 - Enables tracking of recent posts for users.
Código
function _tracker_myrecent_access($account) {
// This path is only allowed for authenticated users looking at their own posts.
return $account->uid && ($GLOBALS['user']->uid == $account->uid) && user_access('access content');
}