You are here

function UserpointsTransaction::getTimestamp in User Points 7.2

The timestamp of when this transaction was created.

Return value

Unix timestamp of the creation date.

See also

UserpointsTransaction::setTimestamp()

1 call to UserpointsTransaction::getTimestamp()
UserpointsTransaction::getTableRow in ./userpoints.transaction.inc
Returns a single row for a transaction listing.

File

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

Class

UserpointsTransaction
A Userpoints transaction.

Code

function getTimestamp() {
  return $this->time_stamp;
}