You are here

function UserpointsTransaction::abort in User Points 7.2

Marks this transaction as aborted.

4 calls to UserpointsTransaction::abort()
UserpointsTransaction::checkChange in ./userpoints.transaction.inc
Checks if a change is allowed.
UserpointsTransaction::setExpiryDate in ./userpoints.transaction.inc
Set the expiration date of a transaction.
UserpointsTransaction::setPoints in ./userpoints.transaction.inc
Define the points amount of this transaction, which can be any positive or negative amount but not 0.
UserpointsTransaction::setStatus in ./userpoints.transaction.inc
Set the status for a transaction.

File

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

Class

UserpointsTransaction
A Userpoints transaction.

Code

function abort() {
  $this->aborted = TRUE;
}