ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ 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
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
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.ilDerivedTask.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 1998-2018 ILIAS open source, Extended GPL, see docs/LICENSE */
4
11
class
ilDerivedTask
12
{
16
protected
$title
;
17
21
protected
$ref_id
;
22
26
protected
$deadline
;
27
31
protected
$starting_time
;
32
36
protected
$wsp_id
;
37
39
protected
$url
=
''
;
40
49
public
function
__construct
(
string
$title
,
int
$ref_id
,
int
$deadline
,
int
$starting_time
,
int
$wsp_id
)
50
{
51
$this->title =
$title
;
52
$this->ref_id =
$ref_id
;
53
$this->deadline =
$deadline
;
54
$this->starting_time =
$starting_time
;
55
$this->wsp_id =
$wsp_id
;
56
}
57
63
public
function
getRefId
()
64
{
65
return
$this->ref_id
;
66
}
67
73
public
function
getWspId
()
74
{
75
return
$this->wsp_id
;
76
}
77
81
public
function
getDeadline
()
82
{
83
return
$this->deadline
;
84
}
85
89
public
function
getStartingTime
()
90
{
91
return
$this->starting_time
;
92
}
93
97
public
function
getTitle
()
98
{
99
return
$this->title
;
100
}
101
106
public
function
withUrl
(
string
$url
) : self
107
{
108
$clone = clone $this;
109
$clone->url =
$url
;
110
111
return
$clone;
112
}
113
117
public
function
getUrl
() : string
118
{
119
return
$this->url
;
120
}
121
}
ilDerivedTask\$ref_id
$ref_id
Definition:
class.ilDerivedTask.php:21
ilDerivedTask\$starting_time
$starting_time
Definition:
class.ilDerivedTask.php:31
ilDerivedTask
Derived task data object.
Definition:
class.ilDerivedTask.php:11
ilDerivedTask\getWspId
getWspId()
Get wsp id.
Definition:
class.ilDerivedTask.php:73
ilDerivedTask\getStartingTime
getStartingTime()
Definition:
class.ilDerivedTask.php:89
ilDerivedTask\$wsp_id
$wsp_id
Definition:
class.ilDerivedTask.php:36
ilDerivedTask\getRefId
getRefId()
Get ref id.
Definition:
class.ilDerivedTask.php:63
ilDerivedTask\$title
$title
Definition:
class.ilDerivedTask.php:16
ilDerivedTask\getUrl
getUrl()
Definition:
class.ilDerivedTask.php:117
ilDerivedTask\withUrl
withUrl(string $url)
Definition:
class.ilDerivedTask.php:106
ilDerivedTask\__construct
__construct(string $title, int $ref_id, int $deadline, int $starting_time, int $wsp_id)
Constructor.
Definition:
class.ilDerivedTask.php:49
ilDerivedTask\getDeadline
getDeadline()
Definition:
class.ilDerivedTask.php:81
ilDerivedTask\$url
$url
Definition:
class.ilDerivedTask.php:39
ilDerivedTask\getTitle
getTitle()
Definition:
class.ilDerivedTask.php:97
ilDerivedTask\$deadline
$deadline
Definition:
class.ilDerivedTask.php:26
Services
Tasks
DerivedTasks
classes
class.ilDerivedTask.php
Generated on Thu Apr 10 2025 21:01:45 for ILIAS by
1.8.13 (using
Doxyfile
)