You are here

function commerce_gc_balance_total_status_names in Commerce GC 7

Get a list of statuses, by name, that are eligible to be counted as part of a giftcard's transaction balance.

Return value

array List of status names

File

./commerce_gc.module, line 116
Provides Giftcard coupon bundle, Giftcard Transaction entity and basic user interface elements.

Code

function commerce_gc_balance_total_status_names() {
  return array_keys(commerce_gc_balance_total_statuses());
}