The page callback for the path /user
is user_page()
, however this is documented as being the access callback for this path:
<?php
/**
* Access callback for path /user.
*
* Displays user profile if user is logged in, or login form for anonymous
* users.
*/
function user_page() {
...
}
?>