ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ ilDoc Overview
class.ilDashboardContentBlockGUI.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
class
ilDashboardContentBlockGUI
extends
ilBlockGUI
22
{
23
public
static
string
$block_type
=
'dashcontent'
;
24
protected
int
$currentitemnumber
;
25
protected
string
$content
;
26
27
public
function
__construct
()
28
{
29
global
$DIC
;
30
31
$this->
ctrl
= $DIC->ctrl();
32
$this->
lng
= $DIC->language();
33
$this->
user
= $DIC->user();
34
35
parent::__construct
();
36
37
$this->
setEnableNumInfo
(
false
);
38
$this->
setLimit
(99999);
39
$this->
setPresentation
(self::PRES_MAIN_LEG);
40
$this->allow_moving =
false
;
41
}
42
43
public
function
getBlockType
(): string
44
{
45
return
self::$block_type;
46
}
47
48
public
function
setCurrentItemNumber
(
int
$a_currentitemnumber): void
49
{
50
$this->currentitemnumber = $a_currentitemnumber;
51
}
52
53
public
function
getCurrentItemNumber
():
int
54
{
55
return
$this->currentitemnumber
;
56
}
57
58
protected
function
isRepositoryObject
(): bool
59
{
60
return
false
;
61
}
62
63
public
function
getContent
(): string
64
{
65
return
$this->content
;
66
}
67
68
protected
function
getLegacyContent
(): string
69
{
70
return
$this->content
;
71
}
72
73
public
function
setContent
(
string
$a_content): void
74
{
75
$this->content = $a_content;
76
}
77
}
ilDashboardContentBlockGUI\getContent
getContent()
Definition:
class.ilDashboardContentBlockGUI.php:63
ilDashboardContentBlockGUI\getCurrentItemNumber
getCurrentItemNumber()
Definition:
class.ilDashboardContentBlockGUI.php:53
ilBlockGUI\setLimit
setLimit(int $a_limit)
Definition:
class.ilBlockGUI.php:224
ilBlockGUI\setEnableNumInfo
setEnableNumInfo(bool $a_enablenuminfo)
Definition:
class.ilBlockGUI.php:287
ilDashboardContentBlockGUI\$currentitemnumber
int $currentitemnumber
Definition:
class.ilDashboardContentBlockGUI.php:24
ilDashboardContentBlockGUI\__construct
__construct()
Definition:
class.ilDashboardContentBlockGUI.php:27
ilDashboardContentBlockGUI\getBlockType
getBlockType()
Definition:
class.ilDashboardContentBlockGUI.php:43
ilDashboardContentBlockGUI\getLegacyContent
getLegacyContent()
Definition:
class.ilDashboardContentBlockGUI.php:68
ILIAS\Repository\user
user()
Definition:
trait.GlobalDICDomainServices.php:66
ILIAS\Repository\ctrl
ctrl()
Definition:
trait.GlobalDICGUIServices.php:63
ILIAS\Repository\lng
lng()
Definition:
trait.GlobalDICDomainServices.php:61
$DIC
global $DIC
Definition:
shib_login.php:26
ilDashboardContentBlockGUI\$block_type
static string $block_type
Definition:
class.ilDashboardContentBlockGUI.php:23
ilDashboardContentBlockGUI\$content
string $content
Definition:
class.ilDashboardContentBlockGUI.php:25
ilDashboardContentBlockGUI\isRepositoryObject
isRepositoryObject()
Definition:
class.ilDashboardContentBlockGUI.php:58
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:37
ilDashboardContentBlockGUI\setContent
setContent(string $a_content)
Definition:
class.ilDashboardContentBlockGUI.php:73
ilDashboardContentBlockGUI
Definition:
class.ilDashboardContentBlockGUI.php:21
ilBlockGUI
This class represents a block method of a block.
Definition:
class.ilBlockGUI.php:39
ilDashboardContentBlockGUI\setCurrentItemNumber
setCurrentItemNumber(int $a_currentitemnumber)
Definition:
class.ilDashboardContentBlockGUI.php:48
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ilBlockGUI\setPresentation
setPresentation(int $type)
Definition:
class.ilBlockGUI.php:158
components
ILIAS
Dashboard
classes
class.ilDashboardContentBlockGUI.php
Generated on Sun Aug 31 2025 23:02:44 for ILIAS by
1.8.13 (using
Doxyfile
)