Cheetah
customFunctions.inc.php
Go to the documentation of this file.
1 <?php
2 
8 require_once(CH_DIRECTORY_PATH_INC . "utils.inc.php");
9 require_once(CH_DIRECTORY_PATH_INC . "membership_levels.inc.php");
10 require_once(CH_DIRECTORY_PATH_CLASSES . "ChWsbInstallerUtils.php");
11 
12 function rzGetMembershipId($sUserId)
13 {
14  $aMembership = getMemberMembershipInfo_current($sUserId);
15  return $aMembership["ID"];
16 }
17 
18 function rzGetMemberships()
19 {
20  $aMemberships = array();
21  $rResult = getResult("SELECT * FROM `sys_acl_levels`");
22  $iCount = $rResult->rowCount();
23  for($i=0; $i<$iCount; $i++) {
24  $aMembership = $rResult->fetch();
25  $aMemberships[$aMembership["ID"]] = $aMembership["Name"];
26  }
27  return $aMemberships;
28 }
29 
30 function getAdminIds()
31 {
32  $rResult = getResult("SELECT `ID` FROM `Profiles` WHERE (`Role` & 2)");
33  $aIds = array();
34  $iCount = $rResult->rowCount();
35  for($i=0; $i<$iCount; $i++) {
36  $aId = $rResult->fetch();
37  $aIds[] = (int)$aId['ID'];
38  }
39  return $aIds;
40 }
41 
42 function isUserAdmin($iId)
43 {
44  $aIds = getAdminIds();
45  return in_array((int)$iId, $aIds);
46 }
47 
48 function getUserVideoLink()
49 {
52  return $sModulesUrl . "video/videoslink.php?id=#user#";
53  return "";
54 }
55 
56 function getUserMusicLink()
57 {
60  return $sModulesUrl . "mp3/soundslink.php?id=#user#";
61  return "";
62 }
63 
64 function blockUser($iUserId, $iBlockedId, $bBlock)
65 {
66  ch_import('ChWsbAlerts');
67 
68  if($bBlock) {
69  getResult("REPLACE INTO `sys_block_list` SET `ID` = '" . $iUserId . "', `Profile` = '" . $iBlockedId . "'");
70  $oZ = new ChWsbAlerts('block', 'add', $iBlockedId, $iUserId);
71  } else {
72  getResult("DELETE FROM `sys_block_list` WHERE `ID` = '" . $iUserId . "' AND `Profile` = '" . $iBlockedId . "'");
73  $oZ = new ChWsbAlerts('block', 'delete', $iBlockedId, $iUserId);
74  }
75  $oZ->alert();
76 }
77 
78 function getBlockingList($sId, $bBlocking)
79 {
80  $sSelectField = $bBlocking ? "ID" : "Profile";
81  $sWhereField = $bBlocking ? "Profile" : "ID";
82 
83  $sType = getValue("SELECT `Type` FROM `" . MODULE_DB_PREFIX . "Profiles` WHERE `ID`='" . $sId . "' LIMIT 1");
84  if(empty($sType))
85  $sType = CHAT_TYPE_FULL;
86  $aAllTypes = array(CHAT_TYPE_FULL, CHAT_TYPE_MODER, CHAT_TYPE_ADMIN);
87  $iTypeIndex = array_search($sType, $aAllTypes);
88  if($bBlocking)
89  array_splice($aAllTypes, 0, $iTypeIndex);
90  else
91  array_splice($aAllTypes, $iTypeIndex+1, count($aAllTypes)-$iTypeIndex-1);
92  $sTypes = count($aAllTypes) > 0 ? " AND `profiles`.`Type` IN ('" . implode("','", $aAllTypes) . "')" : "";
93  $rResult = getResult("SELECT `blocked`.`" . $sSelectField . "` AS `Member` FROM `sys_block_list` AS `blocked` LEFT JOIN `" . MODULE_DB_PREFIX . "Profiles` AS `profiles` ON `blocked`.`" . $sSelectField . "`=`profiles`.`ID` WHERE `blocked`.`" . $sWhereField . "`='" . $sId . "'" . $sTypes);
94 
95  $aUsers = array();
96  $iCount = $rResult->rowCount();
97  for($i=0; $i<$iCount; $i++) {
98  $aBlocked = $rResult->fetch();
99  $aUsers[] = $aBlocked["Member"];
100  }
101  return $aUsers;
102 }
ch_import
ch_import($sClassName, $aModule=array())
Definition: utils.inc.php:1218
getUserVideoLink
getUserVideoLink()
Definition: customFunctions.inc.php:48
$sModulesUrl
$sModulesUrl
Definition: header.inc.php:52
blockUser
blockUser($iUserId, $iBlockedId, $bBlock)
Definition: customFunctions.inc.php:64
php
$oZ
$oZ
Definition: db.php:20
getValue
getValue($sQuery)
Definition: db.inc.php:59
$iId
$iId
Definition: license.php:15
getMemberMembershipInfo_current
getMemberMembershipInfo_current($iMemberId, $time='')
Definition: membership_levels.inc.php:121
rzGetMemberships
rzGetMemberships()
Definition: customFunctions.inc.php:18
isUserAdmin
isUserAdmin($iId)
Definition: customFunctions.inc.php:42
rzGetMembershipId
rzGetMembershipId($sUserId)
Definition: customFunctions.inc.php:12
ChWsbAlerts
Definition: ChWsbAlerts.php:39
$sType
$sType
Definition: actions.inc.php:11
global
if(!defined("GLOBAL_MODULE")) define("GLOBAL_MODULE" global
Definition: header.inc.php:25
getUserMusicLink
getUserMusicLink()
Definition: customFunctions.inc.php:56
$sId
$sId
Definition: actions.inc.php:8
getAdminIds
getAdminIds()
Definition: customFunctions.inc.php:30
empty
Attr AllowedRel this is empty
Definition: Attr.AllowedRel.txt:7
getBlockingList
getBlockingList($sId, $bBlocking)
Definition: customFunctions.inc.php:78
ChWsbInstallerUtils\isModuleInstalled
static isModuleInstalled($sUri)
Definition: ChWsbInstallerUtils.php:38
getResult
getResult($sQuery)
Definition: db.inc.php:45