You are here

function auto_height_help in jQuery Auto Height 7.2

Same name and namespace in other branches
  1. 8 auto_height.module \auto_height_help()
  2. 7 auto_height.module \auto_height_help()

Implements hook_help().

File

./auto_height.module, line 16
Provides dynamic adjustment of column heights, matching the biggest column in each Row.

Code

function auto_height_help($path, $arg) {
  switch ($path) {
    case 'admin/help#auto_height':
      return check_markup(file_get_contents(dirname(__FILE__) . "/README.txt"));
  }
}