You are here

function clients_feeds_help in Web Service Clients 7

Same name and namespace in other branches
  1. 6 clients/clients_feeds/clients_feeds.module \clients_feeds_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

clients/clients_feeds/clients_feeds.module, line 17

Code

function clients_feeds_help($path, $arg) {
  $output = '';
  switch ($path) {
    case "admin/help#clients":
      $output = '<p>' . t("Clients Feeds .") . '</p>';
      break;
  }
  return $output;
}