user_uri
- drupal
Drupal 7 user_uri($user)
Entity uri callback.
1 string reference to 'user_uri'
File
- modules/
user/ user.module, line 188 - Enables the user registration and login system.
Code
function user_uri($user) {
return array(
'path' => 'user/' . $user->uid,
);
}

