You are here

function auto_height_menu in jQuery Auto Height 7

Same name and namespace in other branches
  1. 7.2 auto_height.module \auto_height_menu()

Implements hook_menu().

File

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

Code

function auto_height_menu() {
  $items = array();
  $items['admin/config/media/auto_height'] = array(
    'title' => 'jQuery Auto Height',
    'description' => 'Configuration for jQuery Auto Height module',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'auto_height_form',
    ),
    'access arguments' => array(
      'administer autoheight',
    ),
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}