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
ilObjCloudModuleMigration.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
5
use
ILIAS\Setup\Migration
;
6
use
ILIAS\Setup\Environment
;
7
24
class
ilObjCloudModuleMigration
implements
Migration
25
{
26
protected
ilDBInterface
$db
;
27
28
public
function
getLabel
(): string
29
{
30
return
'ilObjCloudModule Data Removal. Attention, this deletes all Data of the Cloud Module from the Repository'
;
31
}
32
33
public
function
getDefaultAmountOfStepsPerRun
():
int
34
{
35
return
Migration::INFINITE;
36
}
37
38
public
function
getRemainingAmountOfSteps
():
int
39
{
40
if
($this->db->fetchObject($this->getCloudReferencesQuery())) {
41
return
1;
42
}
else
{
43
return
0;
44
}
45
}
46
50
public
function
getPreconditions
(
Environment
$environment): array
51
{
52
return
[
53
new
ilIniFilesLoadedObjective
(),
54
new
ilDatabaseUpdatedObjective
()
55
];
56
}
57
58
public
function
prepare
(
Environment
$environment): void
59
{
60
//This is necessary for using ilObjects delete function to remove existing objects
61
ilContext::init
(
ilContext::CONTEXT_CRON
);
62
ilInitialisation::initILIAS
();
63
$this->db = $environment->
getResource
(Environment::RESOURCE_DATABASE);
64
}
65
66
public
function
step
(
Environment
$environment): void
67
{
68
while
($result = $this->db->fetchObject($this->getCloudReferencesQuery())) {
69
$cloud_object =
new
ilObjCloud
((
int
) $result->ref_id);
70
$cloud_object->delete();
71
}
72
}
73
74
protected
function
getCloudReferencesQuery
():
ilDBStatement
75
{
76
return
$this->db->query(
"
77
SELECT ref_id
78
FROM object_data, object_reference
79
WHERE object_data.type = 'cld' AND object_data.obj_id = object_reference.obj_id"
);
80
}
81
}
ilObjCloudModuleMigration\step
step(Environment $environment)
Run one step of the migration.
Definition:
ilObjCloudModuleMigration.php:66
ilIniFilesLoadedObjective
Environment
ilObjCloudModuleMigration\getDefaultAmountOfStepsPerRun
getDefaultAmountOfStepsPerRun()
Tell the default amount of steps to be executed for one run of the migration.
Definition:
ilObjCloudModuleMigration.php:33
Migration
ilContext\CONTEXT_CRON
const CONTEXT_CRON
Definition:
class.ilContext.php:31
ILIAS\Setup\Migration
A migration is a potentially long lasting operation that can be broken into discrete steps...
Definition:
Migration.php:28
ilObjCloudModuleMigration
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
ilObjCloudModuleMigration.php:24
ilObjCloudModuleMigration\$db
ilDBInterface $db
Definition:
ilObjCloudModuleMigration.php:26
ilObjCloudModuleMigration\getPreconditions
getPreconditions(Environment $environment)
Definition:
ilObjCloudModuleMigration.php:50
ilInitialisation\initILIAS
static initILIAS()
ilias initialisation
Definition:
class.ilInitialisation.php:1225
ilDatabaseUpdatedObjective
ilObjCloudModuleMigration\prepare
prepare(Environment $environment)
Prepare the migration by means of some environment.
Definition:
ilObjCloudModuleMigration.php:58
ilDBStatement
ilObjCloudModuleMigration\getRemainingAmountOfSteps
getRemainingAmountOfSteps()
Count up how many "things" need to be migrated.
Definition:
ilObjCloudModuleMigration.php:38
ilDBInterface
ILIAS\Setup\Environment\getResource
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
ilObjCloudModuleMigration\getCloudReferencesQuery
getCloudReferencesQuery()
Definition:
ilObjCloudModuleMigration.php:74
ILIAS\Setup\Environment
An environment holds resources to be used in the setup process.
Definition:
Environment.php:27
ilContext\init
static init(string $a_type)
Init context by type.
Definition:
class.ilContext.php:52
ilObjCloud
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilObjCloud.php:20
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ilObjCloudModuleMigration\getLabel
getLabel()
Definition:
ilObjCloudModuleMigration.php:28
Modules
Cloud
classes
Setup
ilObjCloudModuleMigration.php
Generated on Fri Apr 4 2025 22:01:42 for ILIAS by
1.8.13 (using
Doxyfile
)