function mobile_tools_help in Mobile Tools 5
Same name and namespace in other branches
- 6.3 mobile_tools.module \mobile_tools_help()
- 6 mobile_tools.module \mobile_tools_help()
- 6.2 mobile_tools.module \mobile_tools_help()
- 7.3 mobile_tools.module \mobile_tools_help()
- 7.2 mobile_tools.module \mobile_tools_help()
Implementation of hook_help($section).
File
- ./
mobile_tools.module, line 22 - Mobile Tools provides a range of functionality assisting in creating a mobile drupal site . this functionality contains:
Code
function mobile_tools_help($section) {
switch ($section) {
case 'admin/help#mobile_tools':
$output .= '<p>' . t('The mobile tools module assembles a range of functionality helping out in making your Drupal site mobile. Visit the !documentation for more information') . '<p>';
}
return $output;
}