ILIAS
trunk Revision v11.0_alpha-3011-gc6b235a2e85
|
language handling More...
Public Member Functions | |
__construct (string $a_lang_key) | |
Constructor read the single-language file and put this in an array text. More... | |
getLangKey () | |
Return lang key. More... | |
getDefaultLanguage () | |
Return default language. More... | |
getTextDirection () | |
Return text direction. More... | |
getContentLanguage () | |
Return content language. More... | |
txtlng (string $a_module, string $a_topic, string $a_language) | |
gets the text for a given topic in a given language if the topic is not in the list, the topic itself with "-" will be returned More... | |
txt (string $a_topic, string $a_default_lang_fallback_mod="") | |
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be returned More... | |
exists (string $a_topic) | |
Check if language entry exists. More... | |
loadLanguageModule (string $a_module) | |
Load language module. More... | |
getInstalledLanguages () | |
Get installed languages. More... | |
getUsedTopics () | |
Return used topics. More... | |
getUsedModules () | |
Return used modules. More... | |
getUserLanguage () | |
Return language of user. More... | |
getCustomLangPath () | |
toJS ($a_lang_key, ?ilGlobalTemplateInterface $a_tpl=null) | |
Transfer text to Javascript. More... | |
toJSMap (array $a_map, ?ilGlobalTemplateInterface $a_tpl=null) | |
Transfer text to Javascript. More... | |
__destruct () | |
destructor saves all language usages to db if log is enabled and ilDB exists More... | |
![]() | |
txt (string $a_topic, string $a_default_lang_fallback_mod="") | |
loadLanguageModule (string $a_module) | |
getLangKey () | |
toJS ($key) | |
Static Public Member Functions | |
static | _getInstalledLanguages () |
Get installed languages. More... | |
static | _lookupEntry (string $a_lang_key, string $a_mod, string $a_id) |
static | lookupId (string $a_lang_key) |
Lookup obj_id of language. More... | |
static | getFallbackInstance () |
Builds a global default language instance. More... | |
static | getGlobalInstance () |
Builds the global language object. More... | |
Data Fields | |
ILIAS | $ilias |
array | $text = [] |
string | $lang_default |
string | $lang_user |
string | $lang_path |
string | $lang_key |
string | $lang_name |
string | $separator = "#:#" |
string | $comment_separator = "###" |
array | $loaded_modules = array() |
Static Protected Member Functions | |
static | logUsage (string $a_module, string $a_identifier) |
saves tupel of language module and identifier More... | |
static | isUsageLogEnabled () |
checks if language usage log is enabled you need MySQL to use this function this function is automatically enabled if DEVMODE is on this function is also enabled if language_log is 1 More... | |
Protected Attributes | |
array | $cached_modules = array() |
array | $map_modules_txt = array() |
bool | $usage_log_enabled = false |
string | $cust_lang_path |
ilLogger | $log |
ilCachedLanguage | $global_cache |
Static Protected Attributes | |
static array | $used_topics = array() |
static array | $used_modules = array() |
static array | $lng_log = array() |
language handling
this class offers the language handling for an application. it works initially on one file: languages.txt from this file the class can generate many single language files. the constructor is called with a small language abbreviation e.g. $lng = new Language("en"); the constructor reads the single-languagefile en.lang and puts this into an array. with e.g. $lng->txt("user_updated"); you can translate a lang-topic into the actual language
Definition at line 42 of file class.ilLanguage.php.
ilLanguage::__construct | ( | string | $a_lang_key | ) |
Constructor read the single-language file and put this in an array text.
the text array is two-dimensional. First dimension is the language. Second dimension is the languagetopic. Content is the translation.
$a_lang_key language code (two characters), e.g. "de", "en", "in" Return false if reading failed, otherwise true
Reimplemented in ilSetupLanguage.
Definition at line 73 of file class.ilLanguage.php.
References $DIC, $ilSetting, $lang_default, getInstalledLanguages(), ilCachedLanguage\getInstance(), isUsageLogEnabled(), and loadLanguageModule().
ilLanguage::__destruct | ( | ) |
destructor saves all language usages to db if log is enabled and ilDB exists
Definition at line 547 of file class.ilLanguage.php.
|
static |
Get installed languages.
Definition at line 291 of file class.ilLanguage.php.
References $lang, and ilObject\_getObjectsByType().
Referenced by ilLanguageDetection\detect(), ilAdvancedMDTranslationGUI\getAvailableLanguagesOptions(), getGlobalInstance(), getInstalledLanguages(), and ilAdvancedMDRecordLanguageTableGUI\parse().
|
static |
Definition at line 305 of file class.ilLanguage.php.
References $DIC, $ilDB, $q, and logUsage().
Referenced by ilObjLTIAdministrationGUI\getConsumerForm(), ilAccountMail\replacePlaceholders(), txt(), and txtlng().
ilLanguage::exists | ( | string | $a_topic | ) |
Check if language entry exists.
Definition at line 218 of file class.ilLanguage.php.
Referenced by ilPersonalSkillExplorerGUI\getNodeIconAlt(), ilSkillTemplateTreeExplorerGUI\getNodeIconAlt(), and ilVirtualSkillTreeExplorerGUI\getNodeIconAlt().
ilLanguage::getContentLanguage | ( | ) |
Return content language.
Definition at line 145 of file class.ilLanguage.php.
References getLangKey(), and getUserLanguage().
Referenced by getTextDirection().
ilLanguage::getCustomLangPath | ( | ) |
Definition at line 379 of file class.ilLanguage.php.
References $cust_lang_path.
Referenced by ilObjLanguage\__construct().
ilLanguage::getDefaultLanguage | ( | ) |
Return default language.
Definition at line 125 of file class.ilLanguage.php.
Referenced by ilObjItemGroup\doCreate(), ilMultilingualism\getDefaultLanguage(), ilObjRepositorySettings\getNewItemGroups(), ilObjPortfolioAdministrationGUI\initAuthorshipForm(), and ilLanguageExtTableGUI\initFilter().
|
static |
Builds a global default language instance.
Definition at line 387 of file class.ilLanguage.php.
|
static |
Builds the global language object.
Definition at line 395 of file class.ilLanguage.php.
References $DIC, $ilSetting, _getInstalledLanguages(), ilSession\get(), and ilSession\set().
ilLanguage::getInstalledLanguages | ( | ) |
Get installed languages.
Reimplemented in ilSetupLanguage.
Definition at line 283 of file class.ilLanguage.php.
References _getInstalledLanguages().
Referenced by __construct(), ilObjSAHSLearningModule\getAffectiveLocalization(), ilObjPortfolioAdministrationGUI\initAuthorshipForm(), ilLanguageExtTableGUI\initFilter(), and ilObjPortfolioAdministrationGUI\saveAuthorship().
ilLanguage::getLangKey | ( | ) |
Return lang key.
Implements ILIAS\Language\Language.
Reimplemented in LanguageMock.
Definition at line 117 of file class.ilLanguage.php.
References $lang_key.
Referenced by ilPageConfig\addIntLinkFilter(), ilObjSAHSLearningModule\getAffectiveLocalization(), getContentLanguage(), and ilLanguageExtTableGUI\initFilter().
ilLanguage::getTextDirection | ( | ) |
Return text direction.
Definition at line 133 of file class.ilLanguage.php.
References getContentLanguage().
ilLanguage::getUsedModules | ( | ) |
Return used modules.
Definition at line 365 of file class.ilLanguage.php.
References $used_modules.
ilLanguage::getUsedTopics | ( | ) |
Return used topics.
Definition at line 356 of file class.ilLanguage.php.
References $used_topics.
ilLanguage::getUserLanguage | ( | ) |
Return language of user.
Definition at line 374 of file class.ilLanguage.php.
References $lang_user.
Referenced by ilObjLanguageExtGUI\__construct(), getContentLanguage(), ilObjRepositorySettings\getDefaultNewItemGrouping(), ilSkillNotifications\sendMail(), ilBookCronNotification\sendMails(), and ilMembershipCronMinMembers\sendMessage().
|
staticprotected |
checks if language usage log is enabled you need MySQL to use this function this function is automatically enabled if DEVMODE is on this function is also enabled if language_log is 1
Definition at line 524 of file class.ilLanguage.php.
Referenced by __construct().
ilLanguage::loadLanguageModule | ( | string | $a_module | ) |
Load language module.
Implements ILIAS\Language\Language.
Reimplemented in ilSetupLanguage, and LanguageMock.
Definition at line 226 of file class.ilLanguage.php.
References $DIC, $ilDB, $lang_key, $lang_user, $q, and ilDBConstants\FETCHMODE_ASSOC.
Referenced by ilObjSurveyAdministrationGUI\__construct(), ilObjExternalToolsSettingsGUI\__construct(), ilObjMediaCastGUI\__construct(), ilObjDashboardSettingsGUI\__construct(), ilObjMediaObjectGUI\__construct(), ilObjContentObjectGUI\__construct(), ilObjFileBasedLMGUI\__construct(), ilObjExerciseGUI\__construct(), ilObjLanguageExtGUI\__construct(), ilObjSAHSLearningModuleGUI\__construct(), ilPropertyFormGUI\__construct(), ilGlossaryEditorGUI\__construct(), ilHTLMEditorGUI\__construct(), ilHTLMPresentationGUI\__construct(), ilObjItemGroupListGUI\__construct(), ilMediaPoolPresentationGUI\__construct(), ilNewsForContextBlockGUI\__construct(), ilNewsItemGUI\__construct(), ilPDNewsBlockGUI\__construct(), ilPDNewsGUI\__construct(), ilPDNotesGUI\__construct(), ilPortfolioAccessHandler\__construct(), ilPortfolioRepositoryGUI\__construct(), ilRatingGUI\__construct(), ilPersonalSkillsGUI\__construct(), ilObjStudyProgrammeGUI\__construct(), ilPDTasksBlockGUI\__construct(), ilWikiFunctionsBlockGUI\__construct(), ILIAS\StudyProgramme\Certificate\ilStudyProgrammePlaceholderDescription\__construct(), ILIAS\Test\Certificate\TestPlaceholderDescription\__construct(), ILIAS\Test\Certificate\TestPlaceholderValues\__construct(), ilDefaultPlaceholderValues\__construct(), ilCmiXapiPlaceholderDescription\__construct(), ilLTIConsumerPlaceholderDescription\__construct(), ILIAS\Exercise\Certificate\ExercisePlaceholderDescription\__construct(), ilScormPlaceholderValues\__construct(), ILIAS\Exercise\Certificate\ExercisePlaceholderValues\__construct(), ilWorkspaceAccessHandler\__construct(), ilTable2GUI\__construct(), ilObjSCORM2004LearningModuleGUI\__construct(), ilObjStudyProgrammeSettingsGUI\__construct(), ilObjStudyProgrammeIndividualPlanGUI\__construct(), ilDefaultPlaceholderDescription\__construct(), ilBlogPostingGUI\__construct(), ilSCORM2004TrackingItemsTableGUI\__construct(), ilSCORMTrackingItemsTableGUI\__construct(), ilRatingCategoryGUI\__construct(), ilObjectFeedWriter\__construct(), ilTaxAssignInputGUI\__construct(), ilTaxSelectInputGUI\__construct(), ILIAS\Course\Certificate\CoursePlaceholderDescription\__construct(), ilDclContentExporter\__construct(), ilCertificateLearningHistoryProvider\__construct(), ilPageMultiLangTableGUI\__construct(), ilPageLayoutTableGUI\__construct(), ilMultiSrtConfirmationTable2GUI\__construct(), ilClipboardTableGUI\__construct(), ilPollUserTableGUI\__construct(), ilRoleAssignmentTableGUI\__construct(), ilMediaPoolTableGUI\__construct(), ilScormPlaceholderDescription\__construct(), ilBadgeManagementGUI\__construct(), ilLMPresentationGUI\__construct(), __construct(), ilLMPageObjectGUI\_goto(), ilCleanCOPageHistoryCronjob\addCustomSettingsToForm(), ilObjectActivation\addListGUIActivationProperty(), ilObjItemGroupGUI\afterConstructor(), ilObjMediaPoolGUI\afterConstructor(), ilWikiPageConfig\configureByObjectId(), ilExAssTypeWikiTeamGUI\createWiki(), ilObjContentObjectGUI\editMenuProperties(), ilBadgeProfileGUI\executeCommand(), ilAchievementsGUI\executeCommand(), ilGlossaryPresentationGUI\executeCommand(), ilSharedResourceGUI\executeCommand(), ilSAHSPresentationGUI\executeCommand(), ilSAHSEditGUI\executeCommand(), ilObjWikiSettingsGUI\executeCommand(), ilSCORM2004TrackingItems\exportSelectedCoreColumns(), ilSCORMTrackingItemsTableGUI\fillRowCSV(), ilSCORMTrackingItemsTableGUI\fillRowExcel(), ILIAS\COPage\Page\PageQueryActionHandler\getActionsDropDown(), ILIAS\Exercise\Assignment\Mandatory\RandomAssignmentsManager\getDeniedDeactivationReasons(), ilBookCronNotification\getDescription(), ilBookingPrefBookCron\getDescription(), ilCleanCOPageHistoryCronjob\getDescription(), ilCourseMailTemplateMemberContext\getDescription(), ilExcCronFeedbackNotification\getDescription(), ilExcCronReminders\getDescription(), ilExcMailTemplateGradeReminderContext\getDescription(), ilExcMailTemplatePeerReminderContext\getDescription(), ilExcMailTemplateSubmitReminderContext\getDescription(), ilSessionMailTemplateParticipantContext\getDescription(), ilSkillNotifications\getDescription(), ilSurveyCronNotification\getDescription(), ilSurveyMailTemplateRaterInvitationContext\getDescription(), ilSurveyMailTemplateReminderContext\getDescription(), ilBadgeLearningHistoryProvider\getEntries(), ilCourseLearningHistoryProvider\getEntries(), ilFirstLoginLearningHistoryProvider\getEntries(), ilSkillLearningHistoryProvider\getEntries(), ilObjGlossarySubItemListGUI\getHTML(), ilObjMediaPoolSubItemListGUI\getHTML(), ilNewsItemGUI\getHTML(), ilObjWikiSubItemListGUI\getHTML(), ilAchievementsGUI\getLinks(), ILIAS\COPage\Page\PageQueryActionHandler\getMultiEditHelp(), ILIAS\COPage\Page\PageQueryActionHandler\getMultiLangActions(), ilObjContentObjectGUI\getMultiLangHeader(), ILIAS\COPage\Page\PageQueryActionHandler\getMultiLangInfo(), ilCourseLearningHistoryProvider\getName(), ilFirstLoginLearningHistoryProvider\getName(), ilSkillLearningHistoryProvider\getName(), ilCountrySelectInputGUI\getOptions(), ILIAS\COPage\Page\PageQueryActionHandler\getPageEditHelp(), ilPCLearningHistoryGUI\getPlaceholderPresentation(), ilObjSAHSLearningModuleListGUI\getProperties(), ilObjWikiListGUI\getProperties(), ILIAS\Blog\BlogPrintViewProviderGUI\getSelectionForm(), ilObjLearningResourcesSettingsGUI\getSettingsForm(), ilExcMailTemplateGradeReminderContext\getSpecificPlaceholders(), ilExcMailTemplatePeerReminderContext\getSpecificPlaceholders(), ilExcMailTemplateSubmitReminderContext\getSpecificPlaceholders(), ilSessionMailTemplateParticipantContext\getSpecificPlaceholders(), ilSurveyMailTemplateRaterInvitationContext\getSpecificPlaceholders(), ilBookCronNotification\getTitle(), ilBookingPrefBookCron\getTitle(), ilCleanCOPageHistoryCronjob\getTitle(), ilCourseMailTemplateMemberContext\getTitle(), ilExAssTypeWikiTeam\getTitle(), ilExcCronFeedbackNotification\getTitle(), ilExcCronReminders\getTitle(), ilExcMailTemplateGradeReminderContext\getTitle(), ilExcMailTemplatePeerReminderContext\getTitle(), ilExcMailTemplateSubmitReminderContext\getTitle(), ilSessionMailTemplateParticipantContext\getTitle(), ilSkillNotifications\getTitle(), ilSurveyCronNotification\getTitle(), ilSurveyMailTemplateRaterInvitationContext\getTitle(), ilSurveyMailTemplateReminderContext\getTitle(), ILIAS\COPage\Page\PageQueryActionHandler\getTopActions(), ilDefaultPlaceholderValues\getUserLanguage(), ilMailNotification\getUserLanguage(), ilObjectPluginGUI\infoScreen(), ilPortfolioTemplatePageConfig\init(), ilObjMediaCastGUI\initAddCastItemForm(), ilObjPortfolioAdministrationGUI\initAuthorshipForm(), ilObjFolderGUI\initEditForm(), ilObjPrivacySecurityGUI\initErrorMessages(), ilWorkspaceShareTableGUI\initFilter(), ilPCResourcesGUI\initForm(), ilObjPortfolioAdministrationGUI\initFormSettings(), ilObjBookingPoolGUI\initHeaderAction(), ilObjContentObjectGUI\initPropertiesForm(), ilLMImportGUI\initTranslationImportForm(), ilMediaPoolImportGUI\initTranslationImportForm(), ilLocationInputGUI\insert(), ilBadgeManagementGUI\listBadges(), ilSCORM2004TrackingItemsPerScoFilterGUI\parse(), ilSCORMTrackingItemsPerScoFilterGUI\parse(), ilSCORM2004TrackingItemsPerUserFilterGUI\parse(), ilSCORMTrackingItemsPerUserFilterGUI\parse(), ilSCORMTrackingItemsTableGUI\parseValue(), ilObjContentObjectGUI\properties(), ilUserCronCheckAccounts\run(), ilObjContentObjectGUI\saveProperties(), ilBookCronNotification\sendMails(), ilObjWikiGUI\setSettingsSubTabs(), ilObjWorkspaceFolderGUI\showAdministrationPanel(), ilConditionHandlerGUI\translateOperator(), and ilPDNotesGUI\view().
|
staticprotected |
saves tupel of language module and identifier
Definition at line 511 of file class.ilLanguage.php.
Referenced by _lookupEntry(), and txt().
|
static |
Lookup obj_id of language.
Definition at line 337 of file class.ilLanguage.php.
References $DIC, $ilDB, $res, and ilDBConstants\FETCHMODE_OBJECT.
Referenced by ilStartUpGUI\getAuthPageEditorHtml(), ilAuthPageEditorGUI\handlePageActionsCommand(), ilAdvancedMDRecordParser\handlerBeginTag(), and ILIAS\components\Authentication\Pages\AuthPageLanguagesOverviewTable\initRecords().
ilLanguage::toJS | ( | $a_lang_key, | |
?ilGlobalTemplateInterface | $a_tpl = null |
||
) |
Transfer text to Javascript.
string | string[] | $a_lang_key | $a_lang_key language key string or array of language keys |
Reimplemented in LanguageMock.
Definition at line 463 of file class.ilLanguage.php.
References $DIC, toJSMap(), and txt().
ilLanguage::toJSMap | ( | array | $a_map, |
?ilGlobalTemplateInterface | $a_tpl = null |
||
) |
Transfer text to Javascript.
$a_map array of key value pairs (key is text string, value is content)
Definition at line 488 of file class.ilLanguage.php.
References $DIC.
Referenced by toJS().
ilLanguage::txt | ( | string | $a_topic, |
string | $a_default_lang_fallback_mod = "" |
||
) |
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be returned
Implements ILIAS\Language\Language.
Reimplemented in ilSetupLanguage.
Definition at line 170 of file class.ilLanguage.php.
References _lookupEntry(), and logUsage().
Referenced by ilTaxAssignedItemsTableGUI\__construct(), ilSkillCatTableGUI\__construct(), ilBenchmarkTableGUI\__construct(), ilTaxonomyListTableGUI\__construct(), ilMatchingWizardInputGUI\__construct(), ilGlossaryEditorGUI\__construct(), ilHTLMEditorGUI\__construct(), ilHTLMPresentationGUI\__construct(), ilEditClipboardGUI\__construct(), ilNewsForContextBlockGUI\__construct(), ilPDNewsBlockGUI\__construct(), ilPDTasksBlockGUI\__construct(), ilWikiFunctionsBlockGUI\__construct(), ILIAS\Test\Certificate\TestPlaceholderDescription\__construct(), ilLTIConsumerPlaceholderDescription\__construct(), ILIAS\Exercise\Certificate\ExercisePlaceholderDescription\__construct(), ilBookingBulkCreationTableGUI\__construct(), ilContentStylesTableGUI\__construct(), ilDclCreateViewTableGUI\__construct(), ilDclTableViewEditFieldsTableGUI\__construct(), ilDefaultPlaceholderDescription\__construct(), ilNewsForContextTableGUI\__construct(), ilLMGlossaryTableGUI\__construct(), ilMediaCastTableGUI\__construct(), ilModulesTableGUI\__construct(), ilNewItemGroupTableGUI\__construct(), FormMailCodesGUI\__construct(), ilObjSurvey\__construct(), ilObjectFeedWriter\__construct(), ilSkillLevelTableGUI\__construct(), ilTaxAssignInputGUI\__construct(), ILIAS\Course\Certificate\CoursePlaceholderDescription\__construct(), ilItemGroupItemsTableGUI\__construct(), ilPageMultiLangTableGUI\__construct(), ilPageLayoutTableGUI\__construct(), ilMultiSrtConfirmationTable2GUI\__construct(), ilClipboardTableGUI\__construct(), ilPollUserTableGUI\__construct(), ilRoleAssignmentTableGUI\__construct(), ilWorkspaceShareTableGUI\__construct(), ilStyleImageTableGUI\__construct(), ilWikiExportOrderTableGUI\__construct(), ilUploadDirFilesTableGUI\__construct(), ilLanguageExtTableGUI\__construct(), ilHelpModuleTableGUI\__construct(), ilHelpMappingTableGUI\__construct(), ilExportIDTableGUI\__construct(), ilPasteStyleCharacteristicTableGUI\__construct(), ilFeedbackConfirmationTable2GUI\__construct(), ilPublicSubmissionsTableGUI\__construct(), ilExAssignmentListTextTableGUI\__construct(), ilExcDeliveredFilesTableGUI\__construct(), ilLMMenuItemsTableGUI\__construct(), ilMediaPoolPageUsagesTableGUI\__construct(), ilLMBlockedUsersTableGUI\__construct(), ilLMPagesTableGUI\__construct(), ilMediaObjectUsagesTableGUI\__construct(), ilMobSubtitleTableGUI\__construct(), ilMediaPoolTableGUI\__construct(), ilStyleMediaQueryTableGUI\__construct(), ilStyleColorTableGUI\__construct(), ilSurveySkillTableGUI\__construct(), ilSurveySkillChangesTableGUI\__construct(), SurveyConstraintsTableGUI\__construct(), ilSurveySkillThresholdsTableGUI\__construct(), ilSurveyQuestionTableGUI\__construct(), ilSurveyParticipantsTableGUI\__construct(), ilPCFileListTableGUI\__construct(), ilPCGridCellTableGUI\__construct(), ilPCTabsTableGUI\__construct(), ilTaxonomyTableGUI\__construct(), ilExcCriteriaTableGUI\__construct(), ilExcCriteriaCatalogueTableGUI\__construct(), ilLinksTableGUI\__construct(), ilWorkspaceAccessTableGUI\__construct(), ilBookingReservationsTableGUI\__construct(), ilBookingObjectsTableGUI\__construct(), ilWikiContributorsTableGUI\__construct(), ilWikiPageTemplatesTableGUI\__construct(), ilWikiSearchResultsTableGUI\__construct(), ilExGradesTableGUI\__construct(), ilHelpTooltipTableGUI\__construct(), ilSurveySyncTableGUI\__construct(), ilPageHistoryTableGUI\__construct(), ilFoundUsersTableGUI\__construct(), ilScormPlaceholderDescription\__construct(), ilLMPresentationGUI\__construct(), ilTableTemplatesTableGUI\__construct(), ilImageFileInputGUI\__construct(), ilRepositorySelectorInputGUI\__construct(), ilCategoryWizardInputGUI\__construct(), ilMatrixRowWizardInputGUI\__construct(), ilSessionAppointment\_appointmentToString(), ilObjGlossaryAccess\_checkAccess(), ilObjFileBasedLMAccess\_checkAccess(), ilObjContentObjectAccess\_checkAccess(), ilObjMediaCastAccess\_checkAccess(), ilObjPortfolioTemplateAccess\_checkAccess(), ilObjSurveyAccess\_checkAccess(), ilObjWikiAccess\_checkAccess(), ilObjTestAccess\_getParticipantData(), ilPCParagraphGUI\_getStandardCharacteristics(), ilPCSectionGUI\_getStandardCharacteristics(), ilDclStandardField\_getStandardFieldsAsArray(), ilObjFolderGUI\_goto(), ilObjCourseGUI\_goto(), ilObjectPluginGUI\_goto(), ilObjBookingPoolGUI\_goto(), ilObjCmiXapiGUI\_goto(), ilObjDataCollectionGUI\_goto(), ilObjFileBasedLMGUI\_goto(), ilObjItemGroupGUI\_goto(), ilLMPageObjectGUI\_goto(), ilObjSAHSLearningModuleGUI\_goto(), ilObjSessionGUI\_goto(), ilObjSurveyQuestionPoolGUI\_goto(), ilRemoteObjectBaseGUI\_goto(), ilObjWikiGUI\_goto(), ilObjGroupGUI\_goto(), ilObjIndividualAssessmentGUI\_goto(), ilObjLearningSequenceGUI\_goto(), ilObjLearningSequence\_goto(), ilObject\_lookupOwnerName(), ilObject\_prepareCloneSelection(), ilBadgeProfileGUI\activate(), ilBadgeProfileGUI\activateInCard(), ilObjBadgeAdministrationGUI\activateTypes(), ilLocatorGUI\addAdministrationItems(), ilObjWorkspaceFolderGUI\addContentSubTabs(), ilObjExerciseGUI\addContentSubTabs(), ilPageComponentPluginGUI\addCreationButton(), ilSkillCategoryGUI\addCreationButtons(), ilSkillTemplateCategoryGUI\addCreationButtons(), ilCleanCOPageHistoryCronjob\addCustomSettingsToForm(), ilExAssTypePortfolioGUI\addEditFormCustomProperties(), ilExAssTypeTextGUI\addEditFormCustomProperties(), ilExAssTypeWikiTeamGUI\addEditFormCustomProperties(), ilUserTableGUI\addFilterItemByUdfType(), ilObjectActivation\addListGUIActivationProperty(), ilSkillTreeNodeGUI\addObjectsTab(), ilSkillTreeNodeGUI\addStatusInput(), ilTaxMDGUI\addSubTab(), ilExerciseManagementGUI\addSubTabs(), ilContainerSkillGUI\addTabs(), ilExcCriteriaBool\addToPeerReviewForm(), ilExcCriteriaText\addToPeerReviewForm(), ilNewsForContextBlockGUI\addToSettingsForm(), ilPersonalSkillsFilterGUI\addToToolbar(), ilSkillTreeNodeGUI\addUsageTab(), ilGroupAddToGroupActionGUI\addUser(), ilCalendarEntry\appointmentToMailString(), ilSkillProfileGUI\assignLevel(), ilSkillProfileGUI\assignLevelSelectSkill(), ilSkillProfileGUI\assignLevelToProfile(), ilSkillProfileGUI\assignRole(), ilSkillProfileGUI\assignUser(), ilObjSystemFolderGUI\benchmarkSubTabs(), ilExAssTypePortfolioGUI\buildSubmissionPropertiesAndActions(), ilExAssTypeTextGUI\buildSubmissionPropertiesAndActions(), ilExAssTypeUploadGUI\buildSubmissionPropertiesAndActions(), ilExAssTypeWikiTeamGUI\buildSubmissionPropertiesAndActions(), ilPDNewsBlockGUI\changeFeedSettings(), ilPageEditorGUI\characteristic(), ilScheduleInputGUI\checkInput(), ilDclCheckboxInputGUI\checkInput(), ilDclTextInputGUI\checkInput(), ilAlphabetInputGUI\checkInput(), ilCheckboxGroupInputGUI\checkInput(), ilCSSRectInputGUI\checkInput(), ilCustomInputGUI\checkInput(), ilDateTimeInputGUI\checkInput(), ilEMailInputGUI\checkInput(), ilFileWizardInputGUI\checkInput(), ilFormulaInputGUI\checkInput(), ilLocationInputGUI\checkInput(), ilMultiSelectInputGUI\checkInput(), ilRadioGroupInputGUI\checkInput(), ilRegExpInputGUI\checkInput(), ilRepositorySelectorInputGUI\checkInput(), ilSelectBuilderInputGUI\checkInput(), ilSelectInputGUI\checkInput(), ilTextInputGUI\checkInput(), ilTextWizardInputGUI\checkInput(), ilUriInputGUI\checkInput(), ilUserLoginInputGUI\checkInput(), ilBackgroundImageInputGUI\checkInput(), ilBackgroundPositionInputGUI\checkInput(), ilFontSizeInputGUI\checkInput(), ilNumericStyleValueInputGUI\checkInput(), ilTRBLBorderWidthInputGUI\checkInput(), ilTRBLNumericStyleValueInputGUI\checkInput(), ilCategoryWizardInputGUI\checkInput(), ilMatrixRowWizardInputGUI\checkInput(), ilImagemapFileInputGUI\checkInput(), ilTagInputGUI\checkInput(), ilExplorerSelectInputGUI\checkInput(), ilDclFieldEditGUI\checkInput(), ilObjWorkspaceFolderGUI\checkPassword(), ilWikiPageConfig\configureByObjectId(), ilGroupAddToGroupActionGUI\confirmAddUser(), ilPortfolioRoleAssignmentGUI\confirmAssignmentDeletion(), ilGroupAddToGroupActionGUI\confirmCreateGroupAndAddUser(), ilDclFieldEditGUI\confirmDelete(), ilRatingCategoryGUI\confirmDelete(), ilContSkillAdminGUI\confirmDeleteSingleLocalProfile(), ilExcCriteriaCatalogueGUI\confirmDeletion(), ilExcCriteriaGUI\confirmDeletion(), ilSkillProfileGUI\confirmLevelAssignmentRemoval(), ilBasicSkillGUI\confirmLevelDeletion(), ilObjMediaPoolGUI\confirmRemove(), ilContSkillAdminGUI\confirmRemoveSelectedGlobalProfiles(), ilContSkillAdminGUI\confirmRemoveSelectedSkill(), ilContSkillAdminGUI\confirmRemoveSingleGlobalProfile(), ilSCORMPresentationGUI\contentSelect(), ilPageEditorGUI\copy(), ilSkillTreeNodeGUI\copyItems(), ilBookingScheduleGUI\create(), ilLMPageObjectGUI\create(), ilPCAMDFormGUI\create(), ilSkillTreeNodeGUI\create(), ilObjSkillTreeGUI\create(), ilBookingObjectGUI\create(), ilGroupAddToGroupActionGUI\createGroup(), ilGroupAddToGroupActionGUI\createGroupAndAddUser(), ilSkillProfileGUI\createLocal(), ilExAssTypeWikiTeamGUI\createWiki(), ilPageEditorGUI\cut(), ilSkillTreeNodeGUI\cutItems(), ilBadgeProfileGUI\deactivate(), ilBadgeProfileGUI\deactivateInCard(), ilObjBadgeAdministrationGUI\deactivateTypes(), ilContSkillAdminGUI\deassignCompetences(), ilContSkillAdminGUI\deassignCompetencesConfirm(), ilPageEditorGUI\delete(), ilExcCriteriaCatalogueGUI\delete(), ilExcCriteriaGUI\delete(), ilRatingCategoryGUI\delete(), ilPCImageMapEditorGUI\deleteAreas(), ilPortfolioRoleAssignmentGUI\deleteAssignments(), ilObjWorkspaceFolderGUI\deleteConfirmation(), ilBasicSkillGUI\deleteLevel(), ilObjSkillTreeGUI\deleteNodes(), ilSkillProfileGUI\deleteProfiles(), ilContSkillAdminGUI\deleteSingleLocalProfile(), ilBookingScheduleGUI\edit(), ilBasicSkillGUI\edit(), ilBasicSkillTemplateGUI\edit(), ilBookingObjectGUI\edit(), ilPCLoginPageElementGUI\edit(), ilBasicSkillGUI\editLevel(), ilSkillTreeNodeGUI\editProperties(), ilObjSkillManagementGUI\editSettings(), ilObjBlogAdministrationGUI\editSettings(), ilPDNewsBlockGUI\editSettings(), ilObjBlogGUI\executeCommand(), ilPCPluggedGUI\executeCommand(), ilAchievementsGUI\executeCommand(), ilExAssignmentEditorGUI\executeCommand(), ilExerciseManagementGUI\executeCommand(), ilExPeerReviewGUI\executeCommand(), ilExcCriteriaCatalogueGUI\executeCommand(), ilGlossaryPresentationGUI\executeCommand(), ilObjMediaPoolGUI\executeCommand(), ilEditClipboardGUI\executeCommand(), ilSharedResourceGUI\executeCommand(), ilPortfolioRepositoryGUI\executeCommand(), ilRepositoryGUI\executeCommand(), ilObjectPluginGUI\executeCommand(), ilSCORM13PlayerGUI\executeCommand(), ilSCORMPresentationGUI\executeCommand(), ilSAHSEditGUI\executeCommand(), ilSkillProfileGUI\executeCommand(), ilSurveyParticipantsGUI\executeCommand(), ilWikiPageGUI\executeCommand(), ilRatingCategoryGUI\export(), ilSCORM2004TrackingItems\exportSelectedCoreColumns(), ilAccessPermissionsStatusTableGUI\fillRow(), ilBookingObjectsTableGUI\fillRow(), ilBookingParticipantsTableGUI\fillRow(), ilBookingSchedulesTableGUI\fillRow(), ilCopySelfAssQuestionTableGUI\fillRow(), ilPageHistoryTableGUI\fillRow(), ilPageMultiLangTableGUI\fillRow(), ilMultilingualismTableGUI\fillRow(), ilAssignmentsTableGUI\fillRow(), ilExGradesTableGUI\fillRow(), ilExcCriteriaCatalogueTableGUI\fillRow(), ilExcCriteriaTableGUI\fillRow(), ilPublicSubmissionsTableGUI\fillRow(), ilHelpModuleTableGUI\fillRow(), ilLanguageExtTableGUI\fillRow(), ilExportIDTableGUI\fillRow(), ilLinksTableGUI\fillRow(), ilLMBlockedUsersTableGUI\fillRow(), ilLMGlossaryTableGUI\fillRow(), ilLMPagesTableGUI\fillRow(), ilMediaCastTableGUI\fillRow(), ilMediaObjectUsagesTableGUI\fillRow(), ilMobMultiSrtConfirmationTable2GUI\fillRow(), ilMobSubtitleTableGUI\fillRow(), ilMultiSrtConfirmationTable2GUI\fillRow(), ilMediaPoolPageUsagesTableGUI\fillRow(), ilMediaPoolTableGUI\fillRow(), ilNewsForContextTableGUI\fillRow(), ilPDNewsTableGUI\fillRow(), ilWorkspaceShareTableGUI\fillRow(), ilPortfolioPageTableGUI\fillRow(), ilAdminSubItemsTableGUI\fillRow(), ilNewItemGroupTableGUI\fillRow(), ilRepDependenciesTableGUI\fillRow(), ilSkillLevelTableGUI\fillRow(), ILIAS\Style\Content\CharacteristicTableGUI\fillRow(), ilContentStylesTableGUI\fillRow(), ilPasteStyleCharacteristicTableGUI\fillRow(), ilStyleMediaQueryTableGUI\fillRow(), ilTableTemplatesTableGUI\fillRow(), ilStyleColorTableGUI\fillRow(), SurveyConstraintsTableGUI\fillRow(), ilSurveyQuestionTableGUI\fillRow(), ilSurveyAppraiseesTableGUI\fillRow(), ilSurveyCodesTableGUI\fillRow(), ilSurveySkillAssignmentTableGUI\fillRow(), ilSurveySkillTableGUI\fillRow(), ilSurveySyncTableGUI\fillRow(), ilTaxonomyListTableGUI\fillRow(), ilImportantPagesTableGUI\fillRow(), ilWikiContributorsTableGUI\fillRow(), ilDclEditViewTableGUI\fillRowFromObject(), ilClassificationBlockGUI\filterContainer(), ilBlogExerciseGUI\finalize(), ilPortfolioExerciseGUI\finalize(), ilContainerSelectionExplorer\formatHeader(), ilRepositoryExplorer\formatHeader(), ilSCORMExplorer\formatHeader(), ILIAS\COPage\Page\PageQueryActionHandler\getActionsDropDown(), ILIAS\COPage\Page\PageQueryActionHandler\getAddCommands(), ilContainerPageGUI\getAdditionalPageActions(), ILIAS\COPage\PC\InteractiveImage\InteractiveImageQueryActionHandler\getAddTriggerMessage(), ilObjLearningHistorySettingsGUI\getAdminTabs(), ilObjCommentsSettingsGUI\getAdminTabs(), ilObjNotesSettingsGUI\getAdminTabs(), ilObjPersonalWorkspaceSettingsGUI\getAdminTabs(), ilObjPortfolioAdministrationGUI\getAdminTabs(), ilObjSkillManagementGUI\getAdminTabs(), ilObjSkillTreeGUI\getAdminTabs(), ilObjSAHSLearningModule\getApiStudentName(), ilButtonBase\getCaption(), ilObjMediaCastGUI\getCastItemValues(), ilGlossaryAdvMetaDataAdapter\getColumnOrder(), ILIAS\COPage\PC\InteractiveImage\InteractiveImageQueryActionHandler\getCommonSuccessMessage(), ilModulesTableGUI\getComponents(), ilContainerFilterUtil\getContainerFieldTitle(), ilLTIConsumeProviderFormGUI\getContentSelectionFrame(), ilFeedWriter\getContextPath(), ilObjRepositorySettings\getDefaultNewItemGrouping(), ILIAS\Exercise\Assignment\Mandatory\RandomAssignmentsManager\getDeniedDeactivationReasons(), ilBookCronNotification\getDescription(), ilBookingPrefBookCron\getDescription(), ilCleanCOPageHistoryCronjob\getDescription(), ilCourseMailTemplateMemberContext\getDescription(), ilExcCronFeedbackNotification\getDescription(), ilExcCronReminders\getDescription(), ilExcMailTemplateGradeReminderContext\getDescription(), ilExcMailTemplatePeerReminderContext\getDescription(), ilExcMailTemplateSubmitReminderContext\getDescription(), ilSessionMailTemplateParticipantContext\getDescription(), ilSkillNotifications\getDescription(), ilSurveyCronNotification\getDescription(), ilSurveyMailTemplateRaterInvitationContext\getDescription(), ilSurveyMailTemplateReminderContext\getDescription(), ilNewsForContextBlockGUI\getDynamicReload(), ilImageMapEditorGUI\getEditorTitle(), ILIAS\LearningModule\Menu\ilLMMenuGUI\getEntries(), ilBadgeLearningHistoryProvider\getEntries(), ilCourseLearningHistoryProvider\getEntries(), ilFirstLoginLearningHistoryProvider\getEntries(), ilSkillLearningHistoryProvider\getEntries(), ilPortfolioExerciseGUI\getExerciseInfo(), ilAdvancedMDFieldDefinitionFloat\getFieldDefinitionForTableGUI(), ilAdvancedMDFieldDefinitionGroupBased\getFieldDefinitionForTableGUI(), ilAdvancedMDFieldDefinitionText\getFieldDefinitionForTableGUI(), ilContainerFilterAdminGUI\getFieldSelectionForm(), ilInternalLinkGUI\getFileLinkHTML(), ilPDNotesGUI\getFilter(), ilAccessibilitySupportContactsGUI\getFooterLink(), ilAccessibilityControlConceptGUI\getFooterText(), ilAccessibilitySupportContactsGUI\getFooterText(), ilObjMediaCastSettingsGUI\getForm(), ILIAS\COPage\Page\PageQueryActionHandler\getFormatSelection(), ilGroupAddToGroupActionGUI\getGroupCreationForm(), ilNewItemGroupTableGUI\getGroups(), ilExcCriteriaBool\getHTML(), ilDclCreateViewTableGUI\getHTML(), ilDclEditViewTableGUI\getHTML(), ilDclTableViewEditFieldsTableGUI\getHTML(), ilObjGlossarySubItemListGUI\getHTML(), ilObjLearningModuleSubItemListGUI\getHTML(), McstImageGalleryGUI\getHTML(), McstPodcastGUI\getHTML(), ilObjMediaPoolSubItemListGUI\getHTML(), ilNewsForContextBlockGUI\getHTML(), ilPDNewsBlockGUI\getHTML(), ilSurveyContainsDataMessageBoxGUI\getHTML(), ilObjWikiSubItemListGUI\getHTML(), ilWikiImportantPagesBlockGUI\getHTML(), ilExGradesTableGUI\getIconForStatus(), ilExcRepoObjAssignmentAccessInfo\getInfo(), ilNewsForContextBlockGUI\getInfoForData(), ilEditClipboardGUI\getInsertButtonTitle(), ilExcCriteriaCatalogueTableGUI\getItems(), ilUserTableGUI\getItems(), ilSurveyParticipantsTableGUI\getItems(), ILIAS\Language\UserSettings\Language\getLabel(), ilWikiFunctionsBlockGUI\getLegacyContent(), ilAchievementsGUI\getLinks(), ilCommentGUI\getListHTML(), ilPDTasksBlockGUI\getListItemForData(), ilLearningModuleNotification\getMailBody(), ilLearningModuleNotification\getMailSubject(), ilContainerObjectiveGUI\getMainContent(), ILIAS\COPage\PC\InteractiveImage\InteractiveImageQueryActionHandler\getMainHead(), ILIAS\COPage\PC\InteractiveImage\InteractiveImageQueryActionHandler\getMainSlate(), ilObjExternalToolsSettingsGUI\getMapsForm(), ILIAS\COPage\Page\PageQueryActionHandler\getMultiEditHelp(), ILIAS\COPage\Page\PageQueryActionHandler\getMultiLangActions(), ilObjContentObjectGUI\getMultiLangHeader(), ilCourseLearningHistoryProvider\getName(), ilFirstLoginLearningHistoryProvider\getName(), ilSkillLearningHistoryProvider\getName(), ilAdministrationExplorerGUI\getNodeContent(), ilWorkspaceExplorerGUI\getNodeContent(), ilRepositoryExplorerGUI\getNodeContent(), ilRepositorySelectorExplorerGUI\getNodeContent(), ilSkillTemplateTreeExplorerGUI\getNodeContent(), ilVirtualSkillTreeExplorerGUI\getNodeContent(), ilAdministrationExplorerGUI\getNodeIconAlt(), ilLMEditorExplorerGUI\getNodeIconAlt(), ilRepositoryExplorerGUI\getNodeIconAlt(), ilRepositorySelectorExplorerGUI\getNodeIconAlt(), ilPersonalSkillExplorerGUI\getNodeIconAlt(), ilSkillTemplateTreeExplorerGUI\getNodeIconAlt(), ilVirtualSkillTreeExplorerGUI\getNodeIconAlt(), ilVirtualSkillTree\getNodeTitle(), ilCountrySelectInputGUI\getOptions(), ilTaxAssignInputGUI\getOptions(), ilSCORMExplorer\getOutputIcons(), ilNewsForContextBlockGUI\getOverview(), ilPDTasksBlockGUI\getOverview(), ilExSubmissionTextGUI\getOverviewContent(), ILIAS\COPage\Page\PageQueryActionHandler\getPageEditHelp(), ILIAS\COPage\Page\PageQueryActionHandler\getPasteMessage(), ilPCLearningHistoryGUI\getPlaceholderPresentation(), ilSCORM13PlayerGUI\getPlayer(), ilModulesTableGUI\getPluginComponents(), ilAnswerWizardInputGUI\getPointsInputLabel(), ilLogicalAnswerComparisonExpressionInputGUI\getPointsInputLabel(), ilPCAMDFormGUI\getPortfolioForm(), ilLearningModuleNotification\getPreviewText(), ilObjBibliographicListGUI\getProperties(), ilObjCmiXapiVerificationListGUI\getProperties(), ilObjCourseVerificationListGUI\getProperties(), ilObjExerciseVerificationListGUI\getProperties(), ilObjFileBasedLMListGUI\getProperties(), ilObjLearningModuleListGUI\getProperties(), ilObjRemoteCourseListGUI\getProperties(), ilObjSAHSLearningModuleListGUI\getProperties(), ilObjSCORMVerificationListGUI\getProperties(), ilObjSurveyListGUI\getProperties(), ilObjTestVerificationListGUI\getProperties(), ilObjWikiListGUI\getProperties(), ilExAssignmentInfo\getScheduleInfo(), ilSurveyResultsCumulatedTableGUI\getSelectableColumns(), ilSurveyQuestionsTableGUI\getSelectableColumns(), ilQuestionBrowserTableGUI\getSelectableColumns(), ilQuestionPoolPrintViewTableGUI\getSelectableColumns(), ilUserTableGUI\getSelectableColumns(), ILIAS\Blog\BlogPrintViewProviderGUI\getSelectionForm(), ILIAS\Survey\PrintView\ListPrintViewProviderGUI\getSelectionForm(), ILIAS\Survey\PrintView\PagePrintViewProviderGUI\getSelectionForm(), ILIAS\Survey\PrintView\ResultsDetailsPrintViewProviderGUI\getSelectionForm(), ILIAS\Survey\PrintView\ResultsOverviewPrintViewProviderGUI\getSelectionForm(), ILIAS\Survey\PrintView\ResultsPerUserPrintViewProviderGUI\getSelectionForm(), ILIAS\COPage\PC\InteractiveImage\InteractiveImageQueryActionHandler\getSelectTriggerMessage(), ilObjLearningResourcesSettingsGUI\getSettingsForm(), ilObjNewsSettingsGUI\getSettingsForm(), ilObjPersonalWorkspaceSettingsGUI\getSettingsForm(), ilExcMailTemplateGradeReminderContext\getSpecificPlaceholders(), ilExcMailTemplatePeerReminderContext\getSpecificPlaceholders(), ilExcMailTemplateSubmitReminderContext\getSpecificPlaceholders(), ilSessionMailTemplateParticipantContext\getSpecificPlaceholders(), ilSurveyMailTemplateRaterInvitationContext\getSpecificPlaceholders(), SectionStyleSelector\getStyleSelector(), ilObjFolderGUI\getTabs(), ilObjFileBasedLMGUI\getTabs(), ilObjRootFolderGUI\getTabs(), ilObjWikiGUI\getTabs(), ilPCInteractiveImageGUI\getTabs(), ilExerciseDerivedTaskProvider\getTasks(), ILIAS\Survey\Tasks\DerivedTaskProvider\getTasks(), ilAnswerWizardInputGUI\getTextInputLabel(), ilLogicalAnswerComparisonExpressionInputGUI\getTextInputLabel(), ilContainer\getTileSizes(), ilBookCronNotification\getTitle(), ilBookingPrefBookCron\getTitle(), ilCleanCOPageHistoryCronjob\getTitle(), ilCourseMailTemplateMemberContext\getTitle(), ilExAssTypeBlog\getTitle(), ilExAssTypePortfolio\getTitle(), ilExAssTypeText\getTitle(), ilExAssTypeUpload\getTitle(), ilExAssTypeUploadTeam\getTitle(), ilExAssTypeWikiTeam\getTitle(), ilExcCronFeedbackNotification\getTitle(), ilExcCronReminders\getTitle(), ilExcMailTemplateGradeReminderContext\getTitle(), ilExcMailTemplatePeerReminderContext\getTitle(), ilExcMailTemplateSubmitReminderContext\getTitle(), ilPortfolioPage\getTitle(), ilSessionMailTemplateParticipantContext\getTitle(), ilSkillNotifications\getTitle(), ilSurveyCronNotification\getTitle(), ilSurveyMailTemplateRaterInvitationContext\getTitle(), ilSurveyMailTemplateReminderContext\getTitle(), ilContainerFilterAdvMDAdapter\getTitle(), ilAdvancedMDFieldDefinitionAddress\getTitles(), ilImageMapEditorGUI\getToolbar(), ILIAS\COPage\Page\PageQueryActionHandler\getTopActions(), ilExAssignmentEditorGUI\getTypeDropdown(), ilExcCriteria\getTypesMap(), SurveyMultipleChoiceQuestionEvaluation\getUserSpecificVariableTitles(), SurveySingleChoiceQuestionEvaluation\getUserSpecificVariableTitles(), ilObjDashboardSettingsGUI\getViewSectionPresentation(), ilWorkspaceShareTableGUI\importData(), ilSurveySyncTableGUI\importData(), ilSkillProfileGUI\importProfiles(), ilSkillRootGUI\importSkills(), ilLMImportGUI\importTranslation(), ilObjWikiGUI\infoScreen(), ilInternalLinkGUI\init(), ilPortfolioTemplatePageConfig\init(), ilImageMapTableGUI\initActions(), ilObjMediaCastGUI\initAddCastItemForm(), ilPCFileItemGUI\initAddFileForm(), ilPortfolioRoleAssignmentGUI\initAssignmentForm(), ilObjPortfolioAdministrationGUI\initAuthorshipForm(), ilRatingCategoryGUI\initCategoryForm(), ilContSkillAdminGUI\initCompetenceAssignmentForm(), ilObjSAHSLearningModuleGUI\initCreateForm(), ilObjWikiGUI\initCreateForm(), ilPCGridGUI\initCreationForm(), ilPCLayoutTemplateGUI\initCreationForm(), ilPCPlaceHolderGUI\initCreationForm(), ilExcCriteriaText\initCustomForm(), ilLTIConsumeProviderFormGUI\initDynRegForm(), ilObjectPluginGUI\initEditForm(), ilLMPageObjectGUI\initEditLayoutForm(), ilObjPrivacySecurityGUI\initErrorMessages(), ilBookingObjectsTableGUI\initFilter(), ilLanguageExtTableGUI\initFilter(), ilMediaPoolTableGUI\initFilter(), ilPDNewsTableGUI\initFilter(), ilWorkspaceShareTableGUI\initFilter(), ilSurveyQuestionblockbrowserTableGUI\initFilter(), ilSurveyQuestionbrowserTableGUI\initFilter(), ilSurveyQuestionsTableGUI\initFilter(), ilQuestionBrowserTableGUI\initFilter(), ilRoleAssignmentTableGUI\initFilter(), ilUserTableGUI\initFilter(), ilObjMediaPoolGUI\initFolderForm(), ilObjTaggingSettingsGUI\initForbiddenTagsForm(), ilPCContentTemplateGUI\initForm(), ilObjLearningHistorySettingsGUI\initForm(), ilObjCommentsSettingsGUI\initForm(), ilObjNotesSettingsGUI\initForm(), ilObjNotificationSettingsGUI\initForm(), ilObjWikiSettingsGUI\initForm(), ilPCResourcesGUI\initForm(), ilPCLearningHistoryGUI\initForm(), ilExcCriteriaGUI\initForm(), ilPCMapGUI\initForm(), ilDclFieldEditGUI\initForm(), ilBasicSkillGUI\initForm(), ilBasicSkillTemplateGUI\initForm(), ilSkillCategoryGUI\initForm(), ilSkillTemplateCategoryGUI\initForm(), ilSkillTemplateReferenceGUI\initForm(), ilSkillTreeNodeGUI\initForm(), ilLTIConsumeProviderFormGUI\initForm(), ilOrgUnitPositionFormGUI\initFormElements(), ilObjAwarenessAdministrationGUI\initFormSettings(), ilObjBlogAdministrationGUI\initFormSettings(), ilObjExerciseAdministrationGUI\initFormSettings(), ilObjPortfolioAdministrationGUI\initFormSettings(), ilObjTaggingSettingsGUI\initFormSettings(), ilObjBookingPoolGUI\initHeaderAction(), ilSkillRootGUI\initInputForm(), ilSkillProfileGUI\initInputForm(), SurveyConstraintsTableGUI\initItems(), ilBasicSkillGUI\initLevelForm(), ilObjContentObjectGUI\initMenuForm(), ilAssignmentsPerParticipantTableGUI\initMode(), ilParticipantsPerAssignmentTableGUI\initMode(), ilLMPageObjectGUI\initNewPageForm(), ilObjWorkspaceFolderGUI\initPasswordForm(), ilLMPresentationGUI\initPrintViewSelectionForm(), ilPDNewsBlockGUI\initPrivateSettingsForm(), ilSkillProfileGUI\initProfileForm(), ilObjContentObjectGUI\initPropertiesForm(), ilObjSCORM2004LearningModuleGUI\initPropertiesForm(), ilObjSystemFolderGUI\initServerInfoForm(), ilObjectServiceSettingsGUI\initServiceSettingsForm(), ilBadgeProfileGUI\initSettingsForm(), ilContSkillAdminGUI\initSettingsForm(), ilNewsForContextBlockGUI\initSettingsForm(), ilLTIConsumeProviderFormGUI\initToolConfigForm(), ilLMImportGUI\initTranslationImportForm(), ilMediaPoolImportGUI\initTranslationImportForm(), ilObjSkillTreeGUI\initTreeForm(), ilEditClipboardGUI\insert(), ilCSSRectInputGUI\insert(), ilEMailInputGUI\insert(), ilFileWizardInputGUI\insert(), ilImageFileInputGUI\insert(), ilLocationInputGUI\insert(), ilSelectBuilderInputGUI\insert(), ilWidthHeightInputGUI\insert(), ilBackgroundPositionInputGUI\insert(), ilTRBLBorderStyleInputGUI\insert(), ilTRBLBorderWidthInputGUI\insert(), ilTRBLColorPickerInputGUI\insert(), ilTRBLNumericStyleValueInputGUI\insert(), ilMatrixRowWizardInputGUI\insert(), ilErrorTextWizardInputGUI\insert(), ilEssayKeywordWizardInputGUI\insert(), ilMatchingPairWizardInputGUI\insert(), ilMatchingWizardInputGUI\insert(), ilMultipleChoiceWizardInputGUI\insert(), ilAssErrorTextCorrectionsInputGUI\insert(), ilAssSingleChoiceCorrectionsInputGUI\insert(), ilImagemapCorrectionsInputGUI\insert(), ilImagemapFileInputGUI\insert(), ilPCQuestionGUI\insert(), ilPCContentIncludeGUI\insertFromPool(), ilObjLTIConsumerListGUI\insertIconsAndCheckboxes(), ilPCResourcesGUI\insertResourcesIntoPageContent(), ilPortfolioRoleAssignmentGUI\listAssignments(), ilBadgeProfileGUI\listBackpackGroups(), ilBadgeManagementGUI\listBadges(), ilRatingCategoryGUI\listCategories(), ilContSkillAdminGUI\listCompetences(), ilContentStyleImageGUI\listImages(), ilObjBadgeAdministrationGUI\listImageTemplates(), ilRecommendedContentRoleConfigGUI\listItems(), ilSkillCategoryGUI\listItems(), ilSkillTemplateCategoryGUI\listItems(), ilSkillTemplateReferenceGUI\listItems(), ilObjMediaCastGUI\listItemsObject(), ilObjMediaPoolGUI\listMedia(), ilPCQuestionGUI\listPoolQuestions(), ilContSkillAdminGUI\listProfiles(), ilSkillProfileGUI\listProfiles(), ilSkillRootGUI\listSkills(), ilSurveySkillThresholdsGUI\listSkillThresholds(), ilSkillRootGUI\listTemplates(), ilSkillTreeAdminGUI\listTrees(), ilExerciseManagementGUI\membersObject(), ilPCFileItemGUI\newFileItem(), ilMultipleTextsInputGUI\onCheckInput(), ilLMPageGUI\onFeedbackEditingForwarding(), ilSCORM2004TrackingItemsPerScoFilterGUI\parse(), ilSCORMTrackingItemsPerScoFilterGUI\parse(), ilSCORM2004TrackingItemsPerUserFilterGUI\parse(), ilSCORMTrackingItemsPerUserFilterGUI\parse(), ilObjWorkspaceFolderGUI\passwordForm(), ilImprintGUI\postOutputProcessing(), ilMultilingualismTableGUI\prepareOutput(), ilMediaPoolTableGUI\prepareOutput(), ilContSkillAdminGUI\publishAssignments(), ilObjSCORM2004LearningModule\readObject(), ilEditClipboardGUI\remove(), ilBasicSkillGUI\removeLevelResources(), ilContSkillAdminGUI\removeSelectedGlobalProfiles(), ilContSkillAdminGUI\removeSelectedSkill(), ilContSkillAdminGUI\removeSingleGlobalProfile(), ilSurveySkillGUI\removeSkillFromQuestion(), ilSkillProfileGUI\removeUsers(), ilRepositorySelectorInputGUI\render(), ilObjBlogGUI\render(), ilBookingObjectGUI\render(), ilBookingScheduleGUI\render(), ilDurationInputGUI\render(), ilMultiSelectInputGUI\render(), ILIAS\MediaCast\Video\VideoPreviewGUI\render(), ilObjCmiXapiVerificationGUI\render(), ilObjCourseVerificationGUI\render(), ilObjSCORMVerificationGUI\render(), ilMultipleImagesInputGUI\render(), ilExplorerSelectInputGUI\render(), ilPersonalWorkspaceGUI\renderBack(), ilPersonalWorkspaceGUI\renderLocator(), ilExAssTypeWikiTeamGUI\renderOverviewContent(), ilTaggingSlateContentGUI\renderResourcesForTag(), ILIAS\MediaCast\Presentation\VideoViewGUI\renderSideColumn(), ilExcRandomAssignmentGUI\renderStartPage(), ILIAS\MediaCast\Presentation\VideoViewGUI\renderToolbar(), ilUserCronCheckAccounts\run(), ilLMPageObjectGUI\save(), ilRatingCategoryGUI\save(), ilSkillTreeNodeGUI\save(), ilSkillProfileGUI\save(), ilObjSkillTreeGUI\save(), ilDclFieldEditGUI\save(), ilObjAccessibilitySettingsGUI\saveAccessibilitySettings(), ilObjSkillTreeGUI\saveAllTemplateTitles(), ilObjSkillTreeGUI\saveAllTitles(), ilPCImageMapEditorGUI\saveArea(), ilPortfolioRoleAssignmentGUI\saveAssignment(), ilObjPortfolioAdministrationGUI\saveAuthorship(), ilObjSystemFolderGUI\saveBasicSettingsObject(), ilObjMediaCastGUI\saveCastItemObject(), ilContSkillAdminGUI\saveCompetenceAssignment(), ilContainerFilterAdminGUI\saveFields(), ilObjMediaPoolGUI\saveFolder(), ilObjTaggingSettingsGUI\saveForbiddenTags(), ilExerciseManagementGUI\saveGradesObject(), ilObjWikiGUI\saveGradingObject(), ilLMPageObjectGUI\saveLayout(), ilBasicSkillGUI\saveLevel(), ilSkillProfileGUI\saveLevelOrder(), ilBasicSkillGUI\saveLevelResource(), ilSkillProfileGUI\saveLocal(), ilObjRepositorySettingsGUI\saveModules(), ilExcCriteriaCatalogueGUI\saveOrder(), ilExcCriteriaGUI\saveOrder(), ilSkillTreeNodeGUI\saveOrder(), ilObjAdvancedEditingGUI\savePageEditorSettingsObject(), ilObjContentObjectGUI\saveProperties(), ilBasicSkillGUI\saveResourcesAsNoTrigger(), ilBasicSkillGUI\saveResourcesAsNotSuggested(), ilBasicSkillGUI\saveResourcesAsSuggested(), ilBasicSkillGUI\saveResourcesAsTrigger(), ilContSkillAdminGUI\saveSelectedProfile(), ilContSkillAdminGUI\saveSelectedSkill(), ilPersonalSkillsGUI\saveSelfEvaluation(), ilBadgeProfileGUI\saveSettings(), ilContSkillAdminGUI\saveSettings(), ilObjLearningHistorySettingsGUI\saveSettings(), ilObjCommentsSettingsGUI\saveSettings(), ilObjNotesSettingsGUI\saveSettings(), ilObjWikiSettingsGUI\saveSettings(), ilSurveySkillThresholdsGUI\saveThresholds(), ilGroupAddToGroupActionGUI\selectParent(), ilSurveySkillGUI\selectSkillForQuestion(), ilSkillNotifications\sendMail(), ilBookCronNotification\sendMails(), ilMembershipCronMinMembers\sendMessage(), ilGroupAddToGroupActionGUI\sendResponse(), ilBadgeProfileGUI\setBackpackSubTabs(), ilGlossaryForeignTermCollectorGUI\setForeignGlossary(), ilPCQuestionGUI\setInsertTabs(), ilBasicSkillGUI\setLevelHead(), ilBasicSkillTemplateGUI\setLevelHead(), ilPortfolioRepositoryGUI\setLocator(), ilObjDashboardSettingsGUI\setSettingsSubTabs(), ilObjWikiGUI\setSettingsSubTabs(), ilSurveySkillGUI\setSubTabs(), ilObjFolderGUI\setSubTabs(), ilSkillTemplateReferenceGUI\setTabs(), ilObjBlogGUI\setTabs(), ilObjItemGroupGUI\setTabs(), ilEditClipboardGUI\setTabs(), ilPortfolioRepositoryGUI\setTabs(), ilObjWorkspaceFolderGUI\setTabs(), ilBadgeManagementGUI\setTabs(), ilSkillProfileGUI\setTabs(), ilSkillCategoryGUI\setTabs(), ilSkillTemplateCategoryGUI\setTabs(), ilBasicSkillGUI\setTabs(), ilBasicSkillTemplateGUI\setTabs(), ilObjRootFolderGUI\setTitleAndDescription(), ilObjWorkspaceRootFolderGUI\setTitleAndDescription(), ilGroupAddToGroupActionGUI\show(), ilLearningHistoryGUI\show(), ilMembershipOverviewGUI\show(), ilDerivedTasksGUI\show(), ilObjWorkspaceFolderGUI\showAdministrationPanel(), ilImprintGUI\showEditToolbar(), ilNewsForContextBlockGUI\showFeedUrl(), ilPDNewsBlockGUI\showFeedUrl(), ilSkillRootGUI\showImportForm(), ilBasicSkillGUI\showLevelResources(), ilSkillProfileGUI\showLevels(), ilSkillProfileGUI\showLevelsWithLocalContext(), ilNewsForContextBlockGUI\showNews(), ilContainerObjectiveGUI\showObjectives(), ilLMImportGUI\showTranslationImportForm(), ilMediaPoolImportGUI\showTranslationImportForm(), ilSkillProfileGUI\showUsers(), ilObjTaggingSettingsGUI\showUsers(), ilSessionAppointment\timeToString(), ilStudyProgrammeAutoMailSettings\toFormInput(), ilContentStyleSettingsGUI\toggleGlobalDefault(), ilContentStyleSettingsGUI\toggleGlobalFixed(), toJS(), ilConditionHandlerGUI\translateOperator(), txtlng(), ilPCAMDFormGUI\update(), ilRatingCategoryGUI\update(), ilSkillTreeNodeGUI\update(), ilSkillProfileGUI\update(), ilPCDataTableGUI\update(), ilPCAMDFormGUI\updateAdvancedMetaData(), ilPCImageMapEditorGUI\updateAreas(), ilImageMapEditorGUI\updateAreas(), ilObjMediaPoolGUI\updateFolder(), ilPCDataTableGUI\updateJS(), ilBasicSkillGUI\updateLevel(), ilBasicSkillGUI\updateLevelOrder(), ilRatingCategoryGUI\updateOrder(), ilSkillTemplateReferenceGUI\updateSkillTemplateReference(), ilExcCriteriaFile\validate(), ilExcCriteriaRating\validate(), ilExcCriteriaText\validate(), ilExcCriteriaCatalogueGUI\view(), ilExcCriteriaGUI\view(), ilPDNotesGUI\view(), ilVirusScanner\virusHandling(), and ilExerciseManagementGUI\waitingDownloadObject().
ilLanguage::txtlng | ( | string | $a_module, |
string | $a_topic, | ||
string | $a_language | ||
) |
gets the text for a given topic in a given language if the topic is not in the list, the topic itself with "-" will be returned
Definition at line 157 of file class.ilLanguage.php.
References _lookupEntry(), and txt().
|
protected |
Definition at line 56 of file class.ilLanguage.php.
string ilLanguage::$comment_separator = "###" |
Definition at line 52 of file class.ilLanguage.php.
|
protected |
Definition at line 60 of file class.ilLanguage.php.
Referenced by ilSetupLanguage\checkLanguage(), getCustomLangPath(), and ilSetupLanguage\insertLanguage().
|
protected |
Definition at line 62 of file class.ilLanguage.php.
ILIAS ilLanguage::$ilias |
Definition at line 44 of file class.ilLanguage.php.
string ilLanguage::$lang_default |
Definition at line 46 of file class.ilLanguage.php.
Referenced by __construct().
string ilLanguage::$lang_key |
Definition at line 49 of file class.ilLanguage.php.
Referenced by getLangKey(), and loadLanguageModule().
string ilLanguage::$lang_name |
Definition at line 50 of file class.ilLanguage.php.
string ilLanguage::$lang_path |
Definition at line 48 of file class.ilLanguage.php.
string ilLanguage::$lang_user |
Definition at line 47 of file class.ilLanguage.php.
Referenced by getUserLanguage(), and loadLanguageModule().
|
staticprotected |
Definition at line 59 of file class.ilLanguage.php.
array ilLanguage::$loaded_modules = array() |
Definition at line 53 of file class.ilLanguage.php.
|
protected |
Definition at line 61 of file class.ilLanguage.php.
Referenced by ilSetupLanguage\txt().
|
protected |
Definition at line 57 of file class.ilLanguage.php.
string ilLanguage::$separator = "#:#" |
Definition at line 51 of file class.ilLanguage.php.
array ilLanguage::$text = [] |
Definition at line 45 of file class.ilLanguage.php.
|
protected |
Definition at line 58 of file class.ilLanguage.php.
|
staticprotected |
Definition at line 55 of file class.ilLanguage.php.
Referenced by getUsedModules().
|
staticprotected |
Definition at line 54 of file class.ilLanguage.php.
Referenced by getUsedTopics().