You are here

function commerce_gc_product_commerce_product_type_info in Commerce GC 7

File

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

Code

function commerce_gc_product_commerce_product_type_info() {
  $types['giftcard'] = array(
    'type' => 'giftcard',
    'name' => t('Giftcard'),
    'description' => t('This product generates a giftcard when purchased.'),
  );
  return $types;
}