19 declare(strict_types=1);
39 $this->database = $db;
49 if ($this->database->tableExists(
'ctrl_calls')) {
50 $this->database->dropTable(
'ctrl_calls');
61 if ($this->database->tableExists(
'ctrl_classfile')) {
62 $this->database->dropTable(
'ctrl_classfile');
73 if ($this->database->tableExists(
'ctrl_structure')) {
74 $this->database->dropTable(
'ctrl_structure');
85 if ($this->database->tableExists(
'il_request_token')) {
86 $this->database->dropTable(
'il_request_token');
97 if ($this->database->tableExists(
'service_class')) {
98 $this->database->dropTable(
'service_class');
109 if ($this->database->tableExists(
'module_class')) {
110 $this->database->dropTable(
'module_class');
123 if (
null === $this->database) {
124 throw new LogicException(self::class .
"::prepare() must be called before db-update-steps execution.");
step_5()
Deletes the table 'service_class' from the database, since information is now stored in an artifact...
step_6()
Deletes the table 'module_class' from the database, since information is now stored in an artifact...
prepare(ilDBInterface $db)
step_4()
Deletes the table 'il_request_token' from the database, since tokens are now stored in the ILIAS sess...
step_1()
Deletes the table 'ctrl_calls' from the database, as it is no longer needed.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
step_2()
Deletes the table 'ctrl_classfile' from the database, as it is no longer needed.
Class ilCtrlDatabaseUpdateSteps holds the database update- steps affecting ilCtrl tables...
abortIfNotPrepared()
Halts the execution of these update steps if no database was provided.
step_3()
Deletes the table 'ctrl_structure' from the database, as it is no longer needed.