19 declare(strict_types=1);
40 string $a_postvar =
"" 44 $this->
lng = $DIC->language();
45 $this->
ctrl = $DIC->ctrl();
46 $this->db = $DIC->database();
56 if (!isset($this->db_supports_distinct_umlauts)) {
57 $set = $this->db->query(
58 "SELECT (" . $this->db->quote(
"A",
"text") .
" = " . $this->db->quote(
"Ä",
"text") .
") t FROM DUAL " 60 $rec = $this->db->fetchAssoc($set);
61 $this->db_supports_distinct_umlauts = !(bool) $rec[
"t"];
67 public function setValue(
string $a_value): void
69 $this->value = $a_value;
84 $this->letters = $a_val;
111 $this->fix_db_umlauts = $a_val;
122 $l = str_replace(array(
"Ä",
"Ö",
"Ü",
"ä",
"ö",
"ü"), array(
"A",
"O",
"U",
"a",
"o",
"u"), $l);
128 protected function render(
string $a_mode =
""): string
137 $this->parent_object = $a_obj;
138 $this->parent_cmd = $a_cmd;
142 string $a_high_letter
144 $this->highlight = ($a_high_letter !=
"");
145 $this->highlight_letter = $a_high_letter;
155 $tpl =
new ilTemplate(
"tpl.prop_alphabet.html",
true,
true,
"components/ILIAS/Form");
161 $tpl->setCurrentBlock(
"letter");
162 $tpl->setVariable(
"TXT_LET", $l);
163 $ilCtrl->setParameter($this->parent_object,
"letter", rawurlencode($l));
164 $tpl->setVariable(
"TXT_LET", $l);
165 $tpl->setVariable(
"HREF_LET", $ilCtrl->getLinkTarget($this->parent_object, $this->parent_cmd));
166 if ($this->highlight && $this->highlight_letter !==
null && $this->highlight_letter == $l) {
167 $tpl->setVariable(
"CLASS",
' class="ilHighlighted" ');
169 $tpl->parseCurrentBlock();
171 $ilCtrl->setParameter($this->parent_object,
"letter",
"");
172 $tpl->setVariable(
"TXT_ALL",
$lng->
txt(
"form_alphabet_all"));
173 $tpl->setVariable(
"HREF_ALL", $ilCtrl->getLinkTarget($this->parent_object, $this->parent_cmd));
174 if ($this->highlight && $this->highlight_letter ===
null) {
175 $tpl->setVariable(
"CLASSA",
' class="ilHighlighted" ');
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
loadLanguageModule(string $a_module)
Load language module.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(Container $dic, ilPlugin $plugin)