ILIAS
release_8 Revision v8.19
◀ 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
n
o
p
r
s
t
u
v
w
x
+
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
j
l
m
p
s
t
u
+
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
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilDerivedTask.php
Go to the documentation of this file.
1
<?php
2
24
class
ilDerivedTask
25
{
26
protected
string
$title
;
27
28
protected
int
$ref_id
;
29
30
protected
int
$deadline
;
31
32
protected
int
$starting_time
;
33
34
protected
int
$wsp_id
;
35
36
protected
string
$url
=
''
;
37
41
public
function
__construct
(
string
$title,
int
$ref_id,
int
$deadline,
int
$starting_time,
int
$wsp_id)
42
{
43
$this->title =
$title
;
44
$this->ref_id =
$ref_id
;
45
$this->deadline =
$deadline
;
46
$this->starting_time =
$starting_time
;
47
$this->wsp_id =
$wsp_id
;
48
}
49
55
public
function
getRefId
():
int
56
{
57
return
$this->ref_id
;
58
}
59
65
public
function
getWspId
():
int
66
{
67
return
$this->wsp_id
;
68
}
69
73
public
function
getDeadline
():
int
74
{
75
return
$this->deadline
;
76
}
77
81
public
function
getStartingTime
():
int
82
{
83
return
$this->starting_time
;
84
}
85
89
public
function
getTitle
(): string
90
{
91
return
$this->title
;
92
}
93
94
public
function
withUrl
(
string
$url): self
95
{
96
$clone = clone $this;
97
$clone->url =
$url
;
98
99
return
$clone;
100
}
101
102
public
function
getUrl
(): string
103
{
104
return
$this->url
;
105
}
106
}
ilDerivedTask\$starting_time
int $starting_time
Definition:
class.ilDerivedTask.php:32
ilDerivedTask
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilDerivedTask.php:24
ilDerivedTask\$deadline
int $deadline
Definition:
class.ilDerivedTask.php:30
ilDerivedTask\getWspId
getWspId()
Get wsp id.
Definition:
class.ilDerivedTask.php:65
ilDerivedTask\getStartingTime
getStartingTime()
Definition:
class.ilDerivedTask.php:81
ilDerivedTask\$wsp_id
int $wsp_id
Definition:
class.ilDerivedTask.php:34
ilDerivedTask\getRefId
getRefId()
Get ref id.
Definition:
class.ilDerivedTask.php:55
ilDerivedTask\$url
string $url
Definition:
class.ilDerivedTask.php:36
ilDerivedTask\getUrl
getUrl()
Definition:
class.ilDerivedTask.php:102
ilDerivedTask\$title
string $title
Definition:
class.ilDerivedTask.php:26
ilDerivedTask\withUrl
withUrl(string $url)
Definition:
class.ilDerivedTask.php:94
ilDerivedTask\__construct
__construct(string $title, int $ref_id, int $deadline, int $starting_time, int $wsp_id)
Constructor.
Definition:
class.ilDerivedTask.php:41
ilDerivedTask\getDeadline
getDeadline()
Definition:
class.ilDerivedTask.php:73
ilDerivedTask\getTitle
getTitle()
Definition:
class.ilDerivedTask.php:89
ilDerivedTask\$ref_id
int $ref_id
Definition:
class.ilDerivedTask.php:28
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
Services
Tasks
DerivedTasks
classes
class.ilDerivedTask.php
Generated on Fri Apr 4 2025 22:03:02 for ILIAS by
1.8.13 (using
Doxyfile
)