You are here

function hook_google_analytics_et_settings_info in Google Analytics Event Tracking 7

Define the settings used in the google analytics event tracker

Return value

array settings array.

1 function implements hook_google_analytics_et_settings_info()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

google_analytics_et_example_google_analytics_et_settings_info in google_analytics_et_example/google_analytics_et_example.module
Implements hook_google_analytics_et_settings_info().
1 invocation of hook_google_analytics_et_settings_info()
google_analytics_et_page_alter in ./google_analytics_et.module
Implements hook_page_alter().

File

./google_analytics_et.api.php, line 114
Hooks provided by Google Analytics Event Tracking API

Code

function hook_google_analytics_et_settings_info() {
  $settings = array();
  $settigns['debug'] = TRUE;
  return $settigns;
}