ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilLuceneAdvancedSearchFields.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
30 {
31  public const ONLINE_QUERY = 1;
32  public const OFFLINE_QUERY = 2;
33 
36 
37  protected ilLanguage $lng;
38  protected ilObjUser $user;
39 
40  private static array $fields = [];
41  private array $active_fields = [];
42 
43  private static array $sections = [];
44  private array $active_sections = [];
45 
46 
47  protected function __construct()
48  {
49  global $DIC;
50 
51  $this->lng = $DIC->language();
52  $this->lng->loadLanguageModule('meta');
53  $this->user = $DIC->user();
54 
56 
57  $this->readFields();
58  $this->readSections();
59  }
60 
61  public static function getInstance(): ilLuceneAdvancedSearchFields
62  {
63  if (self::$instance instanceof ilLuceneAdvancedSearchFields) {
64  return self::$instance;
65  }
66  return self::$instance = new ilLuceneAdvancedSearchFields();
67  }
68 
73  public static function getFields(): array
74  {
75  global $DIC;
76 
77  $lng = $DIC->language();
78 
79  $lng->loadLanguageModule('meta');
80 
81  $fields['lom_content'] = $lng->txt('content');
82 
83  if (ilSearchSettings::getInstance()->enabledLucene()) {
84  $fields['general_offline'] = $lng->txt('lucene_offline_filter');
85  }
86  //'lom_type' = $lng->txt('type');
87  $fields['lom_language'] = $lng->txt('language');
88  $fields['lom_keyword'] = $lng->txt('meta_keyword');
89  $fields['lom_coverage'] = $lng->txt('meta_coverage');
90  $fields['lom_structure'] = $lng->txt('meta_structure');
91  $fields['lom_status'] = $lng->txt('meta_status');
92  $fields['lom_version'] = $lng->txt('meta_version');
93  $fields['lom_contribute'] = $lng->txt('meta_contribute');
94  $fields['lom_format'] = $lng->txt('meta_format');
95  $fields['lom_operating_system'] = $lng->txt('meta_operating_system');
96  $fields['lom_browser'] = $lng->txt('meta_browser');
97  $fields['lom_interactivity'] = $lng->txt('meta_interactivity_type');
98  $fields['lom_resource'] = $lng->txt('meta_learning_resource_type');
99  $fields['lom_level'] = $lng->txt('meta_interactivity_level');
100  $fields['lom_density'] = $lng->txt('meta_semantic_density');
101  $fields['lom_user_role'] = $lng->txt('meta_intended_end_user_role');
102  $fields['lom_context'] = $lng->txt('meta_context');
103  $fields['lom_difficulty'] = $lng->txt('meta_difficulty');
104  $fields['lom_costs'] = $lng->txt('meta_cost');
105  $fields['lom_copyright'] = $lng->txt('meta_copyright_and_other_restrictions');
106  $fields['lom_purpose'] = $lng->txt('meta_purpose');
107  $fields['lom_taxon'] = $lng->txt('meta_taxon');
108 
109  // Append all advanced meta data fields
110  foreach (ilAdvancedMDRecord::_getRecords() as $record) {
111  if ($record->getParentObject() > 0) {
112  if (!ilObject::_hasUntrashedReference($record->getParentObject())) {
113  continue;
114  }
115  }
116 
117  foreach (ilAdvancedMDFieldDefinition::getInstancesByRecordId($record->getRecordId(), true) as $def) {
118  $field_translations = ilAdvancedMDFieldTranslations::getInstanceByRecordId($record->getRecordId());
119  $fields['adv_' . $def->getFieldId()] = $field_translations->getTitleForLanguage($def->getFieldId(), $lng->getLangKey());
120  }
121  }
122 
123  return $fields;
124  }
125 
130  public function getActiveFields(): array
131  {
132  return $this->active_fields;
133  }
134 
135  public function getActiveSections(): array
136  {
137  return $this->active_sections;
138  }
139 
143  public function getFormElement($a_query, string $a_field_name, ilPropertyFormGUI $a_form): ?ilFormPropertyGUI
144  {
145  $a_post_name = 'query[' . $a_field_name . ']';
146 
147  if (!is_array($a_query)) {
148  $a_query = array();
149  }
150 
151  switch ($a_field_name) {
152  case 'general_offline':
153  $offline_options = array(
154  '0' => $this->lng->txt('search_any'),
155  self::ONLINE_QUERY => $this->lng->txt('search_option_online'),
156  self::OFFLINE_QUERY => $this->lng->txt('search_option_offline')
157  );
158  $offline = new ilSelectInputGUI($this->active_fields[$a_field_name], $a_post_name);
159  $offline->setOptions($offline_options);
160  $offline->setValue($a_query['general_offline'] ?? '');
161  return $offline;
162 
163  case 'lom_content':
164  $text = new ilTextInputGUI($this->active_fields[$a_field_name], $a_post_name);
165  $text->setSubmitFormOnEnter(true);
166  $text->setValue($a_query['lom_content'] ?? '');
167  $text->setSize(30);
168  $text->setMaxLength(255);
169  return $text;
170 
171  // General
172  case 'lom_language':
173  $select = new ilSelectInputGUI($this->active_fields[$a_field_name], $a_post_name);
174  $select->setValue($a_query['lom_language'] ?? '');
175  $select->setOptions((array) ilMDUtilSelect::_getLanguageSelect(
176  '',
177  $a_field_name,
178  array(0 => $this->lng->txt('search_any')),
179  true
180  ));
181  return $select;
182 
183  case 'lom_keyword':
184  $text = new ilTextInputGUI($this->active_fields[$a_field_name], $a_post_name);
185  $text->setSubmitFormOnEnter(true);
186  $text->setValue($a_query['lom_keyword'] ?? '');
187  $text->setSize(30);
188  $text->setMaxLength(255);
189  return $text;
190 
191  case 'lom_coverage':
192  $text = new ilTextInputGUI($this->active_fields[$a_field_name], $a_post_name);
193  $text->setSubmitFormOnEnter(true);
194  $text->setValue($a_query['lom_coverage'] ?? '');
195  $text->setSize(30);
196  $text->setMaxLength(255);
197  return $text;
198 
199  case 'lom_structure':
200  $select = new ilSelectInputGUI($this->active_fields[$a_field_name], $a_post_name);
201  $select->setValue($a_query['lom_structure'] ?? '');
202  $select->setOptions((array) ilMDUtilSelect::_getStructureSelect(
203  '',
204  $a_field_name,
205  array(0 => $this->lng->txt('search_any')),
206  true
207  ));
208  return $select;
209 
210  // Lifecycle
211  case 'lom_status':
212  $select = new ilSelectInputGUI($this->active_fields[$a_field_name], $a_post_name);
213  $select->setValue($a_query['lom_status'] ?? '');
214  $select->setOptions((array) ilMDUtilSelect::_getStatusSelect(
215  '',
216  $a_field_name,
217  array(0 => $this->lng->txt('search_any')),
218  true
219  ));
220  return $select;
221 
222  case 'lom_version':
223  $text = new ilTextInputGUI($this->active_fields[$a_field_name], $a_post_name);
224  $text->setSubmitFormOnEnter(true);
225  $text->setValue($a_query['lom_version'] ?? '');
226  $text->setSize(30);
227  $text->setMaxLength(255);
228  return $text;
229 
230  case 'lom_contribute':
231  $select = new ilSelectInputGUI($this->active_fields[$a_field_name], 'query[' . 'lom_role' . ']');
232  $select->setValue($a_query['lom_role'] ?? '');
233  $select->setOptions((array) ilMDUtilSelect::_getRoleSelect(
234  '',
235  $a_field_name,
236  array(0 => $this->lng->txt('search_any')),
237  true
238  ));
239 
240  $text = new ilTextInputGUI($this->lng->txt('meta_entry'), 'query[' . 'lom_role_entry' . ']');
241  $text->setValue($a_query['lom_role_entry'] ?? '');
242  $text->setSize(30);
243  $text->setMaxLength(255);
244 
245  $select->addSubItem($text);
246  return $select;
247 
248  // Technical
249  case 'lom_format':
250  $select = new ilSelectInputGUI($this->active_fields[$a_field_name], $a_post_name);
251  $select->setValue($a_query['lom_format'] ?? '');
252  $select->setOptions((array) ilMDUtilSelect::_getFormatSelect(
253  '',
254  $a_field_name,
255  array(0 => $this->lng->txt('search_any')),
256  true
257  ));
258  return $select;
259 
260  case 'lom_operating_system':
261  $select = new ilSelectInputGUI($this->active_fields[$a_field_name], $a_post_name);
262  $select->setValue($a_query['lom_operating_system'] ?? '');
263  $select->setOptions((array) ilMDUtilSelect::_getOperatingSystemSelect(
264  '',
265  $a_field_name,
266  array(0 => $this->lng->txt('search_any')),
267  true
268  ));
269  return $select;
270 
271  case 'lom_browser':
272  $select = new ilSelectInputGUI($this->active_fields[$a_field_name], $a_post_name);
273  $select->setValue($a_query['lom_browser'] ?? '');
274  $select->setOptions((array) ilMDUtilSelect::_getBrowserSelect(
275  '',
276  $a_field_name,
277  array(0 => $this->lng->txt('search_any')),
278  true
279  ));
280  return $select;
281 
282  // Education
283  case 'lom_interactivity':
284  $select = new ilSelectInputGUI($this->active_fields[$a_field_name], $a_post_name);
285  $select->setValue($a_query['lom_interactivity'] ?? '');
286  $select->setOptions((array) ilMDUtilSelect::_getInteractivityTypeSelect(
287  '',
288  $a_field_name,
289  array(0 => $this->lng->txt('search_any')),
290  true
291  ));
292  return $select;
293 
294  case 'lom_resource':
295  $select = new ilSelectInputGUI($this->active_fields[$a_field_name], $a_post_name);
296  $select->setValue($a_query['lom_resource'] ?? '');
297  $select->setOptions((array) ilMDUtilSelect::_getLearningResourceTypeSelect(
298  '',
299  $a_field_name,
300  array(0 => $this->lng->txt('search_any')),
301  true
302  ));
303  return $select;
304 
305  case 'lom_level':
306  $range = new ilCustomInputGUI($this->active_fields[$a_field_name]);
307  $html = $this->getRangeSelect(
308  $this->lng->txt('from'),
310  $a_query['lom_level_start'] ?? '',
311  'query[' . 'lom_level_start' . ']',
312  array(0 => $this->lng->txt('search_any'))
313  ),
314  $this->lng->txt('until'),
316  $a_query['lom_level_end'] ?? '',
317  'query[' . 'lom_level_end' . ']',
318  array(0 => $this->lng->txt('search_any'))
319  )
320  );
321  $range->setHtml($html);
322  return $range;
323 
324  case 'lom_density':
325  $range = new ilCustomInputGUI($this->active_fields[$a_field_name]);
326  $html = $this->getRangeSelect(
327  $this->lng->txt('from'),
329  $a_query['lom_density_start'] ?? '',
330  'query[' . 'lom_density_start' . ']',
331  array(0 => $this->lng->txt('search_any'))
332  ),
333  $this->lng->txt('until'),
335  $a_query['lom_density_end'] ?? '',
336  'query[' . 'lom_density_end' . ']',
337  array(0 => $this->lng->txt('search_any'))
338  )
339  );
340  $range->setHtml($html);
341  return $range;
342 
343 
344  case 'lom_user_role':
345  $select = new ilSelectInputGUI($this->active_fields[$a_field_name], $a_post_name);
346  $select->setValue($a_query['lom_user_role'] ?? '');
347  $select->setOptions((array) ilMDUtilSelect::_getIntendedEndUserRoleSelect(
348  '',
349  $a_field_name,
350  array(0 => $this->lng->txt('search_any')),
351  true
352  ));
353  return $select;
354 
355  case 'lom_context':
356  $select = new ilSelectInputGUI($this->active_fields[$a_field_name], $a_post_name);
357  $select->setValue($a_query['lom_context'] ?? '');
358  $select->setOptions((array) ilMDUtilSelect::_getContextSelect(
359  '',
360  $a_field_name,
361  array(0 => $this->lng->txt('search_any')),
362  true
363  ));
364  return $select;
365 
366  case 'lom_difficulty':
367  $range = new ilCustomInputGUI($this->active_fields[$a_field_name]);
368  $html = $this->getRangeSelect(
369  $this->lng->txt('from'),
371  $a_query['lom_difficulty_start'] ?? '',
372  'query[' . 'lom_difficulty_start' . ']',
373  array(0 => $this->lng->txt('search_any'))
374  ),
375  $this->lng->txt('until'),
377  $a_query['lom_difficulty_end'] ?? '',
378  'query[' . 'lom_difficulty_end' . ']',
379  array(0 => $this->lng->txt('search_any'))
380  )
381  );
382  $range->setHtml($html);
383  return $range;
384 
385  // Rights
386  case 'lom_costs':
387  $select = new ilSelectInputGUI($this->active_fields[$a_field_name], $a_post_name);
388  $select->setValue($a_query['lom_costs'] ?? '');
389  $select->setOptions((array) ilMDUtilSelect::_getCostsSelect(
390  '',
391  $a_field_name,
392  array(0 => $this->lng->txt('search_any')),
393  true
394  ));
395  return $select;
396 
397  case 'lom_copyright':
398  $select = new ilSelectInputGUI($this->active_fields[$a_field_name], $a_post_name);
399  $select->setValue($a_query['lom_copyright'] ?? '');
401  '',
402  $a_field_name,
403  array(0 => $this->lng->txt('search_any')),
404  true
405  ));
406  return $select;
407 
408 
409 
410  // Classification
411  case 'lom_purpose':
412  $select = new ilSelectInputGUI($this->active_fields[$a_field_name], $a_post_name);
413  $select->setValue($a_query['lom_purpose'] ?? '');
414  $select->setOptions((array) ilMDUtilSelect::_getPurposeSelect(
415  '',
416  $a_field_name,
417  array(0 => $this->lng->txt('search_any')),
418  true
419  ));
420  return $select;
421 
422  case 'lom_taxon':
423  $text = new ilTextInputGUI($this->active_fields[$a_field_name], $a_post_name);
424  $text->setSubmitFormOnEnter(true);
425  $text->setValue($a_query['lom_taxon'] ?? '');
426  $text->setSize(30);
427  $text->setMaxLength(255);
428  return $text;
429 
430  default:
431  if (substr($a_field_name, 0, 3) != 'adv') {
432  break;
433  }
434 
435  // Advanced meta data
436  $field_id = substr($a_field_name, 4);
437  $field = ilAdvancedMDFieldDefinition::getInstance((int) $field_id);
438 
439  $field_form = ilADTFactory::getInstance()->getSearchBridgeForDefinitionInstance($field->getADTDefinition(), true, false);
440  $field_form->setForm($a_form);
441  $field_form->setElementId($a_post_name);
442  $field_form->setTitle($this->active_fields[$a_field_name]);
443  $field_form->addToForm();
444 
445  // #17071 - reload search values
446  if (is_array($a_query) &&
447  array_key_exists($a_field_name, $a_query)) {
448  $field_form->importFromPost((array) $a_query);
449  $field_form->validate();
450  }
451  return null;
452  }
453  return null;
454  }
455 
456 
463  public function parseFieldQuery(string $a_field, $a_query): string
464  {
465  switch ($a_field) {
466  case 'lom_content':
467  return $a_query;
468 
469  case 'general_offline':
470 
471  switch ($a_query) {
472  case self::OFFLINE_QUERY:
473  return 'offline:1';
474 
475  default:
476  return '-offline:1';
477  }
478 
479  // General
480  // no break
481  case 'lom_language':
482  return 'lomLanguage:' . $a_query;
483 
484  case 'lom_keyword':
485  return 'lomKeyword:' . $a_query;
486 
487  case 'lom_coverage':
488  return 'lomCoverage:' . $a_query;
489 
490  case 'lom_structure':
491  return 'lomStructure:' . $a_query;
492 
493  // Lifecycle
494  case 'lom_status':
495  return 'lomStatus:' . $a_query;
496 
497  case 'lom_version':
498  return 'lomVersion:' . $a_query;
499 
500  // Begin Contribute
501  case 'lom_role':
502  return 'lomRole:' . $a_query;
503 
504  case 'lom_role_entry':
505  return 'lomRoleEntity:' . $a_query;
506  // End contribute
507 
508  // Technical
509  case 'lom_format':
510  return 'lomFormat:' . $a_query;
511 
512  case 'lom_operating_system':
513  return 'lomOS:' . $a_query;
514 
515  case 'lom_browser':
516  return 'lomBrowser:' . $a_query;
517 
518  // Educational
519  case 'lom_interactivity':
520  return 'lomInteractivity:' . $a_query;
521 
522  case 'lom_resource':
523  return 'lomResource:' . $a_query;
524 
525  case 'lom_level_start':
526  $q_string = '';
527  $options = (array) ilMDUtilSelect::_getInteractivityLevelSelect(0, 'lom_level', array(), true);
528  for ($i = $a_query; $i <= count($options); $i++) {
529  if (strlen($q_string)) {
530  $q_string .= 'OR ';
531  }
532  $q_string .= ('lomLevel:"' . $options[$i] . '" ');
533  }
534  return $q_string;
535 
536  case 'lom_level_end':
537  $q_string = '';
538  $options = (array) ilMDUtilSelect::_getInteractivityLevelSelect(0, 'lom_level', array(), true);
539  for ($i = 1; $i <= $a_query; $i++) {
540  if (strlen($q_string)) {
541  $q_string .= 'OR ';
542  }
543  $q_string .= ('lomLevel:"' . $options[$i] . '" ');
544  }
545  return $q_string;
546 
547  case 'lom_density_start':
548  $q_string = '';
549  $options = (array) ilMDUtilSelect::_getSemanticDensitySelect(0, 'lom_density', array(), true);
550  for ($i = $a_query; $i <= count($options); $i++) {
551  if (strlen($q_string)) {
552  $q_string .= 'OR ';
553  }
554  $q_string .= ('lomDensity:"' . $options[$i] . '" ');
555  }
556  return $q_string;
557 
558  case 'lom_density_end':
559  $q_string = '';
560  $options = (array) ilMDUtilSelect::_getSemanticDensitySelect(0, 'lom_density', array(), true);
561  for ($i = 1; $i <= $a_query; $i++) {
562  if (strlen($q_string)) {
563  $q_string .= 'OR ';
564  }
565  $q_string .= ('lomDensity:"' . $options[$i] . '" ');
566  }
567  return $q_string;
568 
569  case 'lom_user_role':
570  return 'lomUserRole:' . $a_query;
571 
572  case 'lom_context':
573  return 'lomContext:' . $a_query;
574 
575  case 'lom_difficulty_start':
576  $q_string = '';
577  $options = (array) ilMDUtilSelect::_getDifficultySelect(0, 'lom_difficulty', array(), true);
578  for ($i = $a_query; $i <= count($options); $i++) {
579  if (strlen($q_string)) {
580  $q_string .= 'OR ';
581  }
582  $q_string .= ('lomDifficulty:"' . $options[$i] . '" ');
583  }
584  return $q_string;
585 
586  case 'lom_difficulty_end':
587  $q_string = '';
588  $options = (array) ilMDUtilSelect::_getDifficultySelect(0, 'lom_difficulty', array(), true);
589  for ($i = 1; $i <= $a_query; $i++) {
590  if (strlen($q_string)) {
591  $q_string .= 'OR ';
592  }
593  $q_string .= ('lomDifficulty:"' . $options[$i] . '" ');
594  }
595  return $q_string;
596 
597  // Rights
598  case 'lom_costs':
599  return 'lomCosts:' . $a_query;
600 
601  case 'lom_copyright':
602  return 'lomCopyright:' . $a_query;
603 
604  // Classification
605  case 'lom_purpose':
606  return 'lomPurpose:' . $a_query;
607 
608  case 'lom_taxon':
609  return 'lomTaxon:' . $a_query;
610 
611  default:
612  if (substr($a_field, 0, 3) != 'adv') {
613  break;
614  }
615 
616  // Advanced meta data
617  $field_id = substr($a_field, 4);
618  try {
619  // field might be invalid (cached query)
620  $field = ilAdvancedMDFieldDefinition::getInstance((int) $field_id);
621  } catch (Exception $ex) {
622  return '';
623  }
624 
625  $adv_query = $field->getLuceneSearchString($a_query);
626  if ($adv_query) {
627  // #17558
628  if (!is_array($adv_query)) {
629  return 'advancedMetaData_' . $field_id . ': ' . $adv_query;
630  } else {
631  $res = array();
632  foreach ($adv_query as $adv_query_item) {
633  $res[] = 'advancedMetaData_' . $field_id . ': ' . $adv_query_item;
634  }
635  return '(' . implode(' OR ', $res) . ')';
636  }
637  }
638  }
639  return '';
640  }
641 
642 
646  protected function readFields(): void
647  {
648  foreach (self::getFields() as $name => $translation) {
649  if ($this->settings->isActive($name)) {
650  $this->active_fields[$name] = $translation;
651  }
652  }
653  }
654 
658  protected function readSections(): void
659  {
660  foreach ($this->getActiveFields() as $field_name => $translation) {
661  switch ($field_name) {
662  // Default section
663  case 'lom_content':
664  $this->active_sections['default']['fields'][] = 'lom_content';
665  $this->active_sections['default']['name'] = '';
666  break;
667 
668  case 'general_offline':
669  $this->active_sections['default']['fields'][] = 'general_offline';
670  $this->active_sections['default']['name'] = '';
671  break;
672 
673  case 'lom_type':
674  $this->active_sections['default']['fields'][] = 'lom_type';
675  $this->active_sections['default']['name'] = '';
676  break;
677 
678  // General
679  case 'lom_language':
680  $this->active_sections['general']['fields'][] = 'lom_language';
681  $this->active_sections['general']['name'] = $this->lng->txt('meta_general');
682  break;
683  case 'lom_keyword':
684  $this->active_sections['general']['fields'][] = 'lom_keyword';
685  $this->active_sections['general']['name'] = $this->lng->txt('meta_general');
686  break;
687  case 'lom_coverage':
688  $this->active_sections['general']['fields'][] = 'lom_coverage';
689  $this->active_sections['general']['name'] = $this->lng->txt('meta_general');
690  break;
691  case 'lom_structure':
692  $this->active_sections['general']['fields'][] = 'lom_structure';
693  $this->active_sections['general']['name'] = $this->lng->txt('meta_general');
694  break;
695 
696  // Lifecycle
697  case 'lom_status':
698  $this->active_sections['lifecycle']['fields'][] = 'lom_status';
699  $this->active_sections['lifecycle']['name'] = $this->lng->txt('meta_lifecycle');
700  break;
701  case 'lom_version':
702  $this->active_sections['lifecycle']['fields'][] = 'lom_version';
703  $this->active_sections['lifecycle']['name'] = $this->lng->txt('meta_lifecycle');
704  break;
705  case 'lom_contribute':
706  $this->active_sections['lifecycle']['fields'][] = 'lom_contribute';
707  $this->active_sections['lifecycle']['name'] = $this->lng->txt('meta_lifecycle');
708  break;
709 
710  // Technical
711  case 'lom_format':
712  $this->active_sections['technical']['fields'][] = 'lom_format';
713  $this->active_sections['technical']['name'] = $this->lng->txt('meta_technical');
714  break;
715  case 'lom_operating_system':
716  $this->active_sections['technical']['fields'][] = 'lom_operating_system';
717  $this->active_sections['technical']['name'] = $this->lng->txt('meta_technical');
718  break;
719  case 'lom_browser':
720  $this->active_sections['technical']['fields'][] = 'lom_browser';
721  $this->active_sections['technical']['name'] = $this->lng->txt('meta_technical');
722  break;
723 
724  // Education
725  case 'lom_interactivity':
726  $this->active_sections['education']['fields'][] = 'lom_interactivity';
727  $this->active_sections['education']['name'] = $this->lng->txt('meta_education');
728  break;
729  case 'lom_resource':
730  $this->active_sections['education']['fields'][] = 'lom_resource';
731  $this->active_sections['education']['name'] = $this->lng->txt('meta_education');
732  break;
733  case 'lom_level':
734  $this->active_sections['education']['fields'][] = 'lom_level';
735  $this->active_sections['education']['name'] = $this->lng->txt('meta_education');
736  break;
737  case 'lom_density':
738  $this->active_sections['education']['fields'][] = 'lom_density';
739  $this->active_sections['education']['name'] = $this->lng->txt('meta_education');
740  break;
741  case 'lom_user_role':
742  $this->active_sections['education']['fields'][] = 'lom_user_role';
743  $this->active_sections['education']['name'] = $this->lng->txt('meta_education');
744  break;
745  case 'lom_context':
746  $this->active_sections['education']['fields'][] = 'lom_context';
747  $this->active_sections['education']['name'] = $this->lng->txt('meta_education');
748  break;
749  case 'lom_difficulty':
750  $this->active_sections['education']['fields'][] = 'lom_difficulty';
751  $this->active_sections['education']['name'] = $this->lng->txt('meta_education');
752  break;
753 
754  // Rights
755  case 'lom_costs':
756  $this->active_sections['rights']['fields'][] = 'lom_costs';
757  $this->active_sections['rights']['name'] = $this->lng->txt('meta_rights');
758  break;
759  case 'lom_copyright':
760  $this->active_sections['rights']['fields'][] = 'lom_copyright';
761  $this->active_sections['rights']['name'] = $this->lng->txt('meta_rights');
762  break;
763 
764  // Classification
765  case 'lom_purpose':
766  $this->active_sections['classification']['fields'][] = 'lom_purpose';
767  $this->active_sections['classification']['name'] = $this->lng->txt('meta_classification');
768  break;
769  case 'lom_taxon':
770  $this->active_sections['classification']['fields'][] = 'lom_taxon';
771  $this->active_sections['classification']['name'] = $this->lng->txt('meta_classification');
772  break;
773 
774  default:
775  if (substr($field_name, 0, 3) != 'adv') {
776  break;
777  }
778 
779  // Advanced meta data
780  $field_id = substr($field_name, 4);
781  $field = ilAdvancedMDFieldDefinition::getInstance((int) $field_id);
782  $record_id = $field->getRecordId();
783 
784  $translations = ilAdvancedMDRecordTranslations::getInstanceByRecordId($record_id);
785  $this->active_sections['adv_record_' . $record_id]['fields'][] = $field_name;
786  $this->active_sections['adv_record_' . $record_id]['name'] = $translations->getTitleForLanguage($this->user->getLanguage());
787  break;
788  }
789  }
790  }
791 
795  protected function getRangeSelect(
796  string $txt_from,
797  string $select_from,
798  string $txt_until,
799  string $select_until
800  ): string {
801  $tpl = new ilTemplate('tpl.range_search.html', true, true, 'components/ILIAS/Search');
802  $tpl->setVariable('TXT_FROM', $txt_from);
803  $tpl->setVariable('FROM', $select_from);
804  $tpl->setVariable('TXT_UPTO', $txt_until);
805  $tpl->setVariable('UPTO', $select_until);
806  return $tpl->get();
807  }
808 }
static _getOperatingSystemSelect(string $a_selected, string $a_name, array $prepend=array(), bool $a_options_only=false)
Prepare a meta technical os selector.
static _getCopyrightAndOtherRestrictionsSelect(string $a_selected, string $a_name, array $prepend=array(), bool $a_options_only=false)
Prepare a meta rights copyright and other restrictions All possible entries in meta_format are shown...
$res
Definition: ltiservices.php:66
static _getPurposeSelect(string $a_selected, string $a_name, array $prepend=array(), bool $a_options_only=false)
Prepare a meta rights copyright and other restrictions All possible entries in meta_format are shown...
This class represents a selection list property in a property form.
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...
static _getRecords()
Get records public.
static _getBrowserSelect(string $a_selected, string $a_name, array $prepend=array(), bool $a_options_only=false)
Prepare a meta technical browser selector.
getFormElement($a_query, string $a_field_name, ilPropertyFormGUI $a_form)
static _getLearningResourceTypeSelect(string $a_selected, string $a_name, array $prepend=array(), bool $a_options_only=false)
Prepare a meta educational learning resource type All possible entries in meta_format are shown...
getRangeSelect(string $txt_from, string $select_from, string $txt_until, string $select_until)
get a range selection
parseFieldQuery(string $a_field, $a_query)
Called from ilLuceneAdvancedQueryParser Parse a field specific query.
getLangKey()
Return lang key.
static _hasUntrashedReference(int $obj_id)
checks whether an object has at least one reference that is not in trash
loadLanguageModule(string $a_module)
Load language module.
static _getSemanticDensitySelect( $a_selected, string $a_name, array $prepend=array(), bool $a_options_only=false)
Prepare a meta educational semantic density All possible entries in meta_format are shown...
static getInstancesByRecordId( $a_record_id, $a_only_searchable=false, string $language='')
Get definitions by record id.
static _getStatusSelect(string $a_selected, string $a_name, array $prepend=array(), bool $a_options_only=false)
Prepare a meta lifecycle status selector.
static getInstance(?int $a_field_id, ?int $a_type=null, string $language='')
static _getDifficultySelect( $a_selected, string $a_name, array $prepend=array(), bool $a_options_only=false)
Prepare a meta educational difficulty All possible entries in meta_format are shown.
En/disable single lom/advanced meta data fields.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _getCostsSelect(string $a_selected, string $a_name, array $prepend=array(), bool $a_options_only=false)
Prepare a meta rights costs All possible entries in meta_format are shown.
static _getStructureSelect(string $a_selected, string $a_name, array $prepend=array(), bool $a_options_only=false)
Prepare a meta general structure selector.
static _getInteractivityLevelSelect( $a_selected, string $a_name, array $prepend=array(), bool $a_options_only=false)
Prepare a meta educational interactivity level All possible entries in meta_format are shown...
global $DIC
Definition: shib_login.php:22
static _getLanguageSelect(string $a_selected, string $a_name, array $prepend=array(), bool $a_options_only=false)
Prepare a meta data language selector.
static ilLuceneAdvancedSearchFields $instance
static _getIntendedEndUserRoleSelect(string $a_selected, string $a_name, array $prepend=array(), bool $a_options_only=false)
Prepare a meta educational intended end user role All possible entries in meta_format are shown...
static _getRoleSelect(string $a_selected, string $a_name, array $prepend=array(), bool $a_options_only=false)
Prepare a meta lifecycle status selector.
static _getContextSelect(string $a_selected, string $a_name, array $prepend=array(), bool $a_options_only=false)
Prepare a meta context.
static getFields()
Return an array of all meta data fields.
static _getFormatSelect(string $a_selected, string $a_name, array $prepend=array(), bool $a_options_only=false)
Prepare a meta technical format selector All possible entries in meta_format are shown.
Field definitions of advanced meta data search.
static _getInteractivityTypeSelect(string $a_selected, string $a_name, array $prepend=array(), bool $a_options_only=false)
Prepare a meta educational interactivity type All possible entries in meta_format are shown...