| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/business/pms/modules/ctools/includes/ |
Upload File : |
<?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',
);
$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;
}