You are here

function equalheights_help in Equal Heights jQuery 6

Same name and namespace in other branches
  1. 7.2 equalheights.module \equalheights_help()
  2. 7 equalheights.module \equalheights_help()

Implementation of hook_help().

File

./equalheights.module, line 17
Adds a jQuery plugin that sets the elements you specify to the same height.

Code

function equalheights_help($path = '', $arg = NULL) {
  $output = '';
  switch ($path) {
    case 'admin/help#equalheights':
    case 'admin/settings/equalheights':
      $output = '<p>' . t("Implements a jQuery plugin that makes the height of the elements equal.") . '</p>';
      break;
  }
  return $output;
}