You are here

function html5_tools_menu in HTML5 Tools 7

Implements hook_menu().

File

./html5_tools.module, line 6

Code

function html5_tools_menu() {
  $items['admin/config/development/html5-tools'] = array(
    'title' => 'HTML5 Tools',
    'description' => 'Configure how HTML5 markup is applied to your site.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'html5_tools_admin_settings',
    ),
    'access arguments' => array(
      'administer site configuration',
    ),
    'file' => 'html5_tools.admin.inc',
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}