You are here

function mobile_tools_help in Mobile Tools 6.2

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 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().

File

./mobile_tools.module, line 73
Primarily Drupal hooks.

Code

function mobile_tools_help($path, $arg) {
  switch ($path) {
    case 'admin/help#mobile_tools':
      return '<p>' . t('Visit the <a href="@documentation">documentation page</a> for more information.', array(
        '@documentation' => 'http://drupal.org/node/459686',
      )) . '<p>';
  }
}