ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ 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
ProgressBlockUpdateSteps11.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Tracking\Setup
;
22
23
use
ilDatabaseUpdateSteps
;
24
use
ilDBConstants
;
25
use
ilDBInterface
;
26
27
class
ProgressBlockUpdateSteps11
implements
ilDatabaseUpdateSteps
28
{
29
protected
ilDBInterface
$db
;
30
31
public
function
prepare
(
ilDBInterface
$db): void
32
{
33
$this->db =
$db
;
34
}
35
39
public
function
step_1
(): void
40
{
41
if
($this->db->tableExists(
'ut_progress_block'
)) {
42
return
;
43
}
44
$this->db->createTable(
'ut_progress_block'
, [
45
'obj_id'
=> [
46
'type'
=>
ilDBConstants::T_TEXT
,
47
'length'
=> 4,
48
'default'
=> 0,
49
'notnull'
=>
true
50
],
51
'show_block'
=> [
52
'type'
=>
ilDBConstants::T_INTEGER
,
53
'length'
=> 1,
54
'default'
=> 0,
55
'notnull'
=>
true
56
]
57
]);
58
$this->db->addPrimaryKey(
'ut_progress_block'
, [
'obj_id'
]);
59
}
60
}
ILIAS\Tracking\Setup\ProgressBlockUpdateSteps11\prepare
prepare(ilDBInterface $db)
Definition:
ProgressBlockUpdateSteps11.php:31
ILIAS\Tracking\Setup\ProgressBlockUpdateSteps11
Definition:
ProgressBlockUpdateSteps11.php:27
ilDBConstants\T_TEXT
const T_TEXT
Definition:
class.ilDBConstants.php:56
ilDBConstants
ILIAS\Tracking\Setup\ProgressBlockUpdateSteps11\$db
ilDBInterface $db
Definition:
ProgressBlockUpdateSteps11.php:29
ilDBInterface
ilDatabaseUpdateSteps
ILIAS\Tracking\Setup
Definition:
Agent.php:21
ILIAS\Tracking\Setup\ProgressBlockUpdateSteps11\step_1
step_1()
Create new export file table.
Definition:
ProgressBlockUpdateSteps11.php:39
ilDBConstants\T_INTEGER
const T_INTEGER
Definition:
class.ilDBConstants.php:55
components
ILIAS
Tracking
classes
Setup
ProgressBlockUpdateSteps11.php
Generated on Wed Apr 2 2025 23:03:55 for ILIAS by
1.8.13 (using
Doxyfile
)