function userpoints_txn_status in User Points 5
Same name and namespace in other branches
- 5.3 userpoints.module \userpoints_txn_status()
- 5.2 userpoints.module \userpoints_txn_status()
- 6 userpoints.module \userpoints_txn_status()
- 7.2 userpoints.module \userpoints_txn_status()
- 7 userpoints.module \userpoints_txn_status()
1 call to userpoints_txn_status()
File
- ./
userpoints.module, line 40
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'),
);
}