You are here

function crypt_blowfish_help in Web Service Clients 6.2

Same name and namespace in other branches
  1. 6 backends/clients_drupal/crypt_blowfish/crypt_blowfish.module \crypt_blowfish_help()
  2. 7.3 connections/clients_drupal/crypt_blowfish/crypt_blowfish.module \crypt_blowfish_help()
  3. 7 backends/clients_drupal/crypt_blowfish/crypt_blowfish.module \crypt_blowfish_help()
  4. 7.2 connections/clients_drupal/crypt_blowfish/crypt_blowfish.module \crypt_blowfish_help()

Implementation of hook_help()

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

File

connections/clients_drupal/crypt_blowfish/crypt_blowfish.module, line 18
PEAR Crypt_Blowfish integration

Code

function crypt_blowfish_help($path, $arg) {
  $output = '';
  switch ($path) {
    case "admin/help#crypt_blowfish":
      $output = '<p>' . t("PEAR Crypt_Blowfish required.") . '</p>';
      break;
  }
  return $output;
}