19 declare(strict_types=1);
49 protected Presentation\PresentationManager
$manager;
63 $this->
ctrl = $DIC->ctrl();
64 $this->
user = $DIC->user();
65 $this->
lng = $DIC->language();
66 $this->tpl = $DIC->ui()->mainTemplate();
67 $this->tabs_gui = $DIC->tabs();
68 $this->nav_history = $DIC[
"ilNavigationHistory"];
69 $this->ui_fac = $DIC->ui()->factory();
70 $this->ui_ren = $DIC->ui()->renderer();
71 $this->request = $DIC->http()->request();
72 $this->parent_obj = $parent_object;
76 $this->pres_gui_request = $DIC->glossary()
81 $this->manager = $DIC->glossary()
84 ->presentation($this->glossary);
85 $this->filter_service = $DIC->uiService()->filter();
86 $this->adv_md_service = new \ILIAS\AdvancedMetaData\Services\Services();
87 $this->content_style = $DIC->contentStyle();
92 $next_class = $this->
ctrl->getNextClass($this);
93 $cmd = $this->
ctrl->getCmd();
95 switch ($next_class) {
97 $cmd = $this->
ctrl->getCmd(
"show");
105 $this->
ctrl->setParameter($this,
"term_id",
"");
106 $this->tabs_gui->activateTab(
"terms");
108 $this->nav_history->addItem(
109 $this->glossary->getRefId(),
110 $this->
ctrl->getLinkTargetByClass(
"ilGlossaryPresentationGUI",
"listTerms"),
114 $this->content_style->gui()->addCss(
116 $this->glossary->getRefId()
120 $this->filter_data = $this->filter_service->getData($filter);
121 $this->manager->setSessionLetter($this->filter_data[
"letter"] ??
"");
127 if ($vc_data = $view_control->getData()) {
128 $this->setStartAndLengthForViewControl($vc_data);
133 $this->tpl->setContent($this->ui_ren->render([$filter, $view_control, $pres_table]));
134 $this->tpl->setPermanentLink(
"glo", $this->glossary->getRefId());
139 $this->manager->setSessionViewControlStart(0);
143 protected function initTerms(array $adt_search_bridges): void
145 $this->terms = $this->glossary->getTermList(
146 $this->filter_data[
"term"] ??
"",
147 $this->filter_data[
"letter"] ??
"",
148 $this->filter_data[
"definition"] ??
"",
161 if (is_array($this->filter_data)) {
162 foreach ($this->filter_data as $input_key => $value) {
163 if (substr($input_key, 0, 7) !=
"adv_md_") {
170 $field_id = substr($input_key, 7);
173 $field->getADTDefinition(),
178 if (is_array($value)) {
189 if ($start || $end) {
190 $bridges[$field_id] = $field_form;
195 $start = strtotime($value[0]);
199 $end = strtotime($value[1]);
202 if ($value[0] || $value[1]) {
203 $bridges[$field_id] = $field_form;
207 $field_form->
getADT()->setSelections($value);
208 $bridges[$field_id] = $field_form;
214 $field_form->
getADT()->setText($value);
215 $bridges[$field_id] = $field_form;
220 $field_form->
getADT()->setNumber($value);
221 $bridges[$field_id] = $field_form;
224 $field_form->
getADT()->setSelection($value);
225 $bridges[$field_id] = $field_form;
228 $field_form->
getADT()->setUrl($value);
229 $bridges[$field_id] = $field_form;
232 $field_form->
getADT()->setTargetRefId(1);
233 $field_form->setTitleQuery($value);
234 $bridges[$field_id] = $field_form;
246 $first_letters = $this->glossary->getFirstLetters($this->tax_node);
248 if (!empty($session_letter) && !in_array($session_letter, $first_letters)) {
249 $first_letters[$session_letter] = $session_letter;
253 "letter" => $this->ui_fac->input()->field()->select(
254 $this->
lng->txt(
"glo_term_letter"),
257 "term" => $this->ui_fac->input()->field()->text($this->
lng->txt(
"cont_term")),
258 "definition" => $this->ui_fac->input()->field()->text($this->
lng->txt(
"cont_definition"))
260 $adv_md_inputs = $this->adv_md_service->forSubObjects(
262 $this->glossary->getRefId(),
264 )->inFilter()->getFilterInputs();
265 $inputs = $default_inputs + $adv_md_inputs;
267 $default_inputs_active = [
true,
true,
true];
268 $adv_md_inputs_active = [];
269 for ($i = 0; $i < count($adv_md_inputs); $i++) {
270 $adv_md_inputs_active[] =
false;
272 $inputs_active = array_merge($default_inputs_active, $adv_md_inputs_active);
274 $filter = $this->filter_service->standard(
275 self::class .
"_filter_" . $this->glossary->getRefId(),
276 $this->
ctrl->getLinkTarget($this,
"applyFilter"),
290 if (!$this->offline) {
291 $vc_start = $this->manager->getSessionViewControlStart();
292 $vc_length = $this->manager->getSessionViewControlLength();
295 $terms_sliced = array_slice(
302 foreach ($terms_sliced as $term) {
304 "term_id" => (
int) $term[
"id"],
305 "term" => $term[
"term"],
307 "definition" => $this->parent_obj->listDefinitions(
308 $this->pres_gui_request->getRefId(),
318 $table = $this->ui_fac->table()->presentation(
319 $this->
lng->txt(
"cont_terms"),
321 function ($row, array $record, $ui_factory) {
323 $adv_term_sets = $this->adv_md_service->forObject(
325 $this->glossary->getRefId(),
330 foreach ($adv_term_sets as $set) {
331 if (!empty($fields = $set->fields())) {
332 $adv_data[] =
"<b>" . $set->presentableTitle() .
"</b>";
334 foreach ($fields as $field) {
335 $adv_data[] = $field->presentableTitle() .
": " . $field->valueAsHTML();
340 ->withHeadline($record[
"term"])
341 ->withImportantFields([$record[
"short_txt"]])
343 $ui_factory->legacy()->content($record[
"definition"])
345 ->withFurtherFieldsHeadline($this->
lng->txt(
"glo_md_advanced"))
346 ->withFurtherFields($adv_data)
356 $offset = $this->manager->getSessionViewControlStart() ?: 0;
357 $limit = $this->manager->getSessionViewControlLength() ?: 25;
358 $pagination = $this->ui_fac->input()->viewControl()->pagination()
359 ->withTotalCount(count($this->terms))
360 ->withValue([Pagination::FNAME_OFFSET => $offset, Pagination::FNAME_LIMIT => $limit]);
362 $vc_container = $this->ui_fac->input()->container()->viewControl()->standard([$pagination])
365 return $vc_container;
368 protected function setStartAndLengthForViewControl(array $vc_data):
void 373 $this->manager->setSessionViewControlStart($start);
376 $this->manager->setSessionViewControlLength($length);
386 $term_obj = new \ilGlossaryTerm($term_id);
387 $term_obj->updateShortText();
388 $short_str = $term_obj->getShortText();
391 $page = new \ilGlossaryDefPage($term_id);
395 $ltexs = strrpos($short_str,
"[tex]");
396 $ltexe = strrpos($short_str,
"[/tex]");
397 if ($ltexs > $ltexe) {
399 $short_str = $page->getFirstParagraphText();
400 $short_str = strip_tags($short_str,
"<br>");
401 $ltexe = strpos($short_str,
"[/tex]", $ltexs);
411 !$page->getPageConfig()->getPreventHTMLUnmasking()
420 $this->tpl->setVariable(
"ADM_CONTENT", $this->ui_ren->render($pres_table));
421 return $this->tpl->printToString();
Presentation PresentationManager $manager
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...
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
Class ilADTEnumSearchBridgeMulti.
Class ilADTDateTimeSearchBridgeRange.
static xml2output(string $a_text, bool $a_wysiwyg=false, bool $a_replace_lists=true, bool $unmask=true)
Converts xml from DB to output in edit textarea.
getShortTextForTerm(int $term_id)
static getInstance(?int $a_field_id, ?int $a_type=null, string $language='')
ServerRequestInterface $request
static _lookShortTextDirty(int $term_id)
get definition short text dirty
external link search bridge
ILIAS AdvancedMetaData Services Services $adv_md_service
Class ilADTDateSearchBridgeRange.
initTerms(array $adt_search_bridges)
ilGlobalTemplateInterface $tpl
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _lookShortText(int $term_id)
get definition short text
ilNavigationHistory $nav_history
ILIAS Style Content Service $content_style
Last visited history for repository items.
external link search bridge
Presentation PresentationGUIRequest $pres_gui_request
static getInstance()
Singleton: get instance for use in ILIAS requests with a config loaded from the settings.
This describes a Presentation Table.
__construct( $parent_object, ilObjGlossary $glossary, bool $offline, int $tax_node=0)
static shortenTextExtended(string $a_str, int $a_len, bool $a_dots=false, bool $a_next_blank=false, bool $a_keep_extension=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
custom()
expected output: > ILIAS shows a base horizontal bar chart but customized with e.g.
initPresentationTable(bool $offline=false)
getLowerADT()
Get lower ADT.
ilUIFilterService $filter_service
renderPresentationTableForOffline()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...