You are here

function userpoints_txn_status in User Points 5.3

Same name and namespace in other branches
  1. 5 userpoints.module \userpoints_txn_status()
  2. 5.2 userpoints.module \userpoints_txn_status()
  3. 6 userpoints.module \userpoints_txn_status()
  4. 7.2 userpoints.module \userpoints_txn_status()
  5. 7 userpoints.module \userpoints_txn_status()
3 calls to userpoints_txn_status()
userpoints_admin_txn in ./userpoints.module
userpoints_my_userpoints in ./userpoints.module
views_handler_field_userpoints_txn_status in ./userpoints_views.module

File

./userpoints.module, line 59

Code

function userpoints_txn_status() {
  return array(
    USERPOINTS_TXN_STATUS_APPROVED => t('Approved'),
    USERPOINTS_TXN_STATUS_PENDING => t('Pending'),
    USERPOINTS_TXN_STATUS_DECLINED => t('Declined'),
  );
}