function showPlugin()
 {
     global $ilCtrl, $ilTabs, $lng, $tpl, $ilDB, $ilToolbar;
     if (!$_GET["ctype"] || !$_GET["cname"] || !$_GET["slot_id"] || !$_GET["plugin_id"]) {
         $ilCtrl->redirect($this, "listPlugins");
     }
     include_once "./Services/Component/classes/class.ilPluginSlot.php";
     $slot = new ilPluginSlot($_GET["ctype"], $_GET["cname"], $_GET["slot_id"]);
     $plugin = null;
     foreach ($slot->getPluginsInformation() as $item) {
         if ($item["id"] == $_GET["plugin_id"]) {
             $plugin = $item;
             break;
         }
     }
     if (!$plugin) {
         $ilCtrl->redirect($this, "listPlugins");
     }
     $ilTabs->clearTargets();
     $ilTabs->setBackTarget($lng->txt("cmps_plugins"), $ilCtrl->getLinkTarget($this, "listPlugins"));
     $ilCtrl->setParameter($this, "ctype", $_GET["ctype"]);
     $ilCtrl->setParameter($this, "cname", $_GET["cname"]);
     $ilCtrl->setParameter($this, "slot_id", $_GET["slot_id"]);
     $ilCtrl->setParameter($this, "plugin_id", $_GET["plugin_id"]);
     $ilCtrl->setParameter($this, "pname", $plugin["name"]);
     $langs = ilPlugin::getAvailableLangFiles($slot->getPluginsDirectory() . "/" . $plugin["name"] . "/lang");
     // dbupdate
     $file = ilPlugin::getDBUpdateScriptName($_GET["ctype"], $_GET["cname"], ilPluginSlot::lookupSlotName($_GET["ctype"], $_GET["cname"], $_GET["slot_id"]), $plugin["name"]);
     $db_curr = $db_file = null;
     if (@is_file($file)) {
         include_once "./Services/Component/classes/class.ilPluginDBUpdate.php";
         $dbupdate = new ilPluginDBUpdate($_GET["ctype"], $_GET["cname"], $_GET["slot_id"], $plugin["name"], $ilDB, true, "");
         $db_curr = $dbupdate->getCurrentVersion();
         $db_file = $dbupdate->getFileVersion();
         /* update command
         			if ($db_file > $db_curr)
         			{
         				$ilToolbar->addButton($lng->txt("cmps_update_db"),
         					$ilCtrl->getLinkTarget($this, "updatePluginDB"));
         			} */
     }
     // toolbar actions
     if ($plugin["activation_possible"]) {
         $ilToolbar->addButton($lng->txt("cmps_activate"), $ilCtrl->getLinkTarget($this, "activatePlugin"));
     }
     // deactivation/refresh languages button
     if ($plugin["is_active"]) {
         // refresh languages button
         if (count($langs) > 0) {
             $ilToolbar->addButton($lng->txt("cmps_refresh"), $ilCtrl->getLinkTarget($this, "refreshLanguages"));
         }
         // configure button
         if (ilPlugin::hasConfigureClass($slot->getPluginsDirectory(), $plugin["name"]) && $ilCtrl->checkTargetClass(ilPlugin::getConfigureClassName($plugin["name"]))) {
             $ilToolbar->addButton($lng->txt("cmps_configure"), $ilCtrl->getLinkTargetByClass(strtolower(ilPlugin::getConfigureClassName($plugin["name"])), "configure"));
         }
         // deactivate button
         $ilToolbar->addButton($lng->txt("cmps_deactivate"), $ilCtrl->getLinkTarget($this, "deactivatePlugin"));
     }
     // update button
     if ($plugin["needs_update"]) {
         $ilToolbar->addButton($lng->txt("cmps_update"), $ilCtrl->getLinkTarget($this, "updatePlugin"));
     }
     // info
     $resp = array();
     if (strlen($plugin["responsible"])) {
         $responsibles = explode('/', $plugin["responsible_mail"]);
         foreach ($responsibles as $responsible) {
             if (!strlen($responsible = trim($responsible))) {
                 continue;
             }
             $resp[] = $responsible;
         }
         $resp = $plugin["responsible"] . " (" . implode(" / ", $resp) . ")";
     }
     if ($plugin["is_active"]) {
         $status = $lng->txt("cmps_active");
     } else {
         $r = $status["inactive_reason"] != "" ? " (" . $status["inactive_reason"] . ")" : "";
         $status = $lng->txt("cmps_inactive") . $r;
     }
     $info[""][$lng->txt("cmps_name")] = $plugin["name"];
     $info[""][$lng->txt("cmps_id")] = $plugin["id"];
     $info[""][$lng->txt("cmps_version")] = $plugin["version"];
     if ($resp) {
         $info[""][$lng->txt("cmps_responsible")] = $resp;
     }
     $info[""][$lng->txt("cmps_ilias_min_version")] = $plugin["ilias_min_version"];
     $info[""][$lng->txt("cmps_ilias_max_version")] = $plugin["ilias_max_version"];
     $info[""][$lng->txt("cmps_status")] = $status;
     if (sizeof($langs)) {
         $lang_files = array();
         foreach ($langs as $lang) {
             $lang_files[] = $lang["file"];
         }
         $info[""][$lng->txt("cmps_languages")] = implode(", ", $lang_files);
     } else {
         $info[""][$lng->txt("cmps_languages")] = $lng->txt("cmps_no_language_file_available");
     }
     $info[$lng->txt("cmps_basic_files")]["plugin.php"] = $plugin["plugin_php_file_status"] ? $lng->txt("cmps_available") : $lng->txt("cmps_missing");
     $info[$lng->txt("cmps_basic_files")][$lng->txt("cmps_class_file")] = ($plugin["class_file_status"] ? $lng->txt("cmps_available") : $lng->txt("cmps_missing")) . " (" . $plugin["class_file"] . ")";
     if (!$db_file) {
         $info[$lng->txt("cmps_database")][$lng->txt("file")] = $lng->txt("cmps_no_db_update_file_available");
     } else {
         $info[$lng->txt("cmps_database")][$lng->txt("file")] = "dbupdate.php";
         $info[$lng->txt("cmps_database")][$lng->txt("cmps_current_version")] = $db_curr;
         $info[$lng->txt("cmps_database")][$lng->txt("cmps_file_version")] = $db_file;
     }
     include_once "Services/Form/classes/class.ilPropertyFormGUI.php";
     $form = new ilPropertyFormGUI();
     $form->setTitle($lng->txt("cmps_plugin"));
     foreach ($info as $section => $items) {
         if (trim($section)) {
             $sec = new ilFormSectionHeaderGUI();
             $sec->setTitle($section);
             $form->addItem($sec);
         }
         foreach ($items as $key => $value) {
             $non = new ilNonEditableValueGUI($key);
             $non->setValue($value);
             $form->addItem($non);
         }
     }
     $tpl->setContent($form->getHTML());
 }
 /**
  * Standard Version of Fill Row. Most likely to
  * be overwritten by derived class.
  */
 protected function fillRow($a_set)
 {
     global $lng, $ilCtrl, $ilDB;
     $ilCtrl->setParameter($this->parent_obj, "ctype", $_GET["ctype"]);
     $ilCtrl->setParameter($this->parent_obj, "cname", $_GET["cname"]);
     $ilCtrl->setParameter($this->parent_obj, "slot_id", $_GET["slot_id"]);
     $ilCtrl->setParameter($this->parent_obj, "pname", $a_set["name"]);
     // dbupdate
     $file = ilPlugin::getDBUpdateScriptName($_GET["ctype"], $_GET["cname"], ilPluginSlot::lookupSlotName($_GET["ctype"], $_GET["cname"], $_GET["slot_id"]), $a_set["name"]);
     if (@is_file($file)) {
         include_once "./Services/Component/classes/class.ilPluginDBUpdate.php";
         $dbupdate = new ilPluginDBUpdate($_GET["ctype"], $_GET["cname"], $_GET["slot_id"], $a_set["name"], $ilDB, true, "");
         // update command
         /*			if ($dbupdate->getFileVersion() > $dbupdate->getCurrentVersion())
         			{
         				$this->tpl->setCurrentBlock("db_update_cmd");
         				$this->tpl->setVariable("TXT_UPDATE_DB",
         					$lng->txt("cmps_update_db"));
         				$this->tpl->setVariable("HREF_UPDATE_DB",
         					$ilCtrl->getLinkTarget($this->parent_obj, "updatePluginDB"));
         				$this->tpl->parseCurrentBlock();
         			}
         */
         // db version
         $this->tpl->setCurrentBlock("db_versions");
         $this->tpl->setVariable("TXT_CURRENT_VERSION", $lng->txt("cmps_current_version"));
         $this->tpl->setVariable("VAL_CURRENT_VERSION", $dbupdate->getCurrentVersion());
         $this->tpl->setVariable("TXT_FILE_VERSION", $lng->txt("cmps_file_version"));
         $this->tpl->setVariable("VAL_FILE_VERSION", $dbupdate->getFileVersion());
         $this->tpl->parseCurrentBlock();
         $this->tpl->setCurrentBlock("db_update");
         $this->tpl->setVariable("DB_UPDATE_FILE", "dbupdate.php");
     } else {
         $this->tpl->setCurrentBlock("db_update");
         $this->tpl->setVariable("DB_UPDATE_FILE", $lng->txt("cmps_no_db_update_file_available"));
     }
     $this->tpl->parseCurrentBlock();
     // language files
     $langs = ilPlugin::getAvailableLangFiles($this->slot->getPluginsDirectory() . "/" . $a_set["name"] . "/lang");
     if (count($langs) == 0) {
         $this->tpl->setCurrentBlock("lang");
         $this->tpl->setVariable("VAL_LANG_FILE", $lng->txt("cmps_no_language_file_available"));
         $this->tpl->parseCurrentBlock();
     }
     foreach ($langs as $lang) {
         $this->tpl->setCurrentBlock("lang");
         $this->tpl->setVariable("VAL_LANG_FILE", $lang["file"]);
         $this->tpl->parseCurrentBlock();
     }
     // activation button
     if ($a_set["activation_possible"]) {
         $this->tpl->setCurrentBlock("activate");
         $this->tpl->setVariable("HREF_ACTIVATE", $ilCtrl->getLinkTarget($this->parent_obj, "activatePlugin"));
         $this->tpl->setVariable("TXT_ACTIVATE", $lng->txt("cmps_activate"));
         $this->tpl->parseCurrentBlock();
     }
     // deactivation/refresh languages button
     if ($a_set["is_active"]) {
         // deactivate button
         $this->tpl->setCurrentBlock("deactivate");
         $this->tpl->setVariable("HREF_DEACTIVATE", $ilCtrl->getLinkTarget($this->parent_obj, "deactivatePlugin"));
         $this->tpl->setVariable("TXT_DEACTIVATE", $lng->txt("cmps_deactivate"));
         $this->tpl->parseCurrentBlock();
         // refresh languages button
         if (count($langs) > 0) {
             $this->tpl->setCurrentBlock("refresh_langs");
             $this->tpl->setVariable("HREF_REFRESH_LANGS", $ilCtrl->getLinkTarget($this->parent_obj, "refreshLanguages"));
             $this->tpl->setVariable("TXT_REFRESH_LANGS", $lng->txt("cmps_refresh"));
             $this->tpl->parseCurrentBlock();
         }
         // configure button
         if (ilPlugin::hasConfigureClass($this->slot->getPluginsDirectory(), $a_set["name"]) && $ilCtrl->checkTargetClass(ilPlugin::getConfigureClassName($a_set["name"]))) {
             $this->tpl->setCurrentBlock("configure");
             $this->tpl->setVariable("HREF_CONFIGURE", $ilCtrl->getLinkTargetByClass(strtolower(ilPlugin::getConfigureClassName($a_set["name"])), "configure"));
             $this->tpl->setVariable("TXT_CONFIGURE", $lng->txt("cmps_configure"));
             $this->tpl->parseCurrentBlock();
         }
     }
     // update button
     if ($a_set["needs_update"]) {
         $this->tpl->setCurrentBlock("update");
         $this->tpl->setVariable("HREF_UPDATE", $ilCtrl->getLinkTarget($this->parent_obj, "updatePlugin"));
         $this->tpl->setVariable("TXT_UPDATE", $lng->txt("cmps_update"));
         $this->tpl->parseCurrentBlock();
     }
     if (strlen($a_set["responsible"])) {
         $responsibles = explode('/', $a_set["responsible_mail"]);
         $first_handled = false;
         foreach ($responsibles as $responsible) {
             if (!strlen($responsible = trim($responsible))) {
                 continue;
             }
             if ($first_handled) {
                 $this->tpl->touchBlock('plugin_responsible_sep');
             }
             $this->tpl->setCurrentBlock("plugin_responsible");
             $this->tpl->setVariable("VAL_PLUGIN_RESPONSIBLE_MAIL", $responsible);
             $this->tpl->parseCurrentBlock();
             $first_handled = true;
         }
         $this->tpl->setCurrentBlock("responsible_mail");
         $this->tpl->parseCurrentBlock();
         $this->tpl->setCurrentBlock("responsible");
         $this->tpl->setVariable("TXT_RESPONSIBLE", $lng->txt("cmps_responsible"));
         $this->tpl->setVariable("VAL_PLUGIN_RESPONSIBLE", $a_set["responsible"]);
         $this->tpl->parseCurrentBlock();
     }
     $this->tpl->setVariable("VAL_PLUGIN_NAME", $a_set["name"]);
     $this->tpl->setVariable("VAL_PLUGIN_ID", $a_set["id"]);
     $this->tpl->setVariable("TXT_PLUGIN_NAME", $lng->txt("cmps_name"));
     $this->tpl->setVariable("TXT_PLUGIN_ID", $lng->txt("cmps_id"));
     $this->tpl->setVariable("TXT_PLUGIN_VERSION", $lng->txt("cmps_version"));
     $this->tpl->setVariable("TXT_PHP_FILE", "plugin.php");
     $this->tpl->setVariable("TXT_CLASS_FILE", $lng->txt("cmps_class_file"));
     $this->tpl->setVariable("VAL_CLASS_FILE", $a_set["class_file"]);
     $this->tpl->setVariable("TXT_VERSION", $lng->txt("cmps_version"));
     $this->tpl->setVariable("VAL_PLUGIN_VERSION", $a_set["version"]);
     $this->tpl->setVariable("TXT_ILIAS_MIN", $lng->txt("cmps_ilias_min_version"));
     $this->tpl->setVariable("VAL_ILIAS_MIN", $a_set["ilias_min_version"]);
     $this->tpl->setVariable("TXT_ILIAS_MAX", $lng->txt("cmps_ilias_max_version"));
     $this->tpl->setVariable("VAL_ILIAS_MAX", $a_set["ilias_max_version"]);
     $this->tpl->setVariable("TXT_STATUS", $lng->txt("cmps_status"));
     if ($a_set["is_active"]) {
         $this->tpl->setVariable("VAL_STATUS", $lng->txt("cmps_active"));
     } else {
         $r = $a_set["inactive_reason"] != "" ? " (" . $a_set["inactive_reason"] . ")" : "";
         $this->tpl->setVariable("VAL_STATUS", $lng->txt("cmps_inactive") . $r);
     }
     if ($a_set["plugin_php_file_status"]) {
         $this->tpl->setVariable("VAL_PLUGIN_PHP_FILE_STATUS", $lng->txt("cmps_available"));
     } else {
         $this->tpl->setVariable("VAL_PLUGIN_PHP_FILE_STATUS", $lng->txt("cmps_missing"));
     }
     if ($a_set["class_file_status"]) {
         $this->tpl->setVariable("VAL_CLASS_FILE_STATUS", $lng->txt("cmps_available"));
     } else {
         $this->tpl->setVariable("VAL_CLASS_FILE_STATUS", $lng->txt("cmps_missing"));
     }
 }
Example #3
0
 /**
  * Update plugin
  */
 final function update()
 {
     global $ilDB, $ilCtrl;
     ilCachedComponentData::flush();
     $result = $this->beforeUpdate();
     if ($result === false) {
         return false;
     }
     // DB update
     if ($result === true) {
         $result = $this->updateDatabase();
     }
     // Load language files
     $this->updateLanguages();
     // load control structure
     include_once "./setup/classes/class.ilCtrlStructureReader.php";
     $structure_reader = new ilCtrlStructureReader();
     $structure_reader->readStructure(true, "./" . $this->getDirectory(), $this->getPrefix(), $this->getDirectory());
     //		$ilCtrl->storeCommonStructures();
     // add config gui to the ctrl calls
     $ilCtrl->insertCtrlCalls("ilobjcomponentsettingsgui", ilPlugin::getConfigureClassName($this->getPluginName()), $this->getPrefix());
     // set last update version to current version
     if ($result === true) {
         $q = "UPDATE il_plugin SET last_update_version = " . $ilDB->quote($this->getVersion(), "text") . " WHERE component_type = " . $ilDB->quote($this->getComponentType(), "text") . " AND component_name = " . $ilDB->quote($this->getComponentName(), "text") . " AND slot_id = " . $ilDB->quote($this->getSlotId(), "text") . " AND name = " . $ilDB->quote($this->getPluginName(), "text");
         $ilDB->manipulate($q);
         $this->afterUpdate();
     }
     return $result;
 }
 /**
  * Standard Version of Fill Row. Most likely to
  * be overwritten by derived class.
  */
 protected function fillRow($a_set)
 {
     global $ilCtrl, $lng;
     // actions
     $ilCtrl->setParameter($this->parent_obj, "ctype", $a_set["component_type"]);
     $ilCtrl->setParameter($this->parent_obj, "cname", $a_set["component_name"]);
     $ilCtrl->setParameter($this->parent_obj, "slot_id", $a_set["slot_id"]);
     $action = array();
     $ilCtrl->setParameter($this->parent_obj, "plugin_id", $a_set["plugin_id"]);
     $action[$lng->txt("info")] = $ilCtrl->getLinkTarget($this->parent_obj, "showPlugin");
     $ilCtrl->setParameter($this->parent_obj, "plugin_id", "");
     $ilCtrl->setParameter($this->parent_obj, "pname", $a_set["plugin_name"]);
     if ($a_set["plugin_active"]) {
         if ($a_set["has_lang"]) {
             $action[$lng->txt("cmps_refresh")] = $ilCtrl->getLinkTarget($this->parent_obj, "refreshLanguages");
         }
         if ($a_set["has_conf"]) {
             $action[$lng->txt("cmps_configure")] = $ilCtrl->getLinkTargetByClass(strtolower(ilPlugin::getConfigureClassName($a_set["plugin_name"])), "configure");
         }
         $action[$lng->txt("cmps_deactivate")] = $ilCtrl->getLinkTarget($this->parent_obj, "deactivatePlugin");
     } else {
         if ($a_set["activation_possible"]) {
             $action[$lng->txt("cmps_activate")] = $ilCtrl->getLinkTarget($this->parent_obj, "activatePlugin");
         }
     }
     // update button
     if ($a_set["needs_update"]) {
         $action[$lng->txt("cmps_update")] = $ilCtrl->getLinkTarget($this->parent_obj, "updatePlugin");
     }
     $ilCtrl->setParameter($this->parent_obj, "pname", "");
     if (sizeof($action)) {
         $alist = new ilAdvancedSelectionListGUI();
         $alist->setId($a_set["plugin_id"]);
         $alist->setListTitle($lng->txt("actions"));
         foreach ($action as $caption => $cmd) {
             $alist->addItem($caption, "", $cmd);
         }
         $this->tpl->setVariable("ACTION_SELECTOR", $alist->getHTML());
     }
     $this->tpl->setVariable("TXT_SLOT_NAME", $a_set["slot_name"]);
     $this->tpl->setVariable("TXT_COMP_NAME", $a_set["component_type"] . "/" . $a_set["component_name"]);
     $act_str = $a_set["plugin_active"] ? "<b>" . $lng->txt("yes") . "</b>" : $lng->txt("no");
     $this->tpl->setVariable("TXT_PLUGIN_NAME", $a_set["plugin_name"]);
     $this->tpl->setVariable("TXT_ACTIVE", $act_str);
 }