You are here

function quote_menu in Quote 6

Same name and namespace in other branches
  1. 5 quote.module \quote_menu()
  2. 6.2 quote.module \quote_menu()
  3. 7.2 quote.module \quote_menu()
  4. 7 quote.module \quote_menu()

Implementation of hook_menu().

File

./quote.module, line 12
The quote module provides a filter and appropriate links that allow users to quote nodes and other comments in their own comments.

Code

function quote_menu() {
  $items = array();
  $items['admin/settings/quote'] = array(
    'title' => 'Quote',
    'description' => 'Configure the behaviour of the quote module.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'quote_settings_form',
    ),
    'access arguments' => array(
      'administer filters',
    ),
    'file' => 'quote.admin.inc',
  );
  return $items;
}