Exemplo n.º 1
0
* See the Creative Commons Attribution 3.0 License for more details. 
* You should have received a copy of the Creative Commons Attribution 3.0 License along with Dolphin, 
* see license.txt file; if not, write to marketing@boonex.com
***************************************************************************/
define('BX_SECURITY_EXCEPTIONS', true);
define('BX_OS_ADMIN', 1);
$aBxSecurityExceptions = array('POST.request', 'GET.request', 'REQUEST.request');
require_once '../../../inc/header.inc.php';
require_once BX_DIRECTORY_PATH_INC . 'design.inc.php';
require_once BX_DIRECTORY_PATH_INC . 'admin_design.inc.php';
bx_import('BxDolPaginate');
bx_import('BxDolModuleDb');
require_once BX_DIRECTORY_PATH_MODULES . 'boonex/open_social/classes/BxOSiModule.php';
$oModuleDb = new BxDolModuleDb();
$aModule = $oModuleDb->getModuleByUri('open_social');
$oBxOSiModule = new BxOSiModule($aModule);
$logged['admin'] = member_auth(1, true, true);
$iAdminID = isAdmin() ? (int) $_COOKIE['memberID'] : 0;
if ($_REQUEST['action'] == 'get_preview') {
    // preview
    $iApplID = (int) $_REQUEST['appl_id'];
    $sApplicationSrc = $oBxOSiModule->serviceGenApplication($iApplID);
    $sRes = PopupBox('preview_box', _t('_Preview'), $sApplicationSrc);
    require_once BX_DIRECTORY_PATH_PLUGINS . 'Services_JSON.php';
    $oJson = new Services_JSON();
    echo $oJson->encode(array('code' => $sRes));
    exit;
}
if (isset($_POST['os_appls']) && is_array($_POST['os_appls'])) {
    // manage subactions
    foreach ($_POST['os_appls'] as $iApplID) {
Exemplo n.º 2
0
*     website              : http://www.boonex.com/
* This file is part of Dolphin - Smart Community Builder
*
* Dolphin is free software. This work is licensed under a Creative Commons Attribution 3.0 License. 
* http://creativecommons.org/licenses/by/3.0/
*
* Dolphin is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the Creative Commons Attribution 3.0 License for more details. 
* You should have received a copy of the Creative Commons Attribution 3.0 License along with Dolphin, 
* see license.txt file; if not, write to marketing@boonex.com
***************************************************************************/
define('BX_SECURITY_EXCEPTIONS', true);
$aBxSecurityExceptions = array('POST.request', 'GET.request', 'REQUEST.request');
require_once '../../../inc/header.inc.php';
require_once BX_DIRECTORY_PATH_INC . 'design.inc.php';
//require_once( BX_DIRECTORY_PATH_MODULES . $aModule['path'] . '/classes/' . $aModule['class_prefix'] . 'Module.php');
require_once BX_DIRECTORY_PATH_CLASSES . 'BxDolModuleDb.php';
require_once BX_DIRECTORY_PATH_MODULES . 'boonex/open_social/classes/BxOSiModule.php';
check_logged();
$oModuleDb = new BxDolModuleDb();
$aModule = $oModuleDb->getModuleByUri('open_social');
$oBxOSiModule = new BxOSiModule($aModule);
$sAction = $_REQUEST['action'];
$sCodeResult = '';
switch ($sAction) {
    default:
        $sCodeResult = $oBxOSiModule->GenCustomOSiBlock((int) $_REQUEST['ID']);
        break;
}
echo $sCodeResult;