function googleanalytics_help in Google Analytics 6.4
Same name and namespace in other branches
- 5 googleanalytics.module \googleanalytics_help()
- 6 googleanalytics.module \googleanalytics_help()
- 6.2 googleanalytics.module \googleanalytics_help()
- 6.3 googleanalytics.module \googleanalytics_help()
- 7.2 googleanalytics.module \googleanalytics_help()
- 7 googleanalytics.module \googleanalytics_help()
Implementation of hook_help().
File
- ./
googleanalytics.module, line 36 - Drupal Module: Google Analytics
Code
function googleanalytics_help($path, $arg) {
switch ($path) {
case 'admin/settings/googleanalytics':
return t('<a href="@ga_url">Google Analytics</a> is a free (registration required) website traffic and marketing effectiveness service.', array(
'@ga_url' => 'https://marketingplatform.google.com/about/analytics/',
));
}
}