You are here

function commerce_gc_product_commerce_checkout_pane_info in Commerce GC 7

File

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

Code

function commerce_gc_product_commerce_checkout_pane_info() {
  $panes['commerce_gc_product'] = array(
    'title' => t('Giftcard purchases'),
    'file' => 'includes/commerce_gc_product.checkout_pane.inc',
    'base' => 'commerce_gc_product_pane',
    'page' => 'checkout',
    'fieldset' => FALSE,
    'locked' => FALSE,
  );
  return $panes;
}