class_PostMessageBE.inc.php
2.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
/**
* @file PostMessageBE.inc.php
* @category freeSN
* @mailto code [at] netz.coop
* @version 0.4.200901
* @link http://netz.coop
*
* @copyright Copyright by netz.coop e.G. 2015
*
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
class PostMessageBE extends MultimediaText {
public function post_add(Account &$param_HostAccount, iStorable &$param_iStorable, array $param_MTextIDList) {
if(array_key_exists('MTextID',$param_MTextIDList)){
$var_IDs = array();
foreach($param_MTextIDList['MTextID'] as $value){
if($value){
$valueArray=preg_split('/,\s|;\s|,|;|\s/',$value);
foreach($valueArray as $valueID){
$var_IDs[]=Profile::NickNameToID($param_iStorable, $valueID);
}
}
}
$this->addThisToClipboard ($param_HostAccount, $param_iStorable, $var_IDs, 'InBox');
}
}
public function changeState(Account &$param_HostAccount, iStorable &$param_iStorable){
if($this->getPartOf())
$this->getPartOf()->getClipboard($param_HostAccount, $param_iStorable, 'InBox')->changeState($param_HostAccount, $param_iStorable, $this->getID(),2);
}
public function getObjDOMElement(Account &$param_HostAccount, iStorable &$param_iStorable, DOMDocument $param_DOMDocument, $param_KindOf=null, array $param_DOMElemente=null) {
$DOMElement=parent::getObjDOMElement($param_HostAccount, $param_iStorable, $param_DOMDocument, $param_KindOf, $param_DOMElemente);
if(array_key_exists('ForShowSingle',$this->LoadLevel)){
$DOMElement->appendChild($DOMElement_ReceiverList=$param_DOMDocument->createElement("ReceiverList"));
foreach($this->getObjVar('RightManagement')->getAuthorisationList()->getAuthorisationReadList() as $value){
if($value->getProfileID()!=$this->getAuthor_ProfileID()){
$DOMElement_ReceiverList->appendChild($DOMElement_Receiver=$param_DOMDocument->createElement("Receiver"));
$DOMElement_Receiver->setAttribute('ID',$value->getProfileID());
$DOMElement_Receiver->setAttribute('NickName',$value->getProfileNickName());
}
}
}
return $DOMElement;
}
}
?>