class_PostMessageBE.inc.php 2.62 KB
<?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;

	}
}
?>