You are here

function bs_shortcodes_help in Bootstrap Theme Shortcodes 7

Implements hook_help.

Displays help and module information.

Parameters

path: Which path of the site we're using to display help

arg: Array that holds the current path as returned from arg() function

File

./bs_shortcodes.module, line 13

Code

function bs_shortcodes_help($path, $arg) {
  switch ($path) {
    case "admin/help#bs_shortcodes":
      return '<p>' . t("Adding Twitter Bootstrap functionality to the Shortcode API") . '</p>';
      break;
  }
}