19 declare(strict_types=1);
29 private const TYPE =
'cmps';
70 $this->
tabs = $DIC->tabs();
71 $this->
ctrl = $DIC->ctrl();
72 $this->rbac_system = $DIC->rbac()->system();
73 $this->db = $DIC->database();
74 $this->type = self::TYPE;
75 $this->component_repository = $DIC[
"component.repository"];
76 $this->component_factory = $DIC[
"component.factory"];
77 $this->error = $DIC[
"ilErr"];
79 $this->request_wrapper = $DIC->http()->wrapper()->query();
80 $this->
ui = $DIC->ui()->factory();
81 $this->
renderer = $DIC->ui()->renderer();
83 $this->
lng->loadLanguageModule(self::TYPE);
89 self::CMD_UPDATE_PLUGIN,
90 self::CMD_ACTIVATE_PLUGIN,
91 self::CMD_DEACTIVATE_PLUGIN,
92 self::CMD_REFRESH_LANGUAGES,
103 $next_class = $this->
ctrl->getNextClass($this);
104 $cmd = $this->
ctrl->getCmd();
108 if (!$this->rbac_system->checkAccess(
'read', $this->object->getRefId())) {
109 $this->error->raiseError($this->
lng->txt(
'no_permission'), $this->error->WARNING);
113 case $next_class ===
'ilpermissiongui':
114 $this->
tabs->activateTab(self::TAB_PERMISSION);
116 $this->
ctrl->forwardCommand($perm_gui);
118 case preg_match(
"/configgui$/i", $next_class):
123 case self::CMD_INSTALL_PLUGIN:
126 case self::CMD_REFRESH_LANGUAGES:
129 case self::CMD_ACTIVATE_PLUGIN:
132 case self::CMD_DEACTIVATE_PLUGIN:
135 case self::CMD_UPDATE_PLUGIN:
138 case self::CMD_CONFIRM_UNINSTALL_PLUGIN:
141 case self::CMD_UNINSTALL_PLUGIN:
152 $name = $this->
ctrl->lookupOriginalClassName($name);
154 if (!class_exists($name)) {
155 throw new Exception(
"class $name not found!");
160 $gui->setPluginObject(
$plugin);
162 $this->
ctrl->forwardCommand($gui);
177 $this->tpl->setOnScreenMessage(
"success", $this->
lng->txt(
"cmps_plugin_updated"),
true);
179 $this->tpl->setOnScreenMessage(
"failure", $e->getMessage(),
true);
182 $this->
ctrl->redirectByClass(ilAdministrationGUI::class, self::CMD_JUMP_TO_PLUGIN_SLOT);
188 $plugin_name = $this->request_wrapper->retrieve(self::P_PLUGIN_NAME, $this->
refinery->kindlyTo()->string());
189 $plugin = $this->component_repository->getPluginByName($plugin_name);
191 $language_handler->updateLanguages();
192 $this->tpl->setOnScreenMessage(
"success", $this->
lng->txt(
"cmps_refresh_lng"),
true);
194 $this->tpl->setOnScreenMessage(
"failure", $e->getMessage(),
true);
196 $this->
ctrl->redirect($this, self::CMD_DEFAULT);
205 $this->tpl->setOnScreenMessage(
"success", $this->
lng->txt(
"cmps_plugin_activated"),
true);
207 $this->tpl->setOnScreenMessage(
"failure", $e->getMessage(),
true);
210 $this->
ctrl->redirect($this, self::CMD_DEFAULT);
219 $this->tpl->setOnScreenMessage(
"success", $this->
lng->txt(
"cmps_plugin_deactivated"),
true);
221 $this->tpl->setOnScreenMessage(
"failure", $e->getMessage(),
true);
224 $this->
ctrl->redirect($this, self::CMD_DEFAULT);
237 $plugin_name = $this->request_wrapper->retrieve(self::P_PLUGIN_NAME, $this->
refinery->kindlyTo()->string());
239 $pl_info = $this->component_repository->getPluginByName($plugin_name);
241 if ($pl_info->isActivated() || $pl_info->isActivationPossible()) {
243 $this->
lng->txt(
"cmps_uninstall_confirm"),
248 $this->
lng->txt(
"cmps_uninstall_inactive_confirm"),
249 $pl->getPluginName(),
250 $pl_info->getReasonForInactivity()
254 $this->
ctrl->setParameter($this, self::P_PLUGIN_NAME, $pl_info->getName());
256 $this->
ui->button()->standard(
257 $this->
lng->txt(
'confirm'),
258 $this->
ctrl->getLinkTarget($this, self::CMD_UNINSTALL_PLUGIN)
260 $this->
ui->button()->standard(
261 $this->
lng->txt(
'cancel'),
262 $this->
ctrl->getLinkTarget($this,
'showQuestionList')
266 $this->tpl->setContent($this->
renderer->render($this->ui->messageBox()->confirmation($question)->withButtons($buttons)));
275 $this->tpl->setOnScreenMessage(
"success", $this->
lng->txt(
"cmps_plugin_deinstalled"),
true);
277 $this->tpl->setOnScreenMessage(
"failure", $e->getMessage(),
true);
280 $this->
ctrl->redirect($this, self::CMD_DEFAULT);
285 $plugin_name = $this->request_wrapper->retrieve(self::P_PLUGIN_NAME, $this->
refinery->kindlyTo()->string());
286 return $this->component_factory->getPlugin(
287 $this->component_repository->getPluginByName($plugin_name)->getId()
293 $this->
tabs->activateTab(self::TAB_PLUGINS);
298 foreach ($this->component_repository->getPlugins() as
$plugin) {
311 $table = $table->
withData($plugins)->getTable();
313 $this->tpl->setContent($filters->getHTML() . $table);
318 if ($this->rbac_system->checkAccess(
"visible,read", $this->object->getRefId())) {
319 $this->tabs_gui->addTab(
321 $this->
lng->txt(
"cmps_plugins"),
322 $this->
ctrl->getLinkTarget($this, self::CMD_DEFAULT)
326 if ($this->rbac_system->checkAccess(
'edit_permission', $this->object->getRefId())) {
327 $this->tabs_gui->addTab(
329 $this->
lng->txt(
"perm_settings"),
330 $this->
ctrl->getLinkTargetByClass(
'ilpermissiongui',
"perm")
335 $this->request_wrapper->has(self::P_CTYPE) &&
336 $this->request_wrapper->retrieve(self::P_CTYPE, $this->
refinery->kindlyTo()->string()) ===
"components/ILIAS" 338 $this->tabs_gui->activateTab(
"services");
Readable part of repository interface to ilComponentDataDB.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
prepareOutput(bool $show_sub_objects=true)
Class ilPluginsOverviewTableFilterGUI.
forwardConfigGUI(string $name)
ILIAS HTTP Wrapper RequestWrapper $request_wrapper
ilComponentFactory $component_factory
getUnsafeGetCommands()
This method must return a list of unsafe GET commands.
const CMD_DEACTIVATE_PLUGIN
const CMD_CONFIRM_UNINSTALL_PLUGIN
const CMD_UNINSTALL_PLUGIN
__construct($data, int $id, bool $call_by_reference=true, bool $prepare_output=true)
This is how the factory for UI elements looks.
const CMD_ACTIVATE_PLUGIN
ilRbacSystem $rbac_system
Class ilObjectGUI Basic methods of all Output classes.
ILIAS Refinery Factory $refinery
ilComponentRepository $component_repository
ilObjComponentSettingsGUI: ilPermissionGUI
getSafePostCommands()
This method must return a list of safe POST commands.
__construct(Container $dic, ilPlugin $plugin)
const CMD_JUMP_TO_PLUGIN_SLOT
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const CMD_REFRESH_LANGUAGES