19 declare(strict_types=1);
30 bool $a_call_by_reference =
true 39 public function delete():
bool 41 $message = get_class($this) .
"::delete(): Can't delete root folder!";
49 $q =
"SELECT * FROM object_translation WHERE obj_id = " .
50 $ilDB->quote($this->
getId(),
'integer') .
" ORDER BY lang_default DESC";
55 $data[
"Fobject"] = [];
57 $data[
"Fobject"][$num] = [
58 "title" => $row->title,
59 "desc" => $row->description,
60 "lang" => $row->lang_code
66 $data[
"default_language"] = 0;
76 $query =
"DELETE FROM object_translation WHERE obj_id= " .
77 $ilDB->quote($this->
getId(),
'integer') .
" AND lang_code = " .
78 $ilDB->quote($a_lang,
'text');
79 $res = $ilDB->manipulate($query);
87 $query =
"DELETE FROM object_translation WHERE obj_id= " .
88 $ilDB->quote($this->
getId(),
'integer');
89 $res = $ilDB->manipulate($query);
93 public function addTranslation(
string $a_title,
string $a_desc,
string $a_lang,
string $a_lang_default): void
97 if ($a_title ===
'') {
98 $a_title =
"NO TITLE";
101 $query =
"INSERT INTO object_translation " .
102 "(obj_id,title,description,lang_code,lang_default) " .
104 "(" . $ilDB->quote($this->
getId(),
'integer') .
"," .
105 $ilDB->quote($a_title,
'text') .
"," .
106 $ilDB->quote($a_desc,
'text') .
"," .
107 $ilDB->quote($a_lang,
'text') .
"," .
108 $ilDB->quote($a_lang_default,
'integer') .
")";
109 $ilDB->manipulate($query);
addTranslation(string $a_title, string $a_desc, string $a_lang, string $a_lang_default)
addAdditionalSubItemInformation(array &$object)
Class ilObjForumAdministration.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
deleteTranslation(string $a_lang)
static addAdditionalSubItemInformation(array &$item)
Parse item data for list entries.
__construct(Container $dic, ilPlugin $plugin)
__construct(int $a_id, bool $a_call_by_reference=true)