function mobile_tools_help in Mobile Tools 6.3
Same name and namespace in other branches
- 5 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 24 - Mobile Tools provides a range of functionality assisting in creating a mobile Drupal site . this functionality contains:
Code
function mobile_tools_help($path, $arg) {
switch ($path) {
case 'admin/help#mobile_tools':
return '<p>' . t('Visit the !documentation for more info', array(
'!documentation' => l('documentation page', 'http://drupal.org/node/459686'),
)) . '<p>';
}
}