You are here

function html_title_menu in HTML Title 7

Same name and namespace in other branches
  1. 6 html_title.module \html_title_menu()

Implementation of hook_menu()

File

./html_title.module, line 27
This module enables limited HTML to be used in node titles. It strips title markup from RSS feeds to eliminate unsightly markup in feed readers.

Code

function html_title_menu() {
  $items['admin/config/content/html_title'] = array(
    'title' => 'HTML Title settings',
    'description' => 'Configure HTML tags used in node titles.',
    'access arguments' => array(
      'administer site configuration',
    ),
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'html_title_admin_settings',
    ),
    'type' => MENU_NORMAL_ITEM,
    'file' => 'html_title.admin.inc',
  );
  return $items;
}