You are here

function UserpointsTransaction::getUser in User Points 7.2

Returns the user object this transaction belongs to.

Return value

loaded user object for the user this transaction belongs to.

See also

UserpointsTransaction::setUid()

UserpointsTransaction::getUid()

2 calls to UserpointsTransaction::getUser()
UserpointsTransaction::getMessage in ./userpoints.transaction.inc
A message that can be displayed to the current user.
UserpointsTransaction::getTableRow in ./userpoints.transaction.inc
Returns a single row for a transaction listing.

File

./userpoints.transaction.inc, line 584
Contains the UserpointsTransaction and related classes.

Class

UserpointsTransaction
A Userpoints transaction.

Code

function getUser() {
  return user_load($this->uid);
}