19 declare(strict_types=1);
34 return "Migration of collection glossaries due to revision";
39 return Migration::INFINITE;
53 $this->db = $environment->
getResource(Environment::RESOURCE_DATABASE);
58 $set = $this->db->query(
59 "SELECT glossary.id AS glossary_id, glossary.virtual, glossary_term.id AS term_id, glossary_term.glo_id " .
60 " FROM glossary LEFT JOIN glossary_term ON glossary.id = glossary_term.glo_id " .
61 " WHERE glossary.virtual = 'level' OR glossary.virtual = 'subtree' " .
62 " ORDER BY glossary.id" 65 while ($rec = $this->db->fetchAssoc($set)) {
66 $glo_id = (
int) $rec[
"glossary_id"];
67 $term_id = (
int) $rec[
"term_id"];
68 if ($glo_id === $tmp_id) {
72 $this->db->manipulate(
73 "UPDATE glossary SET " .
74 " glossary.virtual = " . $this->db->quote(
"none",
"text") .
75 " WHERE glossary.id = " . $this->db->quote($glo_id,
"integer")
77 $this->
log(
"Convert glossary with id " . $glo_id .
" into Standard Glossary.");
79 $this->db->manipulate(
80 "UPDATE glossary SET " .
81 " glossary.virtual = " . $this->db->quote(
"coll",
"text") .
82 " WHERE glossary.id = " . $this->db->quote($glo_id,
"integer")
84 $this->
log(
"Convert glossary with id " . $glo_id .
" into Collection Glossary.");
91 protected function log(
string $str): void
98 $set = $this->db->query(
99 "SELECT glossary.virtual FROM glossary " .
100 " WHERE glossary.virtual = 'level' OR glossary.virtual = 'subtree'" 102 if ($rec = $this->db->fetchAssoc($set)) {
step(Environment $environment)
getRemainingAmountOfSteps()
getDefaultAmountOfStepsPerRun()
getPreconditions(Environment $environment)
prepare(Environment $environment)
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
An environment holds resources to be used in the setup process.