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.ilDashboardSidePanelSettingsRepository.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
10
class
ilDashboardSidePanelSettingsRepository
11
{
12
const
CALENDAR
=
"cal"
;
13
const
NEWS
=
"news"
;
14
const
MAIL
=
"mail"
;
15
const
TASKS
=
"task"
;
16
20
public
function
__construct
(
ilSetting
$dashboard_settings = null)
21
{
22
$this->setting = is_null($dashboard_settings)
23
?
new
ilSetting
(
"dash"
)
24
: $dashboard_settings;
25
}
26
32
public
function
getValidModules
() : array
33
{
34
return
[
35
self::CALENDAR,
36
self::NEWS,
37
self::MAIL,
38
self::TASKS
39
];
40
}
41
47
protected
function
isValidModule
(
string
$mod) : bool
48
{
49
return
in_array($mod, $this->
getValidModules
());
50
}
51
52
59
public
function
enable
(
string
$mod,
bool
$active)
60
{
61
if
($this->
isValidModule
($mod)) {
62
$this->setting->set(
"enable_"
. $mod, (
int
) $active);
63
}
64
}
65
72
public
function
isEnabled
(
string
$mod) : bool
73
{
74
if
($this->
isValidModule
($mod)) {
75
return
(
bool
) $this->setting->get(
"enable_"
. $mod,
true
);
76
}
77
return
false
;
78
}
79
}
ilDashboardSidePanelSettingsRepository\TASKS
const TASKS
Definition:
class.ilDashboardSidePanelSettingsRepository.php:15
ilDashboardSidePanelSettingsRepository\__construct
__construct(ilSetting $dashboard_settings=null)
Constructor.
Definition:
class.ilDashboardSidePanelSettingsRepository.php:20
ilDashboardSidePanelSettingsRepository\isEnabled
isEnabled(string $mod)
Is enabled.
Definition:
class.ilDashboardSidePanelSettingsRepository.php:72
ilDashboardSidePanelSettingsRepository\MAIL
const MAIL
Definition:
class.ilDashboardSidePanelSettingsRepository.php:14
ilDashboardSidePanelSettingsRepository
Dashboard side panel settings Repo.
Definition:
class.ilDashboardSidePanelSettingsRepository.php:10
ilDashboardSidePanelSettingsRepository\CALENDAR
const CALENDAR
Definition:
class.ilDashboardSidePanelSettingsRepository.php:12
ilDashboardSidePanelSettingsRepository\isValidModule
isValidModule(string $mod)
Definition:
class.ilDashboardSidePanelSettingsRepository.php:47
ilDashboardSidePanelSettingsRepository\getValidModules
getValidModules()
Get valid modules.
Definition:
class.ilDashboardSidePanelSettingsRepository.php:32
ilDashboardSidePanelSettingsRepository\enable
enable(string $mod, bool $active)
Enable.
Definition:
class.ilDashboardSidePanelSettingsRepository.php:59
ilDashboardSidePanelSettingsRepository\NEWS
const NEWS
Definition:
class.ilDashboardSidePanelSettingsRepository.php:13
ilSetting
Services
Dashboard
ItemsBlock
classes
class.ilDashboardSidePanelSettingsRepository.php
Generated on Thu Apr 3 2025 20:01:05 for ILIAS by
1.8.13 (using
Doxyfile
)