function copyprevention_menu in Copy Prevention 7
Implements hook_menu().
File
- ./
copyprevention.module, line 27 - Main file for Copy Prevention module.
Code
function copyprevention_menu() {
$items = array(
'admin/config/user-interface/copyprevention' => array(
'title' => 'Copy Prevention',
'description' => 'Configure Copy Prevention settings.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'copyprevention_settings_form',
),
'access arguments' => array(
'administer copy prevention',
),
'file' => 'copyprevention.admin.inc',
'type' => MENU_NORMAL_ITEM,
),
);
return $items;
}