| Revision 15942,
849 bytes
checked in by Alexander Trofimov, 4 months ago
(diff) |
|
Frontend
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | /** |
|---|
| 3 | * @package Dolphin Core |
|---|
| 4 | * @copyright Copyright (c) BoonEx Pty Limited - http://www.boonex.com/ |
|---|
| 5 | * @license CC-BY - http://creativecommons.org/licenses/by/3.0/ |
|---|
| 6 | */ |
|---|
| 7 | |
|---|
| 8 | ob_start(); |
|---|
| 9 | require_once('./inc/header.inc.php'); |
|---|
| 10 | require_once(BX_DIRECTORY_PATH_INC . "params.inc.php"); |
|---|
| 11 | require_once(BX_DIRECTORY_PATH_INC . "design.inc.php"); |
|---|
| 12 | ob_end_clean(); |
|---|
| 13 | |
|---|
| 14 | bx_import('BxDolLanguages'); |
|---|
| 15 | |
|---|
| 16 | if (isset($_COOKIE['memberID']) && isset($_COOKIE['memberPassword'])) |
|---|
| 17 | bx_logout(); |
|---|
| 18 | |
|---|
| 19 | bx_import('BxDolTemplate'); |
|---|
| 20 | $oTemplate = BxDolTemplate::getInstance(); |
|---|
| 21 | $oTemplate->setPageNameIndex (BX_PAGE_TRANSITION); |
|---|
| 22 | $oTemplate->setPageHeader (_t('_Please Wait')); |
|---|
| 23 | $oTemplate->setPageContent ('page_main_code', MsgBox(_t('_Please Wait'))); |
|---|
| 24 | $oTemplate->setPageContent ('url_relocate', BX_DOL_URL_ROOT); |
|---|
| 25 | |
|---|
| 26 | send_headers_page_changed(); |
|---|
| 27 | |
|---|
| 28 | $oTemplate->getPageCode(); |
|---|
| 29 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.