class_LanguageAddon.inc.php
3.47 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?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;
}
}
?>