26 bool $a_reference =
true 31 $this->db = $DIC->database();
46 $q =
"SELECT * FROM object_translation WHERE obj_id = " .
47 $ilDB->quote($this->
getId(),
'integer') .
" ORDER BY lang_default DESC";
52 $data[
"Fobject"] = array();
54 $data[
"Fobject"][$num] = array(
"title" => $row->title,
55 "desc" => $row->description,
56 "lang" => $row->lang_code
62 $data[
"default_language"] = 0;
64 return $data ?: array();
72 $query =
"DELETE FROM object_translation WHERE obj_id= " .
74 $ilDB->manipulate($query);
82 string $a_lang_default
86 if (empty($a_title)) {
87 $a_title =
"NO TITLE";
90 $query =
"INSERT INTO object_translation " .
91 "(obj_id,title,description,lang_code,lang_default) " .
93 "(" .
$ilDB->quote($this->
getId(),
'integer') .
"," .
94 $ilDB->quote($a_title,
'text') .
"," .
95 $ilDB->quote($a_desc,
'text') .
"," .
96 $ilDB->quote($a_lang,
'text') .
"," .
97 $ilDB->quote($a_lang_default,
'integer') .
")";
98 $ilDB->manipulate($query);
addTranslation(string $a_title, string $a_desc, string $a_lang, string $a_lang_default)
__construct(int $a_id=0, bool $a_reference=true)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getTranslations()
get all translations from this category
__construct(Container $dic, ilPlugin $plugin)