You are here

function equalheights_menu in Equal Heights jQuery 6

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

Implementation of hook_menu().

File

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

Code

function equalheights_menu() {
  $items = array();
  $items['admin/settings/equalheights'] = array(
    'title' => 'Equal Heights',
    'description' => 'Configure elements with equal heights.',
    'access arguments' => array(
      'administer site configuration',
    ),
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'equalheights_admin',
    ),
    'file' => 'equalheights.admin.inc',
  );
  return $items;
}