31 $ilDB = $DIC->database();
36 if (
$ilUser->getLanguage() !==
"de") {
44 if (
$ilUser->getPref(
"hide_help_tt")) {
48 if (defined(
'OH_REF_ID') && (
int) OH_REF_ID > 0) {
52 if ($module_id === 0) {
58 "SELECT tt_text FROM help_tooltip " .
59 " WHERE tt_id = " .
$ilDB->quote($a_tt_id,
"text") .
60 " AND module_id = " .
$ilDB->quote($module_id,
"integer")
62 $rec =
$ilDB->fetchAssoc($set);
63 if (is_array($rec) && $rec[
"tt_text"] !=
"") {
65 if ($module_id === 0) {
66 $t .=
"<br/><i>(" . $a_tt_id .
")</i>";
70 $fu = strpos($a_tt_id,
"_");
71 $gen_tt_id =
"*" . substr($a_tt_id, $fu);
73 "SELECT tt_text FROM help_tooltip " .
74 " WHERE tt_id = " .
$ilDB->quote($gen_tt_id,
"text") .
75 " AND module_id = " .
$ilDB->quote($module_id,
"integer")
77 $rec =
$ilDB->fetchAssoc($set);
78 if (is_array($rec) && $rec[
"tt_text"] !=
"") {
80 if ($module_id === 0) {
81 $t .=
"<br/><i>(" . $a_tt_id .
")</i>";
86 if ($module_id === 0) {
87 return "<i>" . $a_tt_id .
"</i>";
98 return self::getTooltipPresentationText($a_type .
"_create");
107 return self::getTooltipPresentationText($a_item_id);
116 $ilDB = $DIC->database();
118 $q =
"SELECT * FROM help_tooltip";
119 $q .=
" WHERE module_id = " .
$ilDB->quote($a_module_id,
"integer");
120 if ($a_comp !==
"") {
121 $q .=
" AND comp = " .
$ilDB->quote($a_comp,
"text");
123 $set =
$ilDB->query($q);
125 while ($rec =
$ilDB->fetchAssoc($set)) {
126 $tts[$rec[
"id"]] = array(
"id" => $rec[
"id"],
"text" => $rec[
"tt_text"],
127 "tt_id" => $rec[
"tt_id"]);
139 $ilDB = $DIC->database();
141 $fu = strpos($a_tt_id,
"_");
142 $comp = substr($a_tt_id, 0, $fu);
144 $nid =
$ilDB->nextId(
"help_tooltip");
145 $ilDB->manipulate(
"INSERT INTO help_tooltip " .
146 "(id, tt_text, tt_id, comp,module_id) VALUES (" .
147 $ilDB->quote($nid,
"integer") .
"," .
148 $ilDB->quote($a_text,
"text") .
"," .
149 $ilDB->quote($a_tt_id,
"text") .
"," .
150 $ilDB->quote($comp,
"text") .
"," .
151 $ilDB->quote($a_module_id,
"integer") .
162 $ilDB = $DIC->database();
164 $fu = strpos($a_tt_id,
"_");
165 $comp = substr($a_tt_id, 0, $fu);
168 "UPDATE help_tooltip SET " .
169 " tt_text = " .
$ilDB->quote($a_text,
"text") .
", " .
170 " tt_id = " .
$ilDB->quote($a_tt_id,
"text") .
", " .
171 " comp = " .
$ilDB->quote($comp,
"text") .
172 " WHERE id = " .
$ilDB->quote($a_id,
"integer")
185 $ilDB = $DIC->database();
186 $lng = $DIC->language();
188 $set =
$ilDB->query(
"SELECT DISTINCT comp FROM help_tooltip " .
189 " WHERE module_id = " .
$ilDB->quote($a_module_id,
"integer") .
191 $comps[
""] =
"- " .
$lng->txt(
"help_all") .
" -";
192 while ($rec =
$ilDB->fetchAssoc($set)) {
193 $comps[$rec[
"comp"]] = $rec[
"comp"];
203 $ilDB = $DIC->database();
206 "DELETE FROM help_tooltip WHERE " .
207 " id = " .
$ilDB->quote($a_id,
"integer")
216 $ilDB = $DIC->database();
219 "DELETE FROM help_tooltip WHERE " .
220 " module_id = " .
$ilDB->quote($a_id,
"integer")
236 if ((
int) OH_REF_ID > 0) {
static lookupModuleLmId(int $a_id)
static getObjCreationTooltipText(string $a_type)
Get object_creation tooltip tab text.
static getHelpLMId()
Get help lm id.
static getAllTooltips(string $a_comp="", int $a_module_id=0)
static getTooltipPresentationText(string $a_tt_id)
static getTooltipComponents(int $a_module_id=0)
Get all tooltip components.
static _lookupObjId(int $ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static addTooltip(string $a_tt_id, string $a_text, int $a_module_id=0)
static deleteTooltip(int $a_id)
static updateTooltip(int $a_id, string $a_text, string $a_tt_id)
static getMainMenuTooltip(string $a_item_id)
static deleteTooltipsOfModule(int $a_id)