HomeHelpTrac

source: trunk/menu.php @ 15946

Revision 15946, 564 bytes checked in by Alexander Trofimov, 4 months ago (diff)

AJAX popup corrections

Line 
1<?php
2/**
3 * Copyright (c) BoonEx Pty Limited - http://www.boonex.com/
4 * CC-BY License - http://creativecommons.org/licenses/by/3.0/
5 *
6 * @defgroup    DolphinCore Dolphin Core
7 * @{
8 */
9
10require_once('./inc/header.inc.php');
11require_once(BX_DIRECTORY_PATH_INC . "utils.inc.php");
12
13bx_import('BxDolLanguages');
14
15$sObject = bx_process_input(bx_get('o'));
16if (!$sObject)
17    exit;
18
19bx_import('BxDolMenu');
20$oMenu = BxDolMenu::getObjectInstance($sObject);
21if (!$oMenu)
22    exit;
23
24header('Content-type: text/html; charset=utf-8');
25echo $oMenu->getCode ();
26
27/** @} */
Note: See TracBrowser for help on using the repository browser.