-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathislandora_badges.module
32 lines (31 loc) · 1013 Bytes
/
islandora_badges.module
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/**
* @file
* Main hooks for Islandora Badges.
*/
/**
* Implements hook_menu().
*/
function islandora_badges_menu() {
return array(
'admin/islandora/tools/badges' => array(
'title' => 'Islandora Badges Configuration',
'description' => 'Configure Badges integration.',
'page callback' => 'drupal_get_form',
'page arguments' => array('islandora_badges_admin_form'),
'access arguments' => array('administer site configuration'),
'type' => MENU_NORMAL_ITEM,
'file' => 'includes/admin.form.inc',
),
'admin/islandora/tools/badges/common' => array(
'title' => 'Islandora Badges Configuration',
'description' => 'Configure Badges integration.',
'page callback' => 'drupal_get_form',
'page arguments' => array('islandora_badges_admin_form'),
'access arguments' => array('administer site configuration'),
'type' => MENU_DEFAULT_LOCAL_TASK,
'file' => 'includes/admin.form.inc',
'weight' => -9,
),
);
}