function commerce_gc_commerce_gc_transaction_status_info in Commerce GC 7
File
- ./
commerce_gc.module, line 70 - Provides Giftcard coupon bundle, Giftcard Transaction entity and basic user interface elements.
Code
function commerce_gc_commerce_gc_transaction_status_info() {
return array(
COMMERCE_GC_TRANSACTION_COMPLETE_STATUS => array(
'label' => t('Complete'),
'total' => TRUE,
),
COMMERCE_GC_TRANSACTION_PENDING_STATUS => array(
'label' => t('Pending'),
'total' => TRUE,
),
COMMERCE_GC_TRANSACTION_VOID_STATUS => array(
'label' => t('Void'),
'total' => FALSE,
),
COMMERCE_GC_TRANSACTION_AUTHORIZED_STATUS => array(
'label' => t('Authorized'),
'total' => TRUE,
),
);
}