You are here

function scroll_to_top_menu in scroll to top 6

Same name and namespace in other branches
  1. 6.2 scroll_to_top.module \scroll_to_top_menu()
  2. 7.2 scroll_to_top.module \scroll_to_top_menu()

Implements hook_menu().

File

./scroll_to_top.module, line 36
Provide scroll to top link.

Code

function scroll_to_top_menu() {
  $items = array();
  $items['admin/settings/scrolltotop'] = array(
    'title' => 'Scroll to top',
    'description' => 'Scroll To Top stettings',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'scroll_to_top_settings',
    ),
    'access arguments' => array(
      'access administration pages',
    ),
    'file' => 'scroll_to_top.admin.inc',
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}