You are here

protected static function CommerceGoogleTagManagerBaseAction::getDefaultsInfo in Commerce Google Tag Manager 7.2

Get the default Rule's info.

Return value

array

4 calls to CommerceGoogleTagManagerBaseAction::getDefaultsInfo()
CommerceGoogleTagManagerActionAddToCart::getInfo in includes/rules/CommerceGoogleTagManagerActionAddToCart.php
Defines the action.
CommerceGoogleTagManagerActionCheckout::getInfo in includes/rules/CommerceGoogleTagManagerActionCheckout.php
Defines the action.
CommerceGoogleTagManagerActionPurchase::getInfo in includes/rules/CommerceGoogleTagManagerActionPurchase.php
Defines the action.
CommerceGoogleTagManagerActionRemoveFromCart::getInfo in includes/rules/CommerceGoogleTagManagerActionRemoveFromCart.php
Defines the action.

File

includes/CommerceGoogleTagManagerBaseAction.php, line 21
This file contains the base class for CommerceGoogleTagManager actions.

Class

CommerceGoogleTagManagerBaseAction
@file This file contains the base class for CommerceGoogleTagManager actions.

Code

protected static function getDefaultsInfo() {
  return array(
    'group' => t('Commerce Google-TagManager'),
    'name' => get_called_class(),
  );
}