You are here

function mobile_tools_help in Mobile Tools 7.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. 6.2 mobile_tools.module \mobile_tools_help()
  5. 7.3 mobile_tools.module \mobile_tools_help()

Implements hook_help().

File

./mobile_tools.module, line 29
Functionality to ease the creation of mixed device environments.

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>';
  }
}