function statcounter_help in StatCounter 7.2
Same name and namespace in other branches
- 5 statcounter.module \statcounter_help()
- 6 statcounter.module \statcounter_help()
Implements hook_help().
Displays help and module information.
Parameters
path: Which path of the site we're using to display help
arg: Array that holds the current path as returned from arg() function
File
- ./
statcounter.module, line 26 - Drupal Module: Statcounter Adds the required Javascript to the bottom of all your Drupal pages to allow tracking by the Statcounter statistics service.
Code
function statcounter_help($path, $arg) {
switch ($path) {
case 'admin/config/system/statcounter':
return t('<a href="@sc_url">Statcounter</a>, a free and invisible web tracker, hit counter and real-time detailed web stats.', array(
'@sc_url' => 'http://www.statcounter.com/',
));
}
}