13 require_once(CH_DIRECTORY_PATH_CLASSES .
'ChWsbAlerts.php');
14 require_once(CH_DIRECTORY_PATH_CLASSES .
'ChWsbProfile.php');
18 $f->getUserInfo =
'getUserInfo';
19 $f->getUserPerm =
'getUserPerm';
20 $f->getLoginUser =
'getLoginUser';
21 $f->onPostReply =
'onPostReply';
22 $f->onPostEdit =
'onPostEdit';
23 $f->onPostDelete =
'onPostDelete';
24 $f->onNewTopic =
'onNewTopic';
25 $f->onVote =
'onVote';
26 $f->onReport =
'onReport';
27 $f->onFlag =
'onFlag';
28 $f->onUnflag =
'onUnflag';
36 $iActionId = CH_FORUM_PUBLIC_POST;
37 if (isset($aTopic[
'forum_type']) &&
'private' == $aTopic[
'forum_type'])
38 $iActionId = CH_FORUM_PRIVATE_POST;
42 $aPlusOriginal = array (
45 'TopicTitle' => $aTopic[
'topic_title'],
46 'ReplyText' => $sPostText,
52 $a = $fdb->getSubscribersToTopic ($aTopic[
'topic_id']);
58 $aPlus = array_merge (array (
'Recipient' =>
' ' .
getNickName($aRecipient[
'ID'])), $aPlusOriginal);
60 $aTemplate = $oEmailTemplate->getTemplate(
'ch_forum_notifier', $oRecipient->_iProfileID);
61 sendMail(trim($aRecipient[
'Email']), $aTemplate[
'Subject'], $aTemplate[
'Body'],
'', $aPlus);
71 $aPost = $fdb->getPost($iPostId,
false);
84 $aPost = $fdb->getPost($iPostId,
false);
93 function onNewTopic ($iForumId, $sTopicSubject, $sTopicText, $isTopicSticky,
$sUser, $sTopicUri, $iPostId)
98 $aTopic = $fdb->getTopicByUri($sTopicUri);
102 $aForum = $fdb->getForum($iForumId);
103 $iActionId = CH_FORUM_PUBLIC_POST;
104 if (isset(
$aForum[
'forum_type']) &&
'private' ==
$aForum[
'forum_type'])
105 $iActionId = CH_FORUM_PRIVATE_POST;
109 $a = array ($iForumId, $sTopicSubject, $sTopicText, $isTopicSticky,
$sUser);
116 $a = array (
$sUser, $iVote);
150 require_once( CH_DIRECTORY_PATH_ROOT .
'inc/utils.inc.php' );
151 require_once( CH_DIRECTORY_PATH_CLASSES .
'ChWsbProfile.php' );
157 $aRet[
'profile_onclick'] =
'';
161 $aRet[
'special'] =
false;
162 $aRet[
'join_date'] =
'';
163 $aRet[
'role'] =
_t(
'_ch_forum_role_undefined');
166 foreach ($aRoles
as $sRolelangKey => $iRoleMask) {
168 $aRet[
'role'] =
_t($sRolelangKey);
175 $aRet[
'profile_title'] =
_t(
'_ch_forum_robot');
176 $aRet[
'role'] =
_t(
'_ch_forum_role_robot');
178 $aRet[
'profile_title'] =
_t(
'_ch_forum_anonymous');
181 $aRet[
'avatar'] =
$GLOBALS[
'oFunctions']->getSexPic(
'male',
'small');
182 $aRet[
'avatar64'] =
$GLOBALS[
'oFunctions']->getSexPic(
'male',
'medium');
184 $aRet[
'avatar'] =
$GLOBALS[
'oFunctions']->getMemberAvatar(
$oProfile->_iProfileID,
'small');
185 $aRet[
'avatar64'] =
$GLOBALS[
'oFunctions']->getMemberAvatar(
$oProfile->_iProfileID,
'medium');
209 'read_public' => $isOrcaAdmin || $isPublicForumReadAllowed,
210 'post_public' => $isOrcaAdmin || $isPublicForumPostAllowed ? 1 : 0,
211 'edit_public' => $isOrcaAdmin || $isEditAllAllowed ? 1 : 0,
212 'del_public' => $isOrcaAdmin || $isEditAllAllowed ? 1 : 0,
214 'read_private' => $isOrcaAdmin || $isPrivateForumReadAllowed ? 1 : 0,
215 'post_private' => $isOrcaAdmin || $isPrivateForumPostAllowed ? 1 : 0,
216 'edit_private' => $isOrcaAdmin || $isEditAllAllowed ? 1 : 0,
217 'del_private' => $isOrcaAdmin || $isDelAllAllowed ? 1 : 0,
225 'lock_' => $isOrcaAdmin ? 1 : 0,
246 defineMembershipActions (array (
'forum public read',
'forum public post',
'forum private read',
'forum private post',
'forum search',
'forum edit all',
'forum delete all',
'forum make sticky',
'forum del topics',
'forum move topics',
'forum hide topics',
'forum unhide topics',
'forum hide posts',
'forum unhide posts',
'forum files download'));