You are here

function urllogin_help in urllogin 7

Same name and namespace in other branches
  1. 8 urllogin.module \urllogin_help()
  2. 6 urllogin.module \urllogin_help()
  3. 2.x urllogin.module \urllogin_help()

Display help and module information

Parameters

path: which path of the site we're displaying help

arg: array that holds the current path as would be returned from arg() function

Return value

help text for the path

1 call to urllogin_help()
urllogin_status_page in ./urllogin.inc
Displays status page and allows a URL string to be generated for test purposes.

File

./urllogin.module, line 51
Allows login using link from URL.

Code

function urllogin_help($path, $arg) {
  $output = '';

  // declare output variable
  switch ($path) {
    case "admin/help#urllogin":
      $output = '<p>' . t('Allow login using link from URL') . '</p>';
      break;
  }
  return $output;
}