You are here

commerce_google_analytics.rules.inc in Commerce Google Analytics 7

Same filename and directory in other branches
  1. 7.2 commerce_google_analytics.rules.inc

File

commerce_google_analytics.rules.inc
View source
<?php

/**
 * Implements hook_rules_action_info().
 */
function commerce_google_analytics_rules_action_info() {
  return array(
    // Add rules action which sends the analytics code
    'commerce_google_analytics_send_order' => array(
      'label' => t('Send order to google analytics'),
      'parameter' => array(
        'commerce_order' => array(
          'type' => 'commerce_order',
          'label' => t('Order in checkout'),
        ),
      ),
      'callback' => array(
        'execute' => 'commerce_google_analytics_send_order',
      ),
    ),
  );
}