'fieldset', '#title' => t('Analytics Account Settings'), '#collapsible' => FALSE, ); $form['account']['googleanalytics_account'] = array( '#type' => 'textfield', '#title' => t('Google Analytics account number'), '#default_value' => variable_get('googleanalytics_account', 'UA-'), '#size' => 15, '#maxlength' => 20, '#required' => TRUE, '#description' => t('The user account number (UA-xxxxxx-x) is unique to the websites domain. You can obtain an user account from the Google Analytics website.', array('@url' => 'http://www.google.com/analytics/')) ); $form['account']['googleanalytics_legacy_version'] = array( '#type' => 'checkbox', '#title' => t('Legacy Google Analytics'), '#default_value' => variable_get('googleanalytics_legacy_version', FALSE), '#description' => t('This will enable Legacy Google Analytics instead of most recent.
Please note that Legacy Google Analytics will not receive feature updates and is not compatible with new features.'), ); // Render the role overview. $result = db_query('SELECT * FROM {role} ORDER BY name'); $form['roles'] = array( '#type' => 'fieldset', '#title' => t('User Role Tracking'), '#collapsible' => TRUE, '#description' => t('Define what user roles should be tracked by Google Analytics. Note: Drupal Admin pages are never tracked.'), ); $form['roles']['googleanalytics_track__user1'] = array( '#type' => 'checkbox', '#title' => t('Admin (user 1)'), '#default_value' => variable_get('googleanalytics_track__user1', FALSE) ); while ($role = db_fetch_object($result)) { $form['roles']['googleanalytics_track_'. $role->rid] = array( '#type' => 'checkbox', '#title' => check_plain($role->name), '#default_value' => variable_get('googleanalytics_track_'. $role->rid, FALSE), ); } $form['segmentation'] = array( '#type' => 'fieldset', '#title' => t('User Segmentation'), '#collapsible' => TRUE, '#description' => t('If your users have profile fields completed, you can track your logged in users based on a defined profile field.') ); if (!module_exists('profile')) { $form['segmentation']['profile'] = array( '#type' => 'markup', '#value' => t('You need to activate the !profile to use this feature.', array('!profile' => l(t('Profile module'), 'admin/build/modules'))), '#prefix' => '

', '#suffix' => '

' ); } else { // Compile a list of fields to show. $fields = array( 'uid' => t('User ID'), 'name' => t('Username'), 'roles' => t('User Roles') ); $result = db_query('SELECT name, title, type, weight FROM {profile_fields} ORDER BY weight'); while ($record = db_fetch_object($result)) { $fields[$record->name] = $record->title; } $form['segmentation']['googleanalytics_segmentation'] = array( '#type' => 'select', '#title' => t('Track'), '#description' => t('Selecting one or more values allows you to track users by profile values rather than simply an IP address. To select multiple items, hold down CTRL whilst selecting fields.'), '#default_value' => variable_get('googleanalytics_segmentation', ''), '#options' => $fields, '#size' => 10, '#multiple' => TRUE ); } $form['linktracking'] = array( '#type' => 'fieldset', '#title' => t('Link tracking'), '#collapsible' => TRUE, '#collapsed' => FALSE, ); $form['linktracking']['googleanalytics_trackfiles'] = array( '#type' => 'checkbox', '#title' => t('Track files'), '#default_value' => variable_get('googleanalytics_trackfiles', TRUE), '#description' => t('Enables tracking of files based on below file extensions list.') ); $form['linktracking']['googleanalytics_trackfiles_extensions'] = array( '#type' => 'textfield', '#title' => t('File Extensions To Track'), '#default_value' => variable_get('googleanalytics_trackfiles_extensions', GA_TRACKFILES), '#description' => t('A pipe separated list of file extensions that should be tracked when clicked. Example: !extensions', array('!extensions' => GA_TRACKFILES)) ); $form['advanced'] = array( '#type' => 'fieldset', '#title' => t('Advanced'), '#collapsible' => TRUE, '#collapsed' => TRUE, '#description' => t('You can add custom Google Analytics code here.') ); $form['advanced']['googleanalytics_cache'] = array( '#type' => 'checkbox', '#title' => t('Cache tracking code file locally'), '#description' => t("If checked, the tracking code file is received from Google Analytics and cached locally. It is updated daily from Google's servers to ensure updates to tracking code are reflected in the local copy. Do not activate this until after Google Analytics has confirmed your tracker."), '#default_value' => variable_get('googleanalytics_cache', 0), ); if (variable_get('file_downloads', FILE_DOWNLOADS_PUBLIC) == FILE_DOWNLOADS_PRIVATE) { $form['advanced']['googleanalytics_cache']['#disabled'] = TRUE; $form['advanced']['googleanalytics_cache']['#description'] .= ' '. t('Public file transfers must be enabled to allow local caching.', array('!url' => url('admin/settings/file-system', array('query' => drupal_get_destination())))); } $site_search_dependencies = '
'; $site_search_dependencies .= t('Depends on: !dependencies', array('!dependencies' => (module_exists('search') ? 'Search'. t(' (enabled)') : 'Search'. t(' (disabled)')))); $site_search_dependencies .= '
'; // Google already have many translations, if not - they display a note to change the language. global $language; $form['advanced']['googleanalytics_site_search'] = array( '#type' => 'checkbox', '#title' => t('Do Track Internal Search'), '#description' => t('If checked, internal search keywords are tracked. You must configure your Google account to use the internal query parameter search. For more information see How do I set up Site Search for my profile.', array('!url' => 'http://www.google.com/support/analytics/bin/answer.py?hl='. $language->language .'&answer=75817')) . $site_search_dependencies, '#default_value' => variable_get('googleanalytics_site_search', FALSE), '#disabled' => (module_exists('search') ? FALSE : TRUE), ); $form['advanced']['googleanalytics_codesnippet'] = array( '#type' => 'textarea', '#title' => t('Custom JavaScript Code'), '#default_value' => variable_get('googleanalytics_codesnippet', ''), '#rows' => 5, '#description' => t('You can add custom Google Analytics code snippets here. These will be added to every page that Google Analytics appears on. Do not include the <script> tags, and always end your code with a semicolon (;).', array('!snippets' => 'http://drupal.org/node/248699')) ); $form['advanced']['googleanalytics_js_scope'] = array( '#type' => 'select', '#title' => t('JavaScript scope'), '#description' => t("Warning: Google recommends adding the external JavaScript files to footer for performance reasons."), '#options' => array( 'footer' => t('Footer'), 'header' => t('Header'), ), '#default_value' => variable_get('googleanalytics_js_scope', 'footer'), ); return system_settings_form($form); } function googleanalytics_admin_settings_form_validate($form, &$form_state) { if (!preg_match('/^UA-\d{4,}-\d+$/', $form_state['values']['googleanalytics_account'])) { form_set_error('googleanalytics_account', t('A valid Google Analytics account number is case sensitive and formated like UA-xxxxxx-x.')); } }