You are here

function commerce_gc_product_giftcard_line_item_types in Commerce GC 7

Provides a list of giftcard line item types.

Return value

type

4 calls to commerce_gc_product_giftcard_line_item_types()
commerce_gc_product_line_item_is_giftcard in modules/commerce_gc_product/commerce_gc_product.module
Determine whether a line item wrapper qualifies as a giftcard
commerce_gc_product_pane_checkout_form in modules/commerce_gc_product/includes/commerce_gc_product.checkout_pane.inc
commerce_gc_product_pane_checkout_form_submit in modules/commerce_gc_product/includes/commerce_gc_product.checkout_pane.inc
commerce_gc_product_pane_checkout_form_validate in modules/commerce_gc_product/includes/commerce_gc_product.checkout_pane.inc

File

modules/commerce_gc_product/commerce_gc_product.module, line 66
Provides Giftcard product type and support.

Code

function commerce_gc_product_giftcard_line_item_types() {
  $return = array();
  foreach (commerce_line_item_types() as $name => $type) {
    if (!empty($type['giftcard'])) {
      $return[] = $name;
    }
  }
  return $return;
}