ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
class.ilLMContentSearch.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
30
class
ilLMContentSearch
extends
ilAbstractSearch
31
{
32
public
function
performSearch
():
ilSearchResult
33
{
34
$this->
setFields
(array(
'content'
));
35
36
$in = $this->
__createInStatement
();
37
$where = $this->__createWhereCondition();
38
$locate = $this->
__createLocateString
();
39
40
$query =
"SELECT page_id,parent_id,parent_type "
.
41
$locate .
42
"FROM page_object, lm_data "
.
43
$where .
44
"AND obj_id = page_id "
.
45
$in;
46
47
48
$res
= $this->db->query($query);
49
while
($row =
$res
->fetchRow(
ilDBConstants::FETCHMODE_OBJECT
)) {
50
$this->search_result->addEntry(
51
(
int
) $row->parent_id,
52
(
string
) $row->parent_type,
53
$this->__prepareFound($row),
54
(
int
) $row->page_id
55
);
56
}
57
58
return
$this->search_result
;
59
}
60
61
62
63
// Protected can be overwritten in Like or Fulltext classes
64
public
function
__createInStatement
(): string
65
{
66
global
$DIC
;
67
68
$ilDB
= $DIC[
'ilDB'
];
69
70
if
(!$this->
getFilter
() and !$this->
getIdFilter
()) {
71
return
''
;
72
}
73
74
$in =
''
;
75
if
($this->
getFilter
()) {
76
$type =
"('"
;
77
$type .= implode(
"','"
, $this->
getFilter
());
78
$type .=
"')"
;
79
80
$in =
" AND parent_type IN "
. $type .
' '
;
81
}
82
if
($this->
getIdFilter
()) {
83
$in .=
' AND '
;
84
$in .=
$ilDB
->in(
'parent_id'
, $this->
getIdFilter
(),
false
,
'integer'
);
85
}
86
return
$in;
87
}
88
}
$res
$res
Definition:
ltiservices.php:66
ilAbstractSearch
Definition:
class.ilAbstractSearch.php:32
ilAbstractSearch\__createLocateString
__createLocateString()
Definition:
class.ilAbstractSearch.php:138
ilAbstractSearch\setFields
setFields(array $a_fields)
Definition:
class.ilAbstractSearch.php:91
ilAbstractSearch\getFilter
getFilter()
Definition:
class.ilAbstractSearch.php:133
$ilDB
$ilDB
Definition:
storeScorm2004.php:25
ilLMContentSearch\__createInStatement
__createInStatement()
Definition:
class.ilLMContentSearch.php:64
ilAbstractSearch\getIdFilter
getIdFilter()
Definition:
class.ilAbstractSearch.php:117
$DIC
global $DIC
Definition:
shib_login.php:22
ilLMContentSearch
Definition:
class.ilLMContentSearch.php:30
ilLMContentSearch\performSearch
performSearch()
Definition:
class.ilLMContentSearch.php:32
ilAbstractSearch\$search_result
ilSearchResult $search_result
Definition:
class.ilAbstractSearch.php:36
ilDBConstants\FETCHMODE_OBJECT
const FETCHMODE_OBJECT
Definition:
class.ilDBConstants.php:29
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ilSearchResult
Definition:
class.ilSearchResult.php:28
components
ILIAS
Search
classes
Like
class.ilLMContentSearch.php
Generated on Wed Apr 2 2025 23:03:31 for ILIAS by
1.8.13 (using
Doxyfile
)