You are here

function auto_height_help in jQuery Auto Height 8

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

Implements hook_help().

File

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

Code

function auto_height_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.auto_height':
      return check_markup(file_get_contents(dirname(__FILE__) . '/README.txt'));
  }
}