Cheetah
admin.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 . 'utils.inc.php' );
10 require_once( CH_DIRECTORY_PATH_INC . 'design.inc.php' );
11 require_once( CH_DIRECTORY_PATH_INC . 'admin_design.inc.php' );
12 
13 function login_form($text = "", $member = 0, $bAjaxMode = false, $sLoginFormParams = '')
14 {
15  global $site;
17  global $_page;
18 
19  if($member == 1) {
21  exit;
22  }
23 
24  if ($bAjaxMode)
25  $sLoginFormParams .= ' no_join_text';
26 
27  $sLoginFormContent = getMemberLoginFormCode('login_box_form', $sLoginFormParams);
28 
29  if($bAjaxMode) {
30  $iDesignBox = 11;
31  $sContent = $sLoginFormContent;
32  $sCaptionItems = '<div class="dbTopMenu"><i class="ch-popup-element-close sys-icon times"></i></div>';
33 
34  $sJoinFormContent = empty($_REQUEST['add_join_form']) ? '' : getMemberJoinFormCode();
35  if(!empty($sJoinFormContent)) {
36  $iDesignBox = 3;
37  $sContent = $GLOBALS['oSysTemplate']->parseHtmlByName('login_join_popup.html', array(
38  'login_form' => $sLoginFormContent,
39  'join_form' => $sJoinFormContent,
40  'top_menu' => $sCaptionItems,
41  ));
42  }
43 
44  $sCaption = _t('_Login');
45  $sMemberLoginFormAjx = $GLOBALS['oFunctions']->transBox(
46  DesignBoxContent($sCaption, $sContent, $iDesignBox, $sCaptionItems), true
47  );
48 
49  header('Content-Type: text/html; charset=utf-8');
50  echo $sMemberLoginFormAjx;
51  exit;
52  }
53 
54  $_page['name_index'] = 0;
55  $_page['header'] = $site['title'] . ' ' . _t('_Login');
56  $_page['header_text'] = _t('_Login');
57  $_page_cont[0]['page_main_code'] = '<div class="controlsDiv">' . ($text ? "<h3>$text</h3>" : '') . $sLoginFormContent . '</div>';
58 
59  PageCode();
60  exit;
61 }
62 
63 function activation_mail( $ID, $text = 1 )
64 {
65  global $ret;
66 
67  $ID = (int)$ID;
68  $p_arr = db_arr( "SELECT `Email` FROM `Profiles` WHERE `ID` = '$ID'" );
69  if ( !$p_arr ) {
70  $ret['ErrorCode'] = 7;
71  return false;
72  }
73 
74  ch_import('ChWsbEmailTemplates');
75  $rEmailTemplate = new ChWsbEmailTemplates();
76  $aTemplate = $rEmailTemplate -> getTemplate('t_Confirmation', $ID);
77  $recipient = $p_arr['Email'];
78 
79  $sConfirmationCode = base64_encode( base64_encode( crypt( $recipient, CRYPT_EXT_DES ? "secret_co" : "se" ) ) );
80  $sConfirmationLink = CH_WSB_URL_ROOT . "profile_activate.php?ConfID={$ID}&ConfCode=" . urlencode( $sConfirmationCode );
81 
82  $aPlus = array();
83  $aPlus['ConfCode'] = $sConfirmationCode;
84  $aPlus['ConfirmationLink'] = $sConfirmationLink;
85 
86  $mail_ret = sendMail( $recipient, $aTemplate['Subject'], $aTemplate['Body'], $ID, $aPlus, 'html', false, true );
87 
88  if ( $mail_ret ) {
89  if ( $text ) {
90  $page_text .= '<div class="Notice">' . _t("_EMAIL_CONF_SENT") . "</div>";
91 
92  $page_text .= "<center><form method=get action=\"" . CH_WSB_URL_ROOT . "profile_activate.php\">";
93  $page_text .= "<table class=text2 cellspacing=0 cellpadding=0><td><b>"._t("_ENTER_CONF_CODE").":</b>&nbsp;</td><td><input type=hidden name=\"ConfID\" value=\"{$ID}\">";
94  $page_text .= '<input class=no type="text" name="ConfCode" size=30></td><td>&nbsp;</td>';
95  $page_text .= '<td><input class=no type="submit" value="'._t("_Submit").'"></td></table>';
96  $page_text .= '</form></center><br />';
97  } else
98  return true;
99  } else {
100  if ( $text )
101  $page_text .= "<br /><br />"._t("_EMAIL_CONF_NOT_SENT");
102  else {
103  $ret['ErrorCode'] = 10;
104  return false;
105  }
106  }
107  return ($text) ? $page_text : true;
108 }
109 
110 function mem_expiration_letter( $ID, $membership_name, $expire_days )
111 {
112  $ID = (int)$ID;
113 
114  if ( !$ID )
115  return false;
116 
117  $p_arr = db_arr( "SELECT `Email` FROM `Profiles` WHERE `ID` = $ID", 0 );
118  if ( !$p_arr )
119  return false;
120 
121  ch_import('ChWsbEmailTemplates');
122  $rEmailTemplate = new ChWsbEmailTemplates();
123  $aTemplate = $rEmailTemplate -> getTemplate( 't_MemExpiration', $ID ) ;
124 
125  $recipient = $p_arr['Email'];
126 
127  $aPlus = array();
128  $aPlus['MembershipName'] = $membership_name;
129  $aPlus['ExpireDays'] = $expire_days;
130 
131  $mail_ret = sendMail( $recipient, $aTemplate['Subject'], $aTemplate['Body'], $ID, $aPlus );
132 
133  if ($mail_ret)
134  return true;
135  else
136  return false;
137 }
138 
139 function getID( $str, $with_email = 1 )
140 {
141  if ( $with_email ) {
142  ch_import('ChWsbForm');
144  $str = process_db_input($str);
145  $mail_arr = db_arr( "SELECT `ID` FROM `Profiles` WHERE `Email` = '$str'" );
146  if ( (int)$mail_arr['ID'] ) {
147  return (int)$mail_arr['ID'];
148  }
149  }
150  }
151 
152  $iID = (int)db_value( "SELECT `ID` FROM `Profiles` WHERE `NickName` = ?", [$str]);
153 
154  if(!$iID) {
155  $aProfile = getProfileInfo($str);
156  $iID = isset($aProfile['ID']) ? $aProfile['ID'] : 0;
157  }
158  return $iID;
159 }
160 
161 // check encrypted password (ex., from Cookie)
162 function check_login($ID, $passwd, $iRole = CH_WSB_ROLE_MEMBER, $error_handle = true)
163 {
164  $ID = (int)$ID;
165 
166  if (!$ID) {
167  if ($error_handle)
168  login_form(_t("_PROFILE_ERR"), $member);
169  return false;
170  }
171 
172  switch ($iRole) {
173  case CH_WSB_ROLE_MEMBER: $member = 0; break;
174  case CH_WSB_ROLE_ADMIN: $member = 1; break;
175  }
176 
178 
179  // If no such members
180  if (!$aProfile) {
181  if ($error_handle)
182  login_form(_t("_PROFILE_ERR"), $member);
183  return false;
184  }
185 
186  // If password is incorrect
187  if (strcmp($aProfile['Password'], $passwd) !== 0) {
188  if ($error_handle)
189  login_form(_t("_INVALID_PASSWD"), $member);
190  return false;
191  }
192 
193  if (!((int)$aProfile['Role'] & $iRole)) {
194  if ($error_handle)
195  login_form(_t("_INVALID_ROLE"), $member);
196  return false;
197  }
198 
199  if(((int)$aProfile['Role'] & CH_WSB_ROLE_ADMIN) || ((int)$aProfile['Role'] & CH_WSB_ROLE_MODERATOR)) {
200  if( 'on' != getParam('ext_nav_menu_enabled') ) {
202  }
203 
204  return true;
205  }
206 
207  // if IP is banned
208  if ((2 == getParam('ipBlacklistMode') && ch_is_ip_blocked()) || ('on' == getParam('sys_dnsbl_enable') && 'block' == getParam('sys_dnsbl_behaviour') && ch_is_ip_dns_blacklisted('', 'login'))) {
209  if ($error_handle) {
210  $GLOBALS['_page']['name_index'] = 55;
211  $GLOBALS['_page']['css_name'] = '';
212  $GLOBALS['_ni'] = $GLOBALS['_page']['name_index'];
213  $GLOBALS['_page_cont'][$GLOBALS['_ni']]['page_main_code'] = MsgBox(_t('_Sorry, your IP been banned'));
214  PageCode();
215  }
216  return false;
217  }
218 
219  // if profile is banned
220  if (isLoggedBanned($aProfile['ID'])) {
221  if ($error_handle) {
222  $GLOBALS['_page']['name_index'] = 55;
223  $GLOBALS['_page']['css_name'] = '';
224  $GLOBALS['_ni'] = $GLOBALS['_page']['name_index'];
225  $GLOBALS['_page_cont'][$GLOBALS['_ni']]['page_main_code'] = MsgBox(_t('_member_banned'));
226  PageCode();
227  }
228  return false;
229  }
230 
231  if( 'on' != getParam('ext_nav_menu_enabled') ) {
233  }
234 
235  return true;
236 }
237 
238 function check_logged()
239 {
240  $aAccTypes = array(
241  1 => 'admin',
242  0 => 'member'
243  );
244 
245  $bLogged = false;
246  foreach($aAccTypes as $iKey => $sValue)
247  if($GLOBALS['logged'][$sValue] = member_auth($iKey, false)) {
248  $bLogged = true;
249  break;
250  }
251 
252  if((isset($_COOKIE['memberID']) || isset($_COOKIE['memberPassword'])) && !$bLogged)
253  ch_logout(false);
254 
255  if($bLogged)
256  $GLOBALS['oSysTemplate']->addCssStyle('.ch-hide-when-logged-in', array(
257  'display' => 'none'
258  ));
259 }
260 
261 // 0 - member, 1 - admin
262 function member_auth($member = 0, $error_handle = true, $bAjx = false)
263 {
264  global $site;
265 
266  switch ($member) {
267  case 0:
268  $mem = 'member';
269  $login_page = CH_WSB_URL_ROOT . "member.php";
270  $iRole = CH_WSB_ROLE_MEMBER;
271  break;
272  case 1:
273  $mem = 'admin';
274  $login_page = CH_WSB_URL_ADMIN . "index.php";
275  $iRole = CH_WSB_ROLE_ADMIN;
276  break;
277  }
278 
279  if (empty($_COOKIE['memberID']) || !isset($_COOKIE['memberPassword'])) {
280  if ($error_handle) {
281  $text = _t("_LOGIN_REQUIRED_AE1");
282  if ($member == 0)
283  $text .= "<br />"._t("_LOGIN_REQUIRED_AE2", $site['images'], CH_WSB_URL_ROOT, $site['title']);
284 
285  $bAjxMode = (isset( $_SERVER['HTTP_X_REQUESTED_WITH'] ) and $_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest') ? true : false;
286  if ($member=1 && $bAjx==true) $bAjxMode = true;
287  login_form($text, $member, $bAjxMode);
288  }
289  return false;
290  }
291 
292  return check_login(process_pass_data($_COOKIE['memberID']), process_pass_data($_COOKIE['memberPassword' ]), $iRole, $error_handle);
293 }
294 
295 // check unencrypted password
296 function check_password($sUsername, $sPassword, $iRole = CH_WSB_ROLE_MEMBER, $error_handle = true)
297 {
298  $iId = getID($sUsername);
299  if (!$iId) return false;
300 
302  $sPassCheck = encryptUserPwd($sPassword, $aUser['Salt']);
303 
304  return check_login($iId, $sPassCheck, $iRole, $error_handle);
305 }
306 
308 {
309  $iId = (int) $iId;
310 
311  // update the date of last navigate;
312  $sQuery = "UPDATE `Profiles` SET `DateLastNav` = NOW() WHERE `ID` = '{$iId}'";
313  db_res($sQuery);
314 }
315 
316 function profile_delete($ID, $isDeleteSpammer = false)
317 {
318  //global $MySQL;
319  global $dir;
320 
321  //recompile global profiles cache
322  $GLOBALS['MySQL']->cleanCache('sys_browse_people');
323 
324  $ID = (int)$ID;
325 
326  if ( !$ID )
327  return false;
328 
329  if ( !($aProfileInfo = getProfileInfo( $ID )) )
330  return false;
331 
332  $iLoggedInId = getLoggedId();
333 
334  db_res( "DELETE FROM `sys_admin_ban_list` WHERE `ProfID`='". $ID . "' LIMIT 1");
335  db_res( "DELETE FROM `sys_greetings` WHERE `ID` = '{$ID}' OR `Profile` = '{$ID}'" );
336  db_res( "DELETE FROM `sys_block_list` WHERE `ID` = '{$ID}' OR `Profile` = '{$ID}'" );
337  db_res( "DELETE FROM `sys_messages` WHERE Recipient = {$ID} OR `Sender` = {$ID}" );
338  db_res( "DELETE FROM `sys_fave_list` WHERE ID = {$ID} OR Profile = {$ID}" );
339  db_res( "DELETE FROM `sys_friend_list` WHERE ID = {$ID} OR Profile = {$ID}" );
340  db_res( "DELETE FROM `sys_acl_levels_members` WHERE `IDMember` = {$ID}" );
341  db_res( "DELETE FROM `sys_tags` WHERE `ObjID` = {$ID} AND `Type` = 'profile'" );
342  db_res( "DELETE FROM `sys_sbs_entries` WHERE `subscriber_id` = {$ID} AND `subscriber_type` = '1'" );
343 
344  // delete profile votings
345  require_once( CH_DIRECTORY_PATH_CLASSES . 'ChWsbVoting.php' );
346  $oVotingProfile = new ChWsbVoting ('profile', 0, 0);
347  $oVotingProfile->deleteVotings ($ID);
348 
349  // delete profile comments
350  require_once (CH_DIRECTORY_PATH_CLASSES . 'ChWsbCmts.php');
351  $oCmts = new ChWsbCmts('profile', $ID);
352  $oCmts->onObjectDelete();
353  // delete all comments in all comments' systems, this user posted
354  $oCmts->onAuthorDelete($ID);
355 
356  $iPossibleCoupleID = (int)db_value( "SELECT `ID` FROM `Profiles` WHERE `Couple` = '{$ID}'" );
357  if ($iPossibleCoupleID) {
358  db_res( "DELETE FROM `Profiles` WHERE `ID` = '{$iPossibleCoupleID}'" );
359  //delete cache file
360  deleteUserDataFile( $iPossibleCoupleID );
361  }
362 
363  // delete associated locations
364  if (ChWsbModule::getInstance('ChWmapModule'))
365  ChWsbService::call('wmap', 'response_entry_delete', array('profiles', $ID));
366 
367  //delete all subscriptions
369  $oSubscription->unsubscribe(array('type' => 'object_id', 'unit' => 'profile', 'object_id' => $ID));
370 
371  db_res( "DELETE FROM `Profiles` WHERE `ID` = '{$ID}'" );
372 
373  if ($isDeleteSpammer) {
374  ch_import('ChWsbStopForumSpam');
375  $oChWsbStopForumSpam = new ChWsbStopForumSpam();
376  $oChWsbStopForumSpam->submitSpammer(array('username' => $aProfileInfo['NickName'], 'email' => $aProfileInfo['Email'], 'ip' => ch_member_ip_get_last($ID)));
377  }
378 
379  // delete moxiemanager files
380  $sMoxieFilesPath = CH_DIRECTORY_PATH_ROOT . 'media/moxie/files/' . substr($aProfileInfo['NickName'], 0, 1) . '/' . substr($aProfileInfo['NickName'], 0, 2) . '/' . substr($aProfileInfo['NickName'], 0, 3) . '/' . $aProfileInfo['NickName'];
381  ch_rrmdir($sMoxieFilesPath);
382 
383  // create system event
384  $oZ = new ChWsbAlerts('profile', 'delete', $ID, 0, array('profile_info' => $aProfileInfo, 'logged_in' => $iLoggedInId, 'delete_spammer' => $isDeleteSpammer));
385  $oZ->alert();
386 
387  //delete cache file
389 }
390 
392 {
393  $iOnline = 0;
394 
395  if($ID && is_numeric($ID) ) {
397  // check user status;
398  if($aMemberInfo['UserStatus'] != 'offline') {
399  $min = (int)getParam( "member_online_time" );
400  $iOnline = $GLOBALS['MySQL']->fromMemory ("member_online_status.$ID.$min", 'getOne', "SELECT count(ID) as count_id FROM Profiles WHERE DateLastNav > SUBDATE(NOW(), INTERVAL {$min} MINUTE) AND ID={$ID}");
401  }
402  }
403 
404  return $iOnline;
405 }
406 
415 function ch_admin_profile_ban_control($iProfileId, $bBan = true, $iDuration = 0)
416 {
417  $iProfileId = (int)$iProfileId;
418  $iDuration = 86400 * (!empty($iDuration) ? $iDuration : (int)getParam('ban_duration'));
419 
420  if($bBan)
421  $sqlQuery = "REPLACE INTO `sys_admin_ban_list` SET `ProfID`='" . $iProfileId . "', `Time`='" . $iDuration . "', `DateTime`=NOW()";
422  else
423  $sqlQuery = "DELETE FROM `sys_admin_ban_list` WHERE `ProfID`='" . $iProfileId . "'";
424 
425  return $GLOBALS['MySQL']->query($sqlQuery);
426 }
427 
436 function ch_admin_profile_change_status($mixedIds, $sStatus, $bSendActMail = FALSE)
437 {
438  if (!$mixedIds || (is_array($mixedIds) && empty($mixedIds)))
439  return FALSE;
440  if (!is_array($mixedIds))
441  $mixedIds = array((int)$mixedIds);
442 
443  $sStatus = strip_tags($sStatus);
444 
445  $oEmailTemplate = new ChWsbEmailTemplates();
446 
447  foreach ($mixedIds as $iId) {
448  $iId = (int)$iId;
450 
451  $aIds = array($iId);
452  if((int)$aProfile['Couple'] > 0)
453  $aIds[] = $aProfile['Couple'];
454 
455  if (!$GLOBALS['MySQL']->query("UPDATE `Profiles` SET `Status` = '$sStatus' WHERE `ID` IN (" . $GLOBALS['MySQL']->implode_escape($aIds) . ")"))
456  break;
457 
459  reparseObjTags('profile', $iId);
460 
461  if ($sStatus == 'Active' && $bSendActMail) {
462  if (ChWsbModule::getInstance('ChWmapModule'))
463  ChWsbService::call('wmap', 'response_entry_add', array('profiles', $iId));
464 
466  $aMail = $oEmailTemplate->parseTemplate('t_Activation', array(), $iId);
467  sendMail($aProfile['Email'], $aMail['subject'], $aMail['body'], $iId, array(), 'html', FALSE, TRUE);
468  }
469 
470  $oAlert = new ChWsbAlerts('profile', 'change_status', $iId, 0, array('status' => $sStatus));
471  $oAlert->alert();
472  }
473 
474  return TRUE;
475 }
476 
484 {
485  $iProfileId = (int)$iProfileId;
486  $iFeatured = $bFeature ? 1 : 0;
487  if ($GLOBALS['MySQL']->query("UPDATE `Profiles` SET `Featured` = $iFeatured WHERE `ID` = $iProfileId"))
488  {
490  return TRUE;
491  }
492  return FALSE;
493 }
process_db_input
process_db_input($sText, $iStripTags=0)
Definition: utils.inc.php:256
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
$bAjaxMode
$bAjaxMode
Definition: categories.php:21
deleteUserDataFile
deleteUserDataFile( $userID)
Definition: profiles.inc.php:178
activation_mail
activation_mail( $ID, $text=1)
Definition: admin.inc.php:63
TRUE
URI MungeSecretKey $secret_key</pre >< p > If the output is TRUE
Definition: URI.MungeSecretKey.txt:17
MsgBox
MsgBox($sText, $iTimer=0)
Definition: design.inc.php:175
$member
$member['ID']
Definition: member.php:33
ChWsbModule\getInstance
static getInstance($sClassName)
Definition: ChWsbModule.php:89
check_logged
check_logged()
Definition: admin.inc.php:238
ch_admin_profile_ban_control
ch_admin_profile_ban_control($iProfileId, $bBan=true, $iDuration=0)
Definition: admin.inc.php:415
$_page
$_page['name_index']
Definition: about_us.php:13
$ret
$ret
Definition: index.php:39
ChWsbEmailTemplates
Definition: ChWsbEmailTemplates.php:11
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
$oAlert
$oAlert
Definition: embed.php:15
sendMail
sendMail( $sRecipientEmail, $sMailSubject, $sMailBody, $iRecipientID=0, $aPlus=array(), $sEmailFlag='html', $isDisableAlert=false, $bForceSend=false)
Definition: utils.inc.php:461
check_password
check_password($sUsername, $sPassword, $iRole=CH_WSB_ROLE_MEMBER, $error_handle=true)
Definition: admin.inc.php:296
ch_admin_profile_change_status
ch_admin_profile_change_status($mixedIds, $sStatus, $bSendActMail=FALSE)
Definition: admin.inc.php:436
php
ChWsbStopForumSpam
Definition: ChWsbStopForumSpam.php:12
$oZ
$oZ
Definition: db.php:20
ChWsbVoting
Definition: ChWsbVoting.php:90
$iId
$iId
Definition: license.php:15
login_form
login_form($text="", $member=0, $bAjaxMode=false, $sLoginFormParams='')
Definition: admin.inc.php:13
update_date_lastnav
update_date_lastnav($iId)
Definition: admin.inc.php:307
profile_delete
profile_delete($ID, $isDeleteSpammer=false)
Definition: admin.inc.php:316
ChWsbSubscription\getInstance
static getInstance()
Definition: ChWsbSubscription.php:67
$bAjxMode
$bAjxMode
Definition: member.php:36
mem_expiration_letter
mem_expiration_letter( $ID, $membership_name, $expire_days)
Definition: admin.inc.php:110
isLoggedBanned
isLoggedBanned($iCurUserID=0)
Definition: profiles.inc.php:498
$aMemberInfo
$aMemberInfo
Definition: profile_info.php:34
ChWsbCmts
Definition: ChWsbCmts.php:99
$sPassword
$sPassword
Definition: actions.inc.php:10
ChWsbAlerts
Definition: ChWsbAlerts.php:39
db_arr
db_arr($query, $bindings=[])
Definition: db.inc.php:76
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
$site
$site['ver']
Definition: version.inc.php:8
$_REQUEST
$_REQUEST['action']
Definition: cmd.php:11
ch_admin_profile_featured_control
ch_admin_profile_featured_control($iProfileId, $bFeature=TRUE)
Definition: admin.inc.php:483
ChWsbFormCheckerHelper\checkEmail
static checkEmail($s)
Definition: ChWsbForm.php:511
getMemberJoinFormCode
getMemberJoinFormCode($sParams='')
Definition: design.inc.php:276
global
if(!defined("GLOBAL_MODULE")) define("GLOBAL_MODULE" global
Definition: header.inc.php:25
LoginFormAdmin
LoginFormAdmin()
Definition: admin_design.inc.php:91
$sContent
$sContent
Definition: bottom_menu_compose.php:169
_t
_t($key, $arg0="", $arg1="", $arg2="")
Definition: languages.inc.php:509
PageCode
PageCode($oTemplate=null)
Definition: design.inc.php:91
ch_member_ip_get_last
ch_member_ip_get_last($iMemberId)
Definition: utils.inc.php:1810
member_auth
member_auth($member=0, $error_handle=true, $bAjx=false)
Definition: admin.inc.php:262
ch_rrmdir
ch_rrmdir($directory)
Definition: utils.inc.php:1713
CH_WSB_ROLE_MEMBER
const CH_WSB_ROLE_MEMBER
Definition: profiles.inc.php:16
get_user_online_status
get_user_online_status($ID)
Definition: admin.inc.php:391
getMemberLoginFormCode
getMemberLoginFormCode($sID='member_login_form', $sParams='')
Definition: design.inc.php:317
check_login
check_login($ID, $passwd, $iRole=CH_WSB_ROLE_MEMBER, $error_handle=true)
Definition: admin.inc.php:162
$aProfileInfo
$aProfileInfo
Definition: short_profile_info.php:23
$aUser
$aUser
Definition: profiles.inc.php:74
process_pass_data
process_pass_data($text, $strip_tags=0)
Definition: utils.inc.php:290
db_res
db_res($query, $bindings=[])
Definition: db.inc.php:39
db_value
db_value($query, $bindings=[], $error_checking=true, $index=0)
Definition: db.inc.php:98
getID
getID( $str, $with_email=1)
Definition: admin.inc.php:139
getProfileInfo
getProfileInfo($iProfileID=0, $checkActiveStatus=false, $forceCache=false)
Definition: profiles.inc.php:249
$p_arr
$p_arr
Definition: profile.php:68
encryptUserPwd
encryptUserPwd($sPwd, $sSalt)
Definition: utils.inc.php:1643
$bLogged
$bLogged
Definition: index.php:18
$sCaption
$sCaption
Definition: tellfriend.php:39
ch_logout
ch_logout($bNotify=true)
Definition: profiles.inc.php:538
$ID
$ID
Definition: click.php:11
DesignBoxContent
DesignBoxContent($title, $content, $db_num=0, $caption_item='', $bottom_item='')
Definition: design.inc.php:78
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
as
as
Definition: Filter.ExtractStyleBlocks.Escaping.txt:10
ch_is_ip_dns_blacklisted
ch_is_ip_dns_blacklisted($sCurIP='', $sType='')
Definition: utils.inc.php:995
$sStatus
$sStatus
Definition: actions.inc.php:11
ch_is_ip_blocked
ch_is_ip_blocked($sCurIP='')
Definition: utils.inc.php:1042
CH_WSB_ROLE_ADMIN
const CH_WSB_ROLE_ADMIN
Definition: profiles.inc.php:17
$iProfileId
if( $sMembersList) $iProfileId
Definition: communicator.php:29
$GLOBALS
$GLOBALS['iAdminPage']
Definition: advanced_settings.php:10
$dir
$dir
Definition: config.php:10
reparseObjTags
reparseObjTags( $sType, $iID)
Definition: tags.inc.php:47
$oSubscription
$oSubscription
Definition: notifies.php:28