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.ilObjWikiSearchResultTableGUI.php
Go to the documentation of this file.
1
<?php
2
24
class
ilObjWikiSearchResultTableGUI
extends
ilRepositoryObjectSearchResultTableGUI
25
{
26
public
function
parse
(): void
27
{
28
$ilCtrl =
$this->ctrl
;
29
30
$rows = array();
31
foreach
($this->
getResults
()->
getResults
() as $result_set) {
32
$row = array();
33
$row[
'title'
] =
ilWikiPage::lookupTitle
($result_set[
'item_id'
]);
34
35
if
(!is_null($row[
'title'
])) {
36
$ilCtrl->setParameterByClass(
37
'ilwikipagegui'
,
38
'page'
,
39
ilWikiUtil::makeUrlTitle
($row[
'title'
])
40
);
41
$row[
'link'
] = $ilCtrl->getLinkTargetByClass(
'ilwikipagegui'
,
'preview'
);
42
43
$row[
'content'
] = $result_set[
'content'
] ??
""
;
44
45
$rows[] = $row;
46
}
47
}
48
49
$this->
setData
($rows);
50
}
51
52
protected
function
fillRow
(array $a_set): void
53
{
54
$this->tpl->setVariable(
'HREF_ITEM'
, $a_set[
'link'
]);
55
$this->tpl->setVariable(
'TXT_ITEM_TITLE'
, $a_set[
'title'
]);
56
57
if
($a_set[
'content'
] !==
''
) {
58
$this->tpl->setVariable(
'HIGHLIGHT_CONTENT'
, $a_set[
'content'
]);
59
}
60
}
61
}
ilTable2GUI\setData
setData(array $a_data)
Definition:
class.ilTable2GUI.php:466
ilWikiPage\lookupTitle
static lookupTitle(int $a_page_id, string $lang="-")
Definition:
class.ilWikiPage.php:422
ilTable2GUI\$ctrl
ilCtrl $ctrl
Definition:
class.ilTable2GUI.php:46
ilObjWikiSearchResultTableGUI\fillRow
fillRow(array $a_set)
Definition:
class.ilObjWikiSearchResultTableGUI.php:52
ilObjWikiSearchResultTableGUI
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilObjWikiSearchResultTableGUI.php:24
ilWikiUtil\makeUrlTitle
static makeUrlTitle(string $a_par)
Definition:
class.ilWikiUtil.php:443
ilObjWikiSearchResultTableGUI\parse
parse()
Definition:
class.ilObjWikiSearchResultTableGUI.php:26
ilRepositoryObjectSearchResultTableGUI
Definition:
class.ilRepositoryObjectSearchResultTableGUI.php:21
ilRepositoryObjectSearchResultTableGUI\getResults
getResults()
Definition:
class.ilRepositoryObjectSearchResultTableGUI.php:57
components
ILIAS
Wiki
classes
class.ilObjWikiSearchResultTableGUI.php
Generated on Wed Apr 2 2025 23:04:09 for ILIAS by
1.8.13 (using
Doxyfile
)