ILIAS
trunk Revision v11.0_alpha-1731-gff9cd7e2bd3
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
AccessSettings.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Survey\Settings
;
22
28
class
AccessSettings
29
{
30
protected
int
$start_date
;
31
protected
int
$end_date
;
32
protected
bool
$access_by_codes
;
33
39
public
function
__construct
(
40
int
$start_date,
41
int
$end_date,
42
bool
$access_by_codes
43
) {
44
$this->start_date =
$start_date
;
45
$this->end_date =
$end_date
;
46
$this->access_by_codes =
$access_by_codes
;
47
}
48
52
public
function
getStartDate
():
int
53
{
54
return
$this->start_date
;
55
}
56
60
public
function
getEndDate
():
int
61
{
62
return
$this->end_date
;
63
}
64
68
public
function
getAccessByCodes
(): bool
69
{
70
return
$this->access_by_codes
;
71
}
72
}
ILIAS\Survey\Settings\AccessSettings\getEndDate
getEndDate()
Get start date (unix ts)
Definition:
AccessSettings.php:60
ILIAS\Survey\Settings\AccessSettings\$access_by_codes
bool $access_by_codes
Definition:
AccessSettings.php:32
ILIAS\Survey\Settings\AccessSettings\getStartDate
getStartDate()
Get start date (unix ts)
Definition:
AccessSettings.php:52
ILIAS\Survey\Settings\AccessSettings\$start_date
int $start_date
Definition:
AccessSettings.php:30
ILIAS\Survey\Settings\AccessSettings\__construct
__construct(int $start_date, int $end_date, bool $access_by_codes)
Definition:
AccessSettings.php:39
ILIAS\Survey\Settings\AccessSettings\getAccessByCodes
getAccessByCodes()
Get access by codes.
Definition:
AccessSettings.php:68
ILIAS\Survey\Settings
Definition:
AccessSettings.php:21
ILIAS\Survey\Settings\AccessSettings
Access settings.
Definition:
AccessSettings.php:28
ILIAS\Survey\Settings\AccessSettings\$end_date
int $end_date
Definition:
AccessSettings.php:31
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
components
ILIAS
Survey
Settings
AccessSettings.php
Generated on Mon Apr 7 2025 23:04:31 for ILIAS by
1.8.13 (using
Doxyfile
)