You are here

function UserpointsTransaction::getPoints in User Points 7.2

The amount of points of this transaction.

Return value

Points as an integer.

See also

UserpointsTransaction::setPoints()

2 calls to UserpointsTransaction::getPoints()
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 621
Contains the UserpointsTransaction and related classes.

Class

UserpointsTransaction
A Userpoints transaction.

Code

function getPoints() {
  return $this->points;
}