| Revision 15934,
812 bytes
checked in by Alexander Trofimov, 2 weeks ago
(diff) |
|
Code cleaning
|
| 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 DolphinEndUser Dolphin Core End User Pages |
|---|
| 7 | * @ingroup DolphinCore |
|---|
| 8 | * @{ |
|---|
| 9 | */ |
|---|
| 10 | |
|---|
| 11 | require_once('./inc/header.inc.php'); |
|---|
| 12 | require_once(BX_DIRECTORY_PATH_INC . "params.inc.php"); |
|---|
| 13 | require_once(BX_DIRECTORY_PATH_INC . "design.inc.php"); |
|---|
| 14 | |
|---|
| 15 | bx_import('BxDolLanguages'); |
|---|
| 16 | bx_import('BxDolMenu'); |
|---|
| 17 | bx_import('BxDolTemplate'); |
|---|
| 18 | |
|---|
| 19 | BxDolMenu::setSelected ('system', 'about'); |
|---|
| 20 | |
|---|
| 21 | $oTemplate = BxDolTemplate::getInstance(); |
|---|
| 22 | $oTemplate->setPageNameIndex (BX_PAGE_DEFAULT); |
|---|
| 23 | $oTemplate->setPageHeader (_t("_ABOUT_US_H")); |
|---|
| 24 | $oTemplate->setPageContent ('page_main_code', DesignBoxContent(_t("_About Us"), _t("_ABOUT_US"), BX_DB_PADDING_DEF)); |
|---|
| 25 | $oTemplate->getPageCode(); |
|---|
| 26 | |
|---|
| 27 | /** @} */ |
|---|
Note: See
TracBrowser
for help on using the repository browser.