ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
s
t
w
+
Functions
_
a
b
c
f
g
h
i
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
+
Files
File List
+
Globals
+
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
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
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
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilWikiImportantPagesBlockGUI.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
4
5
include_once(
"Services/Block/classes/class.ilBlockGUI.php"
);
6
15
class
ilWikiImportantPagesBlockGUI
extends
ilBlockGUI
16
{
17
public
static
$block_type
=
"wikiimppages"
;
18
public
static
$st_data
;
19
protected
$export
=
false
;
20
24
public
function
__construct
()
25
{
26
global
$DIC
;
27
28
$this->ctrl = $DIC->ctrl();
29
$this->lng = $DIC->language();
30
$this->access = $DIC->access();
31
$ilCtrl
= $DIC->ctrl();
32
$lng
= $DIC->language();
33
34
parent::__construct
();
35
36
$lng
->loadLanguageModule(
"wiki"
);
37
$this->
setEnableNumInfo
(
false
);
38
39
$this->
setTitle
(
$lng
->txt(
"wiki_navigation"
));
40
$this->allow_moving =
false
;
41
}
42
46
public
function
getBlockType
() : string
47
{
48
return
self::$block_type;
49
}
50
54
protected
function
isRepositoryObject
() : bool
55
{
56
return
false
;
57
}
58
62
public
static
function
getScreenMode
()
63
{
64
return
IL_SCREEN_SIDE
;
65
}
66
70
public
function
executeCommand
()
71
{
72
$ilCtrl
=
$this->ctrl
;
73
74
$next_class =
$ilCtrl
->getNextClass();
75
$cmd =
$ilCtrl
->getCmd(
"getHTML"
);
76
77
switch
($next_class) {
78
default
:
79
return
$this->$cmd();
80
}
81
}
82
86
public
function
getHTML
($a_export =
false
)
87
{
88
$ilCtrl
=
$this->ctrl
;
89
$lng
=
$this->lng
;
90
91
$this->export = $a_export;
92
93
include_once
'./Modules/Wiki/classes/class.ilWikiPerm.php'
;
94
if
(!$this->export &&
ilWikiPerm::check
(
"edit_wiki_navigation"
,
$_GET
[
"ref_id"
])) {
95
$this->
addBlockCommand
(
96
$ilCtrl
->getLinkTargetByClass(
"ilobjwikigui"
,
"editImportantPages"
),
97
$lng
->txt(
"edit"
)
98
);
99
}
100
101
return
parent::getHTML();
102
}
103
107
public
function
fillDataSection
()
108
{
109
$this->
setDataSection
($this->
getLegacyContent
());
110
}
111
112
//
113
// New rendering
114
//
115
116
protected
$new_rendering
=
true
;
117
118
122
protected
function
getLegacyContent
() : string
123
{
124
$ilCtrl
=
$this->ctrl
;
125
$lng
=
$this->lng
;
126
$ilAccess =
$this->access
;
127
128
$tpl
=
new
ilTemplate
(
"tpl.wiki_imp_pages_block.html"
,
true
,
true
,
"Modules/Wiki"
);
129
130
$cpar[0] = $cpar[1] = 0;
131
include_once(
"./Services/UIComponent/NestedList/classes/class.ilNestedList.php"
);
132
133
$list =
new
ilNestedList
();
134
$list->setItemClass(
"ilWikiBlockItem"
);
135
$list->setListClass(
"ilWikiBlockList"
);
136
$list->setListClass(
"ilWikiBlockListNoIndent"
, 1);
137
138
$cnt = 1;
139
$title
=
ilObjWiki::_lookupStartPage
(
ilObject::_lookupObjId
(
$_GET
[
"ref_id"
]));
140
if
(!$this->export) {
141
$list->addListNode(
"<p class='small'><a href='"
.
142
$ilCtrl
->getLinkTargetByClass(
"ilobjwikigui"
,
"gotoStartPage"
)
143
.
"'>"
.
$title
.
"</a></p>"
, 1, 0);
144
}
else
{
145
$list->addListNode(
"<p class='small'><a href='"
.
146
"index.html"
.
147
"'>"
.
$title
.
"</a></p>"
, 1, 0);
148
}
149
$cpar[0] = 1;
150
151
$ipages =
ilObjWiki::_lookupImportantPagesList
(
ilObject::_lookupObjId
(
$_GET
[
"ref_id"
]));
152
foreach
($ipages as $p) {
153
$cnt++;
154
$title
=
ilWikiPage::lookupTitle
($p[
"page_id"
]);
155
if
(!$this->export) {
156
$list->addListNode(
"<p class='small'><a href='"
.
157
ilObjWikiGUI::getGotoLink
(
$_GET
[
"ref_id"
],
$title
)
158
.
"'>"
.
$title
.
"</a></p>"
, $cnt, (
int
) $cpar[$p[
"indent"
] - 1]);
159
}
else
{
160
$list->addListNode(
"<p class='small'><a href='"
.
161
"wpg_"
. $p[
"page_id"
] .
".html"
.
162
"'>"
.
$title
.
"</a></p>"
, $cnt, (
int
) $cpar[$p[
"indent"
] - 1]);
163
}
164
$cpar[$p[
"indent"
]] = $cnt;
165
}
166
167
return
$list->getHTML();
168
}
169
}
ilTemplate
ilObjWikiGUI\getGotoLink
static getGotoLink($a_ref_id, $a_page="")
Get goto link.
Definition:
class.ilObjWikiGUI.php:1228
ilWikiPage\lookupTitle
static lookupTitle($a_page_id)
Checks whether a page with given title exists.
Definition:
class.ilWikiPage.php:466
ilWikiImportantPagesBlockGUI\$export
$export
Definition:
class.ilWikiImportantPagesBlockGUI.php:19
ilWikiPerm\check
static check($a_perm, $a_ref_id, $a_cmd="")
Check permission.
Definition:
class.ilWikiPerm.php:21
ilObjWiki\_lookupImportantPagesList
static _lookupImportantPagesList($a_wiki_id)
Get important pages list.
Definition:
class.ilObjWiki.php:701
ilBlockGUI\setDataSection
setDataSection($a_content)
Call this from overwritten fillDataSection(), if standard row based data is not used.
Definition:
class.ilBlockGUI.php:706
$_GET
$_GET["client_id"]
Definition:
cfg.phpunit.template.php:12
ilWikiImportantPagesBlockGUI\$st_data
static $st_data
Definition:
class.ilWikiImportantPagesBlockGUI.php:18
ilNestedList
Nested List.
Definition:
class.ilNestedList.php:11
ilObjWiki\_lookupStartPage
static _lookupStartPage($a_wiki_id)
Lookup start page.
Definition:
class.ilObjWiki.php:622
ilBlockGUI\setEnableNumInfo
setEnableNumInfo($a_enablenuminfo)
Set Enable Item Number Info.
Definition:
class.ilBlockGUI.php:388
ilBlockGUI\$access
$access
Definition:
class.ilBlockGUI.php:86
ilWikiImportantPagesBlockGUI\getScreenMode
static getScreenMode()
Get Screen Mode for current command.
Definition:
class.ilWikiImportantPagesBlockGUI.php:62
$ilCtrl
global $ilCtrl
Definition:
ilias.php:18
ilWikiImportantPagesBlockGUI\executeCommand
executeCommand()
execute command
Definition:
class.ilWikiImportantPagesBlockGUI.php:70
ilBlockGUI\setTitle
setTitle($a_title)
Set Title.
Definition:
class.ilBlockGUI.php:220
ilWikiImportantPagesBlockGUI
Important pages wiki block.
Definition:
class.ilWikiImportantPagesBlockGUI.php:15
ilObject\_lookupObjId
static _lookupObjId($a_id)
Definition:
class.ilObject.php:1107
ilWikiImportantPagesBlockGUI\$new_rendering
$new_rendering
Definition:
class.ilWikiImportantPagesBlockGUI.php:116
ilWikiImportantPagesBlockGUI\getHTML
getHTML($a_export=false)
Get bloch HTML code.
Definition:
class.ilWikiImportantPagesBlockGUI.php:86
ilWikiImportantPagesBlockGUI\getBlockType
getBlockType()
Definition:
class.ilWikiImportantPagesBlockGUI.php:46
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:30
$DIC
$DIC
Definition:
xapitoken.php:46
ilBlockGUI
This class represents a block method of a block.
Definition:
class.ilBlockGUI.php:12
ilWikiImportantPagesBlockGUI\getLegacyContent
getLegacyContent()
Definition:
class.ilWikiImportantPagesBlockGUI.php:122
ilWikiImportantPagesBlockGUI\fillDataSection
fillDataSection()
Fill data section.
Definition:
class.ilWikiImportantPagesBlockGUI.php:107
ilBlockGUI\addBlockCommand
addBlockCommand(string $a_href, string $a_text, string $a_onclick="")
Add Block Command.
Definition:
class.ilBlockGUI.php:477
IL_SCREEN_SIDE
const IL_SCREEN_SIDE
Definition:
class.ilColumnGUI.php:8
ilWikiImportantPagesBlockGUI\__construct
__construct()
Constructor.
Definition:
class.ilWikiImportantPagesBlockGUI.php:24
ilBlockGUI\$tpl
$tpl
Definition:
class.ilBlockGUI.php:66
ilBlockGUI\$lng
$lng
Definition:
class.ilBlockGUI.php:91
ilWikiImportantPagesBlockGUI\isRepositoryObject
isRepositoryObject()
Definition:
class.ilWikiImportantPagesBlockGUI.php:54
ilBlockGUI\$ctrl
$ctrl
Definition:
class.ilBlockGUI.php:81
ilBlockGUI\$title
$title
Definition:
class.ilBlockGUI.php:53
ilWikiImportantPagesBlockGUI\$block_type
static $block_type
Definition:
class.ilWikiImportantPagesBlockGUI.php:17
Modules
Wiki
classes
class.ilWikiImportantPagesBlockGUI.php
Generated on Wed Apr 2 2025 20:01:05 for ILIAS by
1.8.13 (using
Doxyfile
)