You are here

function googleanalytics_help in Google Analytics 5

Same name and namespace in other branches
  1. 6.4 googleanalytics.module \googleanalytics_help()
  2. 6 googleanalytics.module \googleanalytics_help()
  3. 6.2 googleanalytics.module \googleanalytics_help()
  4. 6.3 googleanalytics.module \googleanalytics_help()
  5. 7.2 googleanalytics.module \googleanalytics_help()
  6. 7 googleanalytics.module \googleanalytics_help()

File

./googleanalytics.module, line 14

Code

function googleanalytics_help($section) {
  switch ($section) {
    case 'admin/settings/googleanalytics':
      return t('<a href="@ga_url">Google Analytics</a> is a free statistics package based on the excellent Urchin system. This module provides services to better integrate Drupal with Google Analytics.', array(
        '@ga_url' => 'http://www.google.com/analytics/',
      ));
  }
}