You are here

function commerce_gc_product_rules_event_info in Commerce GC 7

File

modules/commerce_gc_product/commerce_gc_product.rules.inc, line 95
Provides Rules module support for buying giftcards.

Code

function commerce_gc_product_rules_event_info() {
  $events['commerce_gc_product_process_giftcard_line_item'] = array(
    'label' => t('Giftcard needs to be generated for a line item'),
    'group' => t('Commerce Giftcard'),
    'variables' => array(
      'commerce_line_item' => array(
        'type' => 'commerce_line_item',
        'label' => t('Line item'),
      ),
    ),
  );
  return $events;
}