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
AccessSettings.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
namespace
ILIAS\Survey\Settings
;
6
12
class
AccessSettings
13
{
17
protected
$start_date
;
18
22
protected
$end_date
;
23
27
protected
$access_by_codes
;
28
35
public
function
__construct
(
36
int
$start_date
,
37
int
$end_date
,
38
bool
$access_by_codes
39
) {
40
$this->start_date =
$start_date
;
41
$this->end_date =
$end_date
;
42
$this->access_by_codes =
$access_by_codes
;
43
}
44
50
public
function
getStartDate
() : int
51
{
52
return
$this->start_date
;
53
}
54
60
public
function
getEndDate
() : int
61
{
62
return
$this->end_date
;
63
}
64
70
public
function
getAccessByCodes
() : bool
71
{
72
return
$this->access_by_codes
;
73
}
74
}
ILIAS\Survey\Settings\AccessSettings\getEndDate
getEndDate()
Get start date (unix ts)
Definition:
AccessSettings.php:60
ILIAS\Survey\Settings\AccessSettings\getStartDate
getStartDate()
Get start date (unix ts)
Definition:
AccessSettings.php:50
ILIAS\Survey\Settings\AccessSettings\__construct
__construct(int $start_date, int $end_date, bool $access_by_codes)
Constructor.
Definition:
AccessSettings.php:35
ILIAS\Survey\Settings\AccessSettings\$end_date
$end_date
Definition:
AccessSettings.php:22
ILIAS\Survey\Settings\AccessSettings\getAccessByCodes
getAccessByCodes()
Get access by codes.
Definition:
AccessSettings.php:70
ILIAS\Survey\Settings
Definition:
AccessSettings.php:5
ILIAS\Survey\Settings\AccessSettings\$access_by_codes
$access_by_codes
Definition:
AccessSettings.php:27
ILIAS\Survey\Settings\AccessSettings
Access settings.
Definition:
AccessSettings.php:12
ILIAS\Survey\Settings\AccessSettings\$start_date
$start_date
Definition:
AccessSettings.php:17
Modules
Survey
Settings
AccessSettings.php
Generated on Sun Apr 6 2025 20:01:09 for ILIAS by
1.8.13 (using
Doxyfile
)