19 declare(strict_types=1);
48 $this->client_ini =
null;
59 $class_map = require ILIAS_ABSOLUTE_PATH .
'/vendor/composer/vendor/composer/autoload_classmap.php';
65 if (!file_exists($this->db_update_file)) {
66 $this->error =
'no_db_update_file';
67 $this->filecontent = [];
71 $this->filecontent = @file($this->db_update_file);
77 reset($this->filecontent);
80 foreach ($this->filecontent as $row) {
81 if (preg_match(
'/^<\#([0-9]+)>/', $row, $regs)) {
96 $this->current_version = $a_version;
101 if ((is_int(stripos($q,
'create table')) || is_int(stripos($q,
'alter table')) ||
102 is_int(stripos($q,
'drop table')))
112 $component = $this->plugin->getComponent();
113 $slot = $this->plugin->getPluginSlot();
114 return $component->getId() .
'_' . $slot->getId() .
'_' . $this->plugin->getId();
119 return $this->plugin->getPath() . self::PLUGIN_UPDATE_FILE;
128 $ilCtrlStructureReader =
null;
135 $this->updateMsg =
'no_changes';
136 if ($current_version < $file_version) {
138 for ($i = ($current_version + 1); $i <=
$file_version; $i++) {
140 $msg[] =
'msg: update_error - ' . $this->error .
'; nr: ' . $i .
';';
141 $this->updateMsg = implode(
"\n", $msg);
146 $msg[] =
'msg: update_applied; nr: ' . $i .
';';
149 $this->updateMsg = implode(
'\n', $msg);
applyUpdate()
Apply update.
applyUpdateNr(int $nr, bool $custom_update=false)
Apply a custom database update or a plugin update.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setCurrentVersion(?int $a_version)
Class ilCtrlArrayIterator.
Simple value class for information about a plugin.
initGlobalsRequiredForUpdateSteps(?ilCtrlStructureReader &$ilCtrlStructureReader, ?ilDBInterface &$ilDB)
__construct(\ilDBInterface $db, \ilPluginInfo $plugin)
constructor MagicMethodsValidityInspection