ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ 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
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
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.ilDashboardContentBlockGUI.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
4
5
6
include_once(
"Services/Block/classes/class.ilBlockGUI.php"
);
7
14
class
ilDashboardContentBlockGUI
extends
ilBlockGUI
15
{
16
public
static
$block_type
=
"dashcontent"
;
17
21
public
function
__construct
()
22
{
23
global
$DIC
;
24
25
$this->ctrl = $DIC->ctrl();
26
$this->lng = $DIC->language();
27
$this->
user
= $DIC->user();
28
29
parent::__construct
();
30
31
$this->
setEnableNumInfo
(
false
);
32
$this->
setLimit
(99999);
33
$this->
setPresentation
(self::PRES_MAIN_LEG);
34
$this->allow_moving =
false
;
35
}
36
40
public
function
getBlockType
() : string
41
{
42
return
self::$block_type;
43
}
44
50
public
function
setCurrentItemNumber
($a_currentitemnumber)
51
{
52
$this->currentitemnumber = $a_currentitemnumber;
53
}
54
60
public
function
getCurrentItemNumber
()
61
{
62
return
$this->currentitemnumber;
63
}
64
68
protected
function
isRepositoryObject
() : bool
69
{
70
return
false
;
71
}
72
73
public
function
getHTML
()
74
{
75
return
parent::getHTML();
76
}
77
78
public
function
getContent
()
79
{
80
return
$this->content;
81
}
82
83
public
function
setContent
($a_content)
84
{
85
$this->content = $a_content;
86
}
87
91
public
function
fillDataSection
()
92
{
93
$this->tpl->setVariable(
"BLOCK_ROW"
, $this->
getContent
());
94
}
95
99
public
function
fillFooter
()
100
{
101
//$this->fillFooterLinks();
102
$lng
=
$this->lng
;
103
104
if
(is_array($this->data)) {
105
$this->max_count = count($this->data);
106
}
107
108
// table footer numinfo
109
if
($this->
getEnableNumInfo
()) {
110
$numinfo =
"("
. $this->
getCurrentItemNumber
() .
" "
.
111
strtolower(
$lng
->txt(
"of"
)) .
" "
. $this->max_count .
")"
;
112
113
if
($this->max_count > 0) {
114
$this->tpl->setVariable(
"NUMINFO"
, $numinfo);
115
}
116
}
117
}
118
119
public
function
fillPreviousNext
()
120
{
121
}
122
}
ilDashboardContentBlockGUI\getContent
getContent()
Definition:
class.ilDashboardContentBlockGUI.php:78
ilDashboardContentBlockGUI\getCurrentItemNumber
getCurrentItemNumber()
Get Current Item Number.
Definition:
class.ilDashboardContentBlockGUI.php:60
ilDashboardContentBlockGUI\getHTML
getHTML()
Definition:
class.ilDashboardContentBlockGUI.php:73
ilDashboardContentBlockGUI\fillFooter
fillFooter()
block footer
Definition:
class.ilDashboardContentBlockGUI.php:99
ilDashboardContentBlockGUI\setContent
setContent($a_content)
Definition:
class.ilDashboardContentBlockGUI.php:83
ilBlockGUI\setEnableNumInfo
setEnableNumInfo($a_enablenuminfo)
Set Enable Item Number Info.
Definition:
class.ilBlockGUI.php:388
ilDashboardContentBlockGUI\__construct
__construct()
Constructor.
Definition:
class.ilDashboardContentBlockGUI.php:21
ilDashboardContentBlockGUI\fillDataSection
fillDataSection()
Fill data section.
Definition:
class.ilDashboardContentBlockGUI.php:91
ilDashboardContentBlockGUI\getBlockType
getBlockType()
Definition:
class.ilDashboardContentBlockGUI.php:40
user
user()
Definition:
user.php:4
ilBlockGUI\getEnableNumInfo
getEnableNumInfo()
Get Enable Item Number Info.
Definition:
class.ilBlockGUI.php:398
$DIC
global $DIC
Definition:
goto.php:24
ilDashboardContentBlockGUI\isRepositoryObject
isRepositoryObject()
Definition:
class.ilDashboardContentBlockGUI.php:68
ilBlockGUI\setLimit
setLimit($a_limit)
Set Limit.
Definition:
class.ilBlockGUI.php:267
ilDashboardContentBlockGUI\fillPreviousNext
fillPreviousNext()
Definition:
class.ilDashboardContentBlockGUI.php:119
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:40
ilDashboardContentBlockGUI
BlockGUI class for (centered) Content on Personal Desktop.
Definition:
class.ilDashboardContentBlockGUI.php:14
ilBlockGUI
This class represents a block method of a block.
Definition:
class.ilBlockGUI.php:12
ilBlockGUI\$lng
$lng
Definition:
class.ilBlockGUI.php:91
ilBlockGUI\setPresentation
setPresentation(int $type)
Set presentation.
Definition:
class.ilBlockGUI.php:156
ilDashboardContentBlockGUI\$block_type
static $block_type
Definition:
class.ilDashboardContentBlockGUI.php:16
ilDashboardContentBlockGUI\setCurrentItemNumber
setCurrentItemNumber($a_currentitemnumber)
Set Current Item Number.
Definition:
class.ilDashboardContentBlockGUI.php:50
Services
Dashboard
classes
class.ilDashboardContentBlockGUI.php
Generated on Wed Apr 2 2025 21:01:28 for ILIAS by
1.8.13 (using
Doxyfile
)