You are here

function google_analytics_counter_help in Google Analytics Counter 7

Same name and namespace in other branches
  1. 8.3 google_analytics_counter.module \google_analytics_counter_help()
  2. 6.2 google_analytics_counter.module \google_analytics_counter_help()
  3. 6 google_analytics_counter.module \google_analytics_counter_help()
  4. 7.3 google_analytics_counter.module \google_analytics_counter_help()
  5. 7.2 google_analytics_counter.module \google_analytics_counter_help()

Display help and module information

Parameters

path which path of the site we're displaying help:

arg array that holds the current path as would be returned from arg() function:

Return value

help text for the path

File

./google_analytics_counter.module, line 31

Code

function google_analytics_counter_help($path, $arg) {

  // The line above outputs in ALL admin/module pages
  switch ($path) {
    case "admin/help/google_analytics_counter":
      return '<p>' . t("Access counter drawing on data collected by Google Analytics.") . '</p>';
  }
}