function mobile_tools_help in Mobile Tools 7.3
Same name and namespace in other branches
- 5 mobile_tools.module \mobile_tools_help()
- 6.3 mobile_tools.module \mobile_tools_help()
- 6 mobile_tools.module \mobile_tools_help()
- 6.2 mobile_tools.module \mobile_tools_help()
- 7.2 mobile_tools.module \mobile_tools_help()
Implements hook_help().
File
- ./
mobile_tools.module, line 33 - Functionality to ease the creation of mixed device environments.
Code
function mobile_tools_help($path, $arg) {
switch ($path) {
case 'admin/help#mobile_tools':
// @todo change the link to the new documentation page for 3.x version
return '<p>' . t('Visit the !documentation for more info', array(
'!documentation' => l('documentation page', 'http://drupal.org/node/459686'),
)) . '<p>';
}
}