44 $this->
lng = $DIC->language();
45 $ilDB = $DIC->database();
62 public static function getInstance(
int $a_obj_id,
string $a_type): self
64 if (!isset(self::$instances[$a_type][$a_obj_id])) {
65 self::$instances[$a_type][$a_obj_id] =
new self($a_obj_id, $a_type);
68 return self::$instances[$a_type][$a_obj_id];
73 $this->obj_id = $a_val;
87 $this->languages = $a_val;
112 foreach ($this->languages as $k => $v) {
113 if ($v[
"lang_default"]) {
134 string $a_description,
136 bool $a_force =
false 138 if ($a_lang !==
"" && (!isset($this->languages[$a_lang]) || $a_force)) {
140 foreach ($this->languages as $k => $l) {
141 $this->languages[$k][
"lang_default"] =
false;
144 $this->languages[$a_lang] = [
145 "lang_code" => $a_lang,
146 "lang_default" => $a_default,
148 "description" => $a_description
159 foreach ($this->languages as $l) {
160 if ($l[
"lang_default"]) {
172 foreach ($this->languages as $k => $l) {
173 if ($l[
"lang_default"]) {
174 $this->languages[$k][
"title"] = $a_title;
184 foreach ($this->languages as $l) {
185 if ($l[
"lang_default"]) {
186 return $l[
"description"];
197 foreach ($this->languages as $k => $l) {
198 if ($l[
"lang_default"]) {
199 $this->languages[$k][
"description"] = $a_description;
211 unset($this->languages[$a_lang]);
218 $set = $this->db->query(
219 "SELECT * FROM il_translations " .
220 " WHERE id = " . $this->db->quote($this->getObjId(),
"integer") .
221 " AND id_type = " . $this->db->quote($this->getType(),
"text")
223 while ($rec = $this->db->fetchAssoc($set)) {
226 (
string) $rec[
"title"],
227 (
string) $rec[
"description"],
228 (
bool) $rec[
"lang_default"]
233 public function delete():
void 235 $this->db->manipulate(
236 "DELETE FROM il_translations " .
237 " WHERE id = " . $this->db->quote($this->getObjId(),
"integer") .
238 " AND id_type = " . $this->db->quote($this->getType(),
"text")
247 $this->db->manipulate($t =
"INSERT INTO il_translations " .
248 "(id, id_type, title, description, lang_code, lang_default) VALUES (" .
249 $this->db->quote($this->getObjId(),
"integer") .
"," .
250 $this->db->quote($this->getType(),
"text") .
"," .
251 $this->db->quote($trans[
"title"],
"text") .
"," .
252 $this->db->quote($trans[
"description"],
"text") .
"," .
253 $this->db->quote($l,
"text") .
"," .
254 $this->db->quote($trans[
"lang_default"],
"integer") .
263 public function copy(
int $a_obj_id): self
265 $target_ml =
new self($a_obj_id, $this->
getType());
282 $writer->
xmlStartTag(
'translation', array(
'language' => $k,
'default' => $v[
'lang_default'] ? 1 : 0));
283 $writer->
xmlElement(
'title', array(), $v[
'title']);
284 $writer->
xmlElement(
'description', array(), $v[
'description']);
298 if ($root->translations) {
299 $root = $root->translations;
302 foreach ($root->translation as $trans) {
304 trim($trans[
"language"]),
306 trim($trans->description),
307 (
int) $trans[
"default"] !== 0
toXml(ilXmlWriter $writer)
Export to xml.
setLanguages(array $a_val)
fromXML(SimpleXMLElement $root)
xml import
static getInstance(int $a_obj_id, string $a_type)
getDefaultLanguage()
Return default language.
Base exception class for object service.
__construct(int $a_obj_id, string $a_type)
getDefaultTitle()
Get default title.
removeLanguage(string $a_lang)
xmlEndTag(string $tag)
Writes an endtag.
setDefaultTitle(string $a_title)
Set title for default language.
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
copy(int $a_obj_id)
Copy multilinguality settings.
addLanguage(string $a_lang, string $a_title, string $a_description, bool $a_default, bool $a_force=false)
Add language.
setDefaultDescription(string $a_description)
Set default description.