You are here

function seochecklist_menu in SEO Checklist 6.2

Same name and namespace in other branches
  1. 5.2 seochecklist.module \seochecklist_menu()
  2. 5 SEOChecklist.module \SEOChecklist_menu()
  3. 6.3 seochecklist.module \seochecklist_menu()
  4. 7.3 seochecklist.module \seochecklist_menu()

Implementation of hook_menu().

File

./seochecklist.module, line 19
SEO Checklist module allows users to track important SEO techniques on the website.

Code

function seochecklist_menu() {
  $items = array();
  $items['admin/settings/seochecklist'] = array(
    'title' => 'SEO Checklist',
    'description' => t('Keep track of your Drupal Search Engine Optimization tasks.'),
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'seochecklist_admin_settings',
    ),
    'type' => MENU_NORMAL_ITEM,
    'access arguments' => array(
      'access seochecklist content',
    ),
  );
  return $items;
}