Cheetah
profiles.inc.php
Go to the documentation of this file.
1 <?php
2 
8 require_once( 'header.inc.php' );
9 require_once( CH_DIRECTORY_PATH_INC . 'design.inc.php' );
10 require_once( CH_DIRECTORY_PATH_INC . 'images.inc.php' );
11 require_once( CH_DIRECTORY_PATH_INC . 'params.inc.php' );
12 require_once( CH_DIRECTORY_PATH_INC . 'tags.inc.php' );
13 
14 // user roles
15 define('CH_WSB_ROLE_GUEST', 0);
16 define('CH_WSB_ROLE_MEMBER', 1);
17 define('CH_WSB_ROLE_ADMIN', 2);
18 define('CH_WSB_ROLE_AFFILIATE', 4);
19 define('CH_WSB_ROLE_MODERATOR', 8);
20 
24 function isLogged()
25 {
26  return getLoggedId() != 0;
27 }
28 function isLoggedActive()
29 {
30  return isProfileActive();
31 }
32 function getLoggedId()
33 {
34  return isset($_COOKIE['memberID']) && (!empty($GLOBALS['logged']['member']) || !empty($GLOBALS['logged']['admin'])) ? (int)$_COOKIE['memberID'] : 0;
35 }
37 {
38  return isset($_COOKIE['memberPassword']) && ($GLOBALS['logged']['member'] || $GLOBALS['logged']['admin']) ? $_COOKIE['memberPassword'] : '';
39 }
40 
44 function isMember($iId = 0)
45 {
47 }
48 if(!function_exists("isAdmin")) {
49  function isAdmin($iId = 0)
50  {
51  return isRole(CH_WSB_ROLE_ADMIN, $iId);
52  }
53 }
54 function isAffiliate($iId = 0)
55 {
57 }
58 function isModerator($iId = 0)
59 {
61 }
62 function isRole($iRole, $iId = 0)
63 {
65  if($aProfile === false)
66  return false;
67 
68  if(!((int)$aProfile['Role'] & $iRole))
69  return false;
70 
71  return true;
72 }
73 
74 $aUser = array(); //global cache array
75 
76 function ShowZodiacSign( $date )
77 {
78  global $site;
79 
80  if ( $date == "0000-00-00" )
81  return "";
82 
83  if ( strlen($date) ) {
84  $m = substr( $date, -5, 2 );
85  $d = substr( $date, -2, 2 );
86 
87  switch ( $m ) {
88  case '01': if ( $d <= 20 ) $sign = "capricorn"; else $sign = "aquarius";
89  break;
90  case '02': if ( $d <= 20 ) $sign = "aquarius"; else $sign = "pisces";
91  break;
92  case '03': if ( $d <= 20 ) $sign = "pisces"; else $sign = "aries";
93  break;
94  case '04': if ( $d <= 20 ) $sign = "aries"; else $sign = "taurus";
95  break;
96  case '05': if ( $d <= 20 ) $sign = "taurus"; else $sign = "gemini";
97  break;
98  case '06': if ( $d <= 21 ) $sign = "gemini"; else $sign = "cancer";
99  break;
100  case '07': if ( $d <= 22 ) $sign = "cancer"; else $sign = "leo";
101  break;
102  case '08': if ( $d <= 23 ) $sign = "leo"; else $sign = "virgo";
103  break;
104  case '09': if ( $d <= 23 ) $sign = "virgo"; else $sign = "libra";
105  break;
106  case '10': if ( $d <= 23 ) $sign = "libra"; else $sign = "scorpio";
107  break;
108  case '11': if ( $d <= 22 ) $sign = "scorpio"; else $sign = "sagittarius";
109  break;
110  case '12': if ( $d <= 21 ) $sign = "sagittarius"; else $sign = "capricorn";
111  }
112  $sIcon = $sign . '.png';
113  return '<img src="' . $site['zodiac'] . $sIcon . '" alt="' . $sign . '" title="' . $sign . '" />';
114  } else {
115  return "";
116  }
117 }
118 
119 function age( $birth_date )
120 {
121  if ( $birth_date == "0000-00-00" )
122  return _t("_uknown");
123 
124  $bd = explode( "-", $birth_date );
125  $age = date("Y") - $bd[0] - 1;
126 
127  $arr[1] = "m";
128  $arr[2] = "d";
129 
130  for ( $i = 1; $arr[$i]; $i++ ) {
131  $n = date( $arr[$i] );
132  if ( $n < $bd[$i] )
133  break;
134  if ( $n > $bd[$i] ) {
135  ++$age;
136  break;
137  }
138  }
139 
140  return $age;
141 }
142 
148 function GetMembershipStatus($memberID, $bOfferUpgrade = true, $bViewActions = true)
149 {
150  $ret = '';
151 
152  $aMembership = getMemberMembershipInfo($memberID);
153  $sViewActions = $bViewActions ? "<a onclick=\"javascript:loadHtmlInPopup('explanation_popup', '" . CH_WSB_URL_ROOT . "explanation.php?explain=membership&amp;type=" . $aMembership['ID'] . "');\" href=\"javascript:void(0);\">" . _t("_VIEW_MEMBERSHIP_ACTIONS") . "</a>" : "";
154 
155  // Show colored membership name
156  if($aMembership['ID'] == MEMBERSHIP_ID_STANDARD) {
157  $ret .= $aMembership['Name'];
158 
159  if($bOfferUpgrade && ChWsbRequest::serviceExists('membership', 'get_upgrade_url'))
160  $sViewActions = _t('_MEMBERSHIP_UPGRADE_FROM_STANDARD', ChWsbService::call('membership', 'get_upgrade_url')) . '<span class="sys-bullet"></span>' . $sViewActions;
161 
162  $ret .= '<br />' . $sViewActions;
163  } else {
164  $ret .= '<font color="red">' . $aMembership['Name'] . '</font>';
165 
166  $sExpiration = '';
167  if(!is_null($aMembership['DateExpires']))
168  $sExpiration = _t("_MEMBERSHIP_EXPIRES", defineTimeInterval($aMembership['DateExpires']));
169  else
170  $sExpiration = _t("_MEMBERSHIP_EXPIRES_NEVER");
171 
172  $ret .= '<br />' . $sViewActions . '<span class="sys-bullet"></span>' . $sExpiration;
173  }
174 
175  return $ret;
176 }
177 
178 function deleteUserDataFile( $userID )
179 {
180  global $aUser;
181 
182  $bUseCacheSystem = ( getParam('enable_cache_system') == 'on' ) ? true : false;
183  if (!$bUseCacheSystem) return false;
184 
185  $userID = (int)$userID;
186  $fileName = CH_DIRECTORY_PATH_CACHE . 'user' . $userID . '.php';
187  if( file_exists($fileName) ) {
188  unlink($fileName);
189  }
190 }
191 
192 function createUserDataFile( $userID )
193 {
194  global $aUser;
195 
196  $bUseCacheSystem = ( getParam('enable_cache_system') == 'on' ) ? true : false;
197  if (!$bUseCacheSystem) return false;
198 
199  $userID = (int)$userID;
200  $fileName = CH_DIRECTORY_PATH_CACHE . 'user' . $userID . '.php';
201  if( $userID > 0 ) {
202 
203  $aPreUser = getProfileInfoDirect ($userID);
204 
205  if( isset( $aPreUser ) and is_array( $aPreUser ) and $aPreUser) {
206  $sUser = '<'.'?php';
207  $sUser .= "\n\n";
208  $sUser .= '$aUser[' . $userID . '] = array();';
209  $sUser .= "\n";
210  $sUser .= '$aUser[' . $userID . '][\'datafile\'] = true;';
211  $sUser .= "\n";
212 
213  $replaceWhat = array( '\\', '\'' );
214  $replaceTo = array( '\\\\', '\\\'' );
215 
216  foreach( $aPreUser as $key => $value )
217  $sUser .= '$aUser[' . $userID . '][\'' . $key . '\']' . ' = ' . '\'' . str_replace( $replaceWhat, $replaceTo, $value ) . '\'' . ";\n";
218 
219  if( $file = fopen( $fileName, "w" ) ) {
220  fwrite( $file, $sUser );
221  fclose( $file );
222  @chmod ($fileName, 0666);
223 
224  @include( $fileName );
225  return true;
226  } else
227  return false;
228  }
229  } else
230  return false;
231 }
232 
236 function isProfileActive($iId = 0)
237 {
239  if($aProfile === false || empty($aProfile))
240  return false;
241 
242  return $aProfile['Status'] == 'Active';
243 }
244 function getProfileInfoDirect ($iProfileID)
245 {
246  return $GLOBALS['MySQL']->getRow("SELECT * FROM `Profiles` WHERE `ID`= ? LIMIT 1", [$iProfileID]);
247 }
248 
249 function getProfileInfo($iProfileID = 0, $checkActiveStatus = false, $forceCache = false)
250 {
251  global $aUser;
252 
253  $iProfileID = !empty($iProfileID) ? (int)$iProfileID : getLoggedId();
254  if(!$iProfileID)
255  return false;
256 
257  if(!isset( $aUser[$iProfileID]) || !is_array($aUser[$iProfileID]) || $forceCache) {
258  $sCacheFile = CH_DIRECTORY_PATH_CACHE . 'user' . $iProfileID . '.php';
259  if( !file_exists( $sCacheFile ) || $forceCache ) {
260  if( !createUserDataFile( $iProfileID ) ) {
261  return getProfileInfoDirect ($iProfileID);
262  }
263  }
264 
265  @include( $sCacheFile );
266  }
267 
268  if( $checkActiveStatus and $aUser[$iProfileID]['Status'] != 'Active' )
269  return false;
270 
271  return $aUser[$iProfileID];
272 }
273 
274 /* osed only for xmlrpc */
275 function getNewLettersNum( $iID )
276 {
277  $sqlQuery =
278  "
279  SELECT
280  COUNT(`Recipient`)
281  FROM
282  `sys_messages`
283  INNER JOIN
284  `Profiles` ON (`Profiles`.`ID` = `sys_messages`.`Sender`)
285  WHERE
286  `Recipient`='$iID'
287  AND
288  `New`='1'
289  AND
290  NOT FIND_IN_SET('Recipient', `Trash`)
291  ";
292  return (int)db_value($sqlQuery);
293 }
294 
295 /*function for inner using only
296  $ID - profile ID
297  $iFrStatus - friend status (1 - approved, 0 - wait)
298  $iOnline - filter for last nav moment (in minutes)
299  $sqlWhere - add sql Conditions, should beginning from AND
300 */
301 function getFriendNumber($iID, $iFrStatus = 1, $iOnline = 0, $sqlWhere = '')
302 {
303  $sqlAdd = "AND p.`Status`='Active'";
304 
305  if ($iOnline > 0)
306  $sqlAdd = " AND (p.`DateLastNav` > SUBDATE(NOW(), INTERVAL " . $iOnline . " MINUTE))";
307 
308  if (strlen($sqlWhere) > 0)
309  $sqlAdd .= $sqlWhere;
310 
311  $sqlQuery = "SELECT COUNT(`f`.`ID`)
312  FROM
313  (SELECT `ID` AS `ID` FROM `sys_friend_list` WHERE `Profile` = '{$iID}' AND `Check` = {$iFrStatus}
314  UNION
315  SELECT `Profile` AS `ID` FROM `sys_friend_list` WHERE `ID` = '{$iID}' AND `Check` = {$iFrStatus})
316  AS `f`
317  INNER JOIN `Profiles` AS `p` ON `p`.`ID` = `f`.`ID`
318  WHERE 1 {$sqlAdd}";
319 
320  return (int)db_value($sqlQuery);
321 }
322 
329 function getFriendRequests($iID)
330 {
331  $iID = (int)$iID;
332  $sqlQuery = "SELECT count(*) FROM `sys_friend_list` WHERE `Profile` = {$iID} AND `Check` = '0'";
333  $iCount = (int)db_value($sqlQuery);
334  if ($iCount > 0) {
335  $sqlQuery = "SELECT count(*) FROM `sys_friend_list` as f LEFT JOIN `Profiles` as p ON p.`ID` = f.`ID` WHERE f.`Profile` = {$iID} AND f.`Check` = '0' AND p.`Status`='Active'";
336  $iCount = (int)db_value($sqlQuery);
337  }
338  return $iCount;
339 }
340 
348 {
349  $iId = (int)$iId;
350  $iProfileId = (int)$iProfileId;
351 
352  $sQuery = "
353  SELECT COUNT(*)
354  FROM `Profiles` AS p
355  INNER JOIN (SELECT `ID` AS `ID`, `When` FROM `sys_friend_list` WHERE `Profile` = '{$iId}' AND `Check` =1
356  UNION SELECT `Profile` AS `ID`, `When` FROM `sys_friend_list` WHERE `ID` = '{$iId}' AND `Check` =1) AS `f1`
357  ON (`f1`.`ID` = `p`.`ID`)
358  INNER JOIN (SELECT `ID` AS `ID`, `When` FROM `sys_friend_list` WHERE `Profile` = '{$iProfileId}' AND `Check` =1
359  UNION SELECT `Profile` AS `ID`, `When` FROM `sys_friend_list` WHERE `ID` = '{$iProfileId}' AND `Check` =1) AS `f2`
360  ON (`f2`.`ID` = `p`.`ID`)
361  ";
362  return (int)db_value($sQuery);
363 }
364 
366 {
367  $iId = (int)$iId;
368  $iProfileId = (int)$iProfileId;
369  return (int)db_value("SELECT count(*) FROM `sys_fave_list` WHERE `ID`='{$iId}' AND `Profile`='{$iProfileId}'") > 0;
370 }
371 
378 {
379  $iId = (int)$iId;
380  $iProfileId = (int)$iProfileId;
381  return (int)db_value("SELECT count(*) FROM `sys_friend_list` WHERE `ID`='{$iId}' AND `Profile`='{$iProfileId}' AND `Check` = '0'") > 0;
382 }
383 
384 function getMyFriendsEx($iID, $sWhereParam = '', $sSortParam = '', $sqlLimit = '')
385 {
386  $sOrderBy = '';
387  $sWhereParam = "AND p.`Status`='Active' " . $sWhereParam;
388 
389  switch($sSortParam) {
390 
391  case 'activity' :
392  case 'last_nav' : // DateLastNav
393  $sOrderBy = 'ORDER BY p.`DateLastNav`';
394  break;
395  case 'activity_desc' :
396  case 'last_nav_desc' : // DateLastNav
397  $sOrderBy = 'ORDER BY p.`DateLastNav` DESC';
398  break;
399  case 'date_reg' : // DateReg
400  $sOrderBy = 'ORDER BY p.`DateReg`';
401  break;
402  case 'date_reg_desc' : // DateReg
403  $sOrderBy = 'ORDER BY p.`DateReg` DESC';
404  break;
405  case 'image' : // Avatar
406  $sOrderBy = 'ORDER BY p.`Avatar` DESC';
407  break;
408  case 'rate' : // Rate and RateCount
409  $sOrderBy = 'ORDER BY p.`Rate` DESC, p.`RateCount` DESC';
410  break;
411  default : // DateLastNav
412  $sOrderBy = 'ORDER BY p.`DateLastNav` DESC';
413  break;
414  }
415 
416  $sLimit = ($sqlLimit == '') ? '' : /*"LIMIT 0, " .*/ $sqlLimit;
417  $iOnlineTime = (int)getParam( "member_online_time" );
418  $sqlQuery = "SELECT `p`.*, `f`.`ID`,
419  if(`DateLastNav` > SUBDATE(NOW( ), INTERVAL $iOnlineTime MINUTE ), 1, 0) AS `is_online`,
420  UNIX_TIMESTAMP(p.`DateLastLogin`) AS 'TS_DateLastLogin', UNIX_TIMESTAMP(p.`DateReg`) AS 'TS_DateReg' FROM (
421  SELECT `ID` AS `ID` FROM `sys_friend_list` WHERE `Profile` = '{$iID}' AND `Check` =1
422  UNION
423  SELECT `Profile` AS `ID` FROM `sys_friend_list` WHERE `ID` = '{$iID}' AND `Check` =1
424  ) AS `f`
425  INNER JOIN `Profiles` AS `p` ON `p`.`ID` = `f`.`ID`
426  WHERE 1 {$sWhereParam}
427  {$sOrderBy}
428  {$sLimit}";
429 
430  $aFriends = array();
431 
432  $vProfiles = db_res($sqlQuery);
433  while ($aProfiles = $vProfiles->fetch()) {
434  $aFriends[$aProfiles['ID']] = array($aProfiles['ID'], $aProfiles['TS_DateLastLogin'], $aProfiles['TS_DateReg'], $aProfiles['Rate'], $aProfiles['DateLastNav'], $aProfiles['is_online']);
435  }
436 
437  return $aFriends;
438 }
439 
440 /*
441 * The function returns NickName by given ID. If no ID specified, it tryes to get if from _COOKIE['memberID'];
442 */
443 function getUsername( $ID = '' )
444 {
445  if ( !$ID && !empty($_COOKIE['memberID']) )
446  $ID = (int)$_COOKIE['memberID'];
447 
448  if ( !$ID )
449  return '';
450 
452  if (!$aProfile)
453  return false;
454 
455  return $aProfile['NickName'];
456 }
457 
458 /*
459 * The function returns NickName by given ID. If no ID specified, it tryes to get if from _COOKIE['memberID'];
460 */
461 function getNickName( $ID = '' )
462 {
463  if ( !$ID && !empty($_COOKIE['memberID']) )
464  $ID = (int)$_COOKIE['memberID'];
465 
466  if ( !$ID )
467  return '';
468 
469  return $GLOBALS['oFunctions']->getUserTitle ($ID);
470 }
471 
472 /*
473  * The function returns Password by given ID.
474  */
475 function getPassword( $ID = '' )
476 {
477  if ( !(int)$ID )
478  return '';
479 
480  $arr = getProfileInfo( $ID );
481  return $arr['Password'];
482 }
483 
484 function getProfileLink( $iID, $sLinkAdd = '' )
485 {
486  $aProfInfo = getProfileInfo($iID);
487  $iID = $aProfInfo['Couple'] > 0 && $aProfInfo['ID'] > $aProfInfo['Couple'] ? $aProfInfo['Couple'] : $iID;
488 
489  $sLink = '';
490  if(getParam('enable_modrewrite') == 'on')
491  $sLink = rawurlencode(getUsername($iID)) . ($sLinkAdd ? '?' . $sLinkAdd : '');
492  else
493  $sLink = 'profile.php?ID=' . $iID . ($sLinkAdd ? '&' . $sLinkAdd : '');
494 
495  return CH_WSB_URL_ROOT . $sLink;
496 }
497 
498 function isLoggedBanned($iCurUserID = 0)
499 {
500  $iCCurUserID = ($iCurUserID>0) ? $iCurUserID : (int)$_COOKIE['memberID'];
501  if ($iCCurUserID) {
502  $CheckSQL = "
503  SELECT *
504  FROM `sys_admin_ban_list`
505  WHERE `ProfID`='{$iCCurUserID}'
506  ";
507  $res = db_res($CheckSQL);
508  if (db_affected_rows($res)>0) {
509  return true;
510  }
511  }
512  return false;
513 }
514 function ch_login($iId, $bRememberMe = false, $bAlert = true)
515 {
517 
518  $aUrl = parse_url($GLOBALS['site']['url']);
519  $sPath = isset($aUrl['path']) && !empty($aUrl['path']) ? $aUrl['path'] : '/';
520  $sHost = '';
521  $iCookieTime = $bRememberMe ? time() + 24*60*60*30 : 0;
522  setcookie("memberID", $iId, $iCookieTime, $sPath, $sHost);
523  $_COOKIE['memberID'] = $iId;
524  setcookie("memberPassword", $sPassword, $iCookieTime, $sPath, $sHost, false, true /* http only */);
525  $_COOKIE['memberPassword'] = $sPassword;
526 
527  db_res("UPDATE `Profiles` SET `DateLastLogin`=NOW(), `DateLastNav`=NOW() WHERE `ID`='" . $iId . "'");
529 
530  if($bAlert) {
531  require_once(CH_DIRECTORY_PATH_CLASSES . 'ChWsbAlerts.php');
532  $oZ = new ChWsbAlerts('profile', 'login', $iId);
533  $oZ->alert();
534  }
535 
536  return getProfileInfo($iId);
537 }
538 function ch_logout($bNotify = true)
539 {
540  if($bNotify && isMember()) {
541  require_once(CH_DIRECTORY_PATH_CLASSES . 'ChWsbAlerts.php');
542  $oZ = new ChWsbAlerts('profile', 'logout', (int)$_COOKIE['memberID']);
543  $oZ->alert();
544  }
545 
546  $aUrl = parse_url($GLOBALS['site']['url']);
547  $sPath = isset($aUrl['path']) && !empty($aUrl['path']) ? $aUrl['path'] : '/';
548 
549  setcookie('memberID', '', time() - 96 * 3600, $sPath);
550  setcookie('memberPassword', '', time() - 96 * 3600, $sPath);
551 
552  unset($_COOKIE['memberID']);
553  unset($_COOKIE['memberPassword']);
554 
555  ch_import('ChWsbSession');
556  ChWsbSession::getInstance()->destroy();
557 
558  if (ini_get('session.use_cookies')) {
559  $aParams = session_get_cookie_params();
560  setcookie(session_name(), '', time() - 96 * 3600,
561  $aParams['path'], $aParams['domain'],
562  $aParams['secure'], $aParams['httponly']
563  );
564  }
565 
566  if (version_compare(PHP_VERSION, '5.4.0') >= 0 && PHP_SESSION_ACTIVE == session_status())
567  session_destroy();
568 }
569 
570 function setSearchStartAge($iMin)
571 {
572  if ($iMin <= 0)
573  return false;
574 
575  $GLOBALS['MySQL']->query("update `sys_profile_fields` set `Min` = $iMin where `Name` = 'DateOfBirth'");
576 
577  require_once(CH_DIRECTORY_PATH_CLASSES . 'ChWsbPFM.php');
578  $oCacher = new ChWsbPFMCacher();
579  $oCacher -> createCache();
580 
581  return true;
582 }
583 
584 function setSearchEndAge($iMax)
585 {
586  if ($iMax <= 0)
587  return false;
588 
589  $GLOBALS['MySQL']->query("update `sys_profile_fields` set `Max` = $iMax where `Name` = 'DateOfBirth'");
590 
591  require_once(CH_DIRECTORY_PATH_CLASSES . 'ChWsbPFM.php');
592  $oCacher = new ChWsbPFMCacher();
593  $oCacher -> createCache();
594 
595  return true;
596 }
597 
605 function ch_check_profile_visibility ($iViewedId, $iViewerId = 0, $bReturn = false)
606 {
608 
609  // check if profile exists
610  if (!$iViewedId) {
611  if ($bReturn)
612  return false;
613  $GLOBALS['oSysTemplate']->displayPageNotFound ();
614  exit;
615  }
616 
617  // check if viewer can view profile
618  $bPerform = $iViewedId == $iViewerId ? FALSE : TRUE;
619  $check_res = checkAction( $iViewerId, ACTION_ID_VIEW_PROFILES, $bPerform, $iViewedId );
621  && !$logged['admin'] && !$logged['moderator'] && $iViewerId != $iViewedId)
622  {
623  if ($bReturn)
624  return false;
625  $_page['header'] = "{$site['title']} "._t("_Member Profile");
626  $_page['header_text'] = "{$site['title']} "._t("_Member Profile");
627  $_page['name_index'] = 0;
628  $_page_cont[0]['page_main_code'] = MsgBox($check_res[CHECK_ACTION_MESSAGE]);
629 
630  header("HTTP/1.0 403 Forbidden");
631  PageCode();
632  exit;
633  }
634 
635  ch_import('ChTemplProfileGenerator');
636  $oProfile = new ChTemplProfileGenerator( $iViewedId );
637  $p_arr = $oProfile -> _aProfile;
638 
639  // check if viewed member is active
640  if (!($p_arr['ID'] && ($logged['admin'] || $logged['moderator'] || $oProfile->owner || $p_arr['Status'] == 'Active'))) {
641  if ($bReturn)
642  return false;
643  header("HTTP/1.1 404 Not Found");
644  $GLOBALS['oSysTemplate']->displayMsg(_t("_Profile NA"));
645  exit;
646  }
647 
648  // check privacy
649  if (!$logged['admin'] && !$logged['moderator'] && $iViewerId != $iViewedId) {
650  $oPrivacy = new ChWsbPrivacy('Profiles', 'ID', 'ID');
651  if (!$oPrivacy->check('view', $iViewedId, $iViewerId)) {
652  if ($bReturn)
653  return false;
654  ch_import('ChWsbProfilePrivatePageView');
655  $oProfilePrivateView = new ChWsbProfilePrivatePageView($oProfile, $site, $dir);
656  $_page['name_index'] = 7;
657  $_page_cont[7]['page_main_code'] = $oProfilePrivateView->getCode();
658 
659  header("HTTP/1.0 403 Forbidden");
660  PageCode();
661  exit;
662  }
663  }
664  if ($bReturn)
665  return true;
666 }
667 
668 check_logged();
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
isAffiliate
if(!function_exists("isAdmin")) isAffiliate($iId=0)
Definition: profiles.inc.php:54
ShowZodiacSign
ShowZodiacSign( $date)
Definition: profiles.inc.php:76
ch_login
ch_login($iId, $bRememberMe=false, $bAlert=true)
Definition: profiles.inc.php:514
deleteUserDataFile
deleteUserDataFile( $userID)
Definition: profiles.inc.php:178
getMyFriendsEx
getMyFriendsEx($iID, $sWhereParam='', $sSortParam='', $sqlLimit='')
Definition: profiles.inc.php:384
TRUE
URI MungeSecretKey $secret_key</pre >< p > If the output is TRUE
Definition: URI.MungeSecretKey.txt:17
getLoggedPassword
getLoggedPassword()
Definition: profiles.inc.php:36
MsgBox
MsgBox($sText, $iTimer=0)
Definition: design.inc.php:175
isProfileActive
isProfileActive($iId=0)
Definition: profiles.inc.php:236
check_logged
check_logged()
Definition: admin.inc.php:238
ChWsbRequest\serviceExists
static serviceExists($mixedModule, $sMethod, $sClass="Module")
Definition: ChWsbRequest.php:70
defineTimeInterval
defineTimeInterval($iTime, $bAutoDateConvert=true, $bShort=false)
Definition: utils.inc.php:831
CHECK_ACTION_RESULT_ALLOWED
const CHECK_ACTION_RESULT_ALLOWED
Definition: membership_levels.inc.php:60
$_page
$_page['name_index']
Definition: about_us.php:13
$ret
$ret
Definition: index.php:39
GetMembershipStatus
GetMembershipStatus($memberID, $bOfferUpgrade=true, $bViewActions=true)
Definition: profiles.inc.php:148
getMutualFriendsCount
getMutualFriendsCount($iId, $iProfileId)
Definition: profiles.inc.php:347
ch_import
ch_import($sClassName, $aModule=array())
Definition: utils.inc.php:1218
$_page_cont
$_page_cont[$_ni]['page_main_code']
Definition: about_us.php:24
setSearchStartAge
setSearchStartAge($iMin)
Definition: profiles.inc.php:570
CHECK_ACTION_RESULT
const CHECK_ACTION_RESULT
Definition: membership_levels.inc.php:54
ChTemplProfileGenerator
Definition: ChTemplProfileGenerator.php:11
CHECK_ACTION_MESSAGE
const CHECK_ACTION_MESSAGE
Definition: membership_levels.inc.php:55
getPassword
getPassword( $ID='')
Definition: profiles.inc.php:475
php
$oZ
$oZ
Definition: db.php:20
setSearchEndAge
setSearchEndAge($iMax)
Definition: profiles.inc.php:584
$iId
$iId
Definition: license.php:15
isRole
isRole($iRole, $iId=0)
Definition: profiles.inc.php:62
isLogged
isLogged()
Definition: profiles.inc.php:24
MEMBERSHIP_ID_STANDARD
const MEMBERSHIP_ID_STANDARD
Definition: membership_levels.inc.php:49
isLoggedBanned
isLoggedBanned($iCurUserID=0)
Definition: profiles.inc.php:498
isLoggedActive
isLoggedActive()
Definition: profiles.inc.php:28
isAdmin
isAdmin()
Definition: index.php:649
isModerator
isModerator($iId=0)
Definition: profiles.inc.php:58
$memberID
$memberID
Definition: profile.php:20
getFriendRequests
getFriendRequests($iID)
Definition: profiles.inc.php:329
ch_check_profile_visibility
ch_check_profile_visibility($iViewedId, $iViewerId=0, $bReturn=false)
Definition: profiles.inc.php:605
$sPassword
$sPassword
Definition: actions.inc.php:10
ChWsbAlerts
Definition: ChWsbAlerts.php:39
exit
exit
Definition: cart.php:21
createUserDataFile
createUserDataFile( $userID)
Definition: profiles.inc.php:192
and
and
Definition: license.txt:18
getParam
getParam($sParamName, $bUseCache=true)
Definition: db.inc.php:130
getLoggedId
getLoggedId()
Definition: profiles.inc.php:32
CH_WSB_ROLE_MODERATOR
const CH_WSB_ROLE_MODERATOR
Definition: profiles.inc.php:19
$aProfile
$aProfile
Definition: flash.php:14
getNickName
getNickName( $ID='')
Definition: profiles.inc.php:461
$site
$site['ver']
Definition: version.inc.php:8
isFriendRequest
isFriendRequest($iId, $iProfileId)
Definition: profiles.inc.php:377
getUsername
getUsername( $ID='')
Definition: profiles.inc.php:443
global
if(!defined("GLOBAL_MODULE")) define("GLOBAL_MODULE" global
Definition: header.inc.php:25
_t
_t($key, $arg0="", $arg1="", $arg2="")
Definition: languages.inc.php:509
time
that in the case of a Adaptation or at a minimum such credit will if a credit for all contributing authors of the Adaptation or Collection then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors For the avoidance of You may only use the credit required by this Section for the purpose of attribution in the manner set out above by exercising Your rights under this You may not implicitly or explicitly assert or imply any connection sponsorship or endorsement by the Original Licensor and or Attribution as of You or Your use of the without the express prior written permission of the Original Licensor and or Attribution Parties Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable if You Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or You must not modify or take other derogatory action in relation to the Work which would be prejudicial to the Original Author s honor or reputation Licensor agrees that in those in which any exercise of the right granted in modification or other derogatory action prejudicial to the Original Author s honor and the Licensor will waive or not as this to the fullest extent permitted by the applicable national to enable You to reasonably exercise Your right under Warranties and Disclaimer UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN LICENSOR OFFERS THE WORK AS IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE STATUTORY OR WITHOUT WARRANTIES OF FITNESS FOR A PARTICULAR OR THE ABSENCE OF LATENT OR OTHER OR THE PRESENCE OF ABSENCE OF WHETHER OR NOT DISCOVERABLE SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED SO SUCH EXCLUSION MAY NOT APPLY TO YOU Limitation on Liability EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES Termination This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License Individuals or entities who have received Adaptations or Collections from You under this will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses and will survive any termination of this License Subject to the above terms and the license granted here is Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time
Definition: license.txt:56
getProfileInfoDirect
getProfileInfoDirect($iProfileID)
Definition: profiles.inc.php:244
PageCode
PageCode($oTemplate=null)
Definition: design.inc.php:91
getProfileLink
getProfileLink( $iID, $sLinkAdd='')
Definition: profiles.inc.php:484
db_affected_rows
db_affected_rows($oStmt=null)
Definition: db.inc.php:56
ChWsbSession\getInstance
static getInstance()
Definition: ChWsbSession.php:28
CH_WSB_ROLE_MEMBER
const CH_WSB_ROLE_MEMBER
Definition: profiles.inc.php:16
CH_WSB_ROLE_AFFILIATE
const CH_WSB_ROLE_AFFILIATE
Definition: profiles.inc.php:18
checkAction
checkAction($iMemberId, $actionID, $performAction=false, $iForcedProfID=0, $isCheckMemberStatus=true)
Definition: membership_levels.inc.php:313
ChWsbProfilePrivatePageView
Definition: ChWsbProfilePrivatePageView.php:11
age
age( $birth_date)
Definition: profiles.inc.php:119
isFaved
isFaved($iId, $iProfileId)
Definition: profiles.inc.php:365
getMemberMembershipInfo
getMemberMembershipInfo($iMemberId, $iTime='', $bCheckUserStatus=false)
Definition: membership_levels.inc.php:234
$aUser
$aUser
Definition: profiles.inc.php:74
db_res
db_res($query, $bindings=[])
Definition: db.inc.php:39
default
Attr AllowedFrameTargets _parent and _top Values should be as validation will be done in a case sensitive manner despite W3C s recommendation XHTML Strict does not permit the target attribute so this directive will have no effect in that doctype XHTML does not enable the Target module by default
Definition: Attr.AllowedFrameTargets.txt:10
$logged
$logged['member']
Definition: activation_email.php:16
db_value
db_value($query, $bindings=[], $error_checking=true, $index=0)
Definition: db.inc.php:98
getProfileInfo
getProfileInfo($iProfileID=0, $checkActiveStatus=false, $forceCache=false)
Definition: profiles.inc.php:249
getNewLettersNum
getNewLettersNum( $iID)
Definition: profiles.inc.php:275
$p_arr
$p_arr
Definition: profile.php:68
ch_logout
ch_logout($bNotify=true)
Definition: profiles.inc.php:538
ChWsbPrivacy
Definition: ChWsbPrivacy.php:60
$ID
$ID
Definition: click.php:11
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
getFriendNumber
getFriendNumber($iID, $iFrStatus=1, $iOnline=0, $sqlWhere='')
Definition: profiles.inc.php:301
as
as
Definition: Filter.ExtractStyleBlocks.Escaping.txt:10
CH_WSB_ROLE_ADMIN
const CH_WSB_ROLE_ADMIN
Definition: profiles.inc.php:17
ChWsbPFMCacher
Definition: ChWsbPFM.php:1432
$oProfile
if($profileID !=$memberID) $oProfile
Definition: profile.php:55
$iProfileId
if( $sMembersList) $iProfileId
Definition: communicator.php:29
$GLOBALS
$GLOBALS['iAdminPage']
Definition: advanced_settings.php:10
isMember
isMember($iId=0)
Definition: profiles.inc.php:44
$dir
$dir
Definition: config.php:10
ACTION_ID_VIEW_PROFILES
const ACTION_ID_VIEW_PROFILES
Definition: membership_levels.inc.php:36
$sUser
$sUser
Definition: r.php:13