Cheetah
profile.php
Go to the documentation of this file.
1 <?php
2 
8 define('CH_PROFILE_PAGE', 1);
9 
10 require_once( 'inc/header.inc.php' );
11 require_once( CH_DIRECTORY_PATH_INC . 'design.inc.php' );
12 require_once( CH_DIRECTORY_PATH_INC . 'profiles.inc.php' );
13 require_once( CH_DIRECTORY_PATH_INC . 'utils.inc.php' );
14 
15 ch_import('ChTemplProfileView');
16 ch_import('ChTemplProfileGenerator');
17 ch_import('ChWsbInstallerUtils');
18 
19 $profileID = getID( $_GET['ID'] );
21 
23  $_page['name_index'] = 0;
24  $_page_cont[0]['page_main_code'] = MsgBox(_t('_sys_txt_error_you_are_blocked'));
25  PageCode();
26  exit;
27 }
28 
29 $sCodeLang = 'lang';
30 $sCodeTempl = $GLOBALS['oSysTemplate']->getCodeKey();
31 if(isset($_GET[$sCodeLang]) || isset($_GET[$sCodeTempl])) {
32  $sCurrentUrl = $_SERVER['PHP_SELF'] . '?' . ch_encode_url_params($_GET, array($sCodeLang, $sCodeTempl));
33 
34  $aMatch = array();
35  if(preg_match('/profile.php\?ID=([a-zA-Z0-9_-]+)(.*)/', $sCurrentUrl, $aMatch)) {
36  header("HTTP/1.1 301 Moved Permanently");
37  header ('Location:' . getProfileLink($profileID));
39  }
40 }
41 
42 // check profile membership, status, privacy and if it is exists
44 
45 // make profile view alert and record profile view event
46 if ($profileID != $memberID) {
47  require_once(CH_DIRECTORY_PATH_CLASSES . 'ChWsbAlerts.php');
48  $oAlert = new ChWsbAlerts('profile', 'view', $profileID, $memberID);
49  $oAlert->alert();
50 
51  ch_import ('ChWsbViews');
52  new ChWsbViews('profiles', $profileID);
53 }
54 
56 
57 $oProfile->oCmtsView->getExtraCss();
58 $oProfile->oCmtsView->getExtraJs();
59 $oProfile->oVotingView->getExtraJs();
60 
61 $oSysTemplate->addJs('view_edit.js');
62 
63 $_ni = 5;
64 
65 $_page['name_index'] = $_ni;
66 $_page['css_name'] = array('profile_view.css', 'profile_view_tablet.css', 'profile_view_phone.css');
67 
68 $p_arr = $oProfile -> _aProfile;
69 
70 $sUserInfo = $oFunctions->getUserInfo($p_arr['ID']);
71 if(!empty($sUserInfo))
73 
75 
77 $_page_cont[$_ni]['page_main_code'] = $oPPV->getCode();
78 $_page_cont[$_ni]['custom_block'] = '';
79 $_page_cont[$_ni]['page_main_css'] = '';
80 
81 // add profile customizer
82 if (ChWsbInstallerUtils::isModuleInstalled("profile_customize")) {
83  $_page_cont[$_ni]['custom_block'] = '<div id="profile_customize_page" style="display: none;">' .
84  ChWsbService::call('profile_customize', 'get_customize_block', array()) . '</div>';
85  $_page_cont[$_ni]['page_main_css'] = '<style type="text/css">' .
86  ChWsbService::call('profile_customize', 'get_profile_style', array($profileID)) . '</style>';
87 }
88 
89 // Submenu actions
92 
93 $sTxtProfileAccountPage = _t('_sys_am_profile_account_page');
94 $sTxtProfileMessage = _t('_sys_am_profile_message');
95 $sTxtFriendAdd = _t('_sys_am_profile_friend_add');
96 $sTxtFriendAccept = _t('_sys_am_profile_friend_accept');
97 $sTxtFriendCancel = _t('_sys_am_profile_friend_cancel');
98 
99 $aVars = array(
100  'ID' => $iId,
101  'member_id' => $iMemberId,
102  'BaseUri' => CH_WSB_URL_ROOT,
103  'cpt_am_profile_account_page' => $sTxtProfileAccountPage
104 );
105 
107  $aVars['cpt_am_friend_add'] = '';
108  $aVars['cpt_am_profile_message'] = $sTxtProfileMessage;
109 } else if(isFriendRequest($iId, $iMemberId)) {
110  $aVars['cpt_am_friend_add'] = '';
111  $aVars['cpt_am_friend_accept'] = $sTxtFriendAccept;
112  $aVars['cpt_am_profile_message'] = '';
113 } else {
114  $aVars['cpt_am_friend_add'] = $sTxtFriendAdd;
115  $aVars['cpt_am_friend_cancel'] = $sTxtFriendCancel;
116  $aVars['cpt_am_profile_message'] = $sTxtProfileMessage;
117 }
118 
119 $GLOBALS['oTopMenu']->setCustomSubActions($aVars, 'ProfileTitle', false);
120 
121 PageCode();
header
</code > Be careful enabling this directive if you have a redirector script that does not use the< code > Location</code > HTTP header
Definition: URI.MungeResources.txt:10
$iMemberId
$iMemberId
Definition: profile.php:91
$sTxtProfileAccountPage
$sTxtProfileAccountPage
Definition: profile.php:93
MsgBox
MsgBox($sText, $iTimer=0)
Definition: design.inc.php:175
$iId
if(ChWsbInstallerUtils::isModuleInstalled("profile_customize")) $iId
Definition: profile.php:90
$sCodeTempl
$sCodeTempl
Definition: profile.php:30
ch_import
ch_import($sClassName, $aModule=array())
Definition: utils.inc.php:1218
$oAlert
$oAlert
Definition: embed.php:15
ChTemplProfileGenerator
Definition: ChTemplProfileGenerator.php:11
php
send_headers_page_changed
send_headers_page_changed()
Definition: design.inc.php:99
$sTxtFriendCancel
$sTxtFriendCancel
Definition: profile.php:97
$memberID
$memberID
Definition: profile.php:20
$oFunctions
$oFunctions
Definition: ChTemplFunctions.php:20
ch_check_profile_visibility
ch_check_profile_visibility($iViewedId, $iViewerId=0, $bReturn=false)
Definition: profiles.inc.php:605
$_page
$_page['name_index']
Definition: profile.php:65
$_ni
$_ni
Definition: profile.php:63
ChWsbAlerts
Definition: ChWsbAlerts.php:39
exit
exit
Definition: cart.php:21
$_GET
$_GET['debug']
Definition: index.php:67
getLoggedId
getLoggedId()
Definition: profiles.inc.php:32
$aVars
$aVars
Definition: profile.php:99
getNickName
getNickName( $ID='')
Definition: profiles.inc.php:461
htmlspecialchars_adv
htmlspecialchars_adv($string)
Definition: utils.inc.php:302
$site
$site['ver']
Definition: version.inc.php:8
ChWsbViews
Definition: ChWsbViews.php:38
$sCodeLang
if(isBlocked($profileID, $memberID)) $sCodeLang
Definition: profile.php:29
isFriendRequest
isFriendRequest($iId, $iProfileId)
Definition: profiles.inc.php:377
_t
_t($key, $arg0="", $arg1="", $arg2="")
Definition: languages.inc.php:509
$sUserInfo
$sUserInfo
Definition: profile.php:70
PageCode
PageCode($oTemplate=null)
Definition: design.inc.php:91
getProfileLink
getProfileLink( $iID, $sLinkAdd='')
Definition: profiles.inc.php:484
$sTxtProfileMessage
$sTxtProfileMessage
Definition: profile.php:94
ChTemplProfileView
Definition: ChTemplProfileView.php:11
$sTxtFriendAccept
$sTxtFriendAccept
Definition: profile.php:96
process_line_output
process_line_output($text, $maxwordlen=100)
Definition: utils.inc.php:328
isBlocked
isBlocked($iFirstProfile, $iSecondProfile)
Definition: utils.inc.php:128
getID
getID( $str, $with_email=1)
Definition: admin.inc.php:139
$oPPV
$oPPV
Definition: profile.php:76
$p_arr
$p_arr
Definition: profile.php:68
$_page_cont
$_page_cont[$_ni]['page_main_code']
Definition: profile.php:77
$oSysTemplate
$oSysTemplate
Definition: params.inc.php:22
empty
Attr AllowedRel this is empty
Definition: Attr.AllowedRel.txt:7
ChWsbService\call
static call($mixed, $sMethod, $aParams=array(), $sClass='Module')
Definition: ChWsbService.php:32
$profileID
$profileID
Definition: profile.php:19
ChWsbInstallerUtils\isModuleInstalled
static isModuleInstalled($sUri)
Definition: ChWsbInstallerUtils.php:38
$oProfile
if($profileID !=$memberID) $oProfile
Definition: profile.php:55
$sTxtFriendAdd
$sTxtFriendAdd
Definition: profile.php:95
$GLOBALS
$GLOBALS['iAdminPage']
Definition: advanced_settings.php:10
$dir
$dir
Definition: config.php:10
ch_encode_url_params
ch_encode_url_params($a, $aExcludeKeys=array(), $aOnlyKeys=false)
Definition: utils.inc.php:1675