class_LanguageAddon.inc.php 3.47 KB
<?php
/**
 * @file	class_LanguageAddon.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 LanguageAddon extends aBasisElementAddon {

	protected $CONFIG = null;
	protected $LanguageObjectArray= null;
	protected $LanguageCodes = null;

	public function setData(Account &$param_HostAccount, iStorable &$param_iStorable, array $param_Data) {

		if(is_array($this->CONFIG) && array_key_exists('LanguageAddon', $param_Data)) {

			$var_Descipt = $param_iStorable->getTableDescript($this->CONFIG['Tablename']);

			foreach($param_Data['LanguageAddon'] as $var_LangObjData) {
				if($var_LangObjData['LanguageCode']) {
					$var_LangObj =& ContainerClass::createNewInstance($var_Descipt);
					$var_LangObjData['MTextID'] = $this->HostObject->getObjVar('ID');
					$var_LangObj->setData($param_HostAccount, $param_iStorable, $var_LangObjData);
					$this->LanguageObjectArray[$var_LangObjData['LanguageCode']] = $var_LangObj;
				}
			}
		}
	}

	public function __construct(iStorable &$param_DB, &$param_Obj){
		$this->HostObject = &$param_Obj;
		//		$this->HostObjectDescript =
		$this->DB = &$param_DB;
		$this->ThisClassName = 'LanguageAddon';
		$var_CONFIG = CONFIG::getAddonPreferencs($this->ThisClassName);
		if(array_key_exists($this->HostObject->ThisClassName, $var_CONFIG)) {
			$this->CONFIG = $var_CONFIG[$this->HostObject->ThisClassName];
		}
	}

	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(is_array($this->CONFIG)) {
			$DOMElement->setAttribute('BEID', $this->HostObject->getObjVar('ID'));

			$DOMElement->appendChild(CountryCode::getAsDOMElement($param_DOMDocument));

			$DOMElement_LanguageObjectArray = $param_DOMDocument->createElement('LanguageObjectArray');
			$DOMElement->appendChild($DOMElement_LanguageObjectArray);

			if(is_array($this->LanguageObjectArray)) {
				foreach($this->LanguageObjectArray as $var_LanguageObject) {
					$DOMElement_LanguageObjectArray->appendChild($var_LanguageObject->getObjDOMElement($param_HostAccount, $param_iStorable, $param_DOMDocument, $param_KindOf));
				}
			}

			if($param_KindOf==='form') {
				$var_Descipt = $this->DB->getTableDescript($this->CONFIG['Tablename']);
				unset($var_Descipt['MTextID']);
				$var_LangObj =& ContainerClass::createNewInstance($var_Descipt);
				$var_LangObjDOMElement = $var_LangObj->getObjDOMElement($param_HostAccount, $param_iStorable, $param_DOMDocument, $param_KindOf);
				$DOMElement_LanguageObjectArray->appendChild($var_LangObjDOMElement);
			}
		}

		return $DOMElement;
	}

}

?>