You are here

function mobile_tools_help in Mobile Tools 6

Same name and namespace in other branches
  1. 5 mobile_tools.module \mobile_tools_help()
  2. 6.3 mobile_tools.module \mobile_tools_help()
  3. 6.2 mobile_tools.module \mobile_tools_help()
  4. 7.3 mobile_tools.module \mobile_tools_help()
  5. 7.2 mobile_tools.module \mobile_tools_help()

Implementation of hook_help($section).

File

./mobile_tools.module, line 23
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>';
  }
}