| 1 | <? |
|---|
| 2 | |
|---|
| 3 | /*************************************************************************** |
|---|
| 4 | * Dolphin Smart Community Builder |
|---|
| 5 | * ----------------- |
|---|
| 6 | * begin : Mon Mar 23 2006 |
|---|
| 7 | * copyright : (C) 2006 BoonEx Group |
|---|
| 8 | * website : http://www.boonex.com/ |
|---|
| 9 | * This file is part of Dolphin - Smart Community Builder |
|---|
| 10 | * |
|---|
| 11 | * Dolphin is free software. This work is licensed under a Creative Commons Attribution 3.0 License. |
|---|
| 12 | * http://creativecommons.org/licenses/by/3.0/ |
|---|
| 13 | * |
|---|
| 14 | * Dolphin is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
|---|
| 15 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|---|
| 16 | * See the Creative Commons Attribution 3.0 License for more details. |
|---|
| 17 | * You should have received a copy of the Creative Commons Attribution 3.0 License along with Dolphin, |
|---|
| 18 | * see license.txt file; if not, write to marketing@boonex.com |
|---|
| 19 | ***************************************************************************/ |
|---|
| 20 | |
|---|
| 21 | require_once( 'inc/header.inc.php' ); |
|---|
| 22 | require_once( BX_DIRECTORY_PATH_INC . 'design.inc.php' ); |
|---|
| 23 | require_once( BX_DIRECTORY_PATH_INC . 'profiles.inc.php' ); |
|---|
| 24 | require_once( BX_DIRECTORY_PATH_INC . 'members.inc.php' ); |
|---|
| 25 | require_once( BX_DIRECTORY_PATH_INC . 'utils.inc.php' ); |
|---|
| 26 | require_once( BX_DIRECTORY_PATH_ROOT . "templates/tmpl_{$tmpl}/scripts/BxTemplCmtsView.php" ); |
|---|
| 27 | |
|---|
| 28 | if ( !( $logged['admin'] = member_auth( 1, false ) ) ) |
|---|
| 29 | if ( !( $logged['member'] = member_auth( 0, false ) ) ) |
|---|
| 30 | if ( !( $logged['aff'] = member_auth( 2, false )) ) |
|---|
| 31 | $logged['moderator'] = member_auth( 3, false ); |
|---|
| 32 | |
|---|
| 33 | |
|---|
| 34 | $sSys = isset($_REQUEST['sys']) ? $_REQUEST['sys'] : ''; |
|---|
| 35 | $sAction = isset($_REQUEST['action']) && preg_match ('/^[A-Za-z_-]+$/', $_REQUEST['action']) ? $_REQUEST['action'] : ''; |
|---|
| 36 | $iId = (int)$_REQUEST['id']; |
|---|
| 37 | |
|---|
| 38 | $oCmts = new BxTemplCmtsView('', 0); |
|---|
| 39 | |
|---|
| 40 | if ($sSys && $sAction && $iId && $oCmts->isValidSystem($sSys)) |
|---|
| 41 | { |
|---|
| 42 | $oCmts = new BxTemplCmtsView($sSys, $iId, true); |
|---|
| 43 | |
|---|
| 44 | $sMethod = 'action' . $sAction; |
|---|
| 45 | echo $oCmts->$sMethod(); |
|---|
| 46 | } |
|---|
| 47 | |
|---|
| 48 | ?> |
|---|