19 declare(strict_types=1);
40 public function setMode(
string $a_mode): void
42 $this->mode = $a_mode;
64 case 'typical_age_range':
70 case 'classification':
97 case 'title_description':
135 $where = $this->__createObjectPropertiesWhereCondition(...$fields);
138 $query =
"SELECT obj_id,type " .
140 "FROM object_data " .
141 $where .
" " . $and .
' ' .
142 "ORDER BY obj_id DESC";
146 $this->search_result->addEntry(
149 $this->__prepareFound($row)
160 $ilDB = $DIC->database();
163 !($this->options[
'lom_coverage'] ?? null) and
164 !($this->options[
'lom_structure'] ?? null)
171 if ($this->options[
'lom_coverage'] ?? null) {
173 $and = $this->__createCoverageAndCondition();
176 if ($this->options[
'lom_structure'] ?? null) {
180 $query =
"SELECT rbac_id,obj_type,obj_id " .
182 "FROM il_meta_general " .
188 if ($this->options[
'lom_coverage'] ?? null) {
190 if (!in_array(0, $found)) {
191 $this->search_result->addEntry(
193 (
string) $row->obj_type,
199 $this->search_result->addEntry(
201 (
string) $row->obj_type,
213 if (!($this->options[
'lom_language'] ?? null)) {
217 $query =
"SELECT rbac_id,obj_id,obj_type FROM il_meta_language " .
218 "WHERE language = " . $this->db->quote($this->options[
'lom_language'],
'text') .
" " .
220 "AND parent_type = 'meta_general'";
223 #var_dump("<pre>",$query,"<pre>"); 225 $this->search_result->addEntry(
227 (
string) $row->obj_type,
237 if (!($this->options[
'lom_role'] ?? null)) {
241 $query =
"SELECT rbac_id,obj_id,obj_type FROM il_meta_contribute " .
242 "WHERE role = " . $this->db->quote($this->options[
'lom_role'],
'text') .
" " .
246 #var_dump("<pre>",$query,"<pre>"); 248 $this->search_result->addEntry(
250 (
string) $row->obj_type,
263 $where = $this->__createEntityWhereCondition();
266 $query =
"SELECT rbac_id,obj_id,obj_type " .
268 "FROM il_meta_entity " .
269 $where .
" " . $and .
' ';
274 if (!in_array(0, $found)) {
275 $this->search_result->addEntry(
277 (
string) $row->obj_type,
291 $query =
"SELECT rbac_id,obj_id,obj_type FROM il_meta_requirement ";
299 #var_dump("<pre>",$query,"<pre>"); 301 $this->search_result->addEntry(
303 (
string) $row->obj_type,
313 $query =
"SELECT rbac_id,obj_id,obj_type FROM il_meta_educational ";
322 $this->search_result->addEntry(
324 (
string) $row->obj_type,
335 !($this->options[
'typ_age_1'] ?? null) or
336 !($this->options[
'typ_age_2'] ?? null)
341 $query =
"SELECT rbac_id,obj_id,obj_type FROM il_meta_typical_age_range " .
342 "WHERE typical_age_range_min >= '" . (
int) $this->options[
'typ_age_1'] .
"' " .
343 "AND typical_age_range_max <= '" . (
int) $this->options[
'typ_age_2'] .
"'";
347 #var_dump("<pre>",$query,"<pre>"); 349 $this->search_result->addEntry(
351 (
string) $row->obj_type,
361 $query =
"SELECT rbac_id,obj_id,obj_type FROM il_meta_rights ";
369 #var_dump("<pre>",$query,"<pre>"); 371 $this->search_result->addEntry(
373 (
string) $row->obj_type,
383 $query =
"SELECT rbac_id,obj_id,obj_type FROM il_meta_classification ";
391 #var_dump("<pre>",$query,"<pre>"); 393 $this->search_result->addEntry(
395 (
string) $row->obj_type,
408 $where = $this->__createTaxonWhereCondition();
411 $query =
"SELECT rbac_id,obj_id,obj_type " .
413 "FROM il_meta_taxon " .
414 $where .
" " . $and .
' ';
419 if (!in_array(0, $found)) {
420 $this->search_result->addEntry(
422 (
string) $row->obj_type,
437 if ($a_in_classification) {
438 $and .=
" AND parent_type = 'meta_classification' ";
440 $where = $this->__createKeywordWhereCondition();
443 $query =
"SELECT rbac_id,obj_id,obj_type " .
445 "FROM il_meta_keyword " .
446 $where .
" " . $and .
' ';
451 if (!in_array(0, $found) or !$a_in_classification) {
452 $this->search_result->addEntry(
454 (
string) $row->obj_type,
468 if ($this->options[
'lom_version'] ?? null) {
469 $where = $this->__createLifecycleWhereCondition();
472 $where =
"WHERE 1 = 1 ";
476 if ($this->options[
'lom_status'] ?? null) {
477 $and .= (
" AND lifecycle_status = " . $this->db->quote($this->options[
'lom_status'],
'text') .
"");
480 $query =
"SELECT rbac_id,obj_id,obj_type " .
482 "FROM il_meta_lifecycle " .
483 $where .
" " . $and .
' ';
488 if (!in_array(0, $found)) {
489 $this->search_result->addEntry(
491 (
string) $row->obj_type,
503 if (!($this->options[
'lom_format'] ?? null)) {
507 $query =
"SELECT rbac_id,obj_id,obj_type FROM il_meta_format " .
508 "WHERE format LIKE(" . $this->db->quote($this->options[
'lom_format'],
ilDBConstants::T_TEXT) .
") " .
512 #var_dump("<pre>",$query,"<pre>"); 514 $this->search_result->addEntry(
516 (
string) $row->obj_type,
531 if ($this->options[
'lom_costs'] ?? null) {
532 $and = $counter++ ?
'AND ' :
' ';
533 $where .= ($and .
"costs = " . $this->db->quote($this->options[
'lom_costs'],
'text') .
" ");
535 if ($this->options[
'lom_copyright'] ?? null) {
536 $and = $counter++ ?
'AND ' :
' ';
537 $where .= ($and .
"cpr_and_or = " . $this->db->quote($this->options[
'lom_copyright'],
'text') .
" ");
539 return $counter ? $where :
'';
547 if ($this->options[
'lom_purpose'] ?? null) {
548 $and = $counter++ ?
'AND ' :
' ';
549 $where .= ($and .
"purpose = " . $this->db->quote($this->options[
'lom_purpose'],
ilDBConstants::T_TEXT) .
" ");
551 return $counter ? $where :
'';
559 if ($this->options[
'lom_interactivity'] ?? null) {
560 $and = $counter++ ?
'AND ' :
' ';
561 $where .= ($and .
"interactivity_type = " . $this->db->quote($this->options[
'lom_interactivity'],
'text') .
" ");
563 if ($this->options[
'lom_resource'] ?? null) {
564 $and = $counter++ ?
'AND ' :
' ';
565 $where .= ($and .
"learning_resource_type = " . $this->db->quote($this->options[
'lom_resource'],
'text') .
" ");
567 if ($this->options[
'lom_user_role'] ?? null) {
568 $and = $counter++ ?
'AND ' :
' ';
569 $where .= ($and .
"intended_end_user_role = " . $this->db->quote($this->options[
'lom_user_role'],
'text') .
" ");
571 if ($this->options[
'lom_context'] ?? null) {
572 $and = $counter++ ?
'AND ' :
' ';
573 $where .= ($and .
"context = " . $this->db->quote($this->options[
'lom_context'],
'text') .
" ");
576 ($this->options[
'lom_level_start'] ?? null) or
577 ($this->options[
'lom_level_end'] ?? null)) {
578 $and = $counter++ ?
'AND ' :
' ';
581 $this->options[
'lom_level_start'],
582 $this->options[
'lom_level_end'],
583 array(
'VeryLow',
'Low',
'Medium',
'High',
'VeryHigh')
589 ($this->options[
'lom_density_start'] ?? null) or
590 ($this->options[
'lom_density_end'] ?? null)
592 $and = $counter++ ?
'AND ' :
' ';
595 $this->options[
'lom_density_start'],
596 $this->options[
'lom_density_end'],
597 array(
'VeryLow',
'Low',
'Medium',
'High',
'VeryHigh')
603 ($this->options[
'lom_difficulty_start'] ?? null) or
604 ($this->options[
'lom_difficulty_end'] ?? null)
606 $and = $counter++ ?
'AND ' :
' ';
609 $this->options[
'lom_difficulty_start'],
610 $this->options[
'lom_difficulty_end'],
611 array(
'VeryEasy',
'Easy',
'Medium',
'Difficult',
'VeryDifficult')
617 return $counter ? $where :
'';
625 if ($this->options[
'lom_operating_system'] ?? null) {
626 $and = $counter++ ?
'AND ' :
' ';
627 $where .= ($and .
"operating_system_name = " . $this->db->quote($this->options[
'lom_operating_system'],
ilDBConstants::T_TEXT) .
" ");
629 if ($this->options[
'lom_browser'] ?? null) {
630 $and = $counter++ ?
'AND ' :
' ';
631 $where .= ($and .
"browser_name = " . $this->db->quote($this->options[
'lom_browser'],
ilDBConstants::T_TEXT) .
" ");
633 return $counter ? $where :
'';
641 $a_val2 = $a_val2 ?: count($options);
643 if ($a_val1 > $a_val2) {
649 foreach ($options as $option) {
650 if ($a_val1 > ++$counter) {
653 if ($a_val2 < $counter) {
667 $in .= implode(
"','", $a_fields);
__getInStatement(array $a_fields)
setOptions(array &$options)
__prepareFound(object $row)
setFields(array $a_fields)
& __searchTitleDescription()
__getDifference(int $a_val1, int $a_val2, array $options)
__searchKeyword(bool $a_in_classification=false)
__createEducationalWhere()
searchObjectProperties(string ... $fields)
__createClassificationWhere()
__createRequirementWhere()
ilSearchResult $search_result
__searchTypicalAgeRange()