function browscap_help in Browscap 8
Same name and namespace in other branches
- 8.3 browscap.module \browscap_help()
- 6.2 browscap.module \browscap_help()
- 6 browscap.module \browscap_help()
- 7.2 browscap.module \browscap_help()
- 7 browscap.module \browscap_help()
Implements hook_help().
File
- ./
browscap.module, line 40 - Replacement for PHP's get_browser() function.
Code
function browscap_help($path, $arg) {
switch ($path) {
case 'admin/config/system/browscap':
return '<p>' . t('Settings for user agent detection and the log that Browscap will keep about user agents that visit the site. See <a href="@statistics">user agent statistics</a> for the actual information.', array(
'@statistics' => url('admin/reports/browscap'),
)) . '</p>';
}
}