context.menu.inc
1.23 KB
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
33
34
35
36
37
38
39
40
<?php
/**
* @file
* Contains menu item registration for the context tool.
*
* The menu items registered are AJAX callbacks for the context configuration
* popups. They are kept separately for organizational purposes.
*/
function ctools_context_menu(&$items) {
$base = array(
'access arguments' => array('access content'),
'type' => MENU_CALLBACK,
'file' => 'includes/context-admin.inc',
'theme callback' => 'ajax_base_page_theme',
);
$items['ctools/context/ajax/add'] = array(
'page callback' => 'ctools_context_ajax_item_add',
) + $base;
$items['ctools/context/ajax/configure'] = array(
'page callback' => 'ctools_context_ajax_item_edit',
) + $base;
$items['ctools/context/ajax/delete'] = array(
'page callback' => 'ctools_context_ajax_item_delete',
) + $base;
// For the access system
$base['file'] = 'includes/context-access-admin.inc';
$items['ctools/context/ajax/access/add'] = array(
'page callback' => 'ctools_access_ajax_add',
) + $base;
$items['ctools/context/ajax/access/configure'] = array(
'page callback' => 'ctools_access_ajax_edit',
) + $base;
$items['ctools/context/ajax/access/delete'] = array(
'page callback' => 'ctools_access_ajax_delete',
) + $base;
}