function user_uri

Implements callback_entity_info_uri().

1 string reference to 'user_uri'
user_entity_info in drupal/modules/user/user.module
Implements hook_entity_info().

File

drupal/modules/user/user.module, line 192
Enables the user registration and login system.

Code

function user_uri($user) {
  return array(
    'path' => 'user/' . $user->uid,
  );
}