You are here

function alchemy_contentanalysis_menu in Alchemy 7

Same name and namespace in other branches
  1. 6 modules/alchemy_contentanalysis/alchemy_contentanalysis.module \alchemy_contentanalysis_menu()

Implements hook_menu(). ().

1 string reference to 'alchemy_contentanalysis_menu'
alchemy_menu in ./alchemy.module
Implements hook_menu().

File

modules/alchemy_contentanalysis/alchemy_contentanalysis.module, line 11

Code

function alchemy_contentanalysis_menu() {
  $items = array();
  $items['admin/config/services/alchemy/contentanalysis'] = array(
    'title' => t('Content analyzer'),
    'description' => 'Settings for Alchemy content analyzer.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'alchemy_contentanalysis_admin_settings',
    ),
    'access callback' => 'user_access',
    'access arguments' => array(
      'admin content analysis',
    ),
    'type' => MENU_LOCAL_TASK,
    'file' => 'alchemy_contentanalysis.admin.inc',
  );
  return $items;
}