forked from boonex/dolphin.pro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile_info.php
52 lines (36 loc) · 1.54 KB
/
profile_info.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
/**
* Copyright (c) BoonEx Pty Limited - http://www.boonex.com/
* CC-BY License - http://creativecommons.org/licenses/by/3.0/
*/
require_once( 'inc/header.inc.php' );
require_once( BX_DIRECTORY_PATH_INC . 'design.inc.php' );
require_once( BX_DIRECTORY_PATH_CLASSES . 'BxDolPageView.php' );
bx_import( 'BxTemplProfileView' );
$sPageCaption = _t( '_Profile info' );
$_page['name_index'] = 7;
$_page['header'] = $sPageCaption;
$_page['header_text'] = $sPageCaption;
$_page['css_name'] = 'profile_view.css';
//-- init some needed variables --//;
$iViewedID = false != bx_get('ID') ? (int) bx_get('ID') : 0;
if (!$iViewedID) {
$iViewedID = getLoggedId();
}
// check profile membership, status, privacy and if it is exists
bx_check_profile_visibility($iViewedID, getLoggedId());
$GLOBALS['oTopMenu'] -> setCurrentProfileID($iViewedID);
// fill array with all profile informaion
$aMemberInfo = getProfileInfo($iViewedID);
// build page;
$_ni = $_page['name_index'];
// prepare all needed keys ;
$aMemberInfo['anonym_mode'] = $oTemplConfig -> bAnonymousMode;
$aMemberInfo['member_pass'] = $aMemberInfo['Password'];
$aMemberInfo['member_id'] = $aMemberInfo['ID'];
$aMemberInfo['url'] = BX_DOL_URL_ROOT;
bx_import('BxDolProfileInfoPageView');
$oProfileInfo = new BxDolProfileInfoPageView('profile_info', $aMemberInfo);
$sOutputHtml = $oProfileInfo->getCode();
$_page_cont[$_ni]['page_main_code'] = $sOutputHtml;
PageCode();