function crazyegg_help in Crazy Egg Integration 6
Same name and namespace in other branches
- 8 crazyegg.module \crazyegg_help()
- 7 crazyegg.module \crazyegg_help()
Implementation of hook_help().
File
- ./
crazyegg.module, line 32
Code
function crazyegg_help($path, $arg) {
switch ($path) {
case 'admin/settings/crazyegg':
return t('<a href="@url">Crazy Egg</a> is an analytics tool that provides website heatmaps and eye tracking.', array(
'@url' => 'http://www.crazyegg.com',
));
}
}