3 include_once(
"./Services/Object/classes/class.ilObjectGUI.php");
12 private const TYPE =
'cmps';
56 public function __construct($a_data,
int $a_id,
bool $a_call_by_reference =
true,
bool $a_prepare_output =
true)
59 $this->tabs = $DIC->tabs();
60 $this->ctrl = $DIC->ctrl();
61 $this->rbac_system = $DIC->rbac()->system();
62 $this->db = $DIC->database();
63 $this->type = self::TYPE;
65 $this->lng->loadLanguageModule(self::TYPE);
77 $next_class = $this->ctrl->getNextClass($this);
78 $cmd = $this->ctrl->getCmd();
82 if (!$this->rbac_system->checkAccess(
'read', $this->object->getRefId())) {
83 $ilErr->raiseError($this->lng->txt(
'no_permission'),
$ilErr->WARNING);
86 switch ($next_class) {
87 case 'ilpermissiongui':
88 $this->tabs->activateTab(
'perm_settings');
89 include_once(
"Services/AccessControl/classes/class.ilPermissionGUI.php");
91 $this->ctrl->forwardCommand($perm_gui);
98 if (strtolower(substr($next_class, strlen($next_class) - 9)) ===
"configgui") {
99 $path = $this->ctrl->lookupClassPath(strtolower($next_class));
102 $nc =
new $next_class();
105 $_GET[self::P_CTYPE],
106 $_GET[self::P_CNAME],
107 $_GET[self::P_SLOT_ID],
108 $_GET[self::P_PLUGIN_NAME]
111 $nc->setPluginObject($pl);
113 $this->ctrl->forwardCommand($nc);
119 if (!$cmd || $cmd ===
'view') {
120 $cmd = self::CMD_DEFAULT;
137 if ($this->rbac_system->checkAccess(
"visible,read", $this->object->getRefId())) {
138 $this->tabs_gui->addTab(
140 $this->lng->txt(
"cmps_plugins"),
141 $this->ctrl->getLinkTarget($this, self::CMD_DEFAULT)
145 $this->tabs_gui->addTab(
147 $this->lng->txt(
"cmps_slots"),
148 $this->ctrl->getLinkTarget($this, self::CMD_LIST_SLOTS)
153 if ($this->rbac_system->checkAccess(
'edit_permission', $this->object->getRefId())) {
154 $this->tabs_gui->addTab(
156 $this->lng->txt(
"perm_settings"),
157 $this->ctrl->getLinkTargetByClass(
'ilpermissiongui',
"perm")
161 if (
$_GET[self::P_CTYPE] ===
"Services") {
162 $this->tabs_gui->activateTab(
"services");
169 $this->ctrl->redirect($this, self::CMD_DEFAULT);
172 $this->tabs_gui->activateTab(self::TAB_SLOTS);
174 $this->tpl->setContent($comp_table->getHTML());
179 $this->tabs->activateTab(self::TAB_PLUGINS);
184 $this->tpl->setContent($filters->getHTML() . $table->getHTML());
190 $this->ctrl->redirect($this, self::CMD_DEFAULT);
193 $this->tabs->clearTargets();
195 $this->tabs->setBackTarget(
196 $this->lng->txt(
"cmps_slots"),
197 $this->ctrl->getLinkTarget($this, self::CMD_LIST_SLOTS)
206 $ne->
setValue($comp->getComponentType() .
"/" . $comp->getName() .
" [" . $comp->getId() .
"]");
211 $ne->
setValue($comp->getPluginSlotName(
$_GET[self::P_SLOT_ID]) .
" [" .
$_GET[self::P_SLOT_ID] .
"]");
216 $ne->
setValue($comp->getPluginSlotDirectory(
$_GET[self::P_SLOT_ID]) .
"/<Plugin_Name>");
221 $ne->
setValue(
"<" . $this->lng->txt(
"cmps_main_dir") .
">" .
222 "/classes/class.il<Plugin_Name>Plugin.php");
227 $ne->
setValue(
"<" . $this->lng->txt(
"cmps_main_dir") .
">" .
228 "/lang/ilias_<Language ID>.lang");
233 $ne->
setValue(
"<" . $this->lng->txt(
"cmps_main_dir") .
">" .
234 "/sql/dbupdate.php");
239 $ne->
setValue($comp->getPluginSlotLanguagePrefix(
$_GET[self::P_SLOT_ID]) .
"<Plugin_ID>_");
244 $ne->
setValue($comp->getPluginSlotLanguagePrefix(
$_GET[self::P_SLOT_ID]) .
"<Plugin_ID>_");
247 $form->setTitle($this->lng->txt(
"cmps_plugin_slot"));
250 $this->tpl->setContent($form->getHTML());
251 $this->tpl->setTitle($comp->getComponentType() .
"/" . $comp->getName() .
": " .
252 $this->lng->txt(
"cmps_plugin_slot") .
" \"" . $comp->getPluginSlotName(
$_GET[self::P_SLOT_ID]) .
"\"");
253 $this->tpl->setDescription(
"");
259 if (!
$_GET[self::P_CTYPE] ||
260 !
$_GET[self::P_CNAME] ||
261 !
$_GET[self::P_SLOT_ID] ||
262 !
$_GET[self::P_PLUGIN_ID]) {
263 $this->ctrl->redirect($this, self::CMD_DEFAULT);
269 foreach ($slot->getPluginsInformation() as $item) {
270 if ($item[
"id"] ===
$_GET[self::P_PLUGIN_ID]) {
276 $this->ctrl->redirect($this, self::CMD_DEFAULT);
279 $this->tabs->clearTargets();
280 $this->tabs->setBackTarget(
281 $this->lng->txt(
"cmps_plugins"),
282 $this->ctrl->getLinkTarget($this, self::CMD_DEFAULT)
285 $this->ctrl->setParameter($this, self::P_CTYPE,
$_GET[self::P_CTYPE]);
286 $this->ctrl->setParameter($this, self::P_CNAME,
$_GET[self::P_CNAME]);
287 $this->ctrl->setParameter($this, self::P_SLOT_ID,
$_GET[self::P_SLOT_ID]);
288 $this->ctrl->setParameter($this, self::P_PLUGIN_ID,
$_GET[self::P_PLUGIN_ID]);
289 $this->ctrl->setParameter($this, self::P_PLUGIN_NAME,
$plugin[
"name"]);
296 $_GET[self::P_CTYPE],
297 $_GET[self::P_CNAME],
301 $db_curr = $db_file = null;
302 if (@is_file($file)) {
303 include_once(
"./Services/Component/classes/class.ilPluginDBUpdate.php");
305 $_GET[self::P_CTYPE],
306 $_GET[self::P_CNAME],
307 $_GET[self::P_SLOT_ID],
314 $db_curr = $dbupdate->getCurrentVersion();
315 $db_file = $dbupdate->getFileVersion();
322 $this->toolbar->addButton(
323 $this->lng->txt(
"cmps_install"),
324 $this->ctrl->getLinkTarget($this, self::CMD_INSTALL_PLUGIN)
330 $this->toolbar->addButton(
331 $this->lng->txt(
"cmps_configure"),
336 if (count($langs) > 0) {
337 $this->toolbar->addButton(
338 $this->lng->txt(
"cmps_refresh"),
339 $this->ctrl->getLinkTarget($this, self::CMD_REFRESH_LANGUAGES)
343 if (
$plugin[
"activation_possible"]) {
344 $this->toolbar->addButton(
345 $this->lng->txt(
"cmps_activate"),
346 $this->ctrl->getLinkTarget($this, self::CMD_ACTIVATE_PLUGIN)
353 $this->toolbar->addButton(
354 $this->lng->txt(
"cmps_deactivate"),
355 $this->ctrl->getLinkTarget($this, self::CMD_DEACTIVATE_PLUGIN)
361 $this->toolbar->addButton(
362 $this->lng->txt(
"cmps_update"),
363 $this->ctrl->getLinkTarget($this, self::CMD_UPDATE_PLUGIN)
370 if (
$plugin[
"responsible"] !=
'') {
371 $responsibles = explode(
'/',
$plugin[
"responsible_mail"]);
372 foreach ($responsibles as $responsible) {
373 if (!strlen($responsible = trim($responsible))) {
377 $resp[] = $responsible;
384 $status = $this->lng->txt(
"cmps_active");
386 $r = (
$plugin[
"inactive_reason"] !=
"")
387 ?
" (" .
$plugin[
"inactive_reason"] .
")" 390 $status = $this->lng->txt(
"cmps_inactive") . $r;
393 $info[
""][$this->lng->txt(
"cmps_name")] =
$plugin[
"name"];
394 $info[
""][$this->lng->txt(
"cmps_id")] =
$plugin[
"id"];
395 $info[
""][$this->lng->txt(
"cmps_version")] =
$plugin[
"version"];
397 $info[
""][$this->lng->txt(
"cmps_responsible")] =
$resp;
399 $info[
""][$this->lng->txt(
"cmps_ilias_min_version")] =
$plugin[
"ilias_min_version"];
400 $info[
""][$this->lng->txt(
"cmps_ilias_max_version")] =
$plugin[
"ilias_max_version"];
401 $info[
""][$this->lng->txt(
"cmps_status")] = $status;
403 if (
sizeof($langs)) {
404 $lang_files = array();
405 foreach ($langs as
$lang) {
406 $lang_files[] = $lang[
"file"];
408 $info[
""][$this->lng->txt(
"cmps_languages")] = implode(
", ", $lang_files);
410 $info[
""][$this->lng->txt(
"cmps_languages")] = $this->lng->txt(
"cmps_no_language_file_available");
413 $info[$this->lng->txt(
"cmps_basic_files")][
"plugin.php"] =
$plugin[
"plugin_php_file_status"] ?
414 $this->lng->txt(
"cmps_available") :
415 $this->lng->txt(
"cmps_missing");
416 $info[$this->lng->txt(
"cmps_basic_files")][$this->lng->txt(
"cmps_class_file")] = (
$plugin[
"class_file_status"] ?
417 $this->lng->txt(
"cmps_available") :
418 $this->lng->txt(
"cmps_missing")) .
419 " (" .
$plugin[
"class_file"] .
")";
422 $info[$this->lng->txt(
"cmps_database")][$this->lng->txt(
"file")] = $this->lng->txt(
"cmps_no_db_update_file_available");
424 $info[$this->lng->txt(
"cmps_database")][$this->lng->txt(
"file")] =
"dbupdate.php";
425 $info[$this->lng->txt(
"cmps_database")][$this->lng->txt(
"cmps_current_version")] = $db_curr;
426 $info[$this->lng->txt(
"cmps_database")][$this->lng->txt(
"cmps_file_version")] = $db_file;
430 $form->setTitle($this->lng->txt(
"cmps_plugin"));
432 foreach ($info as
$section => $items) {
436 $form->addItem($sec);
438 foreach ($items as $key => $value) {
440 $non->setValue($value);
441 $form->addItem($non);
445 $this->tpl->setContent($form->getHTML());
451 $_GET[self::P_CTYPE],
452 $_GET[self::P_CNAME],
453 $_GET[self::P_SLOT_ID],
454 $_GET[self::P_PLUGIN_NAME]
464 $_GET[self::P_CTYPE],
465 $_GET[self::P_CNAME],
466 $_GET[self::P_SLOT_ID],
467 $_GET[self::P_PLUGIN_NAME]
475 ilUtil::sendSuccess($this->lng->txt(
"cmps_plugin_activated"),
true);
481 $this->ctrl->setParameter($this, self::P_CTYPE,
$_GET[self::P_CTYPE]);
482 $this->ctrl->setParameter($this, self::P_CNAME,
$_GET[self::P_CNAME]);
483 $this->ctrl->setParameter($this, self::P_SLOT_ID,
$_GET[self::P_SLOT_ID]);
485 if (
$_GET[self::P_PLUGIN_ID]) {
486 $this->ctrl->setParameter($this, self::P_PLUGIN_ID,
$_GET[self::P_PLUGIN_ID]);
487 $this->ctrl->redirect($this, self::CMD_SHOW_PLUGIN);
489 $this->ctrl->redirect($this, self::CMD_DEFAULT);
496 $_GET[self::P_CTYPE],
497 $_GET[self::P_CNAME],
498 $_GET[self::P_SLOT_ID],
499 $_GET[self::P_PLUGIN_NAME]
512 ilUtil::sendSuccess($plugin->
getMessage(),
true);
516 $_GET[
"cmd"] = self::CMD_JUMP_TO_PLUGIN_SLOT;
517 $this->ctrl->initBaseClass(ilAdministrationGUI::class);
518 $this->ctrl->setParameterByClass(ilAdministrationGUI::class, self::P_CTYPE, $_GET[self::P_CTYPE]);
519 $this->ctrl->setParameterByClass(ilAdministrationGUI::class, self::P_CNAME, $_GET[self::P_CNAME]);
520 $this->ctrl->setParameterByClass(ilAdministrationGUI::class, self::P_SLOT_ID, $_GET[self::P_SLOT_ID]);
521 $this->ctrl->setParameterByClass(ilAdministrationGUI::class, self::P_PLUGIN_ID, $_GET[self::P_PLUGIN_ID]);
522 ilUtil::redirect(
"ilias.php?admin_mode=settings&baseClass=ilAdministrationGUI" .
523 "&cmd=jumpToPluginSlot&ref_id=" . $_GET[
"ref_id"] .
"&ctype=" . $_GET[self::P_CTYPE] .
524 "&cname=" . $_GET[self::P_CNAME] .
"&slot_id=" . $_GET[self::P_SLOT_ID] .
"&plugin_id=" . $_GET[self::P_PLUGIN_ID]);
530 $_GET[self::P_CTYPE],
531 $_GET[self::P_CNAME],
532 $_GET[self::P_SLOT_ID],
533 $_GET[self::P_PLUGIN_NAME]
541 ilUtil::sendSuccess($this->lng->txt(
"cmps_plugin_deactivated"),
true);
544 $this->ctrl->setParameter($this, self::P_CTYPE,
$_GET[self::P_CTYPE]);
545 $this->ctrl->setParameter($this, self::P_CNAME,
$_GET[self::P_CNAME]);
546 $this->ctrl->setParameter($this, self::P_SLOT_ID,
$_GET[self::P_SLOT_ID]);
548 if (
$_GET[self::P_PLUGIN_ID]) {
549 $this->ctrl->setParameter($this, self::P_PLUGIN_ID,
$_GET[self::P_PLUGIN_ID]);
550 $this->ctrl->redirect($this, self::CMD_SHOW_PLUGIN);
552 $this->ctrl->redirect($this, self::CMD_DEFAULT);
559 $_GET[self::P_CTYPE],
560 $_GET[self::P_CNAME],
561 $_GET[self::P_SLOT_ID],
562 $_GET[self::P_PLUGIN_NAME]
565 $pl->updateLanguages();
567 $this->ctrl->setParameter($this, self::P_CTYPE,
$_GET[self::P_CTYPE]);
568 $this->ctrl->setParameter($this, self::P_CNAME,
$_GET[self::P_CNAME]);
569 $this->ctrl->setParameter($this, self::P_SLOT_ID,
$_GET[self::P_SLOT_ID]);
571 if (
$_GET[self::P_PLUGIN_ID]) {
572 $this->ctrl->setParameter($this, self::P_PLUGIN_ID,
$_GET[self::P_PLUGIN_ID]);
573 $this->ctrl->redirect($this, self::CMD_SHOW_PLUGIN);
575 $this->ctrl->redirect($this, self::CMD_DEFAULT);
582 $ilPluginAdmin = $DIC[
'ilPluginAdmin'];
585 $_GET[self::P_CTYPE],
586 $_GET[self::P_CNAME],
587 $_GET[self::P_SLOT_ID],
588 $_GET[self::P_PLUGIN_NAME]
591 $pl_meta = $ilPluginAdmin->getAllData(
592 $_GET[self::P_CTYPE],
593 $_GET[self::P_CNAME],
594 $_GET[self::P_SLOT_ID],
595 $_GET[self::P_PLUGIN_NAME]
598 $activation = ((bool) $pl_meta[
"activation_possible"] || (
bool) $pl_meta[
"is_active"]);
599 $reason = $pl_meta[
"inactive_reason"];
601 $question = $activation
602 ? sprintf($this->lng->txt(
"cmps_uninstall_confirm"), $pl->getPluginName())
603 : sprintf($this->lng->txt(
"cmps_uninstall_inactive_confirm"), $pl->getPluginName(), $reason);
605 $this->ctrl->setParameter($this, self::P_CTYPE,
$_GET[self::P_CTYPE]);
606 $this->ctrl->setParameter($this, self::P_CNAME,
$_GET[self::P_CNAME]);
607 $this->ctrl->setParameter($this, self::P_SLOT_ID,
$_GET[self::P_SLOT_ID]);
608 $this->ctrl->setParameter($this, self::P_PLUGIN_NAME,
$_GET[self::P_PLUGIN_NAME]);
611 $confirmation_gui->setFormAction($this->ctrl->getFormAction($this));
612 $confirmation_gui->setHeaderText($question);
613 $confirmation_gui->setCancel($this->lng->txt(
"cancel"), self::CMD_DEFAULT);
614 $confirmation_gui->setConfirm($this->lng->txt(
"cmps_uninstall"), self::CMD_UNINSTALL_PLUGIN);
616 $this->tpl->setContent($confirmation_gui->getHTML());
622 $_GET[self::P_CTYPE],
623 $_GET[self::P_CNAME],
624 $_GET[self::P_SLOT_ID],
625 $_GET[self::P_PLUGIN_NAME]
633 ilUtil::sendSuccess($this->lng->txt(
"cmps_plugin_uninstalled"),
true);
639 ilGlobalCache::flushAll();
642 $this->ctrl->setParameter($this, self::P_CTYPE,
$_GET[self::P_CTYPE]);
643 $this->ctrl->setParameter($this, self::P_CNAME,
$_GET[self::P_CNAME]);
644 $this->ctrl->setParameter($this, self::P_SLOT_ID,
$_GET[self::P_SLOT_ID]);
645 $this->ctrl->redirect($this, self::CMD_DEFAULT);
static getComponentObject($a_ctype, $a_cname)
Get component object.
static getPluginObject(string $a_ctype, string $a_cname, string $a_slot_id, string $a_pname)
setValue($a_value)
Set Value.
Class ilPluginsOverviewTableFilterGUI.
static getDBUpdateScriptName(string $a_ctype, string $a_cname, string $a_slot_name, string $a_pname)
getAdminTabs()
Get tabs public.
static getAvailableLangFiles(string $a_lang_directory)
Get array of all language files in the plugin.
static lookupSlotName($a_ctype, $a_cname, $a_slot_id)
Lookup slot name for component and slot id.
const CMD_DEACTIVATE_PLUGIN
executeCommand()
Execute command public.
const CMD_CONFIRM_UNINSTALL_PLUGIN
static getPluginRecord(string $a_ctype, string $a_cname, string $a_slot_id, string $a_pname)
const CMD_UNINSTALL_PLUGIN
prepareOutput($a_show_subobjects=true)
prepare output
const CMD_ACTIVATE_PLUGIN
Class ilObjectGUI Basic methods of all Output classes.
static hasConfigureClass(string $a_slot_dir, array $plugin_data, array $plugin_db_data)
Has the plugin a configure class?
static getPluginObject($a_ctype, $a_cname, $a_slot_id, $a_pname)
Get Plugin Object.
static getConfigureClassName(array $plugin_data)
Get plugin configure class name.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
TableGUI class for components listing.
This class represents a non editable value in a property form.
TableGUI class for components listing.
Components (Modules, Services, Plugins) Settings.
__construct(Container $dic, ilPlugin $plugin)
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
static redirect($a_script)
const CMD_JUMP_TO_PLUGIN_SLOT
__construct($a_data, int $a_id, bool $a_call_by_reference=true, bool $a_prepare_output=true)
ilObjComponentSettingsGUI constructor.
Confirmation screen class.
const CMD_REFRESH_LANGUAGES