function text_resize_menu in Text Resize 6
Same name and namespace in other branches
- 7 text_resize.module \text_resize_menu()
Implementation of hook_menu().
File
- ./
text_resize.module, line 11 - Creates a small block with jQuery links that resize text within the BODY tag.
Code
function text_resize_menu() {
$items = array();
$items['admin/settings/text_resize'] = array(
'title' => 'Text Resize',
'description' => 'Settings for your Text Resize block.',
'access arguments' => array(
'administer site configuration',
),
'page callback' => 'drupal_get_form',
'page arguments' => array(
'_text_resize_admin_settings',
),
'type' => MENU_NORMAL_ITEM,
);
return $items;
}