ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ 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.ilWikiContentSearch.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
28
class
ilWikiContentSearch
extends
ilAbstractSearch
29
{
30
public
function
performSearch
():
ilSearchResult
31
{
32
$this->
setFields
(array(
'content'
));
33
34
$in = $this->
__createInStatement
();
35
$where = $this->__createWhereCondition();
36
$locate = $this->
__createLocateString
();
37
38
$query =
"SELECT page_id,parent_id,parent_type "
.
39
$locate .
40
"FROM page_object, il_wiki_page "
.
41
$where .
42
"AND il_wiki_page.id = page_object.page_id "
.
43
$in;
44
45
$res
= $this->db->query($query);
46
while
($row =
$res
->fetchRow(
ilDBConstants::FETCHMODE_OBJECT
)) {
47
$this->search_result->addEntry(
48
(
int
) $row->parent_id,
49
$row->parent_type,
50
$this->__prepareFound($row),
51
(
int
) $row->page_id
52
);
53
}
54
return
$this->search_result
;
55
}
56
57
58
59
// Protected can be overwritten in Like or Fulltext classes
60
public
function
__createInStatement
(): string
61
{
62
if
(!$this->
getFilter
() and !$this->
getIdFilter
()) {
63
return
''
;
64
}
65
66
67
$in =
''
;
68
if
($this->
getFilter
()) {
69
$type =
"('"
;
70
$type .= implode(
"','"
, $this->
getFilter
());
71
$type .=
"')"
;
72
73
$in =
" AND parent_type IN "
. $type .
' '
;
74
}
75
if
($this->
getIdFilter
()) {
76
$in .=
' AND '
;
77
$in .= $this->db->in(
'il_wiki_page.wiki_id'
, $this->
getIdFilter
(),
false
,
'integer'
);
78
}
79
80
return
$in;
81
}
82
}
$res
$res
Definition:
ltiservices.php:66
ilAbstractSearch
Definition:
class.ilAbstractSearch.php:32
ilAbstractSearch\__createLocateString
__createLocateString()
Definition:
class.ilAbstractSearch.php:138
ilWikiContentSearch\__createInStatement
__createInStatement()
Definition:
class.ilWikiContentSearch.php:60
ilAbstractSearch\setFields
setFields(array $a_fields)
Definition:
class.ilAbstractSearch.php:91
ilAbstractSearch\getFilter
getFilter()
Definition:
class.ilAbstractSearch.php:133
ilAbstractSearch\getIdFilter
getIdFilter()
Definition:
class.ilAbstractSearch.php:117
ilWikiContentSearch
Class ilWikiContentSearch.
Definition:
class.ilWikiContentSearch.php:28
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
ilWikiContentSearch\performSearch
performSearch()
Definition:
class.ilWikiContentSearch.php:30
components
ILIAS
Search
classes
Like
class.ilWikiContentSearch.php
Generated on Thu Apr 3 2025 23:03:36 for ILIAS by
1.8.13 (using
Doxyfile
)