You are here

function biblio_user_load in Bibliography Module 6.2

Same name and namespace in other branches
  1. 6 biblio.module \biblio_user_load()

Loads a user object based upon user ID.

This is used with %biblio_user placeholders in resolving user menu paths.

Parameters

integer $uid: An integer identifier of a user object to retrieve from data table(s).

Return value

object The user object with identifier $uid.

File

./biblio.module, line 711
Main file for Drupal module biblio.

Code

function biblio_user_load($uid) {
  return user_load($uid);
}