function equalheights_menu in Equal Heights jQuery 7
Same name and namespace in other branches
- 6 equalheights.module \equalheights_menu()
- 7.2 equalheights.module \equalheights_menu()
Implements hook_menu().
File
- ./
equalheights.module, line 64 - Adds a jQuery plugin that sets the elements you specify to the same height.
Code
function equalheights_menu() {
$items = array();
$items['admin/config/development/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;
}