You are here

function iconizer_help in Iconizer 5

Same name and namespace in other branches
  1. 6 iconizer.module \iconizer_help()
  2. 7 iconizer.module \iconizer_help()

Display help and module information

Parameters

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

Return value

help text for section

File

./iconizer.module, line 12

Code

function iconizer_help($section = '') {
  $output = '';
  switch ($section) {
    case "admin/help#iconizer":
      $output = '<p>' . t("Adds icons next to links in Admin-section and well-know protocols and files") . '</p>';
      break;
  }
  return $output;
}