You are here

commerce_rules_extra_process_checkout_pane.inc in Commerce Rules Extra 7.2

Rules events Checkout Pane Event.

File

includes/events/commerce_rules_extra_process_checkout_pane.inc
View source
<?php

/**
 * @file
 * Rules events Checkout Pane Event.
 */

/**
 * Helper function to return the event info to the main module.
 */
function commerce_rules_extra_process_checkout_pane_event_info() {
  return [
    'label' => t('Process change to a checkout pane'),
    'group' => t('Commerce Checkout'),
    'variables' => [
      'commerce_order' => [
        'type' => 'commerce_order',
        'label' => t('current order'),
      ],
    ],
  ];
}

Functions

Namesort descending Description
commerce_rules_extra_process_checkout_pane_event_info Helper function to return the event info to the main module.