97 abstract public function getSlot();
148 $this->lastupdateversion = $a_lastupdateversion;
168 $this->version = $a_version;
186 $this->iliasminversion = $a_iliasminversion;
204 $this->iliasmaxversion = $a_iliasmaxversion;
224 $this->active = $a_active;
242 $this->slot = $a_slot;
260 $this->dbversion = $a_dbversion;
279 $ilDB = $DIC->database();
283 $q =
"UPDATE il_plugin SET db_version = " .
$ilDB->quote((
int) $this->
getDBVersion(),
"integer") .
289 $ilDB->manipulate($q);
307 public static function _getDirectory(
string $a_ctype,
string $a_cname,
string $a_slot_id,
string $a_pname) : string
347 if (!@is_dir($a_lang_directory)) {
351 $dir = opendir($a_lang_directory);
352 while ($file = readdir($dir)) {
357 if (@is_file($a_lang_directory .
"/" . $file)) {
358 if (substr($file, 0, 6) ==
"ilias_" 359 && substr($file, strlen($file) - 5) ==
".lang" 362 "key" => substr($file, 6, 2),
364 "path" => $a_lang_directory .
"/" . $file,
384 public static function hasConfigureClass(
string $a_slot_dir, array $plugin_data, array $plugin_db_data) : bool
391 if (is_file($a_slot_dir .
"/" . $plugin_data[
"name"] .
"/classes/class.il" . $plugin_data[
"name"] .
"ConfigGUI.php")) {
409 return "il" . $plugin_data[
"name"] .
"ConfigGUI";
430 public static function getDBUpdateScriptName(
string $a_ctype,
string $a_cname,
string $a_slot_name,
string $a_pname) : string
432 return "Customizing/global/plugins/" . $a_ctype .
"/" . $a_cname .
"/" .
433 $a_slot_name .
"/" . $a_pname .
"/sql/dbupdate.php";
453 ilGlobalCache::flushAll();
456 if (!isset($a_lang_keys)) {
457 $a_lang_keys = array();
459 if ($langObj->isInstalled()) {
460 $a_lang_keys[] = $langObj->getKey();
469 foreach ($langs as
$lang) {
471 if (!in_array($lang[
'key'], $a_lang_keys)) {
476 $lang_array = array();
482 if (is_array(
$txt)) {
483 foreach (
$txt as $row) {
484 if ($row[0] !=
"#" && strpos($row,
"#:#") > 0) {
485 $a = explode(
"#:#", trim($row));
486 $identifier = $prefix .
"_" . trim(
$a[0]);
487 $value = trim(
$a[1]);
489 if (isset($local_changes[$identifier])) {
490 $lang_array[$identifier] = $local_changes[$identifier];
492 $lang_array[$identifier] = $value;
500 ilObjLanguage::replaceLangModule($lang[
"key"], $prefix, $lang_array);
511 $ilDB = $DIC->database();
512 $lng = $DIC->language();
514 ilGlobalCache::flushAll();
526 $result = $dbupdate->applyUpdate();
528 if ($dbupdate->updateMsg ==
"no_changes") {
529 $message =
$lng->txt(
"no_changes") .
". " .
$lng->txt(
"database_is_uptodate");
531 foreach ($dbupdate->updateMsg as $row) {
532 $message .=
$lng->txt($row[
"msg"]) .
": " . $row[
"nr"] .
"<br/>";
537 ilGlobalCache::flushAll();
549 $lng = $DIC->language();
551 if (!$this->lang_initialised && is_object(
$lng)) {
553 $this->lang_initialised =
true;
561 public function txt(
string $a_var) : string
564 $lng = $DIC->language();
578 public static function lookupTxt(
string $a_mod_prefix,
string $a_pl_id,
string $a_lang_var) : string
581 $lng = $DIC->language();
584 $prefix = $a_mod_prefix .
"_" . $a_pl_id;
586 return $lng->txt($prefix .
"_" . $a_lang_var, $prefix);
598 public static function langExitsById(
string $pluginId,
string $langVar) : bool
601 $lng = $DIC->language();
604 $pl->loadLanguageModule();
606 return $lng->exists($pl->getPrefix() .
"_" . $langVar);
634 public static function _getImagePath(
string $a_ctype,
string $a_cname,
string $a_slot_id,
string $a_pname,
string $a_img) : string
637 if (is_int(strpos(
$img,
"Customizing"))) {
649 if (is_int(strpos(
$img,
"Customizing"))) {
655 return $plugin_directory .
"/templates/images/" . $a_img;
664 return self::_getImagePath(
685 if (is_int(strpos($css,
"Customizing"))) {
689 return $this->
getDirectory() .
"/templates/" . $a_css_file;
698 $a_tpl->addBlockFile(
714 public static function createPluginRecord(
string $a_ctype,
string $a_cname,
string $a_slot_id,
string $a_pname)
717 $ilDB = $DIC->database();
721 $q =
"INSERT INTO il_plugin (component_type, component_name, slot_id, name)" .
722 " VALUES (" .
$ilDB->quote($a_ctype,
"text") .
"," .
723 $ilDB->quote($a_cname,
"text") .
"," .
724 $ilDB->quote($a_slot_id,
"text") .
"," .
725 $ilDB->quote($a_pname,
"text") .
")";
727 $ilDB->manipulate($q);
740 public static function getPluginRecord(
string $a_ctype,
string $a_cname,
string $a_slot_id,
string $a_pname) : array
743 $rec = $cached_component->lookupPluginByName($a_pname);
745 if ($rec[
'component_type'] == $a_ctype and $rec[
'component_name'] == $a_cname and $rec[
'slot_id'] == $a_slot_id) {
748 throw new ilPluginException(
"No plugin record found for '{$a_ctype}', '{$a_cname}', '{$a_slot_id}', '{$a_pname}");
759 $ilPluginAdmin = $DIC[
'ilPluginAdmin'];
774 $ilPluginAdmin->getId(
775 $this->getComponentType(),
784 $ilPluginAdmin->getVersion(
785 $this->getComponentType(),
794 $ilPluginAdmin->getIliasMinVersion(
795 $this->getComponentType(),
804 $ilPluginAdmin->getIliasMaxVersion(
805 $this->getComponentType(),
838 abstract protected function slotInit();
856 $ilPluginAdmin = $DIC[
'ilPluginAdmin'];
858 return $ilPluginAdmin->isActive(
873 $ilPluginAdmin = $DIC[
'ilPluginAdmin'];
875 return $ilPluginAdmin->needsUpdate(
887 $ilDB = $DIC->database();
890 $q =
"UPDATE il_plugin SET plugin_id = " .
$ilDB->quote($this->
getId(),
"text") .
896 $ilDB->manipulate($q);
907 $ilDB = $DIC->database();
926 $q =
"UPDATE il_plugin SET active = " .
$ilDB->quote(1,
"integer") .
932 $ilDB->manipulate($q);
978 $ilDB = $DIC->database();
984 $q =
"UPDATE il_plugin SET active = " .
$ilDB->quote(0,
"integer") .
990 $ilDB->manipulate($q);
1016 $ilDB = $DIC->database();
1024 "DELETE FROM lng_data" .
1025 " WHERE module = " .
$ilDB->quote($prefix,
"text")
1028 "DELETE FROM lng_modules" .
1029 " WHERE module = " .
$ilDB->quote($prefix,
"text")
1037 $q =
"DELETE FROM il_plugin" .
1042 $ilDB->manipulate($q);
1072 $ilDB = $DIC->database();
1073 $ilCtrl = $DIC->ctrl();
1075 ilGlobalCache::flushAll();
1092 $structure_reader->readStructure(
1100 $ilCtrl->insertCtrlCalls(
1101 "ilobjcomponentsettingsgui",
1110 $q =
"UPDATE il_plugin SET last_update_version = " .
$ilDB->quote($this->
getVersion(),
"text") .
1116 $ilDB->manipulate($q);
1119 ilGlobalCache::flushAll();
1137 $reader->clearEvents();
1138 $reader->startParsing();
1154 $reader->clearEvents();
1190 $rec = $cached_component->lookCompId($a_ctype, $a_cname);
1195 $file =
"./Customizing/global/plugins/" . $a_ctype .
"/" .
1196 $a_cname .
"/" . $slot_name .
"/" .
1197 $a_pname .
"/classes/class.il" . $a_pname .
"Plugin.php";
1199 if (is_file($file)) {
1200 include_once($file);
1201 $class =
"il" . $a_pname .
"Plugin";
1206 throw new ilPluginException(
"File : ".$file.
" . does not Exist for plugin: ".$a_pname.
" Check if your 1207 plugin is still marked as active in the DB Table 'il_plugin' but not installed anymore.");
1221 public static function lookupStoredData(
string $a_ctype,
string $a_cname,
string $a_slot_id,
string $a_pname) : array
1224 $ilDB = $DIC->database();
1226 $q =
"SELECT * FROM il_plugin WHERE" .
1227 " component_type = " .
$ilDB->quote($a_ctype,
"text") .
" AND" .
1228 " component_name = " .
$ilDB->quote($a_cname,
"text") .
" AND" .
1229 " slot_id = " .
$ilDB->quote($a_slot_id,
"text") .
" AND" .
1230 " name = " .
$ilDB->quote($a_pname,
"text");
1232 $set =
$ilDB->query($q);
1234 if (
$ilDB->numRows($set) == 0) {
1238 return $ilDB->fetchAssoc($set);
1252 $ilPluginAdmin = $DIC[
'ilPluginAdmin'];
1258 $lookupActivePluginsBySlotId = $cached_component->lookupActivePluginsBySlotId($a_slot_id);
1259 foreach ($lookupActivePluginsBySlotId as $rec) {
1260 if ($ilPluginAdmin->isActive($a_ctype, $a_cname, $a_slot_id, $rec[
"name"])) {
1261 $plugins[] = $rec[
"name"];
1281 $ilPluginAdmin = $DIC[
'ilPluginAdmin'];
1285 $lookupActivePluginsBySlotId = $cached_component->lookupActivePluginsBySlotId($a_slot_id);
1286 foreach ($lookupActivePluginsBySlotId as $rec) {
1287 if ($ilPluginAdmin->isActive($a_ctype, $a_cname, $a_slot_id, $rec[
"name"])) {
1288 $plugins[] = $rec[
"plugin_id"];
1304 public static function lookupNameForId(
string $a_ctype,
string $a_cname,
string $a_slot_id,
string $a_plugin_id)
1307 $ilDB = $DIC->database();
1309 $q =
"SELECT name FROM il_plugin " .
1310 " WHERE component_type = " .
$ilDB->quote($a_ctype,
"text") .
1311 " AND component_name = " .
$ilDB->quote($a_cname,
"text") .
1312 " AND slot_id = " .
$ilDB->quote($a_slot_id,
"text") .
1313 " AND plugin_id = " .
$ilDB->quote($a_plugin_id,
"text");
1315 $set =
$ilDB->query($q);
1316 if ($rec =
$ilDB->fetchAssoc($set)) {
1317 return $rec[
"name"];
1330 public static function lookupIdForName(
string $a_ctype,
string $a_cname,
string $a_slot_id,
string $a_plugin_name) : string
1333 $ilDB = $DIC->database();
1335 $q =
"SELECT plugin_id FROM il_plugin " .
1336 " WHERE component_type = " .
$ilDB->quote($a_ctype,
"text") .
1337 " AND component_name = " .
$ilDB->quote($a_cname,
"text") .
1338 " AND slot_id = " .
$ilDB->quote($a_slot_id,
"text") .
1339 " AND name = " .
$ilDB->quote($a_plugin_name,
"text");
1341 $set =
$ilDB->query($q);
1342 if ($rec =
$ilDB->fetchAssoc($set)) {
1343 return $rec[
"plugin_id"];
1356 $ilDB = $DIC->database();
1358 $q =
"SELECT component_type, component_name, slot_id FROM il_plugin " 1359 .
" WHERE plugin_id = " .
$ilDB->quote($id,
"text");
1361 $set =
$ilDB->query($q);
1362 if ($rec =
$ilDB->fetchAssoc($set)) {
1364 $rec[
"component_type"],
1365 $rec[
"component_name"],
1417 return $dic->raw(
'ui.renderer');
1442 return $dic->raw($dic_key);
1451 return strval($this->message);
getTablePrefix()
Get db table plugin prefix.
writeDBVersion(int $a_dbversion)
loadLanguageModule()
Load language module for plugin.
static getPluginObject(string $a_ctype, string $a_cname, string $a_slot_id, string $a_pname)
setActive(bool $a_active)
Class AbstractStaticPluginMainMenuProvider.
static lookupId($a_type, $a_name)
Lookup ID of a component.
const ILIAS_VERSION_NUMERIC
includeClass($a_class_file_name)
Include (once) a class file.
static isVersionGreaterString($a_ver1, $a_ver2)
getImagePath(string $a_img)
Get image path.
static getStyleSheetLocation($mode="output", $a_css_name="", $a_css_location="")
get full style sheet file name (path inclusive) of current user
Class ChatMainBarProvider .
static getDBUpdateScriptName(string $a_ctype, string $a_cname, string $a_slot_name, string $a_pname)
static langExitsById(string $pluginId, string $langVar)
Is searched lang var available in plugin lang files.
needsUpdate()
Check whether update is needed.
static getInstalledLanguages()
Get the language objects of the installed languages.
static getAvailableLangFiles(string $a_lang_directory)
Get array of all language files in the plugin.
getTemplate(string $a_template, bool $a_par1=true, bool $a_par2=true)
gets a ilTemplate instance of a html-file in the plugin /templates
static lookupSlotName($a_ctype, $a_cname, $a_slot_id)
Lookup slot name for component and slot id.
afterUninstall()
This is Plugin-Specific and is triggered after the uninstall command of a plugin. ...
updateLanguages($a_lang_keys=null)
exchangeUIFactoryAfterInitialization(string $dic_key, \ILIAS\DI\Container $dic)
This methods allows to replace some factory for UI Components (see src/UI) of ILIAS after initializat...
static _getImagePath(string $a_ctype, string $a_cname, string $a_slot_id, string $a_pname, string $a_img)
readEventListening()
Read the event listening definitions from the plugin.xml (if file exists)
static getPluginRecord(string $a_ctype, string $a_cname, string $a_slot_id, string $a_pname)
getComponentName()
Get Component Name.
beforeActivation()
Before activation processing.
Class ilCtrlStructureReader.
static getPluginObjectByType($type)
Return either a repoObject plugin or a orgunit extension plugin or null if the type is not a plugin...
isActive()
Check whether plugin is active.
static lookupIdForName(string $a_ctype, string $a_cname, string $a_slot_id, string $a_plugin_name)
Class ilPluginGlobalScreenNullProvider.
static lookupNameForId(string $a_ctype, string $a_cname, string $a_slot_id, string $a_plugin_id)
getComponentType()
Get Component Type.
static createPluginRecord(string $a_ctype, string $a_cname, string $a_slot_id, string $a_pname)
init()
Object initialization.
afterInstall()
After install processing.
static getActivePluginsForSlot(string $a_ctype, string $a_cname, string $a_slot_id)
static lookupStoredData(string $a_ctype, string $a_cname, string $a_slot_id, string $a_pname)
Lookup information data in il_plugin.
afterActivation()
After activation processing.
static _getLocalChangesByModule($a_key, $a_module)
Get the local changes of a language module.
static lookupTypeInformationsForId(string $id)
setDBVersion(int $a_dbversion)
updateDatabase()
Update database.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
setIliasMinVersion(string $a_iliasminversion)
setIliasMaxVersion(string $a_iliasmaxversion)
static hasConfigureClass(string $a_slot_dir, array $plugin_data, array $plugin_db_data)
Has the plugin a configure class?
getDirectory()
Get Plugin Directory.
txt(string $a_var)
Get Language Variable (prefix will be prepended automatically)
getPrefix()
Get plugin prefix, used for lang vars.
static _getPluginsDirectory($a_ctype, $a_cname, $a_slot_id)
Get plugins directory.
static getConfigureClassName(array $plugin_data)
Get plugin configure class name.
afterUpdate()
After update processing.
getLastUpdateVersion()
Get Version of last update.
setSlotObject(ilPluginSlot $a_slot)
getGlobalScreenProviderCollection()
slotInit()
Object initialization done by slot.
static _getDirectory(string $a_ctype, string $a_cname, string $a_slot_id, string $a_pname)
Get plugin directory.
getStyleSheetLocation(string $a_css_file)
__init()
Default initialization.
getPluginName()
Get Plugin Name.
setLastUpdateVersion(string $a_lastupdateversion)
Set Version of last update.
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
promoteGlobalScreenProvider()
setVersion(string $a_version)
setMainBarProvider(AbstractStaticMainMenuPluginProvider $static_mai_menu_provider)
addBlockFile($a_tpl, $a_var, $a_block, $a_tplname)
Add template content to placeholder variable.
static getActivePluginIdsForSlot(string $a_ctype, string $a_cname, string $a_slot_id)
Get All active plugin ids for a slot.
getIliasMaxVersion()
Get Required ILIAS max.
static replaceLangEntry( $a_module, $a_identifier, $a_lang_key, $a_value, $a_local_change=null, $a_remarks=null)
Replace lang entry.
beforeUpdate()
Before update processing.
afterDeactivation()
After deactivation processing.
static lookupTxt(string $a_mod_prefix, string $a_pl_id, string $a_lang_var)
exchangeUIRendererAfterInitialization(\ILIAS\DI\Container $dic)
This methods allows to replace the UI Renderer (see src/UI) of ILIAS after initialization by returnin...
clearEventListening()
Clear the entries of this plugin in the event handling table.