예제 #1
0
/**
 * Copyright (c) BoonEx Pty Limited - http://www.boonex.com/
 * CC-BY License - http://creativecommons.org/licenses/by/3.0/
 */
require_once BX_DIRECTORY_PATH_MODULES . $aModule['path'] . '/classes/' . $aModule['class_prefix'] . 'Module.php';
bx_import('BxDolPageView');
$oSpy = new BxSpyModule($aModule);
// ** init some needed variables ;
global $_page;
global $_page_cont;
//-- Define activity type --//;
$sActivityType = '';
if (isset($_GET['spy_type'])) {
    switch ($_GET['spy_type']) {
        case 'profiles_activity':
            $sActivityType = 'profiles_activity';
            break;
        case 'content_activity':
            $sActivityType = 'content_activity';
            break;
    }
}
$iIndex = 0;
$sPageCaption = _t('_bx_spy_notifications');
$GLOBALS['oTopMenu']->setCurrentProfileID($oSpy->iMemberId);
$_page['name_index'] = $iIndex;
$_page['header'] = $sPageCaption;
$_page['header_text'] = $sPageCaption;
$_page['css_name'] = 'spy.css';
$_page_cont[$iIndex]['page_main_code'] = $oSpy->getActivityPage($oSpy->iMemberId, $sActivityType);
PageCode($oSpy->_oTemplate);
예제 #2
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
 ***************************************************************************/
require_once BX_DIRECTORY_PATH_MODULES . $aModule['path'] . '/classes/' . $aModule['class_prefix'] . 'Module.php';
bx_import('BxDolPageView');
$oSpy = new BxSpyModule($aModule);
// ** init some needed variables ;
global $_page;
global $_page_cont;
$iIndex = 7;
$_page['name_index'] = $iIndex;
$sPageCaption = _t('_bx_spy');
$GLOBALS['oTopMenu']->setCustomSubHeader($sPageCaption);
//-- Define activity type --//;
$sActivityType = null;
if (isset($_GET['spy_type'])) {
    switch ($_GET['spy_type']) {
        case 'profiles_activity':
            $sActivityType = 'profiles_activity';
            break;
        case 'content_activity':
            $sActivityType = 'content_activity';
            break;
    }
}
$_page['header'] = $sPageCaption;
$_page['header_text'] = $sPageCaption;
$_page['css_name'] = 'spy.css';
$_page_cont[$iIndex]['page_main_code'] = DesignBoxContent(_t('_bx_spy'), $oSpy->getActivityPage($sActivityType), 1, $oSpy->getActivityTypesToggles());
PageCode($oSpy->_oTemplate);