You are here

function drupalgap_help in DrupalGap 7

Same name and namespace in other branches
  1. 8 drupalgap.module \drupalgap_help()
  2. 7.2 drupalgap.module \drupalgap_help()
  3. 8.0.x drupalgap.module \drupalgap_help()

Implements hook_help().

File

./drupalgap.module, line 12
A module to provide a bridge between Drupal websites and PhoneGap mobile applications.

Code

function drupalgap_help($path, $arg) {
  switch ($path) {
    case 'admin/help#drupalgap':

      // Show documentation URL.
      $doc_msg = t('The online <a href="@doc_url">DrupalGap Documentation</a> contains
         more information on help topics.', array(
        '@doc_url' => 'http://drupal.org/node/1603690',
      ));
      return "<p>{$doc_msg}</p>";
      break;
  }
}