19 declare(strict_types=1);
51 ?
int $current_db_version,
56 string $responsible_mail,
57 bool $supports_learning_progress,
58 bool $supports_export,
59 bool $supports_cli_setup
61 if ($current_version ===
null && $current_db_version !==
null) {
62 throw new \InvalidArgumentException(
63 "If there is no current version for the plugin, we also should not " .
91 return $this->pluginslot->getComponent();
106 return $this->pluginslot->getPath() .
"/" . $this->
getName();
111 return "il" . $this->
getName() .
"Plugin";
116 return "il" . $this->
getName() .
"ConfigGUI";
183 return $this->current_version !==
null;
191 return $this->
isInstalled() && !$this->current_version->equals($this->available_version);
200 return $this->current_version->isGreaterThan($this->available_version);
210 $this->actual_ilias_version->isGreaterThanOrEquals($this->minimum_ilias_version)
211 && $this->actual_ilias_version->isSmallerThanOrEquals($this->maximum_ilias_version);
243 throw new \LogicException(
244 "Plugin is active, so no reason for inactivity." 249 return "cmps_needs_matching_ilias_version";
253 return "cmps_must_installed";
257 return "cmps_needs_upgrade";
261 return "cmps_needs_update";
265 return "cmps_not_activated";
268 throw new \LogicException(
269 "Unknown reason for inactivity of the plugin." Version $minimum_ilias_version
bool $supports_learning_progress
ilPluginSlotInfo $pluginslot
Simple value class for basic information about a pluginslot.
isActive()
Is this plugin active right now?
Version $available_version
isInstalled()
"Installed" tells if the plugin has some installed version.
isActivationPossible()
Can this plugin be activated right now.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
isCompliantToILIAS()
"ILIAS Version compliance" tells if the plugin can be operated with the given ILIAS version...
isUpdateRequired()
"Update required" tells if the plugin needs an update.
isVersionToOld()
"Version to old" tells if the plugin code has a version that is below the version that was updated la...
Version $maximum_ilias_version
Simple value class for information about a plugin.
getReasonForInactivity()
Which is the reason for the inactivity?
__construct(Version $actual_ilias_version, ilPluginSlotInfo $pluginslot, string $id, string $name, bool $activated, ?Version $current_version, ?int $current_db_version, Version $available_version, Version $minimum_ilias_version, Version $maximum_ilias_version, string $responsible, string $responsible_mail, bool $supports_learning_progress, bool $supports_export, bool $supports_cli_setup)
isActivated()
"activated" tells if the administrator of the installation wants the plugin to be effective...
A version number that consists of three numbers (major, minor, patch).
supportsLearningProgress()
Version $actual_ilias_version
Simple value class for basic information about a component.