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
ilStudyProgrammeSettingsTableUpdateSteps.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
class
ilStudyProgrammeSettingsTableUpdateSteps
implements
ilDatabaseUpdateSteps
22
{
23
public
const
TABLE_NAME
=
'prg_settings'
;
24
public
const
TABLE_PROGRESSES
=
'prg_usr_progress'
;
25
26
protected
ilDBInterface
$db
;
27
28
public
function
prepare
(
ilDBInterface
$db): void
29
{
30
$this->db =
$db
;
31
}
32
33
public
function
step_1
(): void
34
{
35
$column_name =
'vq_restart_recheck'
;
36
37
if
(!$this->db->tableColumnExists(self::TABLE_NAME, $column_name)) {
38
$this->db->addTableColumn(
39
self::TABLE_NAME,
40
$column_name,
41
[
42
'type'
=>
'integer'
,
43
'length'
=> 1,
44
'default'
=> 0,
45
'notnull'
=>
false
46
]
47
);
48
}
49
}
50
51
public
function
step_2
(): void
52
{
53
if
(!$this->db->indexExistsByFields(self::TABLE_NAME, [
'assignment_id'
,
'prg_id'
,
'usr_id'
])) {
54
$this->db->dropPrimaryKey(self::TABLE_PROGRESSES);
55
$this->db->addPrimaryKey(
56
self::TABLE_PROGRESSES,
57
[
58
'assignment_id'
,
59
'prg_id'
,
60
'usr_id'
61
]
62
);
63
}
64
}
65
}
ilStudyProgrammeSettingsTableUpdateSteps\step_2
step_2()
Definition:
ilStudyProgrammeSettingsTableUpdateSteps.php:51
ilStudyProgrammeSettingsTableUpdateSteps\$db
ilDBInterface $db
Definition:
ilStudyProgrammeSettingsTableUpdateSteps.php:26
ilStudyProgrammeSettingsTableUpdateSteps
Definition:
ilStudyProgrammeSettingsTableUpdateSteps.php:21
ilStudyProgrammeSettingsTableUpdateSteps\step_1
step_1()
Definition:
ilStudyProgrammeSettingsTableUpdateSteps.php:33
ilDBInterface
ilDatabaseUpdateSteps
ilStudyProgrammeSettingsTableUpdateSteps\TABLE_PROGRESSES
const TABLE_PROGRESSES
Definition:
ilStudyProgrammeSettingsTableUpdateSteps.php:24
ilStudyProgrammeSettingsTableUpdateSteps\TABLE_NAME
const TABLE_NAME
Definition:
ilStudyProgrammeSettingsTableUpdateSteps.php:23
ilStudyProgrammeSettingsTableUpdateSteps\prepare
prepare(ilDBInterface $db)
Definition:
ilStudyProgrammeSettingsTableUpdateSteps.php:28
Modules
StudyProgramme
classes
Setup
ilStudyProgrammeSettingsTableUpdateSteps.php
Generated on Fri Apr 4 2025 22:01:57 for ILIAS by
1.8.13 (using
Doxyfile
)