class_Message.inc.php 2.37 KB
<?php
/**
 * @file	Message.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 Message{
	private static $MessageList;
	private static $Quantity=0;

	private $Kind;
	private $ObjectClass;
	private $ObjectName;
	private $Values;

	public function __construct($param_kind="", $param_objectClass="", $param_objectName="", $param_values = array()){
		$this->Kind = $param_kind;
		$this->ObjectClass = $param_objectClass;
		$this->ObjectName = $param_objectName;
		$this->Values = $param_values;
	}

	public static function newMessage($param_kind='',$param_objectClass='', $param_objectName='', $param_values = array()) {

		if($param_objectName == ''){
			$param_objectName=CONFIG::getBasisClipboardPreferencs($param_objectClass,'MultimediaText');
		}
		self::$MessageList[self::$Quantity] = new Message($param_kind,$param_objectClass, $param_objectName, $param_values);
		self::$Quantity++;
	}
	public function getNormalXML($DOMDocument){
		$DOMElement = $DOMDocument->createElement("Message");
		$DOMElement->setAttribute('kind', $this->Kind);
		$DOMElement->setAttribute('classLabel', $this->ObjectClass);
		$DOMElement->setAttribute('name', $this->ObjectName);
		$DOMElement->setAttribute('label', Language::getMessage($this->Kind, 'label'));
		foreach($this->Values as $key => $value){
			$DOMElement->setAttribute($key,$value);
		}
		return $DOMElement;
	}
	public static function getAllXML($DOMDocument){
		$DOMElement = $DOMDocument->createElement("MessageList");
		for($i=0; $i<count(self::$MessageList);$i++){
			$DOMElement->appendChild(self::$MessageList[$i]->getNormalXML($DOMDocument));
		}
		return $DOMElement;
	}
}
?>