function html_title_menu in HTML Title 6
Same name and namespace in other branches
- 7 html_title.module \html_title_menu()
Implementation of hook_menu()
File
- ./
html_title.module, line 16 - 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/settings/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;
}