34 public function __construct($a_id, $a_call_by_reference =
true)
38 $this->db = $DIC->database();
39 $this->
user = $DIC->user();
51 public function delete():
bool 57 if (!parent::delete()) {
73 public function getHeaderTitleTranslations()
80 $q =
"SELECT * FROM object_translation WHERE obj_id = " .
81 $ilDB->quote($this->
getId(),
'integer') .
" ORDER BY lang_default DESC";
86 while ($row =
$ilDB->fetchObject(
$r)) {
87 $data[
"Fobject"][$num] = array(
"title" => $row->title,
89 (
string) $row->description,
93 "lang" => $row->lang_code
99 $data[
"default_language"] = 0;
109 $query =
"DELETE FROM object_translation WHERE obj_id= " .
119 $query =
"INSERT INTO object_translation " .
120 "(obj_id,title,description,lang_code,lang_default) " .
122 "(" .
$ilDB->quote($this->
getId(),
'integer') .
"," .
123 $ilDB->quote($a_title,
'text') .
"," .
124 $ilDB->quote($a_desc,
'text') .
"," .
125 $ilDB->quote($a_lang,
'text') .
"," .
126 $ilDB->quote($a_lang_default,
'integer') .
")";
132 public static function _getId()
139 $ilDB = $DIC->database();
141 $q =
"SELECT obj_id FROM object_data WHERE type = " .
$ilDB->quote(
'adm',
'text');
148 public static function _getHeaderTitle():
string 156 $ilDB = $DIC->database();
157 $ilUser = $DIC->user();
159 $id = ilObjSystemFolder::_getId();
163 $q =
"SELECT title FROM object_translation " .
164 "WHERE obj_id = " .
$ilDB->quote(
$id,
'integer') .
" " .
165 "AND lang_default = 1";
169 $title = (string) $row->title;
172 $q =
"SELECT title FROM object_translation " .
173 "WHERE obj_id = " .
$ilDB->quote(
$id,
'integer') .
" " .
175 $ilDB->quote($ilUser->getCurrentLanguage(),
'text') .
" " .
176 "AND NOT lang_default = 1";
181 $title = (string) $row->title;
192 $id = ilObjSystemFolder::_getId();
194 $q =
"SELECT title,description FROM object_translation " .
195 "WHERE obj_id = " .
$ilDB->quote(
$id,
'integer') .
" " .
196 "AND lang_default = 1";
199 $description = $row->description;
201 $q =
"SELECT title,description FROM object_translation " .
202 "WHERE obj_id = " .
$ilDB->quote(
$id,
'integer') .
" " .
204 $ilDB->quote($ilUser->getPref(
"language"),
'text') .
" " .
205 "AND NOT lang_default = 1";
addHeaderTitleTranslation($a_title, $a_desc, $a_lang, $a_lang_default)
__construct($a_id, $a_call_by_reference=true)
Constructor public.
_getHeaderTitleDescription()
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
removeHeaderTitleTranslations()
static shortenTextExtended(string $a_str, int $a_len, bool $a_dots=false, bool $a_next_blank=false, bool $a_keep_extension=false)