You are here

function iconizer_help in Iconizer 7

Same name and namespace in other branches
  1. 5 iconizer.module \iconizer_help()
  2. 6 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 15
@author: thePanz ( thePanz@gmail.com )

Code

function iconizer_help($path, $arg) {
  $output = '';
  switch ($path) {
    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;
}