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.ilECSCourseAttribute.php
Go to the documentation of this file.
1
<?php
2
18
declare(strict_types=1);
19
25
class
ilECSCourseAttribute
26
{
27
private
int
$id
;
28
private
int
$server_id
= 0;
29
private
int
$mid
= 0;
30
private
string
$name
=
''
;
31
32
private
ilDBInterface
$db
;
33
37
public
function
__construct
(
int
$a_id = 0)
38
{
39
global
$DIC
;
40
41
$this->db = $DIC->database();
42
43
$this->
id
= $a_id;
44
45
$this->
read
();
46
}
47
51
public
function
getId
():
int
52
{
53
return
$this->id
;
54
}
55
56
public
function
setServerId
(
int
$a_server_id): void
57
{
58
$this->server_id = $a_server_id;
59
}
60
61
public
function
getServerId
():
int
62
{
63
return
$this->server_id
;
64
}
65
66
public
function
setMid
(
int
$a_mid): void
67
{
68
$this->mid = $a_mid;
69
}
70
71
public
function
getMid
():
int
72
{
73
return
$this->mid
;
74
}
75
76
77
public
function
setName
(
string
$a_name): void
78
{
79
$this->name = $a_name;
80
}
81
85
public
function
getName
(): string
86
{
87
return
$this->name
;
88
}
89
93
public
function
delete
():
bool
94
{
95
$query
=
"DELETE FROM ecs_crs_mapping_atts "
.
96
'WHERE id = '
. $this->db->quote($this->
getId
(),
'integer'
);
97
$this->db->manipulate(
$query
);
98
return
true
;
99
}
100
104
public
function
save
(): bool
105
{
106
$this->
id
= $this->db->nextId(
'ecs_crs_mapping_atts'
);
107
108
$query
=
'INSERT INTO ecs_crs_mapping_atts (id,sid,mid,name) '
.
109
'VALUES ( '
.
110
$this->db->quote($this->
getId
(),
'integer'
) .
', '
.
111
$this->db->quote($this->
getServerId
(),
'integer'
) .
', '
.
112
$this->db->quote($this->
getMid
(),
'integer'
) .
', '
.
113
$this->db->quote($this->
getName
(),
'text'
) .
' '
.
114
') '
;
115
$this->db->manipulate(
$query
);
116
return
true
;
117
}
118
119
120
124
protected
function
read
(): bool
125
{
126
if
(!$this->
getId
()) {
127
return
true
;
128
}
129
$query
=
'SELECT * FROM ecs_crs_mapping_atts '
.
130
'WHERE id = '
. $this->db->quote($this->
getId
(),
'integer'
);
131
$res
= $this->db->query(
$query
);
132
while
($row =
$res
->fetchRow(
ilDBConstants::FETCHMODE_OBJECT
)) {
133
$this->
setName
($row->name);
134
}
135
return
true
;
136
}
137
}
ilECSCourseAttribute\$name
string $name
Definition:
class.ilECSCourseAttribute.php:30
ilECSCourseAttribute\save
save()
Save a new entry.
Definition:
class.ilECSCourseAttribute.php:104
ilECSCourseAttribute\$id
int $id
Definition:
class.ilECSCourseAttribute.php:27
ilECSCourseAttribute\getId
getId()
Get id.
Definition:
class.ilECSCourseAttribute.php:51
$res
$res
Definition:
ltiservices.php:69
ilECSCourseAttribute\read
read()
read active attributes
Definition:
class.ilECSCourseAttribute.php:124
ilECSCourseAttribute\$mid
int $mid
Definition:
class.ilECSCourseAttribute.php:29
ilECSCourseAttribute\getName
getName()
Get name.
Definition:
class.ilECSCourseAttribute.php:85
ilECSCourseAttribute\$db
ilDBInterface $db
Definition:
class.ilECSCourseAttribute.php:32
ilECSCourseAttribute\getMid
getMid()
Definition:
class.ilECSCourseAttribute.php:71
ilECSCourseAttribute\__construct
__construct(int $a_id=0)
Constructor.
Definition:
class.ilECSCourseAttribute.php:37
ilECSCourseAttribute\setName
setName(string $a_name)
Definition:
class.ilECSCourseAttribute.php:77
ilECSCourseAttribute\$server_id
int $server_id
Definition:
class.ilECSCourseAttribute.php:28
$DIC
global $DIC
Definition:
feed.php:28
ilECSCourseAttribute\getServerId
getServerId()
Definition:
class.ilECSCourseAttribute.php:61
ilECSCourseAttribute
Storage of course attributes for assignment rules.
Definition:
class.ilECSCourseAttribute.php:25
ilECSCourseAttribute\setMid
setMid(int $a_mid)
Definition:
class.ilECSCourseAttribute.php:66
ilECSCourseAttribute\setServerId
setServerId(int $a_server_id)
Definition:
class.ilECSCourseAttribute.php:56
ilDBInterface
$query
$query
Definition:
proxy_ylocal.php:13
ilDBConstants\FETCHMODE_OBJECT
const FETCHMODE_OBJECT
Definition:
class.ilDBConstants.php:29
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
Services
WebServices
ECS
classes
Course
class.ilECSCourseAttribute.php
Generated on Thu Apr 3 2025 22:02:39 for ILIAS by
1.8.13 (using
Doxyfile
)