You are here

function UserpointsTransaction::getTid in User Points 7.2

The category id (term id) this transaction belongs to.

Use UserpointsTransaction::getCategory() to get the name of the category.

Return value

Term Id of this transaction.

See also

UserpointsTransaction::setTid()

UserpointsTransaction::getCategory()

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

Class

UserpointsTransaction
A Userpoints transaction.

Code

function getTid() {
  return $this->tid;
}