From de2784d376ead6666ccc0be749fa2c9876e9fbd5 Mon Sep 17 00:00:00 2001 From: Garvin Hicking Date: Thu, 23 Jan 2025 10:06:01 +0100 Subject: [PATCH] [TASK] Update permalink redirect matching for proper std:label (#217) * [TASK] Update fixture files via spider.sh to match recent content * [TASK] Update permalink redirect matching for proper std:label "std:label" is the authoritative lookup key in the objects.inv.json files. All other "std:..." definitions are fallback only. This patch ensures that 'std:label' receives priority, and all other lookups are only in case of "old style" permalinks or file name based permalinks. The unit test is adapted to also contain the two new link types "console-command" and "console-command-list" (together with fallback resolve for "confval" and "confval-menu"). * Update DocumentationLinker.php Co-authored-by: Andreas Kienast * [TASK] Include sorting in test fixtures, add verbose header error Also refactor index key matching to use simplified version. --------- Co-authored-by: Andreas Kienast --- legacy_hook/src/DocumentationLinker.php | 72 +- .../cms-core/main/en-us/objects.inv.json | 6810 ++++++------ .../typo3/cms-seo/12.4/en-us/objects.inv.json | 34 +- .../typo3/cms-seo/13.4/en-us/objects.inv.json | 438 +- .../typo3/cms-seo/main/en-us/objects.inv.json | 438 +- .../12.4/en-us/objects.inv.json | 4516 ++++---- .../13.4/en-us/objects.inv.json | 6214 ++++++----- .../main/en-us/objects.inv.json | 6442 ++++++----- .../main/en-us/objects.inv.json | 9746 ++++++++--------- .../dummy/main/en-us/objects.inv.json | 74 + legacy_hook/tests/Unit/PermalinksTest.php | 42 +- 11 files changed, 17953 insertions(+), 16873 deletions(-) create mode 100644 legacy_hook/tests/Unit/Fixtures/Permalinks/p/dummyvendor/dummy/main/en-us/objects.inv.json diff --git a/legacy_hook/src/DocumentationLinker.php b/legacy_hook/src/DocumentationLinker.php index d0b3acc7..2cf705cd 100644 --- a/legacy_hook/src/DocumentationLinker.php +++ b/legacy_hook/src/DocumentationLinker.php @@ -190,39 +190,63 @@ public function resolvePermalink(string $url): ResponseDescriber private function parseInventoryForIndex(string $index, array $json): string { - // This is some VERY simplified logic to parse the JSON. - // @todo may need refinement. This logic is deeply coupled to the phpdocumentor/guides parser - // We recognize a matching index in these groups to be the final - // URL with a fragment identifier: + // This is some simplified logic to parse the JSON. + // The $index is what is the input permalink, something like 'upgrade-run'. + // We search the whole objects.inv.json array structure for this specific key. + // Ideally, it is found in "std:label" (highest priority). + // Some other keys are also parsed as a fallback. + // If a key is prefixed like "confval-opcache-save-comments", this prefixed key is contained in std:label. + // It would have a second match in the "std:confval" array, but there without the "confval-" prefix, + // but the resolve is done through "std:label". + // The fallbacks will help if (accidentally) a permalink was made using a filename instead of a real anchor key. $docNodes = [ - 'std:doc' => '', - 'std:label' => '', - 'std:title' => '', - 'std:option' => '', + 'std:label', // Highest priority, this is what does 99,99% of all resolving! + 'std:doc', + 'std:title', + 'std:option', + 'php:class', + 'php:method', + 'php:interface', + 'php:property', ]; - // Everything NOT in this array uses a key like 'std:confval' - // to prefix 'confval'. Known: std:confval, std:confval-menu, - $link = ''; - foreach ($json as $mainKey => $subKeys) { + // Sort the JSON array to use the priority above. All unknown keys retain their order. + uksort($json, static function (string $keyA, string $keyB) use ($docNodes): int { + $indexA = array_search($keyA, $docNodes, true); + $indexB = array_search($keyB, $docNodes, true); + + // Keys in the desired order come first and are sorted according to their position in the desired order array $docNodes + if ($indexA !== false && $indexB !== false) { + return $indexA <=> $indexB; + } + + // Keys not in the desired order retain their relative position + if ($indexA !== false) { + return -1; + } + + if ($indexB !== false) { + return 1; + } + + return 0; + }); + + foreach ($json as $subKeys) { foreach ($subKeys as $indexName => $indexMetaData) { + // Note: In the future, we may want to do a check for + // in_array($mainKey, $docNodes, true) + // ($mainKey would be the key of the foreach($json) loop) + // to differentiate between a match contained in the $docNodes + // array above, or a fallback match. For now, this all just leads + // to the resolved links like 'ApiOverview/Events/Events/Core/Security/InvestigateMutationsEvent.html#typo3-cms-core-security-contentsecuritypolicy-event-investigatemutationsevent-policy' if ($indexName === $index) { - if (isset($docNodes[$mainKey])) { - // Resolves to an entry like 'ApiOverview/Events/Events/Core/Security/InvestigateMutationsEvent.html#typo3-cms-core-security-contentsecuritypolicy-event-investigatemutationsevent-policy' - $link = $indexMetaData[2]; - } else { - $docNodeTypeParts = explode(':', $mainKey); - // We make the link more specific by replacing something like - // std:confval + pagelink.html#some-entry - // to: - // pagelink.html#confval-some-entry - $link = str_replace('#', '#' . $docNodeTypeParts[1] . '-', $indexMetaData[2]); - } + return $indexMetaData[2]; } } } - return $link; + return ''; } // Note: Currently hardcoded to 'en-us' diff --git a/legacy_hook/tests/Unit/Fixtures/Permalinks/c/typo3/cms-core/main/en-us/objects.inv.json b/legacy_hook/tests/Unit/Fixtures/Permalinks/c/typo3/cms-core/main/en-us/objects.inv.json index f2dda5b3..a62d3e07 100644 --- a/legacy_hook/tests/Unit/Fixtures/Permalinks/c/typo3/cms-core/main/en-us/objects.inv.json +++ b/legacy_hook/tests/Unit/Fixtures/Permalinks/c/typo3/cms-core/main/en-us/objects.inv.json @@ -7266,6 +7266,12 @@ "Changelog\/12.4.x\/Important-104839-RTEProcessingConfigurationRespectsRemoveTags.html", "Important: #104839 - RTE processing YAML configuration now respects removeTags" ], + "Changelog\/12.4.x\/Important-96218-UseProperSurroundingHTMLTagsForFluidSystemEmail": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/12.4.x\/Important-96218-UseProperSurroundingHTMLTagsForFluidSystemEmail.html", + "Important: #96218 - Use proper surrounding \"html\" tags for Fluid SystemEmail" + ], "Changelog\/12.4.x\/Important-99781-ExportingAndDownloadingRecordsInTheListModule": [ "TYPO3 Core Changelog", "main", @@ -9306,6 +9312,18 @@ "Changelog\/13.4.x\/Important-105007-ManipulationOfFinalSearchQueryInEXTindexed_search.html", "Important: #105007 - Manipulation of final search query in EXT:indexed_search" ], + "Changelog\/13.4.x\/Important-105310-CreateCHARAndBINARYAsFixedLengthColumns": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/13.4.x\/Important-105310-CreateCHARAndBINARYAsFixedLengthColumns.html", + "Important: #105310 - Create CHAR and BINARY as fixed-length columns" + ], + "Changelog\/13.4.x\/Important-105653-RequireATemplateFilenameInExtbaseModuleTemplateRendering": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/13.4.x\/Important-105653-RequireATemplateFilenameInExtbaseModuleTemplateRendering.html", + "Important: #105653 - Require a template filename in extbase module template rendering" + ], "Changelog\/13.4.x\/Index": [ "TYPO3 Core Changelog", "main", @@ -9342,12 +9360,60 @@ "Changelog\/14.0\/Breaking-105733-FileNameValidatorNoLongerAcceptsCustomRegexIn__construct.html", "Breaking: #105733 - FileNameValidator no longer accepts custom regex in __construct()" ], + "Changelog\/14.0\/Breaking-105809-AfterMailerInitializationEventRemoved": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Breaking-105809-AfterMailerInitializationEventRemoved.html", + "Breaking: #105809 - AfterMailerInitializationEvent removed" + ], + "Changelog\/14.0\/Breaking-105855-RemoveFileBwCompatForAltAndLinkField": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Breaking-105855-RemoveFileBwCompatForAltAndLinkField.html", + "Breaking: #105855 - Remove file backwards compatibility for alt and link field" + ], + "Changelog\/14.0\/Breaking-105863-RemoveExposeNonexistentUserInForgotPasswordDialogSettingInExtfelogin": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Breaking-105863-RemoveExposeNonexistentUserInForgotPasswordDialogSettingInExtfelogin.html", + "Breaking: #105863 - Remove exposeNonexistentUserInForgotPasswordDialog setting in ext:felogin" + ], + "Changelog\/14.0\/Breaking-105920-Folder-getSubFolderThrowsFolderDoesNotExistException": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Breaking-105920-Folder-getSubFolderThrowsFolderDoesNotExistException.html", + "Breaking: #105920 - Folder->getSubFolder() throws FolderDoesNotExistException" + ], "Changelog\/14.0\/Feature-105624-PSR-14EventAfterBackendUserPasswordReset": [ "TYPO3 Core Changelog", "main", "Changelog\/14.0\/Feature-105624-PSR-14EventAfterBackendUserPasswordReset.html", "Feature: #105624 - PSR-14 event after a Backend user password has been reset" ], + "Changelog\/14.0\/Feature-105783-NotifyBackendUserOnFailedMFAVerificationAttempt": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Feature-105783-NotifyBackendUserOnFailedMFAVerificationAttempt.html", + "Feature: #105783 - Notify backend user on failed MFA verification attempts" + ], + "Changelog\/14.0\/Feature-105833-ExtendedPageTreeFilterFunctionality": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Feature-105833-ExtendedPageTreeFilterFunctionality.html", + "Feature: #105833 - Extended page tree filter functionality" + ], + "Changelog\/14.0\/Feature-92760-ConfigurableTimezoneForDateViewHelper": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Feature-92760-ConfigurableTimezoneForDateViewHelper.html", + "Feature: #92760 - Configurable timezone for DateViewHelper" + ], + "Changelog\/14.0\/Important-105310-CreateCHARAndBINARYAsFixedLengthColumns": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Important-105310-CreateCHARAndBINARYAsFixedLengthColumns.html", + "Important: #105310 - Create CHAR and BINARY as fixed-length columns" + ], "Changelog\/14.0\/Important-105538-ListTypeAndSubTypes": [ "TYPO3 Core Changelog", "main", @@ -27470,6 +27536,12 @@ "Changelog\/12.4.x\/Important-104839-RTEProcessingConfigurationRespectsRemoveTags.html#important-104839-1726124400", "Important: #104839 - RTE processing YAML configuration now respects removeTags" ], + "important-96218-1733990267": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/12.4.x\/Important-96218-UseProperSurroundingHTMLTagsForFluidSystemEmail.html#important-96218-1733990267", + "Important: #96218 - Use proper surrounding \"html\" tags for Fluid SystemEmail" + ], "important-99781-1707215955": [ "TYPO3 Core Changelog", "main", @@ -29486,6 +29558,18 @@ "Changelog\/13.4.x\/Important-105007-ManipulationOfFinalSearchQueryInEXTindexed_search.html#important-105007-1728977233", "Important: #105007 - Manipulation of final search query in EXT:indexed_search" ], + "important-105310-1736154830": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/13.4.x\/Important-105310-CreateCHARAndBINARYAsFixedLengthColumns.html#important-105310-1736154830", + "Important: #105310 - Create CHAR and BINARY as fixed-length columns" + ], + "important-105653-1732210472": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/13.4.x\/Important-105653-RequireATemplateFilenameInExtbaseModuleTemplateRendering.html#important-105653-1732210472", + "Important: #105653 - Require a template filename in extbase module template rendering" + ], "breaking-105377-1729513863": [ "TYPO3 Core Changelog", "main", @@ -29516,12 +29600,60 @@ "Changelog\/14.0\/Breaking-105733-FileNameValidatorNoLongerAcceptsCustomRegexIn__construct.html#breaking-105733-1733018161", "Breaking: #105733 - FileNameValidator no longer accepts custom regex in __construct()" ], + "breaking-105809-1733928218": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Breaking-105809-AfterMailerInitializationEventRemoved.html#breaking-105809-1733928218", + "Breaking: #105809 - AfterMailerInitializationEvent removed" + ], + "breaking-105855-1734686200": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Breaking-105855-RemoveFileBwCompatForAltAndLinkField.html#breaking-105855-1734686200", + "Breaking: #105855 - Remove file backwards compatibility for alt and link field" + ], + "breaking-105863-1735234295": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Breaking-105863-RemoveExposeNonexistentUserInForgotPasswordDialogSettingInExtfelogin.html#breaking-105863-1735234295", + "Breaking: #105863 - Remove exposeNonexistentUserInForgotPasswordDialog setting in ext:felogin" + ], + "breaking-105920-1736777357": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Breaking-105920-Folder-getSubFolderThrowsFolderDoesNotExistException.html#breaking-105920-1736777357", + "Breaking: #105920 - Folder->getSubFolder() throws FolderDoesNotExistException" + ], "feature-105624-1731956541": [ "TYPO3 Core Changelog", "main", "Changelog\/14.0\/Feature-105624-PSR-14EventAfterBackendUserPasswordReset.html#feature-105624-1731956541", "Feature: #105624 - PSR-14 event after a Backend user password has been reset" ], + "feature-105783-1733506414": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Feature-105783-NotifyBackendUserOnFailedMFAVerificationAttempt.html#feature-105783-1733506414", + "Feature: #105783 - Notify backend user on failed MFA verification attempts" + ], + "feature-105833-1734420558": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Feature-105833-ExtendedPageTreeFilterFunctionality.html#feature-105833-1734420558", + "Feature: #105833 - Extended page tree filter functionality" + ], + "feature-92760-1733907198": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Feature-92760-ConfigurableTimezoneForDateViewHelper.html#feature-92760-1733907198", + "Feature: #92760 - Configurable timezone for DateViewHelper" + ], + "important-105310-1736154829": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Important-105310-CreateCHARAndBINARYAsFixedLengthColumns.html#important-105310-1736154829", + "Important: #105310 - Create CHAR and BINARY as fixed-length columns" + ], "important-105538-1730752784": [ "TYPO3 Core Changelog", "main", @@ -40465,7 +40597,7 @@ "breaking-21638-abstractuserauthentication-lockip-property-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-21638-LockIPPropertyRemoved.html#breaking-21638-abstractuserauthentication-lockip-property-removed", + "Changelog\/10.0\/Breaking-21638-LockIPPropertyRemoved.html#breaking-21638", "Breaking: #21638 - AbstractUserAuthentication::lockIP property removed" ], "description": [ @@ -40495,19 +40627,19 @@ "breaking-81950-remove-leftover-workspaces-unpublishing-functionality": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-81950-RemoveLeftoverWorkspacesUnpublishingFunctionality.html#breaking-81950-remove-leftover-workspaces-unpublishing-functionality", + "Changelog\/10.0\/Breaking-81950-RemoveLeftoverWorkspacesUnpublishingFunctionality.html#breaking-81950", "Breaking: #81950 - Remove leftover workspaces unpublishing functionality" ], "breaking-86862-default-layout-of-ext-fluid-styled-content-does-not-use-spaceless-viewhelper-anymore": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-86862-DefaultLayoutOfExtfluid_styled_contentDoesNotUseSpacelessViewHelperAnymore.html#breaking-86862-default-layout-of-ext-fluid-styled-content-does-not-use-spaceless-viewhelper-anymore", + "Changelog\/10.0\/Breaking-86862-DefaultLayoutOfExtfluid_styled_contentDoesNotUseSpacelessViewHelperAnymore.html#breaking-86862", "Breaking: #86862 - Default Layout of ext:fluid_styled_content does not use spaceless viewHelper anymore" ], "breaking-87009-use-multiple-translation-files-by-default-in-ext-form": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-87009-UseMultipleTranslationFilesByDefaultInEXTform.html#breaking-87009-use-multiple-translation-files-by-default-in-ext-form", + "Changelog\/10.0\/Breaking-87009-UseMultipleTranslationFilesByDefaultInEXTform.html#breaking-87009", "Breaking: #87009 - Use multiple translation files by default in EXT:form" ], "single-file": [ @@ -40525,79 +40657,79 @@ "breaking-87193-deprecated-functionality-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-87193-DeprecatedFunctionalityRemoved.html#breaking-87193-deprecated-functionality-removed", + "Changelog\/10.0\/Breaking-87193-DeprecatedFunctionalityRemoved.html#breaking-87193", "Breaking: #87193 - Deprecated functionality removed" ], "breaking-87305-use-constructor-injection-in-datamapper": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-87305-UseConstructorInjectionInDataMapper.html#breaking-87305-use-constructor-injection-in-datamapper", + "Changelog\/10.0\/Breaking-87305-UseConstructorInjectionInDataMapper.html#breaking-87305", "Breaking: #87305 - Use constructor injection in DataMapper" ], "breaking-87511-remove-namespacesviewobjectnamepattern-property": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-87511-RemoveNamespacesViewObjectNamePatternProperty.html#breaking-87511-remove-namespacesviewobjectnamepattern-property", + "Changelog\/10.0\/Breaking-87511-RemoveNamespacesViewObjectNamePatternProperty.html#breaking-87511-1668719172", "Breaking: #87511 - Remove $namespacesViewObjectNamePattern property" ], "breaking-87511-remove-viewformattoobjectnamemap-property": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-87511-RemoveViewFormatToObjectNameMapProperty.html#breaking-87511-remove-viewformattoobjectnamemap-property", + "Changelog\/10.0\/Breaking-87511-RemoveViewFormatToObjectNameMapProperty.html#breaking-87511", "Breaking: #87511 - Remove $viewFormatToObjectNameMap property" ], "breaking-87558-consolidate-extbase-caches": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-87558-ConsolidateExtbaseCaches.html#breaking-87558-consolidate-extbase-caches", + "Changelog\/10.0\/Breaking-87558-ConsolidateExtbaseCaches.html#breaking-87558", "Breaking: #87558 - Consolidate extbase caches" ], "breaking-87567-global-variable-tbe-template-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-87567-GlobalVariableTBE_TEMPLATERemoved.html#breaking-87567-global-variable-tbe-template-removed", + "Changelog\/10.0\/Breaking-87567-GlobalVariableTBE_TEMPLATERemoved.html#breaking-87567", "Breaking: #87567 - Global variable $TBE_TEMPLATE removed" ], "breaking-87583-remove-obsolete-apc-cache-backend-implementation": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-87583-RemoveObsoleteAPCCacheBackendImplementation.html#breaking-87583-remove-obsolete-apc-cache-backend-implementation", + "Changelog\/10.0\/Breaking-87583-RemoveObsoleteAPCCacheBackendImplementation.html#breaking-87583", "Breaking: #87583 - Remove obsolete APC Cache Backend implementation" ], "breaking-87594-harden-extbase": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-87594-HardenExtbase.html#breaking-87594-harden-extbase", + "Changelog\/10.0\/Breaking-87594-HardenExtbase.html#breaking-87594", "Breaking: #87594 - Harden extbase" ], "breaking-87623-replace-config-persistence-classes-typoscript-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-87623-ReplaceConfigpersistenceclassesTyposcriptConfiguration.html#breaking-87623-replace-config-persistence-classes-typoscript-configuration", + "Changelog\/10.0\/Breaking-87623-ReplaceConfigpersistenceclassesTyposcriptConfiguration.html#breaking-87623", "Breaking: #87623 - Replace config.persistence.classes typoscript configuration" ], "breaking-87627-remove-property-extensionname-of-abstractcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-87627-RemovePropertyExtensionNameOfAbstractController.html#breaking-87627-remove-property-extensionname-of-abstractcontroller", + "Changelog\/10.0\/Breaking-87627-RemovePropertyExtensionNameOfAbstractController.html#breaking-87627", "Breaking: #87627 - Remove Property extensionName of AbstractController" ], "breaking-87936-tca-for-sys-history-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-87936-TCAForSysHistoryRemoved.html#breaking-87936-tca-for-sys-history-removed", + "Changelog\/10.0\/Breaking-87936-TCAForSysHistoryRemoved.html#breaking-87936", "Breaking: #87936 - TCA for sys_history removed" ], "breaking-87937-tca-option-selicon-field-path-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-87937-TCAOption_selicon_field_path_removed.html#breaking-87937-tca-option-selicon-field-path-removed", + "Changelog\/10.0\/Breaking-87937-TCAOption_selicon_field_path_removed.html#breaking-87937", "Breaking: #87937 - TCA option \"selicon_field_path\" removed" ], "breaking-87957-validators-are-not-registered-automatically-in-extbase-anymore": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-87957-DoNotMagicallyRegisterValidators.html#breaking-87957-validators-are-not-registered-automatically-in-extbase-anymore", + "Changelog\/10.0\/Breaking-87957-DoNotMagicallyRegisterValidators.html#breaking-87957", "Breaking: #87957 - Validators are not registered automatically in Extbase anymore" ], "domain-validators": [ @@ -40615,229 +40747,229 @@ "breaking-87989-tca-option-settodefaultoncopy-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-87989-TCAOptionSetToDefaultOnCopyRemoved.html#breaking-87989-tca-option-settodefaultoncopy-removed", + "Changelog\/10.0\/Breaking-87989-TCAOptionSetToDefaultOnCopyRemoved.html#breaking-87989", "Breaking: #87989 - TCA option setToDefaultOnCopy removed" ], "breaking-88129-renamed-felogin-flexform-fields": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88129-RenameFeloginFlexformFields.html#breaking-88129-renamed-felogin-flexform-fields", + "Changelog\/10.0\/Breaking-88129-RenameFeloginFlexformFields.html#breaking-88129", "Breaking: #88129 - Renamed felogin flexform fields" ], "breaking-88143-version-related-database-field-t3ver-id-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88143-Version-relatedDatabaseFieldT3ver_idRemoved.html#breaking-88143-version-related-database-field-t3ver-id-removed", + "Changelog\/10.0\/Breaking-88143-Version-relatedDatabaseFieldT3ver_idRemoved.html#breaking-88143", "Breaking: #88143 - Version-related database field \"t3ver_id\" removed" ], "breaking-88182-jsfunc-inline-js-has-been-dropped": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88182-JsfuncInlineJsHasBeenDropped.html#breaking-88182-jsfunc-inline-js-has-been-dropped", + "Changelog\/10.0\/Breaking-88182-JsfuncInlineJsHasBeenDropped.html#breaking-88182", "Breaking: #88182 - jsfunc.inline.js has been dropped" ], "breaking-88366-removed-prefix-of-cache-tables": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88366-RemovedCf_PrefixOfCacheTables.html#breaking-88366-removed-prefix-of-cache-tables", + "Changelog\/10.0\/Breaking-88366-RemovedCf_PrefixOfCacheTables.html#breaking-88366", "Breaking: #88366 - Removed prefix of cache tables" ], "breaking-88376-removed-obsolete-pagenotfound-handling-settings": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88376-RemovedObsoletePageNotFound_handlingSettings.html#breaking-88376-removed-obsolete-pagenotfound-handling-settings", + "Changelog\/10.0\/Breaking-88376-RemovedObsoletePageNotFound_handlingSettings.html#breaking-88376", "Breaking: #88376 - Removed obsolete \"pageNotFound_handling\" settings" ], "breaking-88411-tbe-editor-typo3form-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88411-TBE_EDITORtypo3formRemoved.html#breaking-88411-tbe-editor-typo3form-removed", + "Changelog\/10.0\/Breaking-88411-TBE_EDITORtypo3formRemoved.html#breaking-88411", "Breaking: #88411 - TBE_EDITOR.typo3form removed" ], "breaking-88427-jsfunc-evalfield-js-has-been-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88427-JsfuncevalfieldjsHasBeenRemoved.html#breaking-88427-jsfunc-evalfield-js-has-been-removed", + "Changelog\/10.0\/Breaking-88427-JsfuncevalfieldjsHasBeenRemoved.html#breaking-88427", "Breaking: #88427 - jsfunc.evalfield.js has been removed" ], "breaking-88458-removed-frontend-track-user-ftu-functionality": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88458-RemovedFrontendTrackUserFtuFunctionality.html#breaking-88458-removed-frontend-track-user-ftu-functionality", + "Changelog\/10.0\/Breaking-88458-RemovedFrontendTrackUserFtuFunctionality.html#breaking-88458", "Breaking: #88458 - Removed Frontend Track User \"ftu\" functionality" ], "breaking-88496-method-getswitchablecontrolleractions-has-been-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88496-MethodGetSwitchableControllerActionsHasBeenRemoved.html#breaking-88496-method-getswitchablecontrolleractions-has-been-removed", + "Changelog\/10.0\/Breaking-88496-MethodGetSwitchableControllerActionsHasBeenRemoved.html#breaking-88496", "Breaking: #88496 - Method getSwitchableControllerActions has been removed" ], "breaking-88498-global-data-for-timetracker-statistics-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88498-GlobalDataForTimeTrackerStatisticsRemoved.html#breaking-88498-global-data-for-timetracker-statistics-removed", + "Changelog\/10.0\/Breaking-88498-GlobalDataForTimeTrackerStatisticsRemoved.html#breaking-88498", "Breaking: #88498 - Global data for TimeTracker statistics removed" ], "breaking-88500-rte-image-handling-functionality-dropped": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88500-RTEImageHandlingFunctionalityDropped.html#breaking-88500-rte-image-handling-functionality-dropped", + "Changelog\/10.0\/Breaking-88500-RTEImageHandlingFunctionalityDropped.html#breaking-88500", "Breaking: #88500 - RTE image handling functionality dropped" ], "breaking-88525-remove-createdirs-directive-of-extension-installation-em-conf-php": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88525-RemoveCreateDirsDirectiveOfExtensionInstallationEm_confphp.html#breaking-88525-remove-createdirs-directive-of-extension-installation-em-conf-php", + "Changelog\/10.0\/Breaking-88525-RemoveCreateDirsDirectiveOfExtensionInstallationEm_confphp.html#breaking-88525", "Breaking: #88525 - Remove \"createDirs\" directive of extension installation \/ em_conf.php" ], "breaking-88527-overriding-custom-values-in-user-authentication-derivatives": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88527-OverridingCustomValuesInUserAuthenticationDerivatives.html#breaking-88527-overriding-custom-values-in-user-authentication-derivatives", + "Changelog\/10.0\/Breaking-88527-OverridingCustomValuesInUserAuthenticationDerivatives.html#breaking-88527", "Breaking: #88527 - Overriding custom values in User Authentication derivatives" ], "breaking-88540-changed-request-workflow-for-frontend-requests": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88540-ChangedRequestWorkflowForFrontendRequests.html#breaking-88540-changed-request-workflow-for-frontend-requests", + "Changelog\/10.0\/Breaking-88540-ChangedRequestWorkflowForFrontendRequests.html#breaking-88540", "Breaking: #88540 - Changed Request Workflow for Frontend Requests" ], "breaking-88564-pagetsconfig-setting-tsfe-constants-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88564-PageTSconfigSettingTSFEconstantsRemoved.html#breaking-88564-pagetsconfig-setting-tsfe-constants-removed", + "Changelog\/10.0\/Breaking-88564-PageTSconfigSettingTSFEconstantsRemoved.html#breaking-88564", "Breaking: #88564 - PageTSconfig setting \"TSFE.constants\" removed" ], "breaking-88574-4th-parameter-of-pagerepository-enablefields-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88574-4thParameterOfPageRepository-enableFieldsRemoved.html#breaking-88574-4th-parameter-of-pagerepository-enablefields-removed", + "Changelog\/10.0\/Breaking-88574-4thParameterOfPageRepository-enableFieldsRemoved.html#breaking-88574", "Breaking: #88574 - 4th parameter of PageRepository->enableFields removed" ], "breaking-88583-database-field-sys-language-static-lang-isocode-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88583-DatabaseFieldSys_languagestatic_lang_isocodeRemoved.html#breaking-88583-database-field-sys-language-static-lang-isocode-removed", + "Changelog\/10.0\/Breaking-88583-DatabaseFieldSys_languagestatic_lang_isocodeRemoved.html#breaking-88583", "Breaking: #88583 - Database field sys_language.static_lang_isocode removed" ], "breaking-88638-streamlined-softrefparser-reference-lookup": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88638-StreamlinedSoftRefParserReferenceLookup.html#breaking-88638-streamlined-softrefparser-reference-lookup", + "Changelog\/10.0\/Breaking-88638-StreamlinedSoftRefParserReferenceLookup.html#breaking-88638", "Breaking: #88638 - Streamlined SoftRefParser reference lookup" ], "breaking-88640-database-field-sys-template-nextlevel-and-typoscript-sublevel-inheritance-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88640-DatabaseFieldSys_templatenextLevelAndTypoScriptSublevel-InheritanceRemoved.html#breaking-88640-database-field-sys-template-nextlevel-and-typoscript-sublevel-inheritance-removed", + "Changelog\/10.0\/Breaking-88640-DatabaseFieldSys_templatenextLevelAndTypoScriptSublevel-InheritanceRemoved.html#breaking-88640", "Breaking: #88640 - Database field \"sys_template.nextLevel\" and TypoScript sublevel - inheritance removed" ], "breaking-88643-removed-swiftmailer-swiftmailer-dependency": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88643-RemovedSwiftmailerswiftmailerDependency.html#breaking-88643-removed-swiftmailer-swiftmailer-dependency", + "Changelog\/10.0\/Breaking-88643-RemovedSwiftmailerswiftmailerDependency.html#breaking-88643", "Breaking: #88643 - Removed swiftmailer\/swiftmailer dependency" ], "breaking-88646-removed-inheritance-of-abstractservice-from-abstractauthenticationservice": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88646-RemovedInheritanceOfAbstractServiceFromAbstractAuthenticationService.html#breaking-88646-removed-inheritance-of-abstractservice-from-abstractauthenticationservice", + "Changelog\/10.0\/Breaking-88646-RemovedInheritanceOfAbstractServiceFromAbstractAuthenticationService.html#breaking-88646", "Breaking: #88646 - Removed inheritance of AbstractService from AbstractAuthenticationService" ], "breaking-88657-popup-configuration-in-formengine-dropped": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88657-PopupConfigurationInFormEngineDropped.html#breaking-88657-popup-configuration-in-formengine-dropped", + "Changelog\/10.0\/Breaking-88657-PopupConfigurationInFormEngineDropped.html#breaking-88657", "Breaking: #88657 - Popup configuration in FormEngine dropped" ], "breaking-88660-globals-t3-var-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88660-GLOBALST3_VARRemoved.html#breaking-88660-globals-t3-var-removed", + "Changelog\/10.0\/Breaking-88660-GLOBALST3_VARRemoved.html#breaking-88660", "Breaking: #88660 - $GLOBALS[T3_VAR] removed" ], "breaking-88667-removed-additionaljavascriptsubmit-from-formengine": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88667-RemovedAdditionalJavaScriptSubmitFromFormEngine.html#breaking-88667-removed-additionaljavascriptsubmit-from-formengine", + "Changelog\/10.0\/Breaking-88667-RemovedAdditionalJavaScriptSubmitFromFormEngine.html#breaking-88667", "Breaking: #88667 - Removed additionalJavaScriptSubmit from FormEngine" ], "breaking-88669-formengine-formdataprovider-parentpagetca-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88669-FormEngineFormDataProviderParentPageTcaRemoved.html#breaking-88669-formengine-formdataprovider-parentpagetca-removed", + "Changelog\/10.0\/Breaking-88669-FormEngineFormDataProviderParentPageTcaRemoved.html#breaking-88669", "Breaking: #88669 - FormEngine FormDataProvider \"parentPageTca\" removed" ], "breaking-88681-import-of-php-files-in-import-export-files-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88681-ImportOfPHPFilesInImportExportFilesRemoved.html#breaking-88681-import-of-php-files-in-import-export-files-removed", + "Changelog\/10.0\/Breaking-88681-ImportOfPHPFilesInImportExportFilesRemoved.html#breaking-88681", "Breaking: #88681 - Import of PHP files in Import\/Export files removed" ], "breaking-88687-configure-extbase-request-handlers-via-php": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88687-ConfigureExtbaseRequestHandlersViaPHP.html#breaking-88687-configure-extbase-request-handlers-via-php", + "Changelog\/10.0\/Breaking-88687-ConfigureExtbaseRequestHandlersViaPHP.html#breaking-88687", "Breaking: #88687 - Configure extbase request handlers via PHP" ], "breaking-88706-streamline-felogin-locallang-keys": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88706-StreamlineFeloginLocallangKeys.html#breaking-88706-streamline-felogin-locallang-keys", + "Changelog\/10.0\/Breaking-88706-StreamlineFeloginLocallangKeys.html#breaking-88706", "Breaking: #88706 - Streamline felogin locallang keys" ], "breaking-88724-remove-superfluous-methods-of-localizationredirect": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88724-RemoveSuperfluousMethodsOfLocalizationRedirect.html#breaking-88724-remove-superfluous-methods-of-localizationredirect", + "Changelog\/10.0\/Breaking-88724-RemoveSuperfluousMethodsOfLocalizationRedirect.html#breaking-88724", "Breaking: #88724 - Remove superfluous methods of localizationRedirect" ], "breaking-88741-chash-calculation-in-indexed-search-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88741-CHashCalculationInIndexedSearchRemoved.html#breaking-88741-chash-calculation-in-indexed-search-removed", + "Changelog\/10.0\/Breaking-88741-CHashCalculationInIndexedSearchRemoved.html#breaking-88741", "Breaking: #88741 - cHash calculation in indexed search removed" ], "breaking-88744-database-fields-related-to-css-styled-content-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88744-DatabaseFieldsRelatedToCSSStyledContentRemoved.html#breaking-88744-database-fields-related-to-css-styled-content-removed", + "Changelog\/10.0\/Breaking-88744-DatabaseFieldsRelatedToCSSStyledContentRemoved.html#breaking-88744", "Breaking: #88744 - Database fields related to CSS Styled Content removed" ], "breaking-88755-remove-post-option-from-typolink-addquerystring-method": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88755-RemovePOSTOptionFromTypolinkaddQueryStringmethod.html#breaking-88755-remove-post-option-from-typolink-addquerystring-method", + "Changelog\/10.0\/Breaking-88755-RemovePOSTOptionFromTypolinkaddQueryStringmethod.html#breaking-88755", "Breaking: #88755 - Remove POST option from typolink.addQueryString.method" ], "breaking-88758-selective-concatenation-of-css-files-in-resourcecompressor-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88758-SelectiveConcatenationOfCSSFilesInResourceCompressorRemoved.html#breaking-88758-selective-concatenation-of-css-files-in-resourcecompressor-removed", + "Changelog\/10.0\/Breaking-88758-SelectiveConcatenationOfCSSFilesInResourceCompressorRemoved.html#breaking-88758", "Breaking: #88758 - Selective Concatenation of CSS files in ResourceCompressor removed" ], "breaking-88772-javascript-script-tags-omit-type-text-javascript-in-html5": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88772-JavaScriptScriptTagsOmitTypetextjavascriptInHTML5.html#breaking-88772-javascript-script-tags-omit-type-text-javascript-in-html5", + "Changelog\/10.0\/Breaking-88772-JavaScriptScriptTagsOmitTypetextjavascriptInHTML5.html#breaking-88772", "Breaking: #88772 - JavaScript script tags omit type=text\/javascript in HTML5" ], "breaking-88779-recordlist-remove-unused-code": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88779-RecordListRemoveUnusedCode.html#breaking-88779-recordlist-remove-unused-code", + "Changelog\/10.0\/Breaking-88779-RecordListRemoveUnusedCode.html#breaking-88779", "Breaking: #88779 - RecordList: Remove unused code" ], "breaking-88799-introduced-psr-3-compatible-logging-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Breaking-88799-IntroducedPSR-3CompatibleLoggingAPI.html#breaking-88799-introduced-psr-3-compatible-logging-api", + "Changelog\/10.0\/Breaking-88799-IntroducedPSR-3CompatibleLoggingAPI.html#breaking-88799", "Breaking: #88799 - Introduced PSR-3 compatible Logging API" ], "deprecation-80420-emailfinisher-single-address-options": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-80420-EmailFinisherSingleAddressOptions.html#deprecation-80420-emailfinisher-single-address-options", + "Changelog\/10.0\/Deprecation-80420-EmailFinisherSingleAddressOptions.html#deprecation-80420", "Deprecation: #80420 - EmailFinisher single address options" ], "multiple-recipients": [ @@ -40867,43 +40999,43 @@ "deprecation-82669-streamline-backend-route-path-inconsistencies": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-82669-StreamlineBackendRoutePathInconsistencies.html#deprecation-82669-streamline-backend-route-path-inconsistencies", + "Changelog\/10.0\/Deprecation-82669-StreamlineBackendRoutePathInconsistencies.html#deprecation-82669", "Deprecation: #82669 - Streamline Backend route path inconsistencies" ], "deprecation-85895-deprecate-file-getmetadata": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-85895-DeprecateFile_getMetaData.html#deprecation-85895-deprecate-file-getmetadata", + "Changelog\/10.0\/Deprecation-85895-DeprecateFile_getMetaData.html#deprecation-85895", "Deprecation: #85895 - Deprecate File::_getMetaData()" ], "deprecation-87200-emailfinisher-format-constants": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-87200-EmailFinisherFormatContants.html#deprecation-87200-emailfinisher-format-constants", + "Changelog\/10.0\/Deprecation-87200-EmailFinisherFormatContants.html#deprecation-87200-1668719172", "Deprecation: #87200 - EmailFinisher FORMAT_* constants" ], "deprecation-87200-emailfinisher-format-option": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-87200-EmailFinisherFormatOption.html#deprecation-87200-emailfinisher-format-option", + "Changelog\/10.0\/Deprecation-87200-EmailFinisherFormatOption.html#deprecation-87200", "Deprecation: #87200 - EmailFinisher \"format\" option" ], "deprecation-87305-use-constructor-injection-in-datamapper": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-87305-UseConstructorInjectionInDataMapper.html#deprecation-87305-use-constructor-injection-in-datamapper", + "Changelog\/10.0\/Deprecation-87305-UseConstructorInjectionInDataMapper.html#deprecation-87305", "Deprecation: #87305 - Use constructor injection in DataMapper" ], "deprecation-87332-avoid-runtime-reflection-calls-in-objectaccess": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-87332-AvoidRuntimeReflectionCallsInObjectAccess.html#deprecation-87332-avoid-runtime-reflection-calls-in-objectaccess", + "Changelog\/10.0\/Deprecation-87332-AvoidRuntimeReflectionCallsInObjectAccess.html#deprecation-87332", "Deprecation: #87332 - Avoid runtime reflection calls in ObjectAccess" ], "deprecation-87550-use-controller-classes-when-registering-plugins-modules": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-87550-UseControllerClassesWhenRegisteringPluginsmodules.html#deprecation-87550-use-controller-classes-when-registering-plugins-modules", + "Changelog\/10.0\/Deprecation-87550-UseControllerClassesWhenRegisteringPluginsmodules.html#deprecation-87550", "Deprecation: #87550 - Use controller classes when registering plugins\/modules" ], "conclusion": [ @@ -40915,151 +41047,151 @@ "deprecation-87613-deprecate-typo3-cms-extbase-utility-typehandlingutility-hex2bin": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-87613-DeprecateTYPO3CMSExtbaseUtilityTypeHandlingUtilityhex2bin.html#deprecation-87613-deprecate-typo3-cms-extbase-utility-typehandlingutility-hex2bin", + "Changelog\/10.0\/Deprecation-87613-DeprecateTYPO3CMSExtbaseUtilityTypeHandlingUtilityhex2bin.html#deprecation-87613", "Deprecation: #87613 - Deprecate \\TYPO3\\CMS\\Extbase\\Utility\\TypeHandlingUtility::hex2bin" ], "deprecation-87882-file-related-controllers-moved-to-ext-filelist": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-87882-FileRelatedControllersMovedToEXTfilelist.html#deprecation-87882-file-related-controllers-moved-to-ext-filelist", + "Changelog\/10.0\/Deprecation-87882-FileRelatedControllersMovedToEXTfilelist.html#deprecation-87882", "Deprecation: #87882 - File related controllers moved to EXT:filelist" ], "deprecation-87894-generalutility-idnaencode": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-87894-GeneralUtilityidnaEncode.html#deprecation-87894-generalutility-idnaencode", + "Changelog\/10.0\/Deprecation-87894-GeneralUtilityidnaEncode.html#deprecation-87894", "Deprecation: #87894 - GeneralUtility::idnaEncode" ], "deprecation-88366-default-caching-framework-cache-names-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-88366-DefaultCachingFrameworkCacheNamesChanged.html#deprecation-88366-default-caching-framework-cache-names-changed", + "Changelog\/10.0\/Deprecation-88366-DefaultCachingFrameworkCacheNamesChanged.html#deprecation-88366", "Deprecation: #88366 - Default caching framework cache names changed" ], "deprecation-88406-setcachehash-nocachehash-options-in-viewhelpers-and-uribuilder": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-88406-SetCacheHashnoCacheHashOptionsInViewHelpersAndUriBuilder.html#deprecation-88406-setcachehash-nocachehash-options-in-viewhelpers-and-uribuilder", + "Changelog\/10.0\/Deprecation-88406-SetCacheHashnoCacheHashOptionsInViewHelpersAndUriBuilder.html#deprecation-88406", "Deprecation: #88406 - setCacheHash\/noCacheHash options in ViewHelpers and UriBuilder" ], "deprecation-88428-top-rawurlencode-and-top-str-replace": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-88428-ToprawurlencodeAndTopstr_replace.html#deprecation-88428-top-rawurlencode-and-top-str-replace", + "Changelog\/10.0\/Deprecation-88428-ToprawurlencodeAndTopstr_replace.html#deprecation-88428", "Deprecation: #88428 - top.rawurlencode and top.str_replace" ], "deprecation-88432-replaced-md5-js-with-an-amd-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-88432-ReplacedMd5jsWithAnAMDModule.html#deprecation-88432-replaced-md5-js-with-an-amd-module", + "Changelog\/10.0\/Deprecation-88432-ReplacedMd5jsWithAnAMDModule.html#deprecation-88432", "Deprecation: #88432 - Replaced md5.js with an AMD module" ], "deprecation-88433-deprecate-top-openurlinwindow": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-88433-DeprecateTopopenUrlInWindow.html#deprecation-88433-deprecate-top-openurlinwindow", + "Changelog\/10.0\/Deprecation-88433-DeprecateTopopenUrlInWindow.html#deprecation-88433", "Deprecation: #88433 - Deprecate top.openUrlInWindow" ], "deprecation-88473-typoscriptfrontendcontroller-settinglocale": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-88473-TypoScriptFrontendController-settingLocale.html#deprecation-88473-typoscriptfrontendcontroller-settinglocale", + "Changelog\/10.0\/Deprecation-88473-TypoScriptFrontendController-settingLocale.html#deprecation-88473", "Deprecation: #88473 - TypoScriptFrontendController->settingLocale" ], "deprecation-88499-backendutility-getviewdomain": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-88499-BackendUtilitygetViewDomain.html#deprecation-88499-backendutility-getviewdomain", + "Changelog\/10.0\/Deprecation-88499-BackendUtilitygetViewDomain.html#deprecation-88499", "Deprecation: #88499 - BackendUtility::getViewDomain" ], "deprecation-88554-deprecated-methods-in-versionnumberutility": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-88554-DeprecatedMethodsInVersionNumberUtility.html#deprecation-88554-deprecated-methods-in-versionnumberutility", + "Changelog\/10.0\/Deprecation-88554-DeprecatedMethodsInVersionNumberUtility.html#deprecation-88554", "Deprecation: #88554 - Deprecated methods in VersionNumberUtility" ], "deprecation-88559-tsfe-sys-language-isocode": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-88559-TSFE-sys_language_isocode.html#deprecation-88559-tsfe-sys-language-isocode", + "Changelog\/10.0\/Deprecation-88559-TSFE-sys_language_isocode.html#deprecation-88559", "Deprecation: #88559 - $TSFE->sys_language_isocode" ], "deprecation-88567-globals-local-lang": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-88567-GLOBALS_LOCAL_LANG.html#deprecation-88567-globals-local-lang", + "Changelog\/10.0\/Deprecation-88567-GLOBALS_LOCAL_LANG.html#deprecation-88567", "Deprecation: #88567 - $GLOBALS['LOCAL_LANG']" ], "deprecation-88569-locales-initialize-in-favor-of-regular-singleton-instance": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-88569-LocalesinitializeInFavorOfRegularSingletonInstance.html#deprecation-88569-locales-initialize-in-favor-of-regular-singleton-instance", + "Changelog\/10.0\/Deprecation-88569-LocalesinitializeInFavorOfRegularSingletonInstance.html#deprecation-88569", "Deprecation: #88569 - Locales::initialize() in favor of regular singleton instance" ], "deprecation-88651-replace-typo3-cms-backend-splitbuttons-with-typo3-cms-backend-documentsaveactions": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-88651-ReplaceTYPO3CMSBackendSplitButtonsWithTYPO3CMSBackendDocumentSaveActions.html#deprecation-88651-replace-typo3-cms-backend-splitbuttons-with-typo3-cms-backend-documentsaveactions", + "Changelog\/10.0\/Deprecation-88651-ReplaceTYPO3CMSBackendSplitButtonsWithTYPO3CMSBackendDocumentSaveActions.html#deprecation-88651", "Deprecation: #88651 - Replace TYPO3\/CMS\/Backend\/SplitButtons with TYPO3\/CMS\/Backend\/DocumentSaveActions" ], "deprecation-88662-deprecated-backend-route-xmod-tximpexp": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-88662-DeprecatedBackendRouteXMOD_tximpexp.html#deprecation-88662-deprecated-backend-route-xmod-tximpexp", + "Changelog\/10.0\/Deprecation-88662-DeprecatedBackendRouteXMOD_tximpexp.html#deprecation-88662", "Deprecation: #88662 - Deprecated backend route xMOD_tximpexp" ], "deprecation-88746-pagerepository-php-class-moved-from-frontend-to-core-extension": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-88746-PageRepositoryPHPClassMovedFromFrontendToCoreExtension.html#deprecation-88746-pagerepository-php-class-moved-from-frontend-to-core-extension", + "Changelog\/10.0\/Deprecation-88746-PageRepositoryPHPClassMovedFromFrontendToCoreExtension.html#deprecation-88746", "Deprecation: #88746 - PageRepository PHP class moved from Frontend to Core Extension" ], "deprecation-88792-forcetemplateparsing-in-tsfe-and-templateservice": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-88792-ForceTemplateParsingInTSFEAndTemplateService.html#deprecation-88792-forcetemplateparsing-in-tsfe-and-templateservice", + "Changelog\/10.0\/Deprecation-88792-ForceTemplateParsingInTSFEAndTemplateService.html#deprecation-88792", "Deprecation: #88792 - forceTemplateParsing in TSFE and TemplateService" ], "deprecation-88807-adminpanel-initializableinterface-has-been-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Deprecation-88807-AdminPanelInitializableInterfaceHasBeenDeprecated.html#deprecation-88807-adminpanel-initializableinterface-has-been-deprecated", + "Changelog\/10.0\/Deprecation-88807-AdminPanelInitializableInterfaceHasBeenDeprecated.html#deprecation-88807", "Deprecation: #88807 - AdminPanel InitializableInterface has been deprecated" ], "feature-21638-introduced-ip-locking-for-ipv6": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Feature-21638-IntroducedIpLockingForIpv6.html#feature-21638-introduced-ip-locking-for-ipv6", + "Changelog\/10.0\/Feature-21638-IntroducedIpLockingForIpv6.html#feature-21638", "Feature: #21638 - Introduced IP locking for IPv6" ], "feature-56213-allow-sorting-file-list-by-file-meta-data-title": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Feature-56213-AllowSortingFilelistByFileMetadataTitle.html#feature-56213-allow-sorting-file-list-by-file-meta-data-title", + "Changelog\/10.0\/Feature-56213-AllowSortingFilelistByFileMetadataTitle.html#feature-56213", "Feature: #56213 - Allow sorting file list by file meta data \"title\"" ], "feature-78432-add-log-message-for-switch-user-action": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Feature-78432-AddLogMessageForSwitchUserAction.html#feature-78432-add-log-message-for-switch-user-action", + "Changelog\/10.0\/Feature-78432-AddLogMessageForSwitchUserAction.html#feature-78432", "Feature: #78432 - Add log message for \"Switch User action\"" ], "feature-80420-allow-multiple-recipients-in-email-finisher": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Feature-80420-AllowMultipleRecipientsInEmailFinisher.html#feature-80420-allow-multiple-recipients-in-email-finisher", + "Changelog\/10.0\/Feature-80420-AllowMultipleRecipientsInEmailFinisher.html#feature-80420", "Feature: #80420 - Allow multiple recipients in email finisher" ], "feature-83734-add-support-for-current-page-in-config-cache": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Feature-83734-AddSupportForCurrentPageInConfigcache.html#feature-83734-add-support-for-current-page-in-config-cache", + "Changelog\/10.0\/Feature-83734-AddSupportForCurrentPageInConfigcache.html#feature-83734", "Feature: #83734 - Add support for current page in config.cache" ], "feature-84112-symfony-dependency-injection-for-core-and-extbase": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Feature-84112-SymfonyDependencyInjectionForCoreAndExtbase.html#feature-84112-symfony-dependency-injection-for-core-and-extbase", + "Changelog\/10.0\/Feature-84112-SymfonyDependencyInjectionForCoreAndExtbase.html#feature-84112", "Feature: #84112 - Symfony dependency injection for core and extbase" ], "configuration": [ @@ -41089,61 +41221,61 @@ "feature-84757-double-click-in-structure-tree-changes-label": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Feature-84757-DoubleClickInStructureTreeChangesLabel.html#feature-84757-double-click-in-structure-tree-changes-label", + "Changelog\/10.0\/Feature-84757-DoubleClickInStructureTreeChangesLabel.html#feature-84757", "Feature: #84757 - Double click in structure tree changes label" ], "feature-85569-show-scheduler-information-in-the-system-information-toolbar": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Feature-85569-ShowSchedulerInformationsInTheSystemInformationToolbar.html#feature-85569-show-scheduler-information-in-the-system-information-toolbar", + "Changelog\/10.0\/Feature-85569-ShowSchedulerInformationsInTheSystemInformationToolbar.html#feature-85569", "Feature: #85569 - Show scheduler information in the system information toolbar" ], "feature-85607-new-thumbnailviewhelper-to-render-thumbnails-deferred": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Feature-85607-NewThumbnailViewHelperToRenderThumbnailsDeferred.html#feature-85607-new-thumbnailviewhelper-to-render-thumbnails-deferred", + "Changelog\/10.0\/Feature-85607-NewThumbnailViewHelperToRenderThumbnailsDeferred.html#feature-85607", "Feature: #85607 - New ThumbnailViewHelper to render thumbnails deferred" ], "feature-86629-implement-linkhandler-for-telephone-numbers": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Feature-86629-ImplementLinkHandlerForTelephoneNumbers.html#feature-86629-implement-linkhandler-for-telephone-numbers", + "Changelog\/10.0\/Feature-86629-ImplementLinkHandlerForTelephoneNumbers.html#feature-86629", "Feature: #86629 - Implement LinkHandler for telephone numbers" ], "feature-86964-allow-getting-class-property-default-value": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Feature-86964-AllowGettingClassPropertyDefaultValue.html#feature-86964-allow-getting-class-property-default-value", + "Changelog\/10.0\/Feature-86964-AllowGettingClassPropertyDefaultValue.html#feature-86964", "Feature: #86964 - Allow getting class property default value" ], "feature-87200-send-plaintext-and-html-mails-in-emailfinisher": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Feature-87200-SendPlaintextAndHTMLMailsInEmailFinisher.html#feature-87200-send-plaintext-and-html-mails-in-emailfinisher", + "Changelog\/10.0\/Feature-87200-SendPlaintextAndHTMLMailsInEmailFinisher.html#feature-87200", "Feature: #87200 - Send plaintext and HTML mails in EmailFinisher" ], "feature-87433-add-changefreq-and-priority-for-xml-sitemap": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Feature-87433-AddChangefreqAndPriority.html#feature-87433-add-changefreq-and-priority-for-xml-sitemap", + "Changelog\/10.0\/Feature-87433-AddChangefreqAndPriority.html#feature-87433", "Feature: #87433 - Add changefreq and priority for XML sitemap" ], "feature-87457-use-symfony-property-info-to-gather-doc-block-information": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Feature-87457-UseSymfonyproperty-infoToGatherDocBlockInformation.html#feature-87457-use-symfony-property-info-to-gather-doc-block-information", + "Changelog\/10.0\/Feature-87457-UseSymfonyproperty-infoToGatherDocBlockInformation.html#feature-87457", "Feature: #87457 - Use symfony\/property-info to gather doc block information" ], "feature-87665-introduce-bitset-class": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Feature-87665-IntroduceBitSetClass.html#feature-87665-introduce-bitset-class", + "Changelog\/10.0\/Feature-87665-IntroduceBitSetClass.html#feature-87665", "Feature: #87665 - Introduce BitSet class" ], "feature-87726-extend-frontendlogincontroller-hook-to-validate-password": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Feature-87726-ExtendFrontendLoginControllerHookToValidatePassword.html#feature-87726-extend-frontendlogincontroller-hook-to-validate-password", + "Changelog\/10.0\/Feature-87726-ExtendFrontendLoginControllerHookToValidatePassword.html#feature-87726", "Feature: #87726 - Extend FrontendLoginController Hook to validate password" ], "example-implementation": [ @@ -41155,73 +41287,73 @@ "feature-88643-new-mail-api-based-on-symfony-mailer-and-symfony-mime": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Feature-88643-NewMailAPIBasedOnSymfonymailerAndSymfonymime.html#feature-88643-new-mail-api-based-on-symfony-mailer-and-symfony-mime", + "Changelog\/10.0\/Feature-88643-NewMailAPIBasedOnSymfonymailerAndSymfonymime.html#feature-88643", "Feature: #88643 - New Mail API based on symfony\/mailer and symfony\/mime" ], "feature-88648-set-twitter-card-type-in-page-properties": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Feature-88648-DefineTwitterCardTypeInPageProperties.html#feature-88648-set-twitter-card-type-in-page-properties", + "Changelog\/10.0\/Feature-88648-DefineTwitterCardTypeInPageProperties.html#feature-88648", "Feature: #88648 - Set Twitter Card Type in page properties" ], "feature-88770-psr-14-based-eventdispatcher": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Feature-88770-PSR-14BasedEventDispatcher.html#feature-88770-psr-14-based-eventdispatcher", + "Changelog\/10.0\/Feature-88770-PSR-14BasedEventDispatcher.html#feature-88770", "Feature: #88770 - PSR-14 based EventDispatcher" ], "feature-88791-introduce-previewaspect-in-context": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Feature-88791-IntroducePreviewAspectInContext.html#feature-88791-introduce-previewaspect-in-context", + "Changelog\/10.0\/Feature-88791-IntroducePreviewAspectInContext.html#feature-88791", "Feature: #88791 - Introduce PreviewAspect in Context" ], "feature-88792-add-typoscriptaspect-to-handle-typoscript-rendering-context-settings": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Feature-88792-AddTypoScriptAspectToHandleTypoScriptRenderingContextSettings.html#feature-88792-add-typoscriptaspect-to-handle-typoscript-rendering-context-settings", + "Changelog\/10.0\/Feature-88792-AddTypoScriptAspectToHandleTypoScriptRenderingContextSettings.html#feature-88792", "Feature: #88792 - Add TypoScriptAspect to handle TypoScript Rendering Context settings" ], "feature-88799-introduced-psr-3-compatible-logging-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Feature-88799-IntroducedPSR-3CompatibleLoggingAPI.html#feature-88799-introduced-psr-3-compatible-logging-api", + "Changelog\/10.0\/Feature-88799-IntroducedPSR-3CompatibleLoggingAPI.html#feature-88799", "Feature: #88799 - Introduced PSR-3 compatible Logging API" ], "feature-88807-adminpanel-requestenricherinterface-has-been-introduced": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Feature-88807-AdminPanelRequestEnricherInterfaceHasBeenIntroduced.html#feature-88807-adminpanel-requestenricherinterface-has-been-introduced", + "Changelog\/10.0\/Feature-88807-AdminPanelRequestEnricherInterfaceHasBeenIntroduced.html#feature-88807", "Feature: #88807 - AdminPanel RequestEnricherInterface has been introduced" ], "important-87427-classschema-constants-marked-as-private": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Important-87427-ClassSchemaConstantsMarkedAsPrivate.html#important-87427-classschema-constants-marked-as-private", + "Changelog\/10.0\/Important-87427-ClassSchemaConstantsMarkedAsPrivate.html#important-87427", "Important: #87427 - ClassSchema constants marked as private" ], "important-87516-remove-core-http-requesthandlerinterface": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Important-87516-RemoveCoreHTTPRequestHandlerInterface.html#important-87516-remove-core-http-requesthandlerinterface", + "Changelog\/10.0\/Important-87516-RemoveCoreHTTPRequestHandlerInterface.html#important-87516", "Important: #87516 - Remove core HTTP RequestHandlerInterface" ], "important-87594-classes-use-strict-mode-and-scalar-type-hints": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Important-87603-ClassesUseStrictModeAndScarlarTypeHints.html#important-87594-classes-use-strict-mode-and-scalar-type-hints", + "Changelog\/10.0\/Important-87603-ClassesUseStrictModeAndScarlarTypeHints.html#important-87594", "Important: #87594 - Classes use strict mode and scalar type hints" ], "important-87894-removed-php-dependency-algo26-matthias-idna-convert": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Important-87894-RemovedPHPDependencyAlgo26-matthiasidna-convert.html#important-87894-removed-php-dependency-algo26-matthias-idna-convert", + "Changelog\/10.0\/Important-87894-RemovedPHPDependencyAlgo26-matthiasidna-convert.html#important-87894", "Important: #87894 - Removed PHP dependency algo26-matthias\/idna-convert" ], "important-88043-typescript-sources-moved-into-build-directory": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.0\/Important-88043-TypeScriptSourcesMovedIntoBuildDirectory.html#important-88043-typescript-sources-moved-into-build-directory", + "Changelog\/10.0\/Important-88043-TypeScriptSourcesMovedIntoBuildDirectory.html#important-88043", "Important: #88043 - TypeScript sources moved into Build directory" ], "10-0-changes": [ @@ -41233,13 +41365,13 @@ "breaking-changes": [ "TYPO3 Core Changelog", "main", - "Changelog-9-combined.html#breaking-changes", + "Changelog-9-combined.html#changelog-v9-bc", "Breaking Changes" ], "features": [ "TYPO3 Core Changelog", "main", - "Changelog-9-combined.html#features", + "Changelog-9-combined.html#changelog-v9-feat", "Features" ], "deprecation": [ @@ -41257,103 +41389,103 @@ "deprecation-88787-backendutility-editonclick": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Deprecation-88787-BackendUtilityEditOnClick.html#deprecation-88787-backendutility-editonclick", + "Changelog\/10.1\/Deprecation-88787-BackendUtilityEditOnClick.html#deprecation-88787", "Deprecation: #88787 - BackendUtility::editOnClick" ], "deprecation-88839-cli-lowlevel-request-handlers": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Deprecation-88839-CLILowlevelRequestHandlers.html#deprecation-88839-cli-lowlevel-request-handlers", + "Changelog\/10.1\/Deprecation-88839-CLILowlevelRequestHandlers.html#deprecation-88839", "Deprecation: #88839 - CLI lowlevel request handlers" ], "deprecation-88850-contentobjectrenderer-sendnotifyemail": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Deprecation-88850-ContentObjectRendererSendNotifyEmail.html#deprecation-88850-contentobjectrenderer-sendnotifyemail", + "Changelog\/10.1\/Deprecation-88850-ContentObjectRendererSendNotifyEmail.html#deprecation-88850", "Deprecation: #88850 - ContentObjectRenderer::sendNotifyEmail" ], "deprecation-88854-jumpext-of-recordlistcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Deprecation-88854-JumpExtOfRecordListController.html#deprecation-88854-jumpext-of-recordlistcontroller", + "Changelog\/10.1\/Deprecation-88854-JumpExtOfRecordListController.html#deprecation-88854", "Deprecation: #88854 - jumpExt() of RecordListController" ], "deprecation-88854-t3-this-location": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Deprecation-88854-T3_THIS_LOCATION.html#deprecation-88854-t3-this-location", + "Changelog\/10.1\/Deprecation-88854-T3_THIS_LOCATION.html#deprecation-88854-1668719172", "Deprecation: #88854 - T3_THIS_LOCATION" ], "deprecation-88862-t3-return-url": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Deprecation-88862-T3_RETURN_URL.html#deprecation-88862-t3-return-url", + "Changelog\/10.1\/Deprecation-88862-T3_RETURN_URL.html#deprecation-88862", "Deprecation: #88862 - T3_RETURN_URL" ], "deprecation-88995-calling-registerplugin-with-vendor-name": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Deprecation-88995-CallingRegisterPluginWithVendorName.html#deprecation-88995-calling-registerplugin-with-vendor-name", + "Changelog\/10.1\/Deprecation-88995-CallingRegisterPluginWithVendorName.html#deprecation-88995", "Deprecation: #88995 - Calling registerPlugin with vendor name" ], "deprecation-89001-internal-public-tsfe-properties": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Deprecation-89001-InternalPublicTSFEProperties.html#deprecation-89001-internal-public-tsfe-properties", + "Changelog\/10.1\/Deprecation-89001-InternalPublicTSFEProperties.html#deprecation-89001", "Deprecation: #89001 - Internal public TSFE properties" ], "deprecation-89033-jumptourl": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Deprecation-89033-JumpToUrl.html#deprecation-89033-jumptourl", + "Changelog\/10.1\/Deprecation-89033-JumpToUrl.html#deprecation-89033", "Deprecation: #89033 - jumpToUrl" ], "deprecation-89037-deprecated-locallangxmlparser": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Deprecation-89037-DeprecatedLocallangXmlParser.html#deprecation-89037-deprecated-locallangxmlparser", + "Changelog\/10.1\/Deprecation-89037-DeprecatedLocallangXmlParser.html#deprecation-89037", "Deprecation: #89037 - Deprecated LocallangXmlParser" ], "deprecation-89127-cleanup-recordhistory-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Deprecation-89127-CleanupRecordHistoryHandling.html#deprecation-89127-cleanup-recordhistory-handling", + "Changelog\/10.1\/Deprecation-89127-CleanupRecordHistoryHandling.html#deprecation-89127", "Deprecation: #89127 - Cleanup RecordHistory handling" ], "deprecation-89215-jquery-clearable": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Deprecation-89215-JQueryClearable.html#deprecation-89215-jquery-clearable", + "Changelog\/10.1\/Deprecation-89215-JQueryClearable.html#deprecation-89215", "Deprecation: #89215 - jQuery.clearable" ], "feature-78488-add-rel-noreferrer-to-external-links": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-78488-AddRelNoreferrerToExternalLinks.html#feature-78488-add-rel-noreferrer-to-external-links", + "Changelog\/10.1\/Feature-78488-AddRelNoreferrerToExternalLinks.html#feature-78488", "Feature: #78488 - Add rel=\"noreferrer\" to external links" ], "feature-84250-separately-enable-disable-add-media-by-url-and-select-upload-files": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-84250-SeparatelyEnableDisableAddMediaByURLAndSelectUploadFiles.html#feature-84250-separately-enable-disable-add-media-by-url-and-select-upload-files", + "Changelog\/10.1\/Feature-84250-SeparatelyEnableDisableAddMediaByURLAndSelectUploadFiles.html#feature-84250", "Feature: #84250 - Separately enable \/ disable \"Add media by URL\" and \"Select & upload files\"" ], "feature-85918-hide-in-menu-show-in-menu-entry-for-pages-in-context-menu": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-85918-HideInMenuShowInMenuEntryForPagesInContextMenu.html#feature-85918-hide-in-menu-show-in-menu-entry-for-pages-in-context-menu", + "Changelog\/10.1\/Feature-85918-HideInMenuShowInMenuEntryForPagesInContextMenu.html#feature-85918", "Feature: #85918 - Hide in menu \/ Show in menu entry for pages in context menu" ], "feature-86670-make-default-action-in-draguploader-adjustable": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-86670-MakeDefaultActionInDragUploaderAdjustable.html#feature-86670-make-default-action-in-draguploader-adjustable", + "Changelog\/10.1\/Feature-86670-MakeDefaultActionInDragUploaderAdjustable.html#feature-86670", "Feature: #86670 - Make default action in DragUploader adjustable" ], "feature-87525-add-api-1-option-in-vimeorenderer": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-87525-AddApi1OptionInVimeoRenderer.html#feature-87525-add-api-1-option-in-vimeorenderer", + "Changelog\/10.1\/Feature-87525-AddApi1OptionInVimeoRenderer.html#feature-87525", "Feature: #87525 - Add api=1 option in VimeoRenderer" ], "usage": [ @@ -41365,37 +41497,37 @@ "feature-88318-display-application-context-in-cli": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-88318-DisplayApplicationContextInCLI.html#feature-88318-display-application-context-in-cli", + "Changelog\/10.1\/Feature-88318-DisplayApplicationContextInCLI.html#feature-88318", "Feature: #88318 - Display Application Context in CLI" ], "feature-88441-show-configuration-of-user-int-objects-in-adminpanel": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-88441-ShowConfigurationOfUSER_INTObjectsInAdminpanel.html#feature-88441-show-configuration-of-user-int-objects-in-adminpanel", + "Changelog\/10.1\/Feature-88441-ShowConfigurationOfUSER_INTObjectsInAdminpanel.html#feature-88441", "Feature: #88441 - Show configuration of USER_INT objects in adminpanel" ], "feature-88602-allow-registering-additional-file-processors": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-88602-AllowAdditionalFileProcessors.html#feature-88602-allow-registering-additional-file-processors", + "Changelog\/10.1\/Feature-88602-AllowAdditionalFileProcessors.html#feature-88602", "Feature: #88602 - Allow registering additional file processors" ], "feature-88742-import-yaml-files-relative-to-the-current-yaml-file": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-88742-ImportYamlFilesRelativeToTheCurrentYamlFile.html#feature-88742-import-yaml-files-relative-to-the-current-yaml-file", + "Changelog\/10.1\/Feature-88742-ImportYamlFilesRelativeToTheCurrentYamlFile.html#feature-88742", "Feature: #88742 - Import Yaml files relative to the current yaml file" ], "feature-88805-add-type-to-typo3-cms-core-database-query-querybuilder-set": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-88805-AddTypeToTYPO3CMSCoreDatabaseQueryQueryBuilderset.html#feature-88805-add-type-to-typo3-cms-core-database-query-querybuilder-set", + "Changelog\/10.1\/Feature-88805-AddTypeToTYPO3CMSCoreDatabaseQueryQueryBuilderset.html#feature-88805", "Feature: #88805 - Add type to \\TYPO3\\CMS\\Core\\Database\\Query\\QueryBuilder::set" ], "feature-88871-handle-middleware-handler-in-requestfactory": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-88871-RequestFactoryRespectsGuzzleMiddlewareHandlerConfigurationFromTYPO3_CONF_VARS.html#feature-88871-handle-middleware-handler-in-requestfactory", + "Changelog\/10.1\/Feature-88871-RequestFactoryRespectsGuzzleMiddlewareHandlerConfigurationFromTYPO3_CONF_VARS.html#feature-88871", "Feature: #88871 - Handle middleware handler in RequestFactory" ], "example": [ @@ -41407,19 +41539,19 @@ "feature-88907-always-enable-filter-in-selectmultiplesidebyside-fields": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-88907-AlwaysEnableFilterInSelectMultipleSideBySideFields.html#feature-88907-always-enable-filter-in-selectmultiplesidebyside-fields", + "Changelog\/10.1\/Feature-88907-AlwaysEnableFilterInSelectMultipleSideBySideFields.html#feature-88907", "Feature: #88907 - Always enable filter in SelectMultipleSideBySide fields" ], "feature-89010-introduce-site-configuration-for-distribution-packages": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-89010-IntroduceSiteConfigForDistributionPackages.html#feature-89010-introduce-site-configuration-for-distribution-packages", + "Changelog\/10.1\/Feature-89010-IntroduceSiteConfigForDistributionPackages.html#feature-89010", "Feature: #89010 - Introduce Site Configuration for Distribution Packages" ], "feature-89018-provide-implementation-for-psr-17-http-message-factories": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-89018-ProvideImplementationForPSR-17HTTPMessageFactories.html#feature-89018-provide-implementation-for-psr-17-http-message-factories", + "Changelog\/10.1\/Feature-89018-ProvideImplementationForPSR-17HTTPMessageFactories.html#feature-89018", "Feature: #89018 - Provide implementation for PSR-17 HTTP Message Factories" ], "example-usage": [ @@ -41431,13 +41563,13 @@ "feature-89054-provide-core-cache-frontends-via-dependency-injection": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-89054-ProvideCoreCacheFrontendsViaDependencyInjection.html#feature-89054-provide-core-cache-frontends-via-dependency-injection", + "Changelog\/10.1\/Feature-89054-ProvideCoreCacheFrontendsViaDependencyInjection.html#feature-89054", "Feature: #89054 - Provide core cache frontends via dependency injection" ], "feature-89061-introduce-notification-actions": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-89061-IntroduceNotificationActions.html#feature-89061-introduce-notification-actions", + "Changelog\/10.1\/Feature-89061-IntroduceNotificationActions.html#feature-89061", "Feature: #89061 - Introduce Notification Actions" ], "immediateaction": [ @@ -41455,55 +41587,55 @@ "feature-89090-reports-for-conflicting-redirects": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-89090-ReportsForConflictingRedirects.html#feature-89090-reports-for-conflicting-redirects", + "Changelog\/10.1\/Feature-89090-ReportsForConflictingRedirects.html#feature-89090", "Feature: #89090 - Reports for conflicting redirects" ], "feature-89115-auto-slug-update-and-redirect-creation-on-slug-change": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-89115-Auto-createRedirectsOnSlugChanges.html#feature-89115-auto-slug-update-and-redirect-creation-on-slug-change", + "Changelog\/10.1\/Feature-89115-Auto-createRedirectsOnSlugChanges.html#feature-89115", "Feature: #89115 - Auto slug update and redirect creation on slug change" ], "feature-89142-create-site-configuration-if-page-is-created-on-root-level": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-89142-CreateSiteConfigurationIfPageIsCreatedOnRootLevel.html#feature-89142-create-site-configuration-if-page-is-created-on-root-level", + "Changelog\/10.1\/Feature-89142-CreateSiteConfigurationIfPageIsCreatedOnRootLevel.html#feature-89142", "Feature: #89142 - Create site configuration if page is created on root level" ], "feature-89143-allow-rollback-for-a-set-of-record-history-entries": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-89143-AllowRollbackForASetOfRecordHistoryEntries.html#feature-89143-allow-rollback-for-a-set-of-record-history-entries", + "Changelog\/10.1\/Feature-89143-AllowRollbackForASetOfRecordHistoryEntries.html#feature-89143", "Feature: #89143 - Allow rollback for a set of record history entries" ], "feature-89150-add-events-before-and-after-rollback-of-record-history-entries": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-89150-AddEventsBeforeAndAfterRollbackOfRecordHistoryEntries.html#feature-89150-add-events-before-and-after-rollback-of-record-history-entries", + "Changelog\/10.1\/Feature-89150-AddEventsBeforeAndAfterRollbackOfRecordHistoryEntries.html#feature-89150", "Feature: #89150 - Add events before and after rollback of record history entries" ], "feature-89216-psr-18-http-client-implementation": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-89216-PSR-18HTTPClientImplementation.html#feature-89216-psr-18-http-client-implementation", + "Changelog\/10.1\/Feature-89216-PSR-18HTTPClientImplementation.html#feature-89216", "Feature: #89216 - PSR-18 HTTP Client Implementation" ], "feature-89227-ask-for-email-address-while-installing-typo3": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-89227-AskForEmailAddressWhileInstallingTYPO3.html#feature-89227-ask-for-email-address-while-installing-typo3", + "Changelog\/10.1\/Feature-89227-AskForEmailAddressWhileInstallingTYPO3.html#feature-89227", "Feature: #89227 - Ask for email address while installing TYPO3" ], "feature-89229-cache-preset-for-settings-in-maintenance-area": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-89229-CachePresetForSettingsInMaintenanceArea.html#feature-89229-cache-preset-for-settings-in-maintenance-area", + "Changelog\/10.1\/Feature-89229-CachePresetForSettingsInMaintenanceArea.html#feature-89229", "Feature: #89229 - Cache Preset for Settings in Maintenance Area" ], "feature-89244-broadcast-channels-and-messaging": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-89244-BroadcastChannels.html#feature-89244-broadcast-channels-and-messaging", + "Changelog\/10.1\/Feature-89244-BroadcastChannels.html#feature-89244", "Feature: #89244 - Broadcast Channels and Messaging" ], "send-a-message": [ @@ -41521,25 +41653,25 @@ "feature-89292-add-support-for-recordhistory-correlationid-s-to-datahandler": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-89292-AddSupportForRecordHistoryCorrelationIdsToDataHandler.html#feature-89292-add-support-for-recordhistory-correlationid-s-to-datahandler", + "Changelog\/10.1\/Feature-89292-AddSupportForRecordHistoryCorrelationIdsToDataHandler.html#feature-89292", "Feature: #89292 - Add support for RecordHistory correlationId's to DataHandler" ], "feature-9070-allow-translation-of-index-configuration-titles": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Feature-9070-AllowTranslationOfIndexConfigurationTitles.html#feature-9070-allow-translation-of-index-configuration-titles", + "Changelog\/10.1\/Feature-9070-AllowTranslationOfIndexConfigurationTitles.html#feature-9070", "Feature: #9070 - Allow translation of index configuration titles" ], "important-89001-tsfe-createhashbase": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Important-89001-TSFE-createHashBase.html#important-89001-tsfe-createhashbase", + "Changelog\/10.1\/Important-89001-TSFE-createHashBase.html#important-89001", "Important: #89001 - TSFE->createHashBase" ], "important-89122-unified-evaluation-of-versioned-records-in-workspaces": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.1\/Important-89122-UnifiedEvaluationOfVersionedRecordsInWorkspaces.html#important-89122-unified-evaluation-of-versioned-records-in-workspaces", + "Changelog\/10.1\/Important-89122-UnifiedEvaluationOfVersionedRecordsInWorkspaces.html#important-89122", "Important: #89122 - Unified evaluation of versioned records in workspaces" ], "10-1-changes": [ @@ -41551,169 +41683,169 @@ "deprecation-85592-deprecated-site-title-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Deprecation-85592-DeprecatedSiteTitleConfiguration.html#deprecation-85592-deprecated-site-title-configuration", + "Changelog\/10.2\/Deprecation-85592-DeprecatedSiteTitleConfiguration.html#deprecation-85592", "Deprecation: #85592 - Deprecated site title configuration" ], "deprecation-88238-allowed-mime-types-of-fileupload-and-imageupload": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Deprecation-88238-AllowedMimeTypesOfFileUploadAndImageUpload.html#deprecation-88238-allowed-mime-types-of-fileupload-and-imageupload", + "Changelog\/10.2\/Deprecation-88238-AllowedMimeTypesOfFileUploadAndImageUpload.html#deprecation-88238", "Deprecation: #88238 - Allowed MIME types of FileUpload and ImageUpload" ], "deprecation-89331-formengine-legacy-functions": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Deprecation-89331-FormEngineLegacyFunctions.html#deprecation-89331-formengine-legacy-functions", + "Changelog\/10.2\/Deprecation-89331-FormEngineLegacyFunctions.html#deprecation-89331", "Deprecation: #89331 - FormEngine legacy functions" ], "deprecation-89468-deprecate-injection-of-environmentservice-in-web-request": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Deprecation-89468-DeprecateInjectionOfEnvironmentServiceInWebRequest.html#deprecation-89468-deprecate-injection-of-environmentservice-in-web-request", + "Changelog\/10.2\/Deprecation-89468-DeprecateInjectionOfEnvironmentServiceInWebRequest.html#deprecation-89468", "Deprecation: #89468 - Deprecate injection of EnvironmentService in Web Request" ], "deprecation-89554-deprecate-typo3-cms-extbase-mvc-controller-abstractcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Deprecation-89554-DeprecateTYPO3CMSExtbaseMvcControllerAbstractController.html#deprecation-89554-deprecate-typo3-cms-extbase-mvc-controller-abstractcontroller", + "Changelog\/10.2\/Deprecation-89554-DeprecateTYPO3CMSExtbaseMvcControllerAbstractController.html#deprecation-89554", "Deprecation: #89554 - Deprecate \\TYPO3\\CMS\\Extbase\\Mvc\\Controller\\AbstractController" ], "deprecation-89577-fal-signalslot-handling-migrated-to-psr-14-events": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Deprecation-89577-FALSignalSlotHandlingMigratedToPSR-14Events.html#deprecation-89577-fal-signalslot-handling-migrated-to-psr-14-events", + "Changelog\/10.2\/Deprecation-89577-FALSignalSlotHandlingMigratedToPSR-14Events.html#deprecation-89577", "Deprecation: #89577 - FAL SignalSlot handling migrated to PSR-14 events" ], "deprecation-89579-servicechains-require-an-array-for-excluded-service-keys": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Deprecation-89579-ServiceChainsRequireAnArrayForExcludedServiceKeys.html#deprecation-89579-servicechains-require-an-array-for-excluded-service-keys", + "Changelog\/10.2\/Deprecation-89579-ServiceChainsRequireAnArrayForExcludedServiceKeys.html#deprecation-89579", "Deprecation: #89579 - ServiceChains require an array for excluded Service keys" ], "deprecation-89631-use-environment-api-to-fetch-application-context": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Deprecation-89631-UseEnvironmentAPIToFetchApplicationContext.html#deprecation-89631-use-environment-api-to-fetch-application-context", + "Changelog\/10.2\/Deprecation-89631-UseEnvironmentAPIToFetchApplicationContext.html#deprecation-89631", "Deprecation: #89631 - Use Environment API to fetch application context" ], "deprecation-89718-legacy-pagetsconfig-parsing-lowlevel-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Deprecation-89718-LegacyPageTSconfigParsingLowlevelAPI.html#deprecation-89718-legacy-pagetsconfig-parsing-lowlevel-api", + "Changelog\/10.2\/Deprecation-89718-LegacyPageTSconfigParsingLowlevelAPI.html#deprecation-89718", "Deprecation: #89718 - Legacy PageTSconfig parsing lowlevel API" ], "deprecation-89722-gmenu-layers-related-property-tsfe-divsection": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Deprecation-89722-GMENU_LAYERSRelatedPropertyTSFE-divSection.html#deprecation-89722-gmenu-layers-related-property-tsfe-divsection", + "Changelog\/10.2\/Deprecation-89722-GMENU_LAYERSRelatedPropertyTSFE-divSection.html#deprecation-89722", "Deprecation: #89722 - GMENU_LAYERS related property TSFE->divSection" ], "deprecation-89733-signal-slots-in-core-extension-migrated-to-psr-14-events": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Deprecation-89733-SignalSlotsInCoreExtensionMigratedToPSR-14Events.html#deprecation-89733-signal-slots-in-core-extension-migrated-to-psr-14-events", + "Changelog\/10.2\/Deprecation-89733-SignalSlotsInCoreExtensionMigratedToPSR-14Events.html#deprecation-89733", "Deprecation: #89733 - Signal Slots in Core Extension migrated to PSR-14 events" ], "deprecation-89742-form-mixins": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Deprecation-89742-FormMixins.html#deprecation-89742-form-mixins", + "Changelog\/10.2\/Deprecation-89742-FormMixins.html#deprecation-89742", "Deprecation: #89742 - Form mixins" ], "deprecation-89756-backendutility-typo3-copyrightnotice": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Deprecation-89756-BackendUtilityTYPO3_copyRightNotice.html#deprecation-89756-backendutility-typo3-copyrightnotice", + "Changelog\/10.2\/Deprecation-89756-BackendUtilityTYPO3_copyRightNotice.html#deprecation-89756", "Deprecation: #89756 - BackendUtility::TYPO3_copyRightNotice" ], "feature-79445-add-multistep-wizard": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-79445-AddMultistepWizard.html#feature-79445-add-multistep-wizard", + "Changelog\/10.2\/Feature-79445-AddMultistepWizard.html#feature-79445", "Feature: #79445 - Add Multistep Wizard" ], "feature-79445-improve-form-creation-wizard": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-79445-ImproveFormCreationWizard.html#feature-79445-improve-form-creation-wizard", + "Changelog\/10.2\/Feature-79445-ImproveFormCreationWizard.html#feature-79445-1668719171", "Feature: #79445 - Improve form creation wizard" ], "feature-82706-render-fieldset-labels-in-form-templates": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-82706-RenderFieldsetLabelsInFormTemplates.html#feature-82706-render-fieldset-labels-in-form-templates", + "Changelog\/10.2\/Feature-82706-RenderFieldsetLabelsInFormTemplates.html#feature-82706", "Feature: #82706 - Render fieldset labels in form templates" ], "feature-84203-unify-form-setup-yaml-loading": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-84203-UnifyFormSetupYAMLLoading.html#feature-84203-unify-form-setup-yaml-loading", + "Changelog\/10.2\/Feature-84203-UnifyFormSetupYAMLLoading.html#feature-84203", "Feature: #84203 - Unify form setup YAML loading" ], "feature-84713-access-single-values-in-form-templates": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-84713-AccessSingleFormValuesInTemplates.html#feature-84713-access-single-values-in-form-templates", + "Changelog\/10.2\/Feature-84713-AccessSingleFormValuesInTemplates.html#feature-84713", "Feature: #84713 - Access single values in form templates" ], "feature-84990-add-event-for-checking-external-links-in-rte": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-84990-AddEventForCheckingExternalLinksInRTE.html#feature-84990-add-event-for-checking-external-links-in-rte", + "Changelog\/10.2\/Feature-84990-AddEventForCheckingExternalLinksInRTE.html#feature-84990-1668719171", "Feature: #84990 - Add event for checking external links in RTE" ], "feature-84990-mark-broken-file-links-in-rte": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-84990-MarkBrokenFileLinksInRTE.html#feature-84990-mark-broken-file-links-in-rte", + "Changelog\/10.2\/Feature-84990-MarkBrokenFileLinksInRTE.html#feature-84990", "Feature: #84990 - Mark broken file links in RTE" ], "feature-85592-add-site-title-configuration-to-sites-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-85592-AddSiteTitleConfigurationToSitesModule.html#feature-85592-add-site-title-configuration-to-sites-module", + "Changelog\/10.2\/Feature-85592-AddSiteTitleConfigurationToSitesModule.html#feature-85592", "Feature: #85592 - Add site title configuration to sites module" ], "feature-86759-support-nomodule-attribute-for-javascript-includes": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-86759-SupportNomoduleAttributeForJavaScriptIncludes.html#feature-86759-support-nomodule-attribute-for-javascript-includes", + "Changelog\/10.2\/Feature-86759-SupportNomoduleAttributeForJavaScriptIncludes.html#feature-86759", "Feature: #86759 - Support nomodule attribute for JavaScript includes" ], "feature-86818-reintroduce-keyboard-accessible-version-of-the-pagetree": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-86818-ReintroduceKeyboardAccessibleVersionOfThePagetree.html#feature-86818-reintroduce-keyboard-accessible-version-of-the-pagetree", + "Changelog\/10.2\/Feature-86818-ReintroduceKeyboardAccessibleVersionOfThePagetree.html#feature-86818", "Feature: #86818 - Reintroduce keyboard accessible version of the pagetree" ], "feature-86918-add-additional-configuration-for-external-link-types-in-linkvalidator": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-86918-AddAdditionalConfigurationForExternalLinkTypesInLinkvalidator.html#feature-86918-add-additional-configuration-for-external-link-types-in-linkvalidator", + "Changelog\/10.2\/Feature-86918-AddAdditionalConfigurationForExternalLinkTypesInLinkvalidator.html#feature-86918", "Feature: #86918 - Add additional configuration for external link types in Linkvalidator" ], "recommendation": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-86918-AddAdditionalConfigurationForExternalLinkTypesInLinkvalidator.html#recommendation", + "Changelog\/14.0\/Important-105310-CreateCHARAndBINARYAsFixedLengthColumns.html#recommendation", "Recommendation" ], "feature-86967-allow-fetching-uid-of-a-lazyloadingproxy-without-loading-the-object-first": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-86967-AllowFetchingUidOfALazyLoadingProxyWithoutLoadingTheObjectFirst.html#feature-86967-allow-fetching-uid-of-a-lazyloadingproxy-without-loading-the-object-first", + "Changelog\/10.2\/Feature-86967-AllowFetchingUidOfALazyLoadingProxyWithoutLoadingTheObjectFirst.html#feature-86967", "Feature: #86967 - Allow fetching uid of a LazyLoadingProxy without loading the object first" ], "feature-87798-provide-a-way-to-sort-form-lists-in-ext-form": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-87798-ProvideAWayToSortFormListsInExtform.html#feature-87798-provide-a-way-to-sort-form-lists-in-ext-form", + "Changelog\/10.2\/Feature-87798-ProvideAWayToSortFormListsInExtform.html#feature-87798", "Feature: #87798 - Provide a way to sort form lists in ext:form" ], "feature-88102-frontend-login-form-via-fluid-and-extbase": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-88102-FrontendLoginViaFluidAndExtbase.html#feature-88102-frontend-login-form-via-fluid-and-extbase", + "Changelog\/10.2\/Feature-88102-FrontendLoginViaFluidAndExtbase.html#feature-88102", "Feature: #88102 - Frontend Login Form Via Fluid And Extbase" ], "examples": [ @@ -41725,115 +41857,115 @@ "feature-88110-felogin-extbase-password-recovery": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-88110-FeloginExtbasePasswordRecovery.html#feature-88110-felogin-extbase-password-recovery", + "Changelog\/10.2\/Feature-88110-FeloginExtbasePasswordRecovery.html#feature-88110", "Feature: #88110 - Felogin extbase password recovery" ], "feature-88238-featuretoggle-form-legacyuploadmimetypes": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-88238-FeatureToggleFormlegacyUploadMimeTypes.html#feature-88238-featuretoggle-form-legacyuploadmimetypes", + "Changelog\/10.2\/Feature-88238-FeatureToggleFormlegacyUploadMimeTypes.html#feature-88238", "Feature: #88238 - FeatureToggle: form.legacyUploadMimeTypes" ], "feature-88902-feature-switch-redirect-and-base-redirect-middlewares-can-be-reordered": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-88902-FeatureSwitchRedirectAndStaticRoutesMiddlewaresCanBeReordered.html#feature-88902-feature-switch-redirect-and-base-redirect-middlewares-can-be-reordered", + "Changelog\/10.2\/Feature-88902-FeatureSwitchRedirectAndStaticRoutesMiddlewaresCanBeReordered.html#feature-88902", "Feature: #88902 - Feature Switch: Redirect and Base Redirect Middlewares can be reordered" ], "feature-88950-add-storesession-argument-to-widget-viewhelpers": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-88950-AddStoreSessionArgumentToWidgetViewHelpers.html#feature-88950-add-storesession-argument-to-widget-viewhelpers", + "Changelog\/10.2\/Feature-88950-AddStoreSessionArgumentToWidgetViewHelpers.html#feature-88950", "Feature: #88950 - Add \"storeSession\" argument to Widget ViewHelpers" ], "feature-89171-added-possibility-to-have-multiple-sitemaps": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-89171-AddedPossibilityToHaveMultipleSitemaps.html#feature-89171-added-possibility-to-have-multiple-sitemaps", + "Changelog\/10.2\/Feature-89171-AddedPossibilityToHaveMultipleSitemaps.html#feature-89171", "Feature: #89171 - Added possibility to have multiple sitemaps" ], "feature-89398-support-for-environment-variables-in-imports-in-site-configurations": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-89398-SupportForEnvironmentVariablesInImportsInSiteConfigurations.html#feature-89398-support-for-environment-variables-in-imports-in-site-configurations", + "Changelog\/10.2\/Feature-89398-SupportForEnvironmentVariablesInImportsInSiteConfigurations.html#feature-89398", "Feature: #89398 - Support for environment variables in imports in site configurations" ], "feature-89458-show-link-to-online-docs-in-extension-manager": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-89458-ShowLinkToOnlineDocsInExtensionManager.html#feature-89458-show-link-to-online-docs-in-extension-manager", + "Changelog\/10.2\/Feature-89458-ShowLinkToOnlineDocsInExtensionManager.html#feature-89458", "Feature: #89458 - Show link to online docs in extension manager" ], "feature-89526-featureflag-betatranslationserver": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-89526-FeatureFlagBetaTranslationServer.html#feature-89526-featureflag-betatranslationserver", + "Changelog\/10.2\/Feature-89526-FeatureFlagBetaTranslationServer.html#feature-89526-1668719171", "Feature: #89526 - FeatureFlag: betaTranslationServer" ], "feature-89577-new-psr-14-based-events-for-file-abstraction-layer": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-89577-NewPSR-14BasedEventsForFileAbstractionLayer.html#feature-89577-new-psr-14-based-events-for-file-abstraction-layer", + "Changelog\/10.2\/Feature-89577-NewPSR-14BasedEventsForFileAbstractionLayer.html#feature-89577", "Feature: #89577 - New PSR-14 based events for File Abstraction Layer" ], "feature-89603-introduce-native-pagination-for-lists": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-89603-IntroduceNativePaginationForLists.html#feature-89603-introduce-native-pagination-for-lists", + "Changelog\/10.2\/Feature-89603-IntroduceNativePaginationForLists.html#feature-89603", "Feature: #89603 - Introduce native pagination for lists" ], "feature-89718-unified-php-api-for-loading-pagetsconfig": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-89718-UnifiedPHPAPIForLoadingPageTSconfig.html#feature-89718-unified-php-api-for-loading-pagetsconfig", + "Changelog\/10.2\/Feature-89718-UnifiedPHPAPIForLoadingPageTSconfig.html#feature-89718", "Feature: #89718 - Unified PHP API for loading PageTSconfig" ], "feature-89733-new-psr-14-events-for-existing-signal-slots-in-core-extension": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-89733-NewPSR-14EventsForExistingSignalSlotsInCoreExtension.html#feature-89733-new-psr-14-events-for-existing-signal-slots-in-core-extension", + "Changelog\/10.2\/Feature-89733-NewPSR-14EventsForExistingSignalSlotsInCoreExtension.html#feature-89733", "Feature: #89733 - New PSR-14 events for existing Signal Slots in Core Extension" ], "feature-89746-custom-icon-for-record-browser-button-in-forms": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-89746-CustomIconForRecordBrowserButtonInForms.html#feature-89746-custom-icon-for-record-browser-button-in-forms", + "Changelog\/10.2\/Feature-89746-CustomIconForRecordBrowserButtonInForms.html#feature-89746", "Feature: #89746 - Custom icon for record browser button in forms" ], "feature-89747-custom-tables-with-record-browser-in-forms": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Feature-89747-CustomTablesWithRecordBrowserInForms.html#feature-89747-custom-tables-with-record-browser-in-forms", + "Changelog\/10.2\/Feature-89747-CustomTablesWithRecordBrowserInForms.html#feature-89747", "Feature: #89747 - Custom tables with record browser in forms" ], "important-84221-restructuring-of-form-setup": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Important-84221-RestructuringOfFormSetup.html#important-84221-restructuring-of-form-setup", + "Changelog\/10.2\/Important-84221-RestructuringOfFormSetup.html#important-84221", "Important: #84221 - Restructuring of form setup" ], "important-87518-use-prepared-statements-for-pdo-mysql-per-default": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Important-87518-UsePreparedStatementsForPdo_mysqlPerDefault.html#important-87518-use-prepared-statements-for-pdo-mysql-per-default", + "Changelog\/9.5.x\/Important-87518-UsePreparedStatementsForPdo_mysqlPerDefault.html#important-87518", "Important: #87518 - Use prepared statements for pdo_mysql per default" ], "important-88655-changed-loading-order-of-rte-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Important-88655-ChangedLoadingOrderOfRTEConfiguration.html#important-88655-changed-loading-order-of-rte-configuration", + "Changelog\/10.2\/Important-88655-ChangedLoadingOrderOfRTEConfiguration.html#important-88655", "Important: #88655 - Changed loading order of RTE Configuration" ], "important-89645-removed-systemlog-options": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Important-89645-RemovedSystemLogOptions.html#important-89645-removed-systemlog-options", + "Changelog\/10.2\/Important-89645-RemovedSystemLogOptions.html#important-89645", "Important: #89645 - Removed systemLog options" ], "important-89764-incompatible-environment-related-dependency-injection-services-have-been-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.2\/Important-89764-IncompatibleEnvironmentRelatedDependencyInjectionServicesHaveBeenRemoved.html#important-89764-incompatible-environment-related-dependency-injection-services-have-been-removed", + "Changelog\/10.2\/Important-89764-IncompatibleEnvironmentRelatedDependencyInjectionServicesHaveBeenRemoved.html#important-89764", "Important: #89764 - Incompatible environment related dependency injection services have been removed" ], "10-2-changes": [ @@ -41845,13 +41977,13 @@ "deprecation-89139-console-commands-configuration-format-commands-php": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Deprecation-89139-ConsoleCommandsConfigurationFormatCommandsPhp.html#deprecation-89139-console-commands-configuration-format-commands-php", + "Changelog\/10.3\/Deprecation-89139-ConsoleCommandsConfigurationFormatCommandsPhp.html#deprecation-89139", "Deprecation: #89139 - Console Commands configuration format Commands.php" ], "deprecation-89463-switchable-controller-actions": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Deprecation-89463-SwitchableControllerActions.html#deprecation-89463-switchable-controller-actions", + "Changelog\/10.3\/Deprecation-89463-SwitchableControllerActions.html#deprecation-89463", "Deprecation: #89463 - Switchable Controller Actions" ], "advantages-of-separate-plugins": [ @@ -41863,85 +41995,85 @@ "deprecation-89673-extbase-s-webrequest-and-webresponse": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Deprecation-89673-ExtbasesWebRequestAndWebResponse.html#deprecation-89673-extbase-s-webrequest-and-webresponse", + "Changelog\/10.3\/Deprecation-89673-ExtbasesWebRequestAndWebResponse.html#deprecation-89673", "Deprecation: #89673 - Extbase's WebRequest and WebResponse" ], "deprecation-89866-global-typo3-information-related-constants": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Deprecation-89866-Global-TYPO3-information-related-constants.html#deprecation-89866-global-typo3-information-related-constants", + "Changelog\/10.3\/Deprecation-89866-Global-TYPO3-information-related-constants.html#deprecation-89866", "Deprecation: #89866 - Global TYPO3-information related constants" ], "deprecation-89868-remove-reqchash-functionality-for-plugins": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Deprecation-89868-RemoveReqCHashFunctionalityForPlugins.html#deprecation-89868-remove-reqchash-functionality-for-plugins", + "Changelog\/10.3\/Deprecation-89868-RemoveReqCHashFunctionalityForPlugins.html#deprecation-89868", "Deprecation: #89868 - Remove reqCHash functionality for plugins" ], "deprecation-89870-new-psr-14-events-for-extbase-related-signals": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Deprecation-89870-NewPSR-14EventsForExtbase-relatedSignals.html#deprecation-89870-new-psr-14-events-for-extbase-related-signals", + "Changelog\/10.3\/Deprecation-89870-NewPSR-14EventsForExtbase-relatedSignals.html#deprecation-89870", "Deprecation: #89870 - New PSR-14 Events for Extbase-related signals" ], "deprecation-90007-global-constants-typo3-version-and-typo3-branch": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Deprecation-90007-GlobalConstantsTYPO3_versionAndTYPO3_branch.html#deprecation-90007-global-constants-typo3-version-and-typo3-branch", + "Changelog\/10.3\/Deprecation-90007-GlobalConstantsTYPO3_versionAndTYPO3_branch.html#deprecation-90007", "Deprecation: #90007 - Global constants TYPO3_version and TYPO3_branch" ], "deprecation-90019-page-permission-logic-by-datahandler": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Deprecation-90019-PagePermissionLogicByDataHandler.html#deprecation-90019-page-permission-logic-by-datahandler", + "Changelog\/10.3\/Deprecation-90019-PagePermissionLogicByDataHandler.html#deprecation-90019", "Deprecation: #90019 - Page permission logic by DataHandler" ], "deprecation-90249-package-related-signal-slots-migrated-to-psr-14-events": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Deprecation-90249-PackageRelatedSignalSlotsMigratedToPSR-14Events.html#deprecation-90249-package-related-signal-slots-migrated-to-psr-14-events", + "Changelog\/10.3\/Deprecation-90249-PackageRelatedSignalSlotsMigratedToPSR-14Events.html#deprecation-90249", "Deprecation: #90249 - Package related Signal Slots migrated to PSR-14 events" ], "deprecation-90258-simplified-rte-parser-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Deprecation-90258-SimplifiedRTEParserAPI.html#deprecation-90258-simplified-rte-parser-api", + "Changelog\/10.3\/Deprecation-90258-SimplifiedRTEParserAPI.html#deprecation-90258", "Deprecation: #90258 - Simplified RTE Parser API" ], "deprecation-90260-resourcefactory-getinstance-pseudo-factory": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Deprecation-90260-ResourceFactorygetInstancePseudo-factory.html#deprecation-90260-resourcefactory-getinstance-pseudo-factory", + "Changelog\/10.3\/Deprecation-90260-ResourceFactorygetInstancePseudo-factory.html#deprecation-90260", "Deprecation: #90260 - ResourceFactory::getInstance pseudo-factory" ], "deprecation-90348-pagelayoutview-class": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Deprecation-90348-PageLayoutViewClass.html#deprecation-90348-pagelayoutview-class", + "Changelog\/10.3\/Deprecation-90348-PageLayoutViewClass.html#deprecation-90348", "Deprecation: #90348 - PageLayoutView class" ], "deprecation-90390-brokenlinkrepository-getnumberofbrokenlinks-in-linkvalidator": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Deprecation-90390-BrokenLinkRepositorygetNumberOfBrokenLinksInLinkvalidator.html#deprecation-90390-brokenlinkrepository-getnumberofbrokenlinks-in-linkvalidator", + "Changelog\/10.3\/Deprecation-90390-BrokenLinkRepositorygetNumberOfBrokenLinksInLinkvalidator.html#deprecation-90390", "Deprecation: #90390 - BrokenLinkRepository::getNumberOfBrokenLinks() in linkvalidator" ], "deprecation-90421-documenttemplate": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Deprecation-90421-DocumentTemplate.html#deprecation-90421-documenttemplate", + "Changelog\/10.3\/Deprecation-90421-DocumentTemplate.html#deprecation-90421", "Deprecation: #90421 - DocumentTemplate" ], "deprecation-90522-tsfe-properties-regarding-images": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Deprecation-90522-TSFEPropertiesRegardingImages.html#deprecation-90522-tsfe-properties-regarding-images", + "Changelog\/10.3\/Deprecation-90522-TSFEPropertiesRegardingImages.html#deprecation-90522", "Deprecation: #90522 - TSFE properties regarding images" ], "feature-78347-add-stdwrap-properties-to-filesprocessor": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-78347-AddStdWrapPropertiesToFilesProcessor.html#feature-78347-add-stdwrap-properties-to-filesprocessor", + "Changelog\/10.3\/Feature-78347-AddStdWrapPropertiesToFilesProcessor.html#feature-78347", "Feature: #78347 - Add StdWrap properties to FilesProcessor" ], "typoscript-dataprocessing-example-with-filesprocessor": [ @@ -41953,7 +42085,7 @@ "feature-78450-introduce-previewrenderer-pattern": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-78450-IntroducePreviewRendererPattern.html#feature-78450-introduce-previewrenderer-pattern", + "Changelog\/10.3\/Feature-78450-IntroducePreviewRendererPattern.html#feature-78450", "Feature: #78450 - Introduce PreviewRenderer pattern" ], "pre-requisites": [ @@ -41977,37 +42109,37 @@ "feature-79310-add-options-and-clipboard-to-filelist-search": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-79310-AddOptionsAndClipboardToFilelistSearch.html#feature-79310-add-options-and-clipboard-to-filelist-search", + "Changelog\/10.3\/Feature-79310-AddOptionsAndClipboardToFilelistSearch.html#feature-79310", "Feature: #79310 - Add options and clipboard to filelist search" ], "feature-82062-progress-for-reference-index-update-on-cli": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-82062-ProgressForReferenceIndexUpdateOnCLI.html#feature-82062-progress-for-reference-index-update-on-cli", + "Changelog\/10.3\/Feature-82062-ProgressForReferenceIndexUpdateOnCLI.html#feature-82062", "Feature: #82062 - Progress for Reference Index update on CLI" ], "feature-83847-remove-repaired-links-from-linkvalidator-list-after-editing": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-83847-RemoveRepairedLinksFromLinkvalidatorListAfterEditing.html#feature-83847-remove-repaired-links-from-linkvalidator-list-after-editing", + "Changelog\/10.3\/Feature-83847-RemoveRepairedLinksFromLinkvalidatorListAfterEditing.html#feature-83847", "Feature: #83847 - Remove repaired links from Linkvalidator list after editing" ], "feature-84214-add-check-if-fields-are-editable-for-linkvalidator": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-84214-AddCheckIfFieldsAreEditableForLinkvalidator.html#feature-84214-add-check-if-fields-are-editable-for-linkvalidator", + "Changelog\/10.3\/Feature-84214-AddCheckIfFieldsAreEditableForLinkvalidator.html#feature-84214", "Feature: #84214 - Add check if fields are editable for Linkvalidator" ], "feature-86614-add-psr-14-event-to-control-hreflang-tags-to-be-rendered": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-86614-AddHookBeforeRenderingHrefLang.html#feature-86614-add-psr-14-event-to-control-hreflang-tags-to-be-rendered", + "Changelog\/10.3\/Feature-86614-AddHookBeforeRenderingHrefLang.html#feature-86614", "Feature: #86614 - Add PSR-14 event to control hreflang tags to be rendered" ], "feature-87072-added-configuration-options-for-locking": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-87072-AddedConfigurationOptionsForLockingAddedConfigurationOptionsForLocking.html#feature-87072-added-configuration-options-for-locking", + "Changelog\/10.3\/Feature-87072-AddedConfigurationOptionsForLockingAddedConfigurationOptionsForLocking.html#feature-87072", "Feature: #87072 - Added Configuration Options for Locking" ], "configuration-example": [ @@ -42031,73 +42163,73 @@ "feature-87451-scheduler-run-command-accepts-multiple-task-options": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-87451-SchedulerRunCommandAcceptsMultipleTaskOptions.html#feature-87451-scheduler-run-command-accepts-multiple-task-options", + "Changelog\/10.3\/Feature-87451-SchedulerRunCommandAcceptsMultipleTaskOptions.html#feature-87451", "Feature: #87451 - scheduler:run command accepts multiple task options" ], "feature-88147-add-possibility-to-configure-the-path-to-sitemap-xslfile": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-88147-AddPossibilityToConfigureThePathToSitemapXslFile.html#feature-88147-add-possibility-to-configure-the-path-to-sitemap-xslfile", + "Changelog\/10.3\/Feature-88147-AddPossibilityToConfigureThePathToSitemapXslFile.html#feature-88147", "Feature: #88147 - Add possibility to configure the path to sitemap xslFile" ], "feature-88818-introduce-events-to-modify-ckeditor-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-88818-IntroduceEventsToModifyCKEditorConfiguration.html#feature-88818-introduce-events-to-modify-ckeditor-configuration", + "Changelog\/10.3\/Feature-88818-IntroduceEventsToModifyCKEditorConfiguration.html#feature-88818", "Feature: #88818 - Introduce events to modify CKEditor configuration" ], "feature-88901-render-all-fields-in-elementinformationcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-88901-RenderAllFieldsInElementInformationController.html#feature-88901-render-all-fields-in-elementinformationcontroller", + "Changelog\/10.3\/Feature-88901-RenderAllFieldsInElementInformationController.html#feature-88901", "Feature: #88901 - Render all fields in ElementInformationController" ], "feature-88921-new-psr-14-events-in-the-pagelayoutview-class": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-88921-NewEventInThePageLayoutViewClassToEnrichContentIntoTheColumnsInTheBackendLayout.html#feature-88921-new-psr-14-events-in-the-pagelayoutview-class", + "Changelog\/10.3\/Feature-88921-NewEventInThePageLayoutViewClassToEnrichContentIntoTheColumnsInTheBackendLayout.html#feature-88921", "Feature: #88921 - New PSR-14 events in the PageLayoutView class" ], "feature-88962-re-implement-old-pidupinrootline-typoscript-condition": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-88962-Re-implementOldPIDupinRootlineTypoScriptCondition.html#feature-88962-re-implement-old-pidupinrootline-typoscript-condition", + "Changelog\/10.3\/Feature-88962-Re-implementOldPIDupinRootlineTypoScriptCondition.html#feature-88962", "Feature: #88962 - Re-implement old PIDupinRootline TypoScript condition" ], "feature-89032-render-fieldcontrol-for-selectsingleelement": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-89032-RenderFieldControlForSelectSingleElement.html#feature-89032-render-fieldcontrol-for-selectsingleelement", + "Changelog\/10.3\/Feature-89032-RenderFieldControlForSelectSingleElement.html#feature-89032", "Feature: #89032 - Render fieldControl for SelectSingleElement" ], "feature-89139-add-dependency-injection-support-for-console-commands": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-89139-AddDependencyInjectionSupportForConsoleCommands.html#feature-89139-add-dependency-injection-support-for-console-commands", + "Changelog\/10.3\/Feature-89139-AddDependencyInjectionSupportForConsoleCommands.html#feature-89139", "Feature: #89139 - Add dependency injection support for console commands" ], "feature-89551-add-fluidadditionalattributes-to-the-form-element": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-89551-AddFluidAdditionalAttributesToTheFormElement.html#feature-89551-add-fluidadditionalattributes-to-the-form-element", + "Changelog\/10.3\/Feature-89551-AddFluidAdditionalAttributesToTheFormElement.html#feature-89551", "Feature: #89551 - Add fluidAdditionalAttributes to the form element" ], "feature-89644-add-optional-argument-fields-to-editrecord-viewhelpers": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-89644-AddOptionalArgumentFieldsToEditRecordViewHelpers.html#feature-89644-add-optional-argument-fields-to-editrecord-viewhelpers", + "Changelog\/10.3\/Feature-89644-AddOptionalArgumentFieldsToEditRecordViewHelpers.html#feature-89644", "Feature: #89644 - Add optional argument \"fields\" to editRecord ViewHelpers" ], "feature-89650-allow-line-breaks-in-tca-descriptions": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-89650-AllowLineBreaksInTCADescriptions.html#feature-89650-allow-line-breaks-in-tca-descriptions", + "Changelog\/10.3\/Feature-89650-AllowLineBreaksInTCADescriptions.html#feature-89650", "Feature: #89650 - Allow line breaks in TCA descriptions" ], "feature-89738-api-for-ajax-requests": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-89738-ApiForAjaxRequests.html#feature-89738-api-for-ajax-requests", + "Changelog\/10.3\/Feature-89738-ApiForAjaxRequests.html#feature-89738", "Feature: #89738 - API for AJAX Requests" ], "request": [ @@ -42163,85 +42295,85 @@ "feature-89870-new-psr-14-events-for-extbase-related-signals": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-89870-NewPSR-14EventsForExtbase-relatedSignals.html#feature-89870-new-psr-14-events-for-extbase-related-signals", + "Changelog\/10.3\/Feature-89870-NewPSR-14EventsForExtbase-relatedSignals.html#feature-89870", "Feature: #89870 - New PSR-14 Events for Extbase-related signals" ], "feature-89894-separate-system-extensions-from-3rd-party-extensions-visually": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-89894-SeparateSystemExtensionsFrom3rd-partyExtensionsVisually.html#feature-89894-separate-system-extensions-from-3rd-party-extensions-visually", + "Changelog\/10.3\/Feature-89894-SeparateSystemExtensionsFrom3rd-partyExtensionsVisually.html#feature-89894", "Feature: #89894 - Separate system extensions from 3rd-party extensions visually" ], "feature-89929-galician-flag": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-89929-GalicianFlag.html#feature-89929-galician-flag", + "Changelog\/10.3\/Feature-89929-GalicianFlag.html#feature-89929", "Feature: #89929 - Galician flag" ], "feature-89978-introduce-status-report-for-insecure-exception-handler-settings": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-89978-IntroduceStatusReportForInsecureExceptionHandlerSettings.html#feature-89978-introduce-status-report-for-insecure-exception-handler-settings", + "Changelog\/10.3\/Feature-89978-IntroduceStatusReportForInsecureExceptionHandlerSettings.html#feature-89978", "Feature: #89978 - Introduce Status Report for insecure exception handler settings" ], "feature-90026-expose-internal-typolinkparts-in-typolinkviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90026-ExposeInternalTypoLinkPartsInTypolinkViewHelper.html#feature-90026-expose-internal-typolinkparts-in-typolinkviewhelper", + "Changelog\/10.3\/Feature-90026-ExposeInternalTypoLinkPartsInTypolinkViewHelper.html#feature-90026", "Feature: #90026 - Expose internal typoLinkParts in TypolinkViewHelper" ], "feature-90042-customize-special-page-icons-by-doktype": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90042-SpecialPageIconsCustomizableByDoktype.html#feature-90042-customize-special-page-icons-by-doktype", + "Changelog\/10.3\/Feature-90042-SpecialPageIconsCustomizableByDoktype.html#feature-90042", "Feature: #90042 - Customize special page icons by doktype" ], "feature-90052-form-yaml-configuration-available-in-configuration-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90052-AddYamlConfigurationToConfigurationModule.html#feature-90052-form-yaml-configuration-available-in-configuration-module", + "Changelog\/10.3\/Feature-90052-AddYamlConfigurationToConfigurationModule.html#feature-90052", "Feature: #90052 - Form YAML configuration available in configuration module" ], "feature-90068-implement-better-filedumpcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90068-ImplementBetterFileDumpController.html#feature-90068-implement-better-filedumpcontroller", + "Changelog\/10.3\/Feature-90068-ImplementBetterFileDumpController.html#feature-90068", "Feature: #90068 - Implement better FileDumpController" ], "feature-90114-make-translation-of-filelist-optional": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90114-MakeTranslationOfFilelistOptional.html#feature-90114-make-translation-of-filelist-optional", + "Changelog\/10.3\/Feature-90114-MakeTranslationOfFilelistOptional.html#feature-90114", "Feature: #90114 - Make translation of filelist optional" ], "feature-90136-show-application-context-in-the-environment-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90136-ShowApplicationContextInTheEnvironmentModule.html#feature-90136-show-application-context-in-the-environment-module", + "Changelog\/10.3\/Feature-90136-ShowApplicationContextInTheEnvironmentModule.html#feature-90136", "Feature: #90136 - Show application context in the Environment module" ], "feature-90168-introduce-modal-actions": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90168-IntroduceModalActions.html#feature-90168-introduce-modal-actions", + "Changelog\/10.3\/Feature-90168-IntroduceModalActions.html#feature-90168", "Feature: #90168 - Introduce Modal Actions" ], "feature-90203-make-workspace-available-in-typoscript-conditions": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90203-MakeWorkspaceAvailableInTypoScriptConditions.html#feature-90203-make-workspace-available-in-typoscript-conditions", + "Changelog\/10.3\/Feature-90203-MakeWorkspaceAvailableInTypoScriptConditions.html#feature-90203", "Feature: #90203 - Make workspace available in TypoScript conditions" ], "feature-90213-support-bit-and-in-typoscript-stdwrap-if": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90213-SupportBitAndInTypoScriptStdWrapIf.html#feature-90213-support-bit-and-in-typoscript-stdwrap-if", + "Changelog\/10.3\/Feature-90213-SupportBitAndInTypoScriptStdWrapIf.html#feature-90213", "Feature: #90213 - Support 'bit and' in TypoScript stdWrap_if" ], "feature-90234-introduce-cachehashconfiguration-and-matching-indicators": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90234-IntroduceCacheHashConfigurationAndMatchingIndicators.html#feature-90234-introduce-cachehashconfiguration-and-matching-indicators", + "Changelog\/10.3\/Feature-90234-IntroduceCacheHashConfigurationAndMatchingIndicators.html#feature-90234", "Feature: #90234 - Introduce CacheHashConfiguration and matching indicators" ], "example-excerpt-of-localconfiguration-php": [ @@ -42253,43 +42385,43 @@ "feature-90249-new-psr-14-events-for-existing-package-related-signal-slots": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90249-NewPSR-14EventsForExistingPackage-relatedSignalSlots.html#feature-90249-new-psr-14-events-for-existing-package-related-signal-slots", + "Changelog\/10.3\/Feature-90249-NewPSR-14EventsForExistingPackage-relatedSignalSlots.html#feature-90249", "Feature: #90249 - New PSR-14 events for existing package-related Signal Slots" ], "feature-90262-add-argon2id-to-password-hash-algorithms": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90262-AddArgon2idToPasswordHashAlgorithms.html#feature-90262-add-argon2id-to-password-hash-algorithms", + "Changelog\/10.3\/Feature-90262-AddArgon2idToPasswordHashAlgorithms.html#feature-90262", "Feature: #90262 - Add Argon2id to password hash algorithms" ], "feature-90265-show-dispatched-events-in-admin-panel": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90265-ShowDispatchedEventsInAdminPanel.html#feature-90265-show-dispatched-events-in-admin-panel", + "Changelog\/10.3\/Feature-90265-ShowDispatchedEventsInAdminPanel.html#feature-90265", "Feature: #90265 - Show dispatched Events in Admin Panel" ], "feature-90266-fluid-based-email-templating": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90266-Fluid-basedTemplatedEmails.html#feature-90266-fluid-based-email-templating", + "Changelog\/10.3\/Feature-90266-Fluid-basedTemplatedEmails.html#feature-90266", "Feature: #90266 - Fluid-based email templating" ], "feature-90267-custom-placeholder-processing-in-site-config": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90267-CustomPlaceholderProcessingInSiteConfig.html#feature-90267-custom-placeholder-processing-in-site-config", + "Changelog\/10.3\/Feature-90267-CustomPlaceholderProcessingInSiteConfig.html#feature-90267", "Feature: #90267 - Custom placeholder processing in site config" ], "feature-90298-improve-user-info-in-be-user-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90298-ImproveUserInfoInBeuserModule.html#feature-90298-improve-user-info-in-be-user-module", + "Changelog\/10.3\/Feature-90298-ImproveUserInfoInBeuserModule.html#feature-90298", "Feature: #90298 - Improve user info in BE User module" ], "feature-90333-dashboard": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90333-Dashboard.html#feature-90333-dashboard", + "Changelog\/10.3\/Feature-90333-Dashboard.html#feature-90333", "Feature: #90333 - Dashboard" ], "available-widgets": [ @@ -42331,49 +42463,49 @@ "feature-90348-fluid-based-replacement-for-pagelayoutview": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90348-NewFluid-basedReplacementForPageLayoutView.html#feature-90348-fluid-based-replacement-for-pagelayoutview", + "Changelog\/10.3\/Feature-90348-NewFluid-basedReplacementForPageLayoutView.html#feature-90348", "Feature: #90348 - Fluid-based replacement for PageLayoutView" ], "feature-90370-use-egulias-emailvalidator-for-email-validation": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90370-UseEguliasEmailValidatorForEmailValidation.html#feature-90370-use-egulias-emailvalidator-for-email-validation", + "Changelog\/10.3\/Feature-90370-UseEguliasEmailValidatorForEmailValidation.html#feature-90370", "Feature: #90370 - Use EguliasEmailValidator for email validation" ], "feature-90411-html-based-workspace-notification-emails-on-stage-change": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90411-HTML-basedWorkspaceNotificationEmailsOnStageChange.html#feature-90411-html-based-workspace-notification-emails-on-stage-change", + "Changelog\/10.3\/Feature-90411-HTML-basedWorkspaceNotificationEmailsOnStageChange.html#feature-90411", "Feature: #90411 - HTML-based workspace notification emails on stage change" ], "feature-90416-specific-target-file-extension-in-image-related-viewhelpers": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90416-SpecificTargetFileExtensionInImage-relatedViewHelpers.html#feature-90416-specific-target-file-extension-in-image-related-viewhelpers", + "Changelog\/10.3\/Feature-90416-SpecificTargetFileExtensionInImage-relatedViewHelpers.html#feature-90416", "Feature: #90416 - Specific target file extension in image-related ViewHelpers" ], "feature-90425-add-seo-fields-to-info-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90425-AddSeoFieldsToInfoModule.html#feature-90425-add-seo-fields-to-info-module", + "Changelog\/10.3\/Feature-90425-AddSeoFieldsToInfoModule.html#feature-90425", "Feature: #90425 - Add SEO fields to info module" ], "feature-90426-browser-native-lazy-loading-for-images": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90426-Browser-nativeLazyLoadingForImages.html#feature-90426-browser-native-lazy-loading-for-images", + "Changelog\/10.3\/Feature-90426-Browser-nativeLazyLoadingForImages.html#feature-90426", "Feature: #90426 - Browser-native lazy loading for images" ], "feature-90461-quick-create-content-elements-via-newcontentelementwizard": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90461-QuickCreateContentElementsViaNewContentElementWizard.html#feature-90461-quick-create-content-elements-via-newcontentelementwizard", + "Changelog\/10.3\/Feature-90461-QuickCreateContentElementsViaNewContentElementWizard.html#feature-90461", "Feature: #90461 - Quick-Create Content Elements via NewContentElementWizard" ], "feature-90471-javascript-event-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90471-JavaScriptEventAPI.html#feature-90471-javascript-event-api", + "Changelog\/10.3\/Feature-90471-JavaScriptEventAPI.html#feature-90471", "Feature: #90471 - JavaScript Event API" ], "event-binding": [ @@ -42433,7 +42565,7 @@ "feature-90522-introduce-assetcollector": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Feature-90522-IntroduceAssetCollector.html#feature-90522-introduce-assetcollector", + "Changelog\/10.3\/Feature-90522-IntroduceAssetCollector.html#changelog-Feature-90522-IntroduceAssetCollector", "Feature: #90522 - Introduce AssetCollector" ], "the-new-api": [ @@ -42457,43 +42589,43 @@ "important-89672-transorigpointerfield-is-not-longer-allowed-to-be-excluded": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Important-89672-TransOrigPointerFieldIsNotLongerAllowedToBeExcluded.html#important-89672-transorigpointerfield-is-not-longer-allowed-to-be-excluded", + "Changelog\/10.3\/Important-89672-TransOrigPointerFieldIsNotLongerAllowedToBeExcluded.html#important-89672", "Important: #89672 - transOrigPointerField is not longer allowed to be excluded" ], "important-89720-only-typoscript-files-loaded-on-directory-import": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Important-89720-OnlyTypoScriptFilesLoadedOnDirectoryImport.html#important-89720-only-typoscript-files-loaded-on-directory-import", + "Changelog\/10.3\/Important-89720-OnlyTypoScriptFilesLoadedOnDirectoryImport.html#important-89720", "Important: #89720 - Only TypoScript files loaded on directory import" ], "important-89869-change-lockip-default-to-disabled-for-both-frontend-and-backend": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Important-89869-ChangeLockIpDefaultToDisabled.html#important-89869-change-lockip-default-to-disabled-for-both-frontend-and-backend", + "Changelog\/10.3\/Important-89869-ChangeLockIpDefaultToDisabled.html#important-89869", "Important: #89869 - Change lockIP default to disabled for both frontend and backend" ], "important-89992-use-new-translation-server": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Important-89992-UseNewTranslationServer.html#important-89992-use-new-translation-server", + "Changelog\/10.3\/Important-89992-UseNewTranslationServer.html#important-89992", "Important: #89992 - Use new Translation Server" ], "important-90020-legacy-basicfileutility-and-extendedfileutility-classes-marked-as-internal": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Important-90020-LegacyBasicFileUtilityAndExtendedFileUtilityClassesMarkedAsInternal.html#important-90020-legacy-basicfileutility-and-extendedfileutility-classes-marked-as-internal", + "Changelog\/10.3\/Important-90020-LegacyBasicFileUtilityAndExtendedFileUtilityClassesMarkedAsInternal.html#important-90020", "Important: #90020 - Legacy BasicFileUtility and ExtendedFileUtility classes marked as internal" ], "important-90236-respect-extension-state-excludefromupdates-during-language-updates": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Important-90236-RespectExtensionStateExcludeFromUpdatesDuringLanguageUpdates.html#important-90236-respect-extension-state-excludefromupdates-during-language-updates", + "Changelog\/10.3\/Important-90236-RespectExtensionStateExcludeFromUpdatesDuringLanguageUpdates.html#important-90236", "Important: #90236 - Respect extension state 'excludeFromUpdates' during language updates" ], "important-90371-typoscript-option-config-content-from-pid-allowoutsidedomain-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.3\/Important-90371-TypoScriptOptionConfigcontent_from_pid_allowOutsideDomainRemoved.html#important-90371-typoscript-option-config-content-from-pid-allowoutsidedomain-removed", + "Changelog\/10.3\/Important-90371-TypoScriptOptionConfigcontent_from_pid_allowOutsideDomainRemoved.html#important-90371", "Important: #90371 - TypoScript option config.content_from_pid_allowOutsideDomain removed" ], "10-3-changes": [ @@ -42505,7 +42637,7 @@ "breaking-90660-registration-of-dashboard-widgets-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Breaking-90660-RegistrationOfWidgetsChanged.html#breaking-90660-registration-of-dashboard-widgets-changed", + "Changelog\/10.4\/Breaking-90660-RegistrationOfWidgetsChanged.html#breaking-90660", "Breaking: #90660 - Registration of dashboard widgets changed" ], "migration-of-widgets-based-on-default-widget-types": [ @@ -42523,61 +42655,61 @@ "breaking-91066-move-interfaces-of-dashboard": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Breaking-91066-MovedInterfacesOfDashboard.html#breaking-91066-move-interfaces-of-dashboard", + "Changelog\/10.4\/Breaking-91066-MovedInterfacesOfDashboard.html#breaking-91066", "Breaking: #91066 - Move interfaces of Dashboard" ], "breaking-91066-removed-buttonutility": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Breaking-91066-RemovedButtonUtility.html#breaking-91066-removed-buttonutility", + "Changelog\/10.4\/Breaking-91066-RemovedButtonUtility.html#breaking-91066-1668719172", "Breaking: #91066 - Removed ButtonUtility" ], "deprecation-88740-ext-felogin-pibase-plugin-related-hooks": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Deprecation-88740-ExtFeloginPibasePlugin.html#deprecation-88740-ext-felogin-pibase-plugin-related-hooks", + "Changelog\/10.4\/Deprecation-88740-ExtFeloginPibasePlugin.html#deprecation-88740", "Deprecation: #88740 - ext:felogin pibase plugin related hooks" ], "deprecation-90147-unified-file-name-validator": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Deprecation-90147-UnifiedFileNameValidator.html#deprecation-90147-unified-file-name-validator", + "Changelog\/10.4\/Deprecation-90147-UnifiedFileNameValidator.html#deprecation-90147", "Deprecation: #90147 - Unified File Name Validator" ], "deprecation-90377-param-types-ref-of-method-calluserfunction": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Deprecation-90377-ParamTypesRefOfMethodCallUserFunction.html#deprecation-90377-param-types-ref-of-method-calluserfunction", + "Changelog\/10.4\/Deprecation-90377-ParamTypesRefOfMethodCallUserFunction.html#deprecation-90377", "Deprecation: #90377 - Param types $ref of method callUserFunction" ], "deprecation-90625-extbase-signalslot-dispatcher": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Deprecation-90625-ExtbaseSignalSlotDispatcher.html#deprecation-90625-extbase-signalslot-dispatcher", + "Changelog\/10.4\/Deprecation-90625-ExtbaseSignalSlotDispatcher.html#deprecation-90625", "Deprecation: #90625 - Extbase SignalSlot Dispatcher" ], "deprecation-90686-model-filemount": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Deprecation-90686-ModelFileMount.html#deprecation-90686-model-filemount", + "Changelog\/10.4\/Deprecation-90686-ModelFileMount.html#deprecation-90686", "Deprecation: #90686 - Model FileMount" ], "deprecation-90692-filecollection-models": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Deprecation-90692-FileCollectionModels.html#deprecation-90692-filecollection-models", + "Changelog\/10.4\/Deprecation-90692-FileCollectionModels.html#deprecation-90692", "Deprecation: #90692 - FileCollection models" ], "deprecation-90800-generalutility-isrunningoncgiserverapi": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Deprecation-90800-GeneralUtilityisRunningOnCgiServerApi.html#deprecation-90800-generalutility-isrunningoncgiserverapi", + "Changelog\/10.4\/Deprecation-90800-GeneralUtilityisRunningOnCgiServerApi.html#deprecation-90800", "Deprecation: #90800 - GeneralUtility::isRunningOnCgiServerApi" ], "deprecation-90803-objectmanager-get-in-extbase-context": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Deprecation-90803-DeprecationOfObjectManagergetInExtbaseContext.html#deprecation-90803-objectmanager-get-in-extbase-context", + "Changelog\/10.4\/Deprecation-90803-DeprecationOfObjectManagergetInExtbaseContext.html#changelog-Deprecation-90803-ObjectManagerGet", "Deprecation: #90803 - ObjectManager::get in Extbase context" ], "constructor-injection": [ @@ -42601,91 +42733,91 @@ "deprecation-90856-widget-autocomplete-viewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Deprecation-90856-WidgetAutocompleteViewHelper.html#deprecation-90856-widget-autocomplete-viewhelper", + "Changelog\/10.4\/Deprecation-90856-WidgetAutocompleteViewHelper.html#deprecation-90856", "Deprecation: #90856 - Widget AutoComplete ViewHelper" ], "deprecation-90861-image-related-methods-within-contentobjectrenderer": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Deprecation-90861-Image-relatedMethodsWithinContentObjectRenderer.html#deprecation-90861-image-related-methods-within-contentobjectrenderer", + "Changelog\/10.4\/Deprecation-90861-Image-relatedMethodsWithinContentObjectRenderer.html#deprecation-90861", "Deprecation: #90861 - Image-related methods within ContentObjectRenderer" ], "deprecation-90937-various-hooks-in-contentobjectrenderer": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Deprecation-90937-VariousHooksInContentObjectRenderer.html#deprecation-90937-various-hooks-in-contentobjectrenderer", + "Changelog\/10.4\/Deprecation-90937-VariousHooksInContentObjectRenderer.html#deprecation-90937", "Deprecation: #90937 - Various hooks in ContentObjectRenderer" ], "deprecation-90956-alternative-fetch-methods-and-reports-for-generalutility-geturl": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Deprecation-90956-AlternativeFetchMethodsAndReportsForGeneralUtilitygetUrl.html#deprecation-90956-alternative-fetch-methods-and-reports-for-generalutility-geturl", + "Changelog\/10.4\/Deprecation-90956-AlternativeFetchMethodsAndReportsForGeneralUtilitygetUrl.html#deprecation-90956", "Deprecation: #90956 - Alternative fetch methods and reports for GeneralUtility::getUrl()" ], "deprecation-90964-languageservice-functionality-and-internal-properties": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Deprecation-90964-LanguageServiceFunctionalityAndInternalProperties.html#deprecation-90964-languageservice-functionality-and-internal-properties", + "Changelog\/10.4\/Deprecation-90964-LanguageServiceFunctionalityAndInternalProperties.html#deprecation-90964", "Deprecation: #90964 - LanguageService functionality and internal properties" ], "deprecation-91001-various-methods-within-generalutility": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Deprecation-91001-VariousMethodsWithinGeneralUtility.html#deprecation-91001-various-methods-within-generalutility", + "Changelog\/10.4\/Deprecation-91001-VariousMethodsWithinGeneralUtility.html#deprecation-91001", "Deprecation: #91001 - Various methods within GeneralUtility" ], "deprecation-91012-various-hooks-related-to-typoscriptfrontendcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Deprecation-91012-VariousHooksRelatedToTypoScriptFrontendController.html#deprecation-91012-various-hooks-related-to-typoscriptfrontendcontroller", + "Changelog\/10.4\/Deprecation-91012-VariousHooksRelatedToTypoScriptFrontendController.html#deprecation-91012", "Deprecation: #91012 - Various hooks related to TypoScriptFrontendController" ], "deprecation-91030-runtime-activated-packages": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Deprecation-91030-Runtime-ActivatedPackages.html#deprecation-91030-runtime-activated-packages", + "Changelog\/10.4\/Deprecation-91030-Runtime-ActivatedPackages.html#deprecation-91030", "Deprecation: #91030 - Runtime-Activated Packages" ], "feature-83128-content-element-filter": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Feature-83128-ContentElementFilter.html#feature-83128-content-element-filter", + "Changelog\/10.4\/Feature-83128-ContentElementFilter.html#feature-83128", "Feature: #83128 - Content Element Filter" ], "feature-87776-limit-restriction-to-table-s-in-querybuilder": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Feature-87776-LimitRestrictionToTablesInQueryBuilder.html#feature-87776-limit-restriction-to-table-s-in-querybuilder", + "Changelog\/10.4\/Feature-87776-LimitRestrictionToTablesInQueryBuilder.html#feature-87776", "Feature: #87776 - Limit Restriction to table\/s in QueryBuilder" ], "feature-89513-password-reset-functionality-for-backend-users": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Feature-89513-PasswordResetForBackendUsers.html#feature-89513-password-reset-functionality-for-backend-users", + "Changelog\/10.4\/Feature-89513-PasswordResetForBackendUsers.html#feature-89513", "Feature: #89513 - Password Reset Functionality For Backend Users" ], "feature-89573-allow-flexible-base-url-for-slug-fields-in-formengine": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Feature-89573-AllowFlexibleBaseUrlForSlugFieldsInFormEngine.html#feature-89573-allow-flexible-base-url-for-slug-fields-in-formengine", + "Changelog\/10.4\/Feature-89573-AllowFlexibleBaseUrlForSlugFieldsInFormEngine.html#feature-89573", "Feature: #89573 - Allow flexible base url for slug fields in FormEngine" ], "feature-90613-add-language-argument-to-page-related-linkviewhelpers-and-uriviewhelpers-in-fluid": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Feature-90613-AddLanguageArgumentToPage-relatedLinkViewHelpersAndUriViewHelpersInFluid.html#feature-90613-add-language-argument-to-page-related-linkviewhelpers-and-uriviewhelpers-in-fluid", + "Changelog\/10.4\/Feature-90613-AddLanguageArgumentToPage-relatedLinkViewHelpersAndUriViewHelpersInFluid.html#feature-90613", "Feature: #90613 - Add language argument to page-related LinkViewHelpers and UriViewHelpers in Fluid" ], "feature-90826-compare-backend-usergroups": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Feature-90826-CompareBackendUsergroups.html#feature-90826-compare-backend-usergroups", + "Changelog\/10.4\/Feature-90826-CompareBackendUsergroups.html#feature-90826", "Feature: #90826 - Compare backend usergroups" ], "feature-90899-introduce-assetrenderer-pre-rendering-events": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Feature-90899-IntroduceAssetPreRenderingEvents.html#feature-90899-introduce-assetrenderer-pre-rendering-events", + "Changelog\/10.4\/Feature-90899-IntroduceAssetPreRenderingEvents.html#changelog-Feature-90899-IntroduceAssetPreRenderingEvents", "Feature: #90899 - Introduce AssetRenderer pre-rendering events" ], "related": [ @@ -42697,13 +42829,13 @@ "feature-90945-psr-14-event-for-localizationcontroller-when-reading-records-columns-to-be-translated": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Feature-90945-PSR-14EventForLocalizationControllerWhenReadingRecordscolumnsToBeTranslated.html#feature-90945-psr-14-event-for-localizationcontroller-when-reading-records-columns-to-be-translated", + "Changelog\/10.4\/Feature-90945-PSR-14EventForLocalizationControllerWhenReadingRecordscolumnsToBeTranslated.html#feature-90945", "Feature: #90945 - PSR-14 event for LocalizationController when reading records\/columns to be translated" ], "feature-91008-item-grouping-for-tca-select-items": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Feature-91008-ItemGroupingForTCASelectItems.html#feature-91008-item-grouping-for-tca-select-items", + "Changelog\/10.4\/Feature-91008-ItemGroupingForTCASelectItems.html#changelog-Feature-91008-ItemGroupingForTCASelectItems", "Feature: #91008 - Item grouping for TCA select items" ], "adding-custom-select-item-groups": [ @@ -42721,73 +42853,73 @@ "feature-91008-item-sorting-for-tca-select-items": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Feature-91008-ItemSortingForTCASelectItems.html#feature-91008-item-sorting-for-tca-select-items", + "Changelog\/10.4\/Feature-91008-ItemSortingForTCASelectItems.html#feature-91008", "Feature: #91008 - Item sorting for TCA select items" ], "feature-91080-site-settings-as-typoscript-constants-and-in-tsconfig": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Feature-91080-SiteSettingsAsTsConstantsAndInTsConfig.html#feature-91080-site-settings-as-typoscript-constants-and-in-tsconfig", + "Changelog\/10.4\/Feature-91080-SiteSettingsAsTsConstantsAndInTsConfig.html#feature-91080-1657827157", "Feature: #91080 - Site settings as TypoScript constants and in TSconfig" ], "feature-91122-introduce-documentservice-as-jquery-ready-substitute": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Feature-91122-IntroduceDocumentServiceAsJQueryreadySubstitute.html#feature-91122-introduce-documentservice-as-jquery-ready-substitute", + "Changelog\/10.4\/Feature-91122-IntroduceDocumentServiceAsJQueryreadySubstitute.html#feature-91122", "Feature: #91122 - Introduce DocumentService as JQuery.ready substitute" ], "important-18079-pages-doktype-restriction-for-frontend-queries-refined": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Important-18079-PagesdoktypeRestrictionForFrontendQueriesRefined.html#important-18079-pages-doktype-restriction-for-frontend-queries-refined", + "Changelog\/10.4\/Important-18079-PagesdoktypeRestrictionForFrontendQueriesRefined.html#important-18079", "Important: #18079 - pages.doktype restriction for frontend queries refined" ], "important-77715-no-more-password-trimming-for-third-party-authentication-services": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Important-77715-NoMorePasswordTrimmingForThird-partyAuthenticationServices.html#important-77715-no-more-password-trimming-for-third-party-authentication-services", + "Changelog\/10.4\/Important-77715-NoMorePasswordTrimmingForThird-partyAuthenticationServices.html#important-77715", "Important: #77715 - No more password trimming for third-party authentication services" ], "important-86343-replace-jquery-datatables-with-tablesort": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Important-86343-ReplaceJQueryDataTablesWithTablesort.html#important-86343-replace-jquery-datatables-with-tablesort", + "Changelog\/10.4\/Important-86343-ReplaceJQueryDataTablesWithTablesort.html#important-86343", "Important: #86343 - Replace jQuery.datatables with tablesort" ], "important-89555-workspace-related-database-records-contain-the-proper-page-id": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Important-89555-Workspace-relatedDatabaseRecordsContainTheProperPageID.html#important-89555-workspace-related-database-records-contain-the-proper-page-id", + "Changelog\/10.4\/Important-89555-Workspace-relatedDatabaseRecordsContainTheProperPageID.html#important-89555", "Important: #89555 - Workspace-related database records contain the proper Page ID." ], "important-90285-fresh-installs-without-constraint-for-typo3fluid-fluid-will-get-version-3-0": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Important-90285-FreshInstallsWithoutConstraintForTypo3fluidfluidWillGetVersion30.html#important-90285-fresh-installs-without-constraint-for-typo3fluid-fluid-will-get-version-3-0", + "Changelog\/10.4\/Important-90285-FreshInstallsWithoutConstraintForTypo3fluidfluidWillGetVersion30.html#important-90285", "Important: #90285 - Fresh installs without constraint for typo3fluid\/fluid will get version 3.0+" ], "important-90897-remove-bootstrap-slider": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Important-90897-RemoveBootstrap-slider.html#important-90897-remove-bootstrap-slider", + "Changelog\/10.4\/Important-90897-RemoveBootstrap-slider.html#important-90897", "Important: #90897 - Remove bootstrap-slider" ], "important-91079-various-typoscriptfrontendrenderer-functionality-is-now-internal": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Important-91079-VariousTypoScriptFrontendRendererFunctionalityIsNowInternal.html#important-91079-various-typoscriptfrontendrenderer-functionality-is-now-internal", + "Changelog\/10.4\/Important-91079-VariousTypoScriptFrontendRendererFunctionalityIsNowInternal.html#important-91079", "Important: #91079 - Various TypoScriptFrontendRenderer functionality is now internal" ], "important-91095-various-methods-and-properties-of-backend-related-core-apis-now-internal": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Important-91095-VariousMethodsAndPropertiesOfBackend-relatedCoreAPIsNowInternal.html#important-91095-various-methods-and-properties-of-backend-related-core-apis-now-internal", + "Changelog\/10.4\/Important-91095-VariousMethodsAndPropertiesOfBackend-relatedCoreAPIsNowInternal.html#important-91095", "Important: #91095 - Various methods and properties of Backend-related Core APIs now internal" ], "important-91099-flag-identifier-changed-for-sitelanguage-england": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4\/Important-91099-ChangedFlagIdentifierForEngland.html#important-91099-flag-identifier-changed-for-sitelanguage-england", + "Changelog\/10.4\/Important-91099-ChangedFlagIdentifierForEngland.html#important-91099", "Important: #91099 - Flag identifier changed for SiteLanguage England" ], "10-4-changes": [ @@ -42799,37 +42931,37 @@ "feature-90728-add-fluidemail-option-to-ext-form-emailfinisher": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4.x\/Feature-90728-AddFluidEmailOptionToEXTformEmailFinisher.html#feature-90728-add-fluidemail-option-to-ext-form-emailfinisher", + "Changelog\/10.4.x\/Feature-90728-AddFluidEmailOptionToEXTformEmailFinisher.html#feature-90728", "Feature: #90728 - Add FluidEmail option to EXT:form EmailFinisher" ], "feature-91132-introduce-user-settings-javascript-modules-event": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4.x\/Feature-91132-IntroduceUserSettingsJavaScriptModulesEvent.html#feature-91132-introduce-user-settings-javascript-modules-event", + "Changelog\/10.4.x\/Feature-91132-IntroduceUserSettingsJavaScriptModulesEvent.html#feature-91132", "Feature: #91132 - Introduce User Settings JavaScript Modules Event" ], "important-73227-tsconfig-option-alticons-restored": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4.x\/Important-73227-TSconfigOptionAltIconsRestored.html#important-73227-tsconfig-option-alticons-restored", + "Changelog\/10.4.x\/Important-73227-TSconfigOptionAltIconsRestored.html#important-73227", "Important: #73227 - TSconfig option altIcons restored" ], "important-88824-add-cache-for-error-page-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Important-88824-AddCacheForErrorPageHandling.html#important-88824-add-cache-for-error-page-handling", + "Changelog\/9.5.x\/Important-88824-AddCacheForErrorPageHandling.html#important-88824", "Important: #88824 - Add cache for error page handling" ], "important-91070-smtp-transport-option-transport-smtp-encrypt-changed-to-boolean": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4.x\/Important-91070-SMTPTransportOptionTransport_smtp_encryptChangedToBoolean.html#important-91070-smtp-transport-option-transport-smtp-encrypt-changed-to-boolean", + "Changelog\/10.4.x\/Important-91070-SMTPTransportOptionTransport_smtp_encryptChangedToBoolean.html#important-91070", "Important: #91070 - SMTP transport option 'transport_smtp_encrypt' changed to boolean" ], "important-91117-use-globaleventhandler-and-actiondispatcher-instead-of-inline-js": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4.x\/Important-91117-UseGlobalEventHandlerAndActionDispatcherInsteadOfInlineJS.html#important-91117-use-globaleventhandler-and-actiondispatcher-instead-of-inline-js", + "Changelog\/10.4.x\/Important-91117-UseGlobalEventHandlerAndActionDispatcherInsteadOfInlineJS.html#important-91117", "Important: #91117 - Use GlobalEventHandler and ActionDispatcher instead of inline JS" ], "typo3-cms-backend-globaleventhandler": [ @@ -42847,37 +42979,37 @@ "important-91132-avoid-javascript-in-user-settings-configuration-options": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4.x\/Important-91132-AvoidJavaScriptInUserSettingsConfigurationOptions.html#important-91132-avoid-javascript-in-user-settings-configuration-options", + "Changelog\/10.4.x\/Important-91132-AvoidJavaScriptInUserSettingsConfigurationOptions.html#important-91132", "Important: #91132 - Avoid JavaScript in User Settings Configuration options" ], "important-92020-new-api-entry-point-available-at-https-get-typo3-org-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Important-92020-NewAPIEntryPointAvailableAtHttpsgettypo3orgapi.html#important-92020-new-api-entry-point-available-at-https-get-typo3-org-api", + "Changelog\/12.0\/Important-92020-NewAPIEntryPointAvailableAtHttpsgettypo3orgapi.html#important-92020", "Important: #92020 - New API entry point available at https:\/\/get.typo3.org\/api\/" ], "important-92100-yaml-imports-follow-declaration-order": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4.x\/Important-92100-YAMLImportsFollowDeclarationOrder.html#important-92100-yaml-imports-follow-declaration-order", + "Changelog\/10.4.x\/Important-92100-YAMLImportsFollowDeclarationOrder.html#important-92100", "Important: #92100 - YAML imports follow declaration order" ], "important-92336-discarding-records-in-workspace-module-hard-deletes-them": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4.x\/Important-92336-DiscardingRecordsInWorkspaceModuleHardDeletesThem.html#important-92336-discarding-records-in-workspace-module-hard-deletes-them", + "Changelog\/10.4.x\/Important-92336-DiscardingRecordsInWorkspaceModuleHardDeletesThem.html#important-92336", "Important: #92336 - Discarding records in workspace module hard deletes them" ], "important-92356-datahandler-performance-improvements": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4.x\/Important-92356-DataHandlerPerformanceImprovements.html#important-92356-datahandler-performance-improvements", + "Changelog\/10.4.x\/Important-92356-DataHandlerPerformanceImprovements.html#important-92356", "Important: #92356 - DataHandler performance improvements" ], "important-92655-make-request-timeout-configurable-for-linkvalidator": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4.x\/Important-92655-MakeRequestTimeoutConfigurableForLinkvalidator.html#important-92655-make-request-timeout-configurable-for-linkvalidator", + "Changelog\/10.4.x\/Important-92655-MakeRequestTimeoutConfigurableForLinkvalidator.html#important-92655", "Important: #92655 - Make request timeout configurable for linkvalidator" ], "background-information": [ @@ -42913,37 +43045,37 @@ "important-92659-change-tca-configuration-of-imagewidth-imageheight": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4.x\/Important-92659-ChangeTCAConfigurationOfImagewidthImageheight.html#important-92659-change-tca-configuration-of-imagewidth-imageheight", + "Changelog\/10.4.x\/Important-92659-ChangeTCAConfigurationOfImagewidthImageheight.html#important-92659", "Important: #92659 - Change TCA configuration of imagewidth & imageheight" ], "important-93331-description-of-selectcheckbox-items": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4.x\/Important-93331-DescriptionOfSelectCheckBoxItems.html#important-93331-description-of-selectcheckbox-items", + "Changelog\/10.4.x\/Important-93331-DescriptionOfSelectCheckBoxItems.html#important-93331", "Important: #93331 - Description of SelectCheckBox items" ], "important-93854-add-disabled-option-for-allowed-aspect-ratios": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4.x\/Important-93854-AddDisabledOptionForAllowedAspectRatios.html#important-93854-add-disabled-option-for-allowed-aspect-ratios", + "Changelog\/10.4.x\/Important-93854-AddDisabledOptionForAllowedAspectRatios.html#important-93854", "Important: #93854 - Add disabled option for allowed aspect ratios" ], "important-93931-validation-of-extensions-composer-json-files": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4.x\/Important-93931-ValidationOfExtensionsComposerjsonFiles.html#important-93931-validation-of-extensions-composer-json-files", + "Changelog\/10.4.x\/Important-93931-ValidationOfExtensionsComposerjsonFiles.html#important-93931", "Important: #93931 - Validation of Extensions' composer.json files" ], "important-94951-restrict-export-functionality-to-allowed-users": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Important-94951-RestrictExportFunctionalityToAllowedUsers.html#important-94951-restrict-export-functionality-to-allowed-users", + "Changelog\/12.0\/Important-94951-RestrictExportFunctionalityToAllowedUsers.html#important-94951-1655368666", "Important: #94951 - Restrict export functionality to allowed users" ], "important-95297-strict-chash-validation-feature-flag": [ "TYPO3 Core Changelog", "main", - "Changelog\/10.4.x\/Important-95297-StrictCHashValidationFeatureFlag.html#important-95297-strict-chash-validation-feature-flag", + "Changelog\/10.4.x\/Important-95297-StrictCHashValidationFeatureFlag.html#important-95297-1674809371", "Important: #95297 - Strict cHash validation feature flag" ], "10-4-x-changes": [ @@ -42955,247 +43087,247 @@ "breaking-23736-page-language-detection-set-earlier-in-frontend-request-process": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-23736-PageLanguageDetectionSetEarlierInFrontendRequestProcess.html#breaking-23736-page-language-detection-set-earlier-in-frontend-request-process", + "Changelog\/11.0\/Breaking-23736-PageLanguageDetectionSetEarlierInFrontendRequestProcess.html#breaking-23736", "Breaking: #23736 - Page Language detection set earlier in Frontend Request Process" ], "breaking-29342-fluid-email-template-for-validatortask": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-29342-ImproveValidatorTask.html#breaking-29342-fluid-email-template-for-validatortask", + "Changelog\/11.0\/Breaking-29342-ImproveValidatorTask.html#breaking-29342", "Breaking: #29342 - Fluid Email Template for ValidatorTask" ], "breaking-45512-no-type-attributes-for-style-and-link-tags": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-45512-NoTypeAttributesForStyleAndLinkTags.html#breaking-45512-no-type-attributes-for-style-and-link-tags", + "Changelog\/11.0\/Breaking-45512-NoTypeAttributesForStyleAndLinkTags.html#breaking-45512", "Breaking: #45512 - No type attributes for style and link tags" ], "breaking-79565-removed-usergroup-cached-list-database-field": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-79565-RemovedUsergroup_cached_listDatabaseField.html#breaking-79565-removed-usergroup-cached-list-database-field", + "Changelog\/11.0\/Breaking-79565-RemovedUsergroup_cached_listDatabaseField.html#breaking-79565", "Breaking: #79565 - Removed \"usergroup_cached_list\" database field" ], "breaking-89137-database-fields-t3ver-tstamp-and-t3ver-count-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-89137-DatabaseFieldsT3verTstampAndT3verCountDropped.html#breaking-89137-database-fields-t3ver-tstamp-and-t3ver-count-removed", + "Changelog\/11.0\/Breaking-89137-DatabaseFieldsT3verTstampAndT3verCountDropped.html#breaking-89137", "Breaking: #89137 - Database fields t3ver_tstamp and t3ver_count removed" ], "breaking-90799-dependency-injection-with-non-public-properties-has-been-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-90799-DependencyInjectionWithNonPublicPropertiesHasBeenRemoved.html#breaking-90799-dependency-injection-with-non-public-properties-has-been-removed", + "Changelog\/11.0\/Breaking-90799-DependencyInjectionWithNonPublicPropertiesHasBeenRemoved.html#breaking-90799", "Breaking: #90799 - Dependency injection with non-public properties has been removed" ], "breaking-91473-deprecated-functionality-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-91473-DeprecatedFunctionalityRemoved.html#breaking-91473-deprecated-functionality-removed", + "Changelog\/11.0\/Breaking-91473-DeprecatedFunctionalityRemoved.html#breaking-91473", "Breaking: #91473 - Deprecated functionality removed" ], "breaking-91562-cobject-template-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-91562-CObjectTEMPLATERemoved.html#breaking-91562-cobject-template-removed", + "Changelog\/11.0\/Breaking-91562-CObjectTEMPLATERemoved.html#breaking-91562", "Breaking: #91562 - cObject TEMPLATE removed" ], "breaking-91563-php-based-js-css-inclusions-for-frontend-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-91563-PHP-basedJSCSSInclusionsForFrontendRemoved.html#breaking-91563-php-based-js-css-inclusions-for-frontend-removed", + "Changelog\/11.0\/Breaking-91563-PHP-basedJSCSSInclusionsForFrontendRemoved.html#breaking-91563", "Breaking: #91563 - PHP-based JS + CSS inclusions for Frontend removed" ], "breaking-91578-irre-related-javascript-has-been-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-91578-IrreRelatedJavaScriptHasBeenRemoved.html#breaking-91578-irre-related-javascript-has-been-removed", + "Changelog\/11.0\/Breaking-91578-IrreRelatedJavaScriptHasBeenRemoved.html#breaking-91578", "Breaking: #91578 - IRRE related JavaScript has been removed" ], "breaking-91606-date-time-operations-in-formengine-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-91606-DatetimeOperationsInFormEngineRemoved.html#breaking-91606-date-time-operations-in-formengine-removed", + "Changelog\/11.0\/Breaking-91606-DatetimeOperationsInFormEngineRemoved.html#breaking-91606", "Breaking: #91606 - Date\/time operations in FormEngine removed" ], "breaking-91740-deprecated-icon-identifier-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-91740-DeprecatedIconIdentifierRemoved.html#breaking-91740-deprecated-icon-identifier-removed", + "Changelog\/11.0\/Breaking-91740-DeprecatedIconIdentifierRemoved.html#breaking-91740", "Breaking: #91740 - Deprecated icon identifier removed" ], "breaking-91782-locktodomain-feature-for-frontend-users-groups-and-backend-users-groups-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-91782-LockToDomain.html#breaking-91782-locktodomain-feature-for-frontend-users-groups-and-backend-users-groups-removed", + "Changelog\/11.0\/Breaking-91782-LockToDomain.html#breaking-91782", "Breaking: #91782 - lockToDomain feature for frontend users \/ groups and backend users \/ groups removed" ], "breaking-91906-store-transorigdiffsourcefield-as-json-string": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-91906-StoreTransOrigDiffSourceFieldAsJson.html#breaking-91906-store-transorigdiffsourcefield-as-json-string", + "Changelog\/11.0\/Breaking-91906-StoreTransOrigDiffSourceFieldAsJson.html#breaking-91906", "Breaking: #91906 - Store TransOrigDiffSourceField as json string" ], "breaking-91909-sys-collection-database-tables-moved-into-external-extension": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-91909-SysCollectionDatabaseTablesMovedIntoExternalExtension.html#breaking-91909-sys-collection-database-tables-moved-into-external-extension", + "Changelog\/11.0\/Breaking-91909-SysCollectionDatabaseTablesMovedIntoExternalExtension.html#breaking-91909", "Breaking: #91909 - sys_collection database tables moved into external extension" ], "breaking-91974-configuration-option-ipmaskmountgroups-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-91974-ConfigurationOptionIPmaskMountGroupsRemoved.html#breaking-91974-configuration-option-ipmaskmountgroups-removed", + "Changelog\/11.0\/Breaking-91974-ConfigurationOptionIPmaskMountGroupsRemoved.html#breaking-91974", "Breaking: #91974 - Configuration Option IPmaskMountGroups removed" ], "breaking-92060-dropped-class-typo3-cms-backend-view-pagetreeview": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92060-DroppedClassTYPO3CMSBackendViewPageTreeView.html#breaking-92060-dropped-class-typo3-cms-backend-view-pagetreeview", + "Changelog\/11.0\/Breaking-92060-DroppedClassTYPO3CMSBackendViewPageTreeView.html#breaking-92060", "Breaking: #92060 - Dropped class TYPO3\\CMS\\Backend\\View\\PageTreeView" ], "breaking-92118-tca-ctrl-thumbnail-setting-dropped": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92118-TCACtrlThumbnailSettingDropped.html#breaking-92118-tca-ctrl-thumbnail-setting-dropped", + "Changelog\/11.0\/Breaking-92118-TCACtrlThumbnailSettingDropped.html#breaking-92118", "Breaking: #92118 - TCA ctrl thumbnail setting dropped" ], "breaking-92128-databaserecordlist-drop-hook-to-modify-searchfields": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92128-DatabaseRecordListDropHookToModifySearchFields.html#breaking-92128-databaserecordlist-drop-hook-to-modify-searchfields", + "Changelog\/11.0\/Breaking-92128-DatabaseRecordListDropHookToModifySearchFields.html#breaking-92128", "Breaking: #92128 - DatabaseRecordList: Drop hook to modify searchFields" ], "breaking-92132-last-remains-of-globals-sobe-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92132-LastRemainsOfGlobalsSOBERemoved.html#breaking-92132-last-remains-of-globals-sobe-removed", + "Changelog\/11.0\/Breaking-92132-LastRemainsOfGlobalsSOBERemoved.html#breaking-92132", "Breaking: #92132 - Last remains of globals SOBE removed" ], "breaking-92206-remove-workspace-swapping-of-elements": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92206-RemoveWorkspaceSwappingOfElements.html#breaking-92206-remove-workspace-swapping-of-elements", + "Changelog\/11.0\/Breaking-92206-RemoveWorkspaceSwappingOfElements.html#breaking-92206", "Breaking: #92206 - Remove workspace swapping of elements" ], "breaking-92238-service-injection-in-extbase-validators": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92238-ServiceInjectionInExtbaseValidators.html#breaking-92238-service-injection-in-extbase-validators", + "Changelog\/11.0\/Breaking-92238-ServiceInjectionInExtbaseValidators.html#breaking-92238", "Breaking: #92238 - Service injection in Extbase validators" ], "breaking-92289-decouple-logic-of-resourcefactory-into-storagerepository": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92289-DecoupleLogicOfResourceFactoryIntoStorageRepository.html#breaking-92289-decouple-logic-of-resourcefactory-into-storagerepository", + "Changelog\/11.0\/Breaking-92289-DecoupleLogicOfResourceFactoryIntoStorageRepository.html#breaking-92289", "Breaking: #92289 - Decouple logic of ResourceFactory into StorageRepository" ], "breaking-92352-new-default-position-for-redirect-middleware": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92352-NewDefaultPositionForRedirectMiddleware.html#breaking-92352-new-default-position-for-redirect-middleware", + "Changelog\/11.0\/Breaking-92352-NewDefaultPositionForRedirectMiddleware.html#breaking-92352", "Breaking: #92352 - New default position for redirect middleware" ], "breaking-92457-extension-repository-database-table-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92457-ExtensionRepositoryDatabaseTableRemoved.html#breaking-92457-extension-repository-database-table-removed", + "Changelog\/11.0\/Breaking-92457-ExtensionRepositoryDatabaseTableRemoved.html#breaking-92457", "Breaking: #92457 - Extension Repository database table removed" ], "breaking-92497-workspaces-move-placeholders-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92497-WorkspacesMovePlaceholdersRemoved.html#breaking-92497-workspaces-move-placeholders-removed", + "Changelog\/11.0\/Breaking-92497-WorkspacesMovePlaceholdersRemoved.html#breaking-92497", "Breaking: #92497 - Workspaces: Move Placeholders removed" ], "breaking-92499-adminpanel-does-not-preview-hidden-frontend-user-groups": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92499-AdminPanelDoesNotPreviewHiddenFrontendUserGroups.html#breaking-92499-adminpanel-does-not-preview-hidden-frontend-user-groups", + "Changelog\/11.0\/Breaking-92499-AdminPanelDoesNotPreviewHiddenFrontendUserGroups.html#breaking-92499", "Breaking: #92499 - AdminPanel does not preview hidden Frontend User Groups" ], "breaking-92502-make-extbase-handle-psr-7-responses-only": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92502-MakeExtbaseHandlePSR7ResponsesOnly.html#breaking-92502-make-extbase-handle-psr-7-responses-only", + "Changelog\/11.0\/Breaking-92502-MakeExtbaseHandlePSR7ResponsesOnly.html#breaking-92502", "Breaking: #92502 - Make Extbase handle PSR-7 responses only" ], "breaking-92513-method-signature-change-of-typo3-cms-extbase-mvc-controller-controllerinterface-processrequest": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92513-MethodSignatureChangeOfTYPO3CMSExtbaseMvcControllerControllerInterfaceprocessRequest.html#breaking-92513-method-signature-change-of-typo3-cms-extbase-mvc-controller-controllerinterface-processrequest", + "Changelog\/11.0\/Breaking-92513-MethodSignatureChangeOfTYPO3CMSExtbaseMvcControllerControllerInterfaceprocessRequest.html#breaking-92513", "Breaking: #92513 - Method signature change of TYPO3\\CMS\\Extbase\\Mvc\\Controller\\ControllerInterface::processRequest" ], "breaking-92529-all-fluid-widget-functionality-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92529-AllFluidWidgetFunctionalityRemoved.html#breaking-92529-all-fluid-widget-functionality-removed", + "Changelog\/11.0\/Breaking-92529-AllFluidWidgetFunctionalityRemoved.html#breaking-92529", "Breaking: #92529 - All Fluid widget functionality removed" ], "breaking-92532-support-for-extension-in-extension-installation-in-extension-manager-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92532-SupportForExtension-in-extensionInstallationInExtensionManagerRemoved.html#breaking-92532-support-for-extension-in-extension-installation-in-extension-manager-removed", + "Changelog\/11.0\/Breaking-92532-SupportForExtension-in-extensionInstallationInExtensionManagerRemoved.html#breaking-92532", "Breaking: #92532 - Support for extension-in-extension installation in Extension Manager removed" ], "breaking-92558-database-field-be-users-createdbyaction-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92558-DatabaseFieldBe_userscreatedByActionRemoved.html#breaking-92558-database-field-be-users-createdbyaction-removed", + "Changelog\/11.0\/Breaking-92558-DatabaseFieldBe_userscreatedByActionRemoved.html#breaking-92558", "Breaking: #92558 - Database Field be_users.createdByAction removed" ], "breaking-92559-removed-per-user-ip-locking-for-backend-users": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92559-RemovedPer-userIPLockingForBackendUsers.html#breaking-92559-removed-per-user-ip-locking-for-backend-users", + "Changelog\/11.0\/Breaking-92559-RemovedPer-userIPLockingForBackendUsers.html#breaking-92559", "Breaking: #92559 - Removed per-user IP locking for backend users" ], "breaking-92560-backend-editors-can-always-delete-pages-recursive": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92560-BackendEditorsCanAlwaysDeletePagesRecursive.html#breaking-92560-backend-editors-can-always-delete-pages-recursive", + "Changelog\/11.0\/Breaking-92560-BackendEditorsCanAlwaysDeletePagesRecursive.html#breaking-92560", "Breaking: #92560 - Backend editors can always delete pages recursive" ], "breaking-92582-resizable-text-area-user-setting-dropped": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92582-ResizableTextAreaUserSettingDropped.html#breaking-92582-resizable-text-area-user-setting-dropped", + "Changelog\/11.0\/Breaking-92582-ResizableTextAreaUserSettingDropped.html#breaking-92582", "Breaking: #92582 - Resizable text area user setting dropped" ], "breaking-92590-removed-support-for-extension-upload-of-t3x-files": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92590-RemovedSupportForExtensionUploadOfT3xFiles.html#breaking-92590-removed-support-for-extension-upload-of-t3x-files", + "Changelog\/11.0\/Breaking-92590-RemovedSupportForExtensionUploadOfT3xFiles.html#breaking-92590", "Breaking: #92590 - Removed support for extension upload of t3x files" ], "breaking-92598-workspace-overlays-auto-fix-the-pid-value-for-moved-records": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92598-Workspace-overlaysAuto-fixThePIDValueForMovedRecords.html#breaking-92598-workspace-overlays-auto-fix-the-pid-value-for-moved-records", + "Changelog\/11.0\/Breaking-92598-Workspace-overlaysAuto-fixThePIDValueForMovedRecords.html#breaking-92598", "Breaking: #92598 - Workspace-overlays auto-fix the PID value for moved records" ], "breaking-92609-use-controller-classes-when-registering-plugins-modules": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92609-UseControllerClassesWhenRegisteringPluginsmodules.html#breaking-92609-use-controller-classes-when-registering-plugins-modules", + "Changelog\/11.0\/Breaking-92609-UseControllerClassesWhenRegisteringPluginsmodules.html#breaking-92609", "Breaking: #92609 - Use controller classes when registering plugins\/modules" ], "breaking-92678-css-class-checkbox-invert-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92678-CssClassCheckboxInvertRemoved.html#breaking-92678-css-class-checkbox-invert-removed", + "Changelog\/11.0\/Breaking-92678-CssClassCheckboxInvertRemoved.html#breaking-92678", "Breaking: #92678 - CSS class checkbox-invert removed" ], "breaking-92693-remove-linkhandler-linktype-in-linkvalidator": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92693-RemoveLinkHandlerLinktypeInLinkvalidator.html#breaking-92693-remove-linkhandler-linktype-in-linkvalidator", + "Changelog\/11.0\/Breaking-92693-RemoveLinkHandlerLinktypeInLinkvalidator.html#breaking-92693", "Breaking: #92693 - Remove LinkHandler Linktype in Linkvalidator" ], "breaking-92791-new-placeholder-records-removed-in-workspaces": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92791-NewPlaceholderRecordsRemovedInWorkspaces.html#breaking-92791-new-placeholder-records-removed-in-workspaces", + "Changelog\/11.0\/Breaking-92791-NewPlaceholderRecordsRemovedInWorkspaces.html#breaking-92791", "Breaking: #92791 - \"New Placeholder\" records removed in Workspaces" ], "new-placeholder-record": [ @@ -43213,283 +43345,283 @@ "breaking-92801-removed-failed-login-functionality-from-user-authentication-object": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92801-RemovedFailedLoginFunctionalityFromUserAuthenticationObject.html#breaking-92801-removed-failed-login-functionality-from-user-authentication-object", + "Changelog\/11.0\/Breaking-92801-RemovedFailedLoginFunctionalityFromUserAuthenticationObject.html#breaking-92801", "Breaking: #92801 - Removed \"Failed Login\" functionality from User Authentication object" ], "breaking-92802-user-database-based-authentication-timeout-field-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92802-DatabaseBasedAuthenticationTimeoutFieldRemoved.html#breaking-92802-user-database-based-authentication-timeout-field-removed", + "Changelog\/11.0\/Breaking-92802-DatabaseBasedAuthenticationTimeoutFieldRemoved.html#breaking-92802", "Breaking: #92802 - User-database-based authentication timeout field removed" ], "breaking-92807-removed-feature-for-keeping-session-data-on-frontend-user-logout": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92807-RemovedFeatureForKeepingSessionDataOnFrontendUserLogout.html#breaking-92807-removed-feature-for-keeping-session-data-on-frontend-user-logout", + "Changelog\/11.0\/Breaking-92807-RemovedFeatureForKeepingSessionDataOnFrontendUserLogout.html#breaking-92807", "Breaking: #92807 - Removed feature for keeping session data on frontend user logout" ], "breaking-92837-removed-setting-mod-web-layout-disableadvanced": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92837-RemoveSettingModweb_layoutdisableAdvanced.html#breaking-92837-removed-setting-mod-web-layout-disableadvanced", + "Changelog\/11.0\/Breaking-92837-RemoveSettingModweb_layoutdisableAdvanced.html#breaking-92837", "Breaking: #92837 - Removed setting mod.web_layout.disableAdvanced" ], "breaking-92838-additional-workspace-services-dropped": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92838-AdditionalWorkspaceServicesDropped.html#breaking-92838-additional-workspace-services-dropped", + "Changelog\/11.0\/Breaking-92838-AdditionalWorkspaceServicesDropped.html#breaking-92838", "Breaking: #92838 - Additional workspace services dropped" ], "breaking-92853-method-canprocessrequest-has-been-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92853-MethodCanProcessRequestHasBeenRemoved.html#breaking-92853-method-canprocessrequest-has-been-removed", + "Changelog\/11.0\/Breaking-92853-MethodCanProcessRequestHasBeenRemoved.html#breaking-92853", "Breaking: #92853 - Method canProcessRequest has been removed" ], "breaking-92940-global-option-lockbeusertodbmounts-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92940-GlobalOptionLockBeUserToDBmountsRemoved.html#breaking-92940-global-option-lockbeusertodbmounts-removed", + "Changelog\/11.0\/Breaking-92940-GlobalOptionLockBeUserToDBmountsRemoved.html#breaking-92940", "Breaking: #92940 - Global option \"lockBeUserToDBmounts\" removed" ], "breaking-92941-locktoip-usertsconfig-option-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92941-LockToIPUserTsConfigOptionRemoved.html#breaking-92941-locktoip-usertsconfig-option-removed", + "Changelog\/11.0\/Breaking-92941-LockToIPUserTsConfigOptionRemoved.html#breaking-92941", "Breaking: #92941 - \"lockToIP\" UserTsConfig option removed" ], "breaking-92989-abstractuserauthentication-loginfailure-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92989-AbstractUserAuthentication-loginFailureRemoved.html#breaking-92989-abstractuserauthentication-loginfailure-removed", + "Changelog\/11.0\/Breaking-92989-AbstractUserAuthentication-loginFailureRemoved.html#breaking-92989", "Breaking: #92989 - AbstractUserAuthentication->loginFailure removed" ], "breaking-92990-abstractuserauthentication-svconfig-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92990-AbstractUserAuthentication-svConfigRemoved.html#breaking-92990-abstractuserauthentication-svconfig-removed", + "Changelog\/11.0\/Breaking-92990-AbstractUserAuthentication-svConfigRemoved.html#breaking-92990", "Breaking: #92990 - AbstractUserAuthentication->svConfig removed" ], "breaking-92993-generic-search-statistics-from-indexed-search-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92993-GenericSearchStatisticsFromIndexedSearchRemoved.html#breaking-92993-generic-search-statistics-from-indexed-search-removed", + "Changelog\/11.0\/Breaking-92993-GenericSearchStatisticsFromIndexedSearchRemoved.html#breaking-92993", "Breaking: #92993 - Generic search statistics from indexed search removed" ], "breaking-92997-authentication-related-http-cache-headers-are-emitted-only-by-psr-15-middlewares": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-92997-Authentication-relatedHTTPCacheHeadersAreEmittedOnlyByPSR-15Middlewares.html#breaking-92997-authentication-related-http-cache-headers-are-emitted-only-by-psr-15-middlewares", + "Changelog\/11.0\/Breaking-92997-Authentication-relatedHTTPCacheHeadersAreEmittedOnlyByPSR-15Middlewares.html#breaking-92997", "Breaking: #92997 - Authentication-related HTTP cache headers are emitted only by PSR-15 middlewares" ], "breaking-93002-support-for-session-transfer-via-fe-session-key-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-93002-SupportForSessionTransferViaFE_SESSION_KEYRemoved.html#breaking-93002-support-for-session-transfer-via-fe-session-key-removed", + "Changelog\/11.0\/Breaking-93002-SupportForSessionTransferViaFE_SESSION_KEYRemoved.html#breaking-93002", "Breaking: #93002 - Support for session transfer via FE_SESSION_KEY removed" ], "breaking-93003-pagerenderer-renders-only-full-page": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-93003-LimitationOfPageRendererToOnlyRenderFullPage.html#breaking-93003-pagerenderer-renders-only-full-page", + "Changelog\/11.0\/Breaking-93003-LimitationOfPageRendererToOnlyRenderFullPage.html#breaking-93003", "Breaking: #93003 - PageRenderer renders only full page" ], "breaking-93023-reworked-session-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-93023-ReworkedSessionHandling.html#breaking-93023-reworked-session-handling", + "Changelog\/11.0\/Breaking-93023-ReworkedSessionHandling.html#changelog-Breaking-93023-ReworkedSessionHandling", "Breaking: #93023 - Reworked session handling" ], "breaking-93029-dropped-deleted-field-from-sys-refindex": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-93029-DroppedDeletedFieldFromSys_refindex.html#breaking-93029-dropped-deleted-field-from-sys-refindex", + "Changelog\/11.0\/Breaking-93029-DroppedDeletedFieldFromSys_refindex.html#breaking-93029", "Breaking: #93029 - Dropped deleted field from sys_refindex" ], "breaking-93041-remove-typoscript-option-addquerystring-method": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-93041-RemoveTypoScriptOptionAddQueryStringmethod.html#breaking-93041-remove-typoscript-option-addquerystring-method", + "Changelog\/11.0\/Breaking-93041-RemoveTypoScriptOptionAddQueryStringmethod.html#breaking-93041", "Breaking: #93041 - Remove TypoScript option addQueryString.method" ], "breaking-93047-removed-property-sendnocacheheaders-in-abstractuserauthentication": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-93047-RemovedPropertySendNoCacheHeadersInAbstractUserAuthentication.html#breaking-93047-removed-property-sendnocacheheaders-in-abstractuserauthentication", + "Changelog\/11.0\/Breaking-93047-RemovedPropertySendNoCacheHeadersInAbstractUserAuthentication.html#breaking-93047", "Breaking: #93047 - Removed property sendNoCacheHeaders in AbstractUserAuthentication" ], "breaking-93048-backend-url-rewrites": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-93048-BackendURLRewrites.html#breaking-93048-backend-url-rewrites", + "Changelog\/11.0\/Breaking-93048-BackendURLRewrites.html#changelog-Breaking-93048-BackendURLRewrites", "Breaking: #93048 - Backend URL rewrites" ], "breaking-93056-removed-hooks-when-retrieving-backend-user-groups": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-93056-RemovedHooksWhenRetrievingBackendUserGroups.html#breaking-93056-removed-hooks-when-retrieving-backend-user-groups", + "Changelog\/11.0\/Breaking-93056-RemovedHooksWhenRetrievingBackendUserGroups.html#breaking-93056", "Breaking: #93056 - Removed hooks when retrieving Backend user groups" ], "breaking-93062-various-group-related-public-properties-in-be-user-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-93062-VariousGroup-relatedPublicPropertiesInBE_USERRemoved.html#breaking-93062-various-group-related-public-properties-in-be-user-removed", + "Changelog\/11.0\/Breaking-93062-VariousGroup-relatedPublicPropertiesInBE_USERRemoved.html#breaking-93062", "Breaking: #93062 - Various group-related public properties in BE_USER removed" ], "breaking-93073-abstractuserauthentication-forcesetcookie-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-93073-AbstractUserAuthentication-forceSetCookieRemoved.html#breaking-93073-abstractuserauthentication-forcesetcookie-removed", + "Changelog\/11.0\/Breaking-93073-AbstractUserAuthentication-forceSetCookieRemoved.html#breaking-93073", "Breaking: #93073 - AbstractUserAuthentication->forceSetCookie removed" ], "breaking-93077-removed-unneeded-configurations-in-pagelayoutview": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-93077-RemovedUnneededConfigurationsInPageLayoutView.html#breaking-93077-removed-unneeded-configurations-in-pagelayoutview", + "Changelog\/11.0\/Breaking-93077-RemovedUnneededConfigurationsInPageLayoutView.html#breaking-93077", "Breaking: #93077 - Removed unneeded configurations in PageLayoutView" ], "breaking-93080-relationhandler-internals-protected": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-93080-RelationHandlerInternalsProtected.html#breaking-93080-relationhandler-internals-protected", + "Changelog\/11.0\/Breaking-93080-RelationHandlerInternalsProtected.html#breaking-93080", "Breaking: #93080 - RelationHandler internals protected" ], "breaking-93081-removed-fetching-translation-file-mirror-from-typo3-org": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-93081-RemovedFetchingTranslationFileMirrorFromTypo3org.html#breaking-93081-removed-fetching-translation-file-mirror-from-typo3-org", + "Changelog\/11.0\/Breaking-93081-RemovedFetchingTranslationFileMirrorFromTypo3org.html#breaking-93081", "Breaking: #93081 - Removed fetching translation file mirror from typo3.org" ], "breaking-93083-class-ext-update-php-handling-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-93083-Classext_updatephpHandlingRemoved.html#breaking-93083-class-ext-update-php-handling-removed", + "Changelog\/11.0\/Breaking-93083-Classext_updatephpHandlingRemoved.html#breaking-93083", "Breaking: #93083 - class.ext_update.php handling removed" ], "breaking-93093-rework-shortcut-php-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-93093-ReworkShortcutPHPAPI.html#breaking-93093-rework-shortcut-php-api", + "Changelog\/11.0\/Breaking-93093-ReworkShortcutPHPAPI.html#changelog-Breaking-93093-ReworkShortcutPHPAPI", "Breaking: #93093 - Rework Shortcut PHP API" ], "breaking-93108-reworked-internal-user-group-fetching-for-frontend-users": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-93108-ReworkedInternalUserGroupFetchingForFrontendUsers.html#breaking-93108-reworked-internal-user-group-fetching-for-frontend-users", + "Changelog\/11.0\/Breaking-93108-ReworkedInternalUserGroupFetchingForFrontendUsers.html#breaking-93108", "Breaking: #93108 - Reworked internal user group fetching for frontend users" ], "breaking-93110-indexed-search-does-not-provide-hook-for-ext-crawler-anymore": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-93110-IndexedSearchDoesNotProvideHookForEXTcrawlerAnymore.html#breaking-93110-indexed-search-does-not-provide-hook-for-ext-crawler-anymore", + "Changelog\/11.0\/Breaking-93110-IndexedSearchDoesNotProvideHookForEXTcrawlerAnymore.html#breaking-93110", "Breaking: #93110 - Indexed search does not provide hook for EXT:crawler anymore" ], "breaking-94861-deprecated-form-mixins-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Breaking-94861-DeprecatedFormMixinsRemoved.html#breaking-94861-deprecated-form-mixins-removed", + "Changelog\/11.0\/Breaking-94861-DeprecatedFormMixinsRemoved.html#breaking-94861", "Breaking: #94861 - Deprecated form mixins removed" ], "deprecation-89938-language-mode-in-typo3querysettings": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Deprecation-89938-DeprecatedLanguageModeInTypo3QuerySettings.html#deprecation-89938-language-mode-in-typo3querysettings", + "Changelog\/11.0\/Deprecation-89938-DeprecatedLanguageModeInTypo3QuerySettings.html#deprecation-89938", "Deprecation: #89938 - Language mode in Typo3QuerySettings" ], "deprecation-91606-global-datetime-picker-initialization": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Deprecation-91606-GlobalDatetimePickerInitialization.html#deprecation-91606-global-datetime-picker-initialization", + "Changelog\/11.0\/Deprecation-91606-GlobalDatetimePickerInitialization.html#deprecation-91606", "Deprecation: #91606 - Global Datetime Picker initialization" ], "deprecation-91911-optionel-of-type-jquery-in-formengine-setselectoptionfromexternalsource": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Deprecation-91911-OptionElOfTypeJQueryInFormEnginesetSelectOptionFromExternalSource.html#deprecation-91911-optionel-of-type-jquery-in-formengine-setselectoptionfromexternalsource", + "Changelog\/11.0\/Deprecation-91911-OptionElOfTypeJQueryInFormEnginesetSelectOptionFromExternalSource.html#deprecation-91911", "Deprecation: #91911 - optionEl of type jQuery in FormEngine.setSelectOptionFromExternalSource" ], "deprecation-92062-migrate-recordlistcontroller-hooks-to-psr-14-event": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Deprecation-92062-MigrateRecordListControllerHooksToAnPSR-14Event.html#deprecation-92062-migrate-recordlistcontroller-hooks-to-psr-14-event", + "Changelog\/11.0\/Deprecation-92062-MigrateRecordListControllerHooksToAnPSR-14Event.html#deprecation-92062", "Deprecation: #92062 - Migrate RecordListController hooks to PSR-14 event" ], "deprecation-92080-querygenerator-and-queryview": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Deprecation-92080-DeprecatedQueryGeneratorAndQueryView.html#deprecation-92080-querygenerator-and-queryview", + "Changelog\/11.0\/Deprecation-92080-DeprecatedQueryGeneratorAndQueryView.html#deprecation-92080", "Deprecation: #92080 - QueryGenerator and QueryView" ], "deprecation-92132-shortcut-php-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Deprecation-92132-DeprecatedShortcutPHPAPI.html#deprecation-92132-shortcut-php-api", + "Changelog\/11.0\/Deprecation-92132-DeprecatedShortcutPHPAPI.html#deprecation-92132-1668719172", "Deprecation: #92132 - Shortcut PHP API" ], "deprecation-92132-viewhelper-f-be-buttons-shortcut": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Deprecation-92132-DeprecatedViewHelperFbebuttonsshortcut.html#deprecation-92132-viewhelper-f-be-buttons-shortcut", + "Changelog\/11.0\/Deprecation-92132-DeprecatedViewHelperFbebuttonsshortcut.html#deprecation-92132", "Deprecation: #92132 - ViewHelper f:be.buttons.shortcut" ], "deprecation-92386-extbase-property-injection": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Deprecation-92386-DeprecatedExtbasePropertyInjection.html#deprecation-92386-extbase-property-injection", + "Changelog\/11.0\/Deprecation-92386-DeprecatedExtbasePropertyInjection.html#deprecation-92386", "Deprecation: #92386 - Extbase property injection" ], "deprecation-92435-standaloneview-for-emailfinisher": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Deprecation-92435-DeprecatedStandaloneViewForEmailFinisher.html#deprecation-92435-standaloneview-for-emailfinisher", + "Changelog\/11.0\/Deprecation-92435-DeprecatedStandaloneViewForEmailFinisher.html#deprecation-92435", "Deprecation: #92435 - StandaloneView for EmailFinisher" ], "deprecation-92551-generalutility-methods-related-to-pages-l18n-cfg-behavior": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Deprecation-92551-GeneralUtilityMethodsRelatedToPagesl18n_cfgBehavior.html#deprecation-92551-generalutility-methods-related-to-pages-l18n-cfg-behavior", + "Changelog\/11.0\/Deprecation-92551-GeneralUtilityMethodsRelatedToPagesl18n_cfgBehavior.html#deprecation-92551", "Deprecation: #92551 - GeneralUtility methods related to pages.l18n_cfg behavior" ], "deprecation-92583-3-last-arguments-of-wrapclickmenuonicon": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Deprecation-92583-DeprecateLastArgumentsOfWrapClickMenuOnIcon.html#deprecation-92583-3-last-arguments-of-wrapclickmenuonicon", + "Changelog\/11.0\/Deprecation-92583-DeprecateLastArgumentsOfWrapClickMenuOnIcon.html#deprecation-92583", "Deprecation: #92583 - 3 last arguments of wrapClickMenuOnIcon()" ], "deprecation-92598-workspace-related-methods-fixversioningpid": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Deprecation-92598-Workspace-relatedMethodsFixVersioningPid.html#deprecation-92598-workspace-related-methods-fixversioningpid", + "Changelog\/11.0\/Deprecation-92598-Workspace-relatedMethodsFixVersioningPid.html#deprecation-92598", "Deprecation: #92598 - Workspace-related methods \"fixVersioningPid\"" ], "deprecation-92607-generalutility-uniquelist": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Deprecation-92607-DeprecatedGeneralUtilityuniqueList.html#deprecation-92607-generalutility-uniquelist", + "Changelog\/11.0\/Deprecation-92607-DeprecatedGeneralUtilityuniqueList.html#deprecation-92607", "Deprecation: #92607 - GeneralUtility::uniqueList" ], "deprecation-92784-extbase-controller-actions-must-return-responseinterface": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Deprecation-92784-ExtbaseControllerActionsMustReturnResponseInterface.html#deprecation-92784-extbase-controller-actions-must-return-responseinterface", + "Changelog\/11.0\/Deprecation-92784-ExtbaseControllerActionsMustReturnResponseInterface.html#deprecation-92784", "Deprecation: #92784 - Extbase controller actions must return ResponseInterface" ], "deprecation-92815-actioncontroller-forward": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Deprecation-92815-ActionControllerForward.html#deprecation-92815-actioncontroller-forward", + "Changelog\/11.0\/Deprecation-92815-ActionControllerForward.html#deprecation-92815", "Deprecation: #92815 - ActionController::forward()" ], "deprecation-92922-use-of-record-uid-in-abstracttreeview-geticon": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Deprecation-92922-UseOfRecordUidInAbstractTreeViewgetIcon.html#deprecation-92922-use-of-record-uid-in-abstracttreeview-geticon", + "Changelog\/11.0\/Deprecation-92922-UseOfRecordUidInAbstractTreeViewgetIcon.html#deprecation-92922", "Deprecation: #92922 - Use of record uid in AbstractTreeView::getIcon()" ], "deprecation-92947-typo3-mode-and-typo3-requesttype-constants": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Deprecation-92947-DeprecateTYPO3_MODEAndTYPO3_REQUESTTYPEConstants.html#deprecation-92947-typo3-mode-and-typo3-requesttype-constants", + "Changelog\/11.0\/Deprecation-92947-DeprecateTYPO3_MODEAndTYPO3_REQUESTTYPEConstants.html#deprecation-92947", "Deprecation: #92947 - TYPO3_MODE and TYPO3_REQUESTTYPE constants" ], "php-typo3-requesttype-constants": [ @@ -43531,73 +43663,73 @@ "deprecation-93023-reworked-session-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Deprecation-93023-ReworkedSessionHandling.html#deprecation-93023-reworked-session-handling", + "Changelog\/11.0\/Deprecation-93023-ReworkedSessionHandling.html#changelog-Deprecation-93023-ReworkedSessionHandling", "Deprecation: #93023 - Reworked session handling" ], "deprecation-93038-referenceindex-runtime-cache": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Deprecation-93038-ReferenceIndexRuntimeCache.html#deprecation-93038-referenceindex-runtime-cache", + "Changelog\/11.0\/Deprecation-93038-ReferenceIndexRuntimeCache.html#deprecation-93038", "Deprecation: #93038 - ReferenceIndex runtime cache" ], "deprecation-93060-shortcut-title-must-be-set-by-controllers": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Deprecation-93060-ShortcutTitleMustBeSetByControllers.html#deprecation-93060-shortcut-title-must-be-set-by-controllers", + "Changelog\/11.0\/Deprecation-93060-ShortcutTitleMustBeSetByControllers.html#changelog-Deprecation-93060-ShortcutTitleMustBeSetByControllers", "Deprecation: #93060 - Shortcut title must be set by controllers" ], "deprecation-93093-methodname-in-shortcut-php-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Deprecation-93093-DeprecateMethodNameInShortcutPHPAPI.html#deprecation-93093-methodname-in-shortcut-php-api", + "Changelog\/11.0\/Deprecation-93093-DeprecateMethodNameInShortcutPHPAPI.html#changelog-Deprecation-93093-DeprecateMethodNameInShortcutPHPAPI", "Deprecation: #93093 - MethodName in Shortcut PHP API" ], "feature-29342-improve-validatortask": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-29342-ImproveValidatorTask.html#feature-29342-improve-validatortask", + "Changelog\/11.0\/Feature-29342-ImproveValidatorTask.html#feature-29342", "Feature: #29342 - Improve ValidatorTask" ], "feature-83814-add-system-notes-creation-button-to-modules-button-bar": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-83814-AddSystemNotesCreationButtonToModulesButtonBar.html#feature-83814-add-system-notes-creation-button-to-modules-button-bar", + "Changelog\/11.0\/Feature-83814-AddSystemNotesCreationButtonToModulesButtonBar.html#feature-83814", "Feature: #83814 - Add system notes creation button to modules button bar" ], "feature-87301-secure-cookies-enabled-by-default": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-87301-SecureCookiesEnabledByDefault.html#feature-87301-secure-cookies-enabled-by-default", + "Changelog\/11.0\/Feature-87301-SecureCookiesEnabledByDefault.html#feature-87301", "Feature: #87301 - Secure cookies enabled by default" ], "feature-88276-typoscript-condition-for-page-layout": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-88276-TypoScriptConditionForPageLayout.html#feature-88276-typoscript-condition-for-page-layout", + "Changelog\/11.0\/Feature-88276-TypoScriptConditionForPageLayout.html#feature-88276", "Feature: #88276 - TypoScript Condition for page layout" ], "feature-89496-make-context-menu-usable-via-keyboard": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-89496-MakeContextMenuUsableViaKeyboard.html#feature-89496-make-context-menu-usable-via-keyboard", + "Changelog\/11.0\/Feature-89496-MakeContextMenuUsableViaKeyboard.html#feature-89496", "Feature: #89496: Make context menu usable via keyboard" ], "feature-91712-cleanup-scheduler-task-and-cli-command-for-redirects": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-91712-RedirectModuleCleanupSchedulerTask.html#feature-91712-cleanup-scheduler-task-and-cli-command-for-redirects", + "Changelog\/11.0\/Feature-91712-RedirectModuleCleanupSchedulerTask.html#feature-91712", "Feature: #91712 - Cleanup scheduler task and CLI command for redirects" ], "feature-91719-custom-error-messages-in-regularexpressionvalidator": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-91719-CustomErrorMessagesInRegularExpressionValidator.html#feature-91719-custom-error-messages-in-regularexpressionvalidator", + "Changelog\/11.0\/Feature-91719-CustomErrorMessagesInRegularExpressionValidator.html#feature-91719", "Feature: #91719 - Custom error messages in RegularExpressionValidator" ], "feature-91738-introduce-wrapper-for-sessionstorage": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-91738-IntroduceWrapperForSessionStorage.html#feature-91738-introduce-wrapper-for-sessionstorage", + "Changelog\/11.0\/Feature-91738-IntroduceWrapperForSessionStorage.html#feature-91738", "Feature: #91738 - Introduce wrapper for sessionStorage" ], "api-methods": [ @@ -43609,7 +43741,7 @@ "feature-91810-introduce-lit-html-and-lit-element-as-client-side-templating-engine": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-91810-IntroduceLit-htmlAndLit-elementAsClient-sideTemplatingEngine.html#feature-91810-introduce-lit-html-and-lit-element-as-client-side-templating-engine", + "Changelog\/11.0\/Feature-91810-IntroduceLit-htmlAndLit-elementAsClient-sideTemplatingEngine.html#feature-91810", "Feature: #91810 - Introduce lit-html and lit-element as client-side templating engine" ], "variable-assignment": [ @@ -43639,109 +43771,109 @@ "feature-91859-allow-selectcheckbox-groups-to-be-initially-expanded": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-91859-AllowSelectCheckBoxGroupsToBeInitiallyExpanded.html#feature-91859-allow-selectcheckbox-groups-to-be-initially-expanded", + "Changelog\/11.0\/Feature-91859-AllowSelectCheckBoxGroupsToBeInitiallyExpanded.html#feature-91859", "Feature: #91859 - Allow SelectCheckBox groups to be initially expanded" ], "feature-91890-allow-ordering-of-displayed-columns-in-redirects-overview": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-91890-ColumnOrderingInRedirectsOverview.html#feature-91890-allow-ordering-of-displayed-columns-in-redirects-overview", + "Changelog\/11.0\/Feature-91890-ColumnOrderingInRedirectsOverview.html#feature-91890", "Feature: #91890 - Allow ordering of displayed columns in redirects overview" ], "feature-92022-show-week-numbers-in-datetimepicker-for-editors": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-92022-ShowWeekNumbersInDateTimePickerForEditors.html#feature-92022-show-week-numbers-in-datetimepicker-for-editors", + "Changelog\/11.0\/Feature-92022-ShowWeekNumbersInDateTimePickerForEditors.html#feature-92022", "Feature: #92022 - Show week numbers in DateTimePicker for editors" ], "feature-92334-x-redirect-by-header-for-pages-with-redirect-types": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-92334-X-Redirect-ByHeaderForPagesWithRedirectTypes.html#feature-92334-x-redirect-by-header-for-pages-with-redirect-types", + "Changelog\/11.0\/Feature-92334-X-Redirect-ByHeaderForPagesWithRedirectTypes.html#feature-92334", "Feature: #92334 - X-Redirect-By Header for pages with redirect types" ], "feature-92337-allow-translatable-labels-for-bookmark-groups": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-92337-AllowTranslatableLabelsForBookmarkGroups.html#feature-92337-allow-translatable-labels-for-bookmark-groups", + "Changelog\/11.0\/Feature-92337-AllowTranslatableLabelsForBookmarkGroups.html#feature-92337", "Feature: #92337 - Allow translatable labels for bookmark groups" ], "feature-92366-show-fragments-in-preview-of-inputlinkelement": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-92366-ShowFragmentsInPreviewOfInputLinkElement.html#feature-92366-show-fragments-in-preview-of-inputlinkelement", + "Changelog\/11.0\/Feature-92366-ShowFragmentsInPreviewOfInputLinkElement.html#feature-92366", "Feature: #92366 - Show fragments in preview of InputLinkElement" ], "feature-92423-enable-placeholder-config-for-ckeditor": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-92423-EnablePlaceholderConfigForCkeditor.html#feature-92423-enable-placeholder-config-for-ckeditor", + "Changelog\/11.0\/Feature-92423-EnablePlaceholderConfigForCkeditor.html#feature-92423", "Feature: #92423 - Enable placeholder config for ckeditor" ], "feature-92457-improved-extension-repository-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-92457-ImprovedExtensionRepositoryAPI.html#feature-92457-improved-extension-repository-api", + "Changelog\/11.0\/Feature-92457-ImprovedExtensionRepositoryAPI.html#feature-92457", "Feature: #92457 - Improved Extension Repository API" ], "feature-92462-add-optional-defaultvalues-argument-to-newrecord-viewhelpers": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-92462-AddOptionalDefaultValuesArgumentToNewRecordViewHelpers.html#feature-92462-add-optional-defaultvalues-argument-to-newrecord-viewhelpers", + "Changelog\/11.0\/Feature-92462-AddOptionalDefaultValuesArgumentToNewRecordViewHelpers.html#feature-92462", "Feature: #92462 - Add optional \"defaultValues\" argument to newRecord ViewHelpers" ], "feature-92486-add-field-control-to-file-collections-of-tt-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-92486-AddFieldControlToFile_collectionsOfTt_content.html#feature-92486-add-field-control-to-file-collections-of-tt-content", + "Changelog\/11.0\/Feature-92486-AddFieldControlToFile_collectionsOfTt_content.html#feature-92486", "Feature: #92486 - Add field control to file_collections of tt_content" ], "feature-92522-show-table-and-field-names-in-ext-lowlevel": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-92522-ShowTableAndFieldNamesInExtlowlevel.html#feature-92522-show-table-and-field-names-in-ext-lowlevel", + "Changelog\/11.0\/Feature-92522-ShowTableAndFieldNamesInExtlowlevel.html#feature-92522", "Feature: #92522 - Show table and field names in ext:lowlevel" ], "feature-92531-improved-email-validation": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-92531-ImprovedEmailValidation.html#feature-92531-improved-email-validation", + "Changelog\/11.0\/Feature-92531-ImprovedEmailValidation.html#feature-92531", "Feature: #92531 - Improved Email Validation" ], "feature-92538-show-extension-constraints-in-extension-manager": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-92538-ShowExtensionConstraintsInExtensionManager.html#feature-92538-show-extension-constraints-in-extension-manager", + "Changelog\/11.0\/Feature-92538-ShowExtensionConstraintsInExtensionManager.html#feature-92538", "Feature: #92538 - Show extension constraints in extension manager" ], "feature-92562-frontend-groups-resolved-directly-after-the-frontend-user-itself": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-92562-FrontendGroupsResolvedDirectlyAfterTheFrontendUserItself.html#feature-92562-frontend-groups-resolved-directly-after-the-frontend-user-itself", + "Changelog\/11.0\/Feature-92562-FrontendGroupsResolvedDirectlyAfterTheFrontendUserItself.html#feature-92562", "Feature: #92562 - Frontend groups resolved directly after the Frontend User itself" ], "feature-92616-bootstrap-v5": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-92616-BootstrapV5.html#feature-92616-bootstrap-v5", + "Changelog\/11.0\/Feature-92616-BootstrapV5.html#feature-92616", "Feature: #92616 - Bootstrap v5" ], "feature-92815-introduce-forwardresponse-for-extbase": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-92815-IntroduceForwardResponseForExtbase.html#feature-92815-introduce-forwardresponse-for-extbase", + "Changelog\/11.0\/Feature-92815-IntroduceForwardResponseForExtbase.html#feature-92815", "Feature: #92815 - Introduce ForwardResponse for extbase" ], "feature-92884-applications-implement-psr-15-requesthandlerinterface": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-92884-ApplicationsImplementPSR-15RequestHandlerInterface.html#feature-92884-applications-implement-psr-15-requesthandlerinterface", + "Changelog\/11.0\/Feature-92884-ApplicationsImplementPSR-15RequestHandlerInterface.html#feature-92884", "Feature: #92884 - Applications implement PSR-15 RequestHandlerInterface" ], "feature-92929-extendable-configuration-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-92929-ExtendableConfigurationModule.html#feature-92929-extendable-configuration-module", + "Changelog\/11.0\/Feature-92929-ExtendableConfigurationModule.html#feature-92929", "Feature: #92929 - Extendable configuration module" ], "so-how-does-it-work": [ @@ -43753,19 +43885,19 @@ "feature-92984-psr-7-request-available-in-frontend-contentobjects": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-92984-PSR-7RequestAvailableInFrontendContentObjects.html#feature-92984-psr-7-request-available-in-frontend-contentobjects", + "Changelog\/11.0\/Feature-92984-PSR-7RequestAvailableInFrontendContentObjects.html#feature-92984", "Feature: #92984 - PSR-7 Request available in Frontend ContentObjects" ], "feature-93011-authentication-related-cookies-are-attached-to-psr-7-responses": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-93011-Authentication-relatedCookiesAreAttachedToPSR-7Responses.html#feature-93011-authentication-related-cookies-are-attached-to-psr-7-responses", + "Changelog\/11.0\/Feature-93011-Authentication-relatedCookiesAreAttachedToPSR-7Responses.html#feature-93011", "Feature: #93011 - Authentication-related cookies are attached to PSR-7 Responses" ], "feature-93023-introduce-usersession-and-usersessionmanager": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-93023-IntroduceUserSessionAndUserSessionManager.html#feature-93023-introduce-usersession-and-usersessionmanager", + "Changelog\/11.0\/Feature-93023-IntroduceUserSessionAndUserSessionManager.html#changelog-Feature-93023-IntroduceUserSessionAndUserSessionManager", "Feature: #93023 - Introduce UserSession and UserSessionManager" ], "public-methods-within-usersession": [ @@ -43783,67 +43915,67 @@ "feature-93048-introduce-backend-url-rewrites": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-93048-IntroduceBackendURLRewrites.html#feature-93048-introduce-backend-url-rewrites", + "Changelog\/11.0\/Feature-93048-IntroduceBackendURLRewrites.html#changelog-Feature-93048-IntroduceBackendURLRewrites", "Feature: #93048 - Introduce Backend URL rewrites" ], "feature-93056-new-event-after-retrieving-user-groups-recursively": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-93056-NewEventAfterRetrievingUserGroupsRecursively.html#feature-93056-new-event-after-retrieving-user-groups-recursively", + "Changelog\/11.0\/Feature-93056-NewEventAfterRetrievingUserGroupsRecursively.html#feature-93056", "Feature: #93056 - New Event after retrieving user groups recursively" ], "feature-93063-flashmessages-are-stored-in-session-as-jsonserializable": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Feature-93063-FlashMessagesAreStoredInSessionAsJsonSerializable.html#feature-93063-flashmessages-are-stored-in-session-as-jsonserializable", + "Changelog\/11.0\/Feature-93063-FlashMessagesAreStoredInSessionAsJsonSerializable.html#feature-93063", "Feature: #93063 - FlashMessages are stored in session as JsonSerializable" ], "important-89938-removed-dead-code-from-extbase-persistence": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Important-89938-RemovedDeadCodeFromExtbasePersistence.html#important-89938-removed-dead-code-from-extbase-persistence", + "Changelog\/11.0\/Important-89938-RemovedDeadCodeFromExtbasePersistence.html#important-89938", "Important: #89938 - Removed dead code from Extbase persistence" ], "important-91123-avoid-using-backendutility-viewonclick": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Important-91123-AvoidUsingBackendUtilityViewOnClick.html#important-91123-avoid-using-backendutility-viewonclick", + "Changelog\/11.0\/Important-91123-AvoidUsingBackendUtilityViewOnClick.html#important-91123", "Important: #91123 - Avoid using BackendUtility::viewOnClick" ], "important-91888-system-extension-about-merged-into-backend-system-extension": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Important-91888-SystemExtensionAboutMergedIntoBackendSystemExtension.html#important-91888-system-extension-about-merged-into-backend-system-extension", + "Changelog\/11.0\/Important-91888-SystemExtensionAboutMergedIntoBackendSystemExtension.html#important-91888", "Important: #91888 - System extension \"about\" merged into \"backend\" system extension" ], "important-91953-jquery-updated-to-3-5-x": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Important-91953-JQueryUpdatedTo35x.html#important-91953-jquery-updated-to-3-5-x", + "Changelog\/11.0\/Important-91953-JQueryUpdatedTo35x.html#important-91953", "Important: #91953 - jQuery updated to 3.5.x" ], "important-92736-return-timestamp-as-integer-in-datetimeaspect": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Important-92736-ReturnTimestampAsIntegerInDateTimeAspect.html#important-92736-return-timestamp-as-integer-in-datetimeaspect", + "Changelog\/11.0\/Important-92736-ReturnTimestampAsIntegerInDateTimeAspect.html#important-92736", "Important: #92736 - Return timestamp as integer in DateTimeAspect" ], "important-92870-always-use-fluid-based-page-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Important-92870-AlwaysUseFluidBasedPageModule.html#important-92870-always-use-fluid-based-page-module", + "Changelog\/11.0\/Important-92870-AlwaysUseFluidBasedPageModule.html#important-92870", "Important: #92870 - Always use Fluid based page module" ], "important-92996-properties-and-methods-in-actioncontroller-marked-internal": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Important-92996-PropertiesAndMethodsInActionControllerMarkedInternal.html#important-92996-properties-and-methods-in-actioncontroller-marked-internal", + "Changelog\/11.0\/Important-92996-PropertiesAndMethodsInActionControllerMarkedInternal.html#important-92996", "Important: #92996 - Properties and methods in ActionController marked internal" ], "important-93121-workspace-records-are-discarded": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.0\/Important-93121-WorkspaceRecordsAreDiscarded.html#important-93121-workspace-records-are-discarded", + "Changelog\/11.0\/Important-93121-WorkspaceRecordsAreDiscarded.html#important-93121", "Important: #93121 - Workspace records are discarded" ], "11-0-changes": [ @@ -43855,43 +43987,43 @@ "deprecation-92628-login-logo-without-alt-text": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.1\/Deprecation-92628-LoginLogoWithoutAltText.html#deprecation-92628-login-logo-without-alt-text", + "Changelog\/11.1\/Deprecation-92628-LoginLogoWithoutAltText.html#deprecation-92628", "Deprecation: #92628 - Login Logo without Alt-Text" ], "deprecation-93149-t3editor-javascript-module-replaced-by-codemirrorelement": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.1\/Deprecation-93149-T3EditorModuleReplacedByReplacedByCodeMirrorElement.html#deprecation-93149-t3editor-javascript-module-replaced-by-codemirrorelement", + "Changelog\/11.1\/Deprecation-93149-T3EditorModuleReplacedByReplacedByCodeMirrorElement.html#deprecation-93149", "Deprecation: #93149 - T3Editor JavaScript module replaced by CodeMirrorElement" ], "deprecation-93454-rename-sortable-to-sortablejs": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.1\/Deprecation-93454-RenameSortableToSortablejs.html#deprecation-93454-rename-sortable-to-sortablejs", + "Changelog\/11.1\/Deprecation-93454-RenameSortableToSortablejs.html#deprecation-93454", "Deprecation: #93454 - Rename Sortable to sortablejs" ], "deprecation-93506-jquery-in-tooltips": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.1\/Deprecation-93506-JQueryInTooltips.html#deprecation-93506-jquery-in-tooltips", + "Changelog\/11.1\/Deprecation-93506-JQueryInTooltips.html#deprecation-93506", "Deprecation: #93506 - jQuery in tooltips" ], "feature-78036-synchronize-folder-relations-after-rename": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.1\/Feature-78036-SynchronizeFolderRelationsAfterRename.html#feature-78036-synchronize-folder-relations-after-rename", + "Changelog\/11.1\/Feature-78036-SynchronizeFolderRelationsAfterRename.html#feature-78036", "Feature: #78036 - Synchronize folder relations after rename" ], "feature-78760-resizable-navigation-component": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.1\/Feature-78760-ResizableNavigationComponent.html#feature-78760-resizable-navigation-component", + "Changelog\/11.1\/Feature-78760-ResizableNavigationComponent.html#feature-78760", "Feature: #78760 - Resizable Navigation Component" ], "feature-89509-data-processor-to-resolve-flexform-data": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.1\/Feature-89509-DataProcessorToResolveFlexFormData.html#feature-89509-data-processor-to-resolve-flexform-data", + "Changelog\/11.1\/Feature-89509-DataProcessorToResolveFlexFormData.html#feature-89509", "Feature: #89509 - Data Processor to resolve FlexForm data" ], "options": [ @@ -43921,37 +44053,37 @@ "feature-92338-allow-link-text-wrapping-in-typolinkviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.1\/Feature-92338-AllowLinkTextWrappingInTypolinkViewhelper.html#feature-92338-allow-link-text-wrapping-in-typolinkviewhelper", + "Changelog\/11.1\/Feature-92338-AllowLinkTextWrappingInTypolinkViewhelper.html#feature-92338", "Feature: #92338 - Allow link text wrapping in TypolinkViewhelper" ], "feature-92628-add-alt-text-to-login-logo": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.1\/Feature-92628-AddAltTextToLoginLogo.html#feature-92628-add-alt-text-to-login-logo", + "Changelog\/11.1\/Feature-92628-AddAltTextToLoginLogo.html#feature-92628", "Feature: #92628 - Add Alt-Text To Login Logo" ], "feature-92704-improve-keyboard-navigation-for-module-menus": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.1\/Feature-92704-ImproveKeyboardNavigationForModuleMenus.html#feature-92704-improve-keyboard-navigation-for-module-menus", + "Changelog\/11.1\/Feature-92704-ImproveKeyboardNavigationForModuleMenus.html#feature-92704", "Feature: #92704 - Improve keyboard navigation for module menus" ], "feature-92942-allow-icon-overlay-for-newcontentelementwizard-elements": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.1\/Feature-92942-AllowIconOverlayForNewContentElementWizardElements.html#feature-92942-allow-icon-overlay-for-newcontentelementwizard-elements", + "Changelog\/11.1\/Feature-92942-AllowIconOverlayForNewContentElementWizardElements.html#feature-92942", "Feature: #92942 - Allow icon overlay for newContentElementWizard elements" ], "feature-93117-add-reset-button-to-backend-user-module-filter": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.1\/Feature-93117-AddResetButtonToBackendUserModuleFilter.html#feature-93117-add-reset-button-to-backend-user-module-filter", + "Changelog\/11.1\/Feature-93117-AddResetButtonToBackendUserModuleFilter.html#feature-93117", "Feature: #93117 - Add reset button to Backend User module filter" ], "feature-93174-lazy-console-command-list": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.1\/Feature-93174-LazyConsoleCommandList.html#feature-93174-lazy-console-command-list", + "Changelog\/11.1\/Feature-93174-LazyConsoleCommandList.html#feature-93174", "Feature: #93174 - Lazy console command list" ], "example-of-a-command-registration-that-includes-a-description": [ @@ -43963,19 +44095,19 @@ "feature-93426-svg-based-tree-for-folder-navigation-with-filter": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.1\/Feature-93426-SVG-basedTreeForFolderNavigationWithFilter.html#feature-93426-svg-based-tree-for-folder-navigation-with-filter", + "Changelog\/11.1\/Feature-93426-SVG-basedTreeForFolderNavigationWithFilter.html#feature-93426", "Feature: #93426 - SVG-based Tree for Folder Navigation with Filter" ], "feature-93455-backend-routes-restricted-to-specified-http-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.1\/Feature-93455-BackendRoutesRestrictedToSpecifiedHTTPMethods.html#feature-93455-backend-routes-restricted-to-specified-http-methods", + "Changelog\/11.1\/Feature-93455-BackendRoutesRestrictedToSpecifiedHTTPMethods.html#feature-93455", "Feature: #93455 - Backend Routes restricted to specified HTTP methods" ], "feature-93526-multi-factor-authentication": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.1\/Feature-93526-MultiFactorAuthentication.html#feature-93526-multi-factor-authentication", + "Changelog\/11.1\/Feature-93526-MultiFactorAuthentication.html#feature-93526", "Feature: #93526 - Multi-Factor Authentication" ], "included-mfa-providers": [ @@ -44005,127 +44137,127 @@ "deprecation-92494-extbase-environmentservice": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.2\/Deprecation-92494-ExtbaseEnvironmentService.html#deprecation-92494-extbase-environmentservice", + "Changelog\/11.2\/Deprecation-92494-ExtbaseEnvironmentService.html#deprecation-92494", "Deprecation: #92494 - Extbase EnvironmentService" ], "deprecation-92992-hook-t3lib-parsehtml-proc-php-transformation": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.2\/Deprecation-92992-HookT3libclasst3lib_parsehtml_procphptransformation.html#deprecation-92992-hook-t3lib-parsehtml-proc-php-transformation", + "Changelog\/11.2\/Deprecation-92992-HookT3libclasst3lib_parsehtml_procphptransformation.html#deprecation-92992", "Deprecation: #92992 - Hook t3lib_parsehtml_proc.php:transformation" ], "deprecation-93726-deprecated-typoscriptparser-related-properties": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.2\/Deprecation-93726-DeprecatedTypoScriptParserRelatedProperties.html#deprecation-93726-deprecated-typoscriptparser-related-properties", + "Changelog\/11.2\/Deprecation-93726-DeprecatedTypoScriptParserRelatedProperties.html#deprecation-93726", "Deprecation: #93726 - Deprecated TypoScriptParser related properties" ], "deprecation-93837-special-property-of-tca-type-select": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.2\/Deprecation-93837-SpecialPropertyOfTCATypeSelect.html#deprecation-93837-special-property-of-tca-type-select", + "Changelog\/11.2\/Deprecation-93837-SpecialPropertyOfTCATypeSelect.html#deprecation-93837", "Deprecation: #93837 - special property of TCA type select" ], "deprecation-93899-formengine-s-requestconfirmationonfieldchange": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.2\/Deprecation-93899-FormEnginesRequestConfirmationOnFieldChange.html#deprecation-93899-formengine-s-requestconfirmationonfieldchange", + "Changelog\/11.2\/Deprecation-93899-FormEnginesRequestConfirmationOnFieldChange.html#deprecation-93899", "Deprecation: #93899 - FormEngine's requestConfirmationOnFieldChange" ], "deprecation-93944-file-tree-as-iframe-migrated-to-svg-based-tree": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.2\/Deprecation-93944-FileTreeAsIframeMigratedToSVG-basedTree.html#deprecation-93944-file-tree-as-iframe-migrated-to-svg-based-tree", + "Changelog\/11.2\/Deprecation-93944-FileTreeAsIframeMigratedToSVG-basedTree.html#deprecation-93944", "Deprecation: #93944 - File Tree as iframe migrated to SVG-based tree" ], "deprecation-93975-tbe-editor-fieldchanged": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.2\/Deprecation-93975-TBE_EDITORfieldChanged.html#deprecation-93975-tbe-editor-fieldchanged", + "Changelog\/11.2\/Deprecation-93975-TBE_EDITORfieldChanged.html#deprecation-93975", "Deprecation: #93975 - TBE_EDITOR.fieldChanged()" ], "feature-57082-new-tca-type-language": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.2\/Feature-57082-NewTCATypeLanguage.html#feature-57082-new-tca-type-language", + "Changelog\/11.2\/Feature-57082-NewTCATypeLanguage.html#feature-57082", "Feature: #57082 - New TCA type \"language\"" ], "feature-73176-filterable-trees-in-record-selectors-and-link-pickers": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.2\/Feature-73176-FilterableTreesInRecordSelectorsAndLinkPickers.html#feature-73176-filterable-trees-in-record-selectors-and-link-pickers", + "Changelog\/11.2\/Feature-73176-FilterableTreesInRecordSelectorsAndLinkPickers.html#feature-73176", "Feature: #73176 - Filterable Trees in Record Selectors and Link Pickers" ], "feature-89762-add-pagination-for-formmanagement": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.2\/Feature-89762-AddPaginationForFormManagement.html#feature-89762-add-pagination-for-formmanagement", + "Changelog\/11.2\/Feature-89762-AddPaginationForFormManagement.html#feature-89762", "Feature: #89762 - Add pagination for FormManagement" ], "feature-93188-possibility-to-disable-hreflang-per-page": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.2\/Feature-93188-PossibilityToDisableHreflangPerPage.html#feature-93188-possibility-to-disable-hreflang-per-page", + "Changelog\/11.2\/Feature-93188-PossibilityToDisableHreflangPerPage.html#feature-93188", "Feature: #93188 - Possibility to disable hreflang per page" ], "feature-93209-fal-add-getfile-to-typo3-cms-core-resource-folder": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.2\/Feature-93209-FALAddGetFileToTYPO3CMSCoreResourceFolder.html#feature-93209-fal-add-getfile-to-typo3-cms-core-resource-folder", + "Changelog\/11.2\/Feature-93209-FALAddGetFileToTYPO3CMSCoreResourceFolder.html#feature-93209", "Feature: #93209 - FAL: Add getFile() to TYPO3\\CMS\\Core\\Resource\\Folder" ], "feature-93591-allow-group-id-lookup-in-conditions-with-array-operator": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.2\/Feature-93591-AllowGroupIdLookupInConditionsWithArrayOperator.html#feature-93591-allow-group-id-lookup-in-conditions-with-array-operator", + "Changelog\/11.2\/Feature-93591-AllowGroupIdLookupInConditionsWithArrayOperator.html#feature-93591", "Feature: #93591 - Allow group id lookup in conditions with array operator" ], "feature-93606-possibility-to-disable-canonical-per-page": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.2\/Feature-93606-PossibilityToDisableCanonicalPerPage.html#feature-93606-possibility-to-disable-canonical-per-page", + "Changelog\/11.2\/Feature-93606-PossibilityToDisableCanonicalPerPage.html#feature-93606", "Feature: #93606 - Possibility to disable canonical per page" ], "feature-93651-provide-list-of-available-system-locales": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.2\/Feature-93651-ProvideListOfAvailableSystemLocales.html#feature-93651-provide-list-of-available-system-locales", + "Changelog\/11.2\/Feature-93651-ProvideListOfAvailableSystemLocales.html#feature-93651", "Feature: #93651 - Provide list of available system locales" ], "feature-93663-backend-user-s-preferred-ui-language-stored-as-db-field": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.2\/Feature-93663-BackendUsersPreferredUILanguageStoredAsDBField.html#feature-93663-backend-user-s-preferred-ui-language-stored-as-db-field", + "Changelog\/11.2\/Feature-93663-BackendUsersPreferredUILanguageStoredAsDBField.html#feature-93663", "Feature: #93663 - Backend user's preferred UI language stored as DB field" ], "feature-93794-override-tca-description-with-tsconfig": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.2\/Feature-93794-OverrideTCADescriptionWithTSconfig.html#feature-93794-override-tca-description-with-tsconfig", + "Changelog\/11.2\/Feature-93794-OverrideTCADescriptionWithTSconfig.html#feature-93794", "Feature: #93794 - Override TCA description with TSconfig" ], "feature-93857-resizable-navigation-component-for-all-element-record-selectors": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.2\/Feature-93857-ResizableNavigationComponentForAllElementRecordSelectors.html#feature-93857-resizable-navigation-component-for-all-element-record-selectors", + "Changelog\/11.2\/Feature-93857-ResizableNavigationComponentForAllElementRecordSelectors.html#feature-93857", "Feature: #93857 - Resizable navigation component for all element \/ record selectors" ], "feature-93908-add-decoding-attribute-to-images": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.2\/Feature-93908-Image-decoding-attribute.html#feature-93908-add-decoding-attribute-to-images", + "Changelog\/11.2\/Feature-93908-Image-decoding-attribute.html#feature-93908", "Feature: #93908 - Add decoding attribute to images" ], "feature-93988-backend-module-urls-reflect-into-browser-address-bar": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.2\/Feature-93988-BackendModuleURLsReflectIntoBrowserAddressbar.html#feature-93988-backend-module-urls-reflect-into-browser-address-bar", + "Changelog\/11.2\/Feature-93988-BackendModuleURLsReflectIntoBrowserAddressbar.html#feature-93988", "Feature: #93988 - Backend module URLs reflect into browser address bar" ], "important-93398-possibility-to-ignore-submitted-values-in-hiddenviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.2\/Important-93398-PossibilityToIgnoreSubmittedValuesInHiddenViewHelper.html#important-93398-possibility-to-ignore-submitted-values-in-hiddenviewhelper", + "Changelog\/11.2\/Important-93398-PossibilityToIgnoreSubmittedValuesInHiddenViewHelper.html#important-93398", "Important: #93398 - Possibility to ignore submitted values in HiddenViewHelper" ], "11-2-changes": [ @@ -44137,187 +44269,187 @@ "deprecation-91806-backendutility-viewonclick": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Deprecation-91806-BackendUtilityViewOnClick.html#deprecation-91806-backendutility-viewonclick", + "Changelog\/11.3\/Deprecation-91806-BackendUtilityViewOnClick.html#deprecation-91806", "Deprecation: #91806 - BackendUtility viewOnClick" ], "deprecation-94058-javascript-gotomodule": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Deprecation-94058-JavaScriptGoToModule.html#deprecation-94058-javascript-gotomodule", + "Changelog\/11.3\/Deprecation-94058-JavaScriptGoToModule.html#deprecation-94058", "Deprecation: #94058 - JavaScript goToModule()" ], "deprecation-94115-parameter-type-evaluation-via-docblock-comments": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Deprecation-94115-ParameterTypeEvaluationViaDocBlockComments.html#deprecation-94115-parameter-type-evaluation-via-docblock-comments", + "Changelog\/11.3\/Deprecation-94115-ParameterTypeEvaluationViaDocBlockComments.html#deprecation-94115", "Deprecation: #94115 - Parameter type evaluation via DocBlock comments" ], "deprecation-94137-switch-behavior-of-arrayutility-arraydiffassocrecursive": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Deprecation-94137-SwitchBehaviorOfArrayUtilityarrayDiffAssocRecursive.html#deprecation-94137-switch-behavior-of-arrayutility-arraydiffassocrecursive", + "Changelog\/11.3\/Deprecation-94137-SwitchBehaviorOfArrayUtilityarrayDiffAssocRecursive.html#deprecation-94137", "Deprecation: #94137 - Switch behavior of ArrayUtility::arrayDiffAssocRecursive()" ], "deprecation-94165-sys-language-table": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Deprecation-94165-SysLanguageDatabaseTable.html#deprecation-94165-sys-language-table", + "Changelog\/11.3\/Deprecation-94165-SysLanguageDatabaseTable.html#deprecation-94165", "Deprecation: #94165 - sys_language table" ], "deprecation-94193-public-urls-with-relative-paths-in-fal-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Deprecation-94193-PublicUrlWithRelativePathsInFALAPI.html#deprecation-94193-public-urls-with-relative-paths-in-fal-api", + "Changelog\/11.3\/Deprecation-94193-PublicUrlWithRelativePathsInFALAPI.html#deprecation-94193", "Deprecation: #94193 - Public URLs with relative paths in FAL API" ], "deprecation-94209-backend-modulelayout-viewhelpers": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Deprecation-94209-BackendModuleLayoutViewHelpers.html#deprecation-94209-backend-modulelayout-viewhelpers", + "Changelog\/11.3\/Deprecation-94209-BackendModuleLayoutViewHelpers.html#deprecation-94209", "Deprecation: #94209 - Backend ModuleLayout ViewHelpers" ], "deprecation-94223-extbase-request-getbaseuri": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Deprecation-94223-ExtbaseRequest-getBaseUri.html#deprecation-94223-extbase-request-getbaseuri", + "Changelog\/11.3\/Deprecation-94223-ExtbaseRequest-getBaseUri.html#deprecation-94223", "Deprecation: #94223 - Extbase Request->getBaseUri()" ], "deprecation-94225-f-be-container-viewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Deprecation-94225-FbecontainerViewHelper.html#deprecation-94225-f-be-container-viewhelper", + "Changelog\/11.3\/Deprecation-94225-FbecontainerViewHelper.html#deprecation-94225", "Deprecation: #94225 - f:be.container ViewHelper" ], "deprecation-94227-f-base-viewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Deprecation-94227-FbaseViewHelper.html#deprecation-94227-f-base-viewhelper", + "Changelog\/11.3\/Deprecation-94227-FbaseViewHelper.html#deprecation-94227", "Deprecation: #94227 - f:base ViewHelper" ], "deprecation-94228-extbase-request-getrequesturi": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Deprecation-94228-DeprecateExtbaseRequestGetRequestUri.html#deprecation-94228-extbase-request-getrequesturi", + "Changelog\/11.3\/Deprecation-94228-DeprecateExtbaseRequestGetRequestUri.html#deprecation-94228", "Deprecation: #94228 - Extbase request getRequestUri()" ], "deprecation-94231-extbase-invalidrequestmethodexception": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Deprecation-94231-DeprecateExtbaseInvalidRequestMethodException.html#deprecation-94231-extbase-invalidrequestmethodexception", + "Changelog\/11.3\/Deprecation-94231-DeprecateExtbaseInvalidRequestMethodException.html#deprecation-94231", "Deprecation: #94231 - Extbase InvalidRequestMethodException" ], "deprecation-94252-generalutility-compileselectedgetvarsfromarray": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Deprecation-94252-DeprecatedGeneralUtilitycompileSelectedGetVarsFromArray.html#deprecation-94252-generalutility-compileselectedgetvarsfromarray", + "Changelog\/11.3\/Deprecation-94252-DeprecatedGeneralUtilitycompileSelectedGetVarsFromArray.html#deprecation-94252", "Deprecation: #94252 - GeneralUtility::compileSelectedGetVarsFromArray" ], "deprecation-94272-application-run-callback": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Deprecation-94272-DeprecatedApplication-runCallback.html#deprecation-94272-application-run-callback", + "Changelog\/11.3\/Deprecation-94272-DeprecatedApplication-runCallback.html#deprecation-94272", "Deprecation: #94272 - Application->run callback" ], "deprecation-94309-generalutility-stdauthcode": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Deprecation-94309-DeprecatedGeneralUtilitystdAuthCode.html#deprecation-94309-generalutility-stdauthcode", + "Changelog\/11.3\/Deprecation-94309-DeprecatedGeneralUtilitystdAuthCode.html#deprecation-94309", "Deprecation: #94309 - GeneralUtility::stdAuthCode" ], "deprecation-94311-generalutility-rmfromlist": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Deprecation-94311-DeprecatedGeneralUtilityrmFromList.html#deprecation-94311-generalutility-rmfromlist", + "Changelog\/11.3\/Deprecation-94311-DeprecatedGeneralUtilityrmFromList.html#deprecation-94311", "Deprecation: #94311 - GeneralUtility::rmFromList" ], "deprecation-94313-abstractservice-class": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Deprecation-94313-ClassAbstractService.html#deprecation-94313-abstractservice-class", + "Changelog\/11.3\/Deprecation-94313-ClassAbstractService.html#deprecation-94313", "Deprecation: #94313 - AbstractService class" ], "deprecation-94316-http-header-manipulating-methods-from-httputility": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Deprecation-94316-DeprecatedHTTPHeaderManipulatingMethodsFromHttpUtility.html#deprecation-94316-http-header-manipulating-methods-from-httputility", + "Changelog\/11.3\/Deprecation-94316-DeprecatedHTTPHeaderManipulatingMethodsFromHttpUtility.html#deprecation-94316", "Deprecation: #94316 - HTTP header manipulating methods from HttpUtility" ], "deprecation-94317-ext-form-finisher-implementations": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Deprecation-94317-ExtformFinisherImplementations.html#deprecation-94317-ext-form-finisher-implementations", + "Changelog\/11.3\/Deprecation-94317-ExtformFinisherImplementations.html#deprecation-94317", "Deprecation: #94317 - ext:form Finisher implementations" ], "deprecation-94351-ext-extbase-stopactionexception": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Deprecation-94351-ExtextbaseStopActionException.html#deprecation-94351-ext-extbase-stopactionexception", + "Changelog\/11.3\/Deprecation-94351-ExtextbaseStopActionException.html#deprecation-94351", "Deprecation: #94351 - ext:extbase StopActionException" ], "deprecation-94367-extbase-referringrequest": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Deprecation-94367-ExtbaseReferringRequest.html#deprecation-94367-extbase-referringrequest", + "Changelog\/11.3\/Deprecation-94367-ExtbaseReferringRequest.html#deprecation-94367", "Deprecation: #94367 - Extbase ReferringRequest" ], "deprecation-94377-extbase-objectmanager-getemptyobject": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Deprecation-94377-ExtbaseObjectManager-getEmptyObject.html#deprecation-94377-extbase-objectmanager-getemptyobject", + "Changelog\/11.3\/Deprecation-94377-ExtbaseObjectManager-getEmptyObject.html#deprecation-94377", "Deprecation: #94377 - Extbase ObjectManager->getEmptyObject" ], "deprecation-94394-extbase-request-setdispatched-and-isdispatched": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Deprecation-94394-ExtbaseRequestSetDispatchedAndIsDispatched.html#deprecation-94394-extbase-request-setdispatched-and-isdispatched", + "Changelog\/11.3\/Deprecation-94394-ExtbaseRequestSetDispatchedAndIsDispatched.html#deprecation-94394", "Deprecation: #94394 - Extbase Request setDispatched() and isDispatched()" ], "deprecation-94414-languageservice-container-entry": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Deprecation-94414-DeprecateLanguageServiceContainerEntry.html#deprecation-94414-languageservice-container-entry", + "Changelog\/11.3\/Deprecation-94414-DeprecateLanguageServiceContainerEntry.html#deprecation-94414", "Deprecation: #94414 - LanguageService container entry" ], "feature-89507-add-description-for-tca-palettes": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-89507-AddDescriptionForTCAPalettes.html#feature-89507-add-description-for-tca-palettes", + "Changelog\/11.3\/Feature-89507-AddDescriptionForTCAPalettes.html#feature-89507", "Feature: #89507 - Add description for TCA palettes" ], "feature-89700-show-layouts-in-the-web-info-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-89700-ShowLayoutsInTheWebInfoModule.html#feature-89700-show-layouts-in-the-web-info-module", + "Changelog\/11.3\/Feature-89700-ShowLayoutsInTheWebInfoModule.html#feature-89700", "Feature: #89700 - Show layouts in the Web Info module" ], "feature-92358-add-getmoduletemplate-to-pagelayoutcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-92358-AddGetModuleTemplateToPageLayoutController.html#feature-92358-add-getmoduletemplate-to-pagelayoutcontroller", + "Changelog\/11.3\/Feature-92358-AddGetModuleTemplateToPageLayoutController.html#feature-92358", "Feature: #92358 - Add getModuleTemplate() to PageLayoutController" ], "feature-92518-download-and-filename-options-added-to-filedumpcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-92518-DownloadAndFilenameOptionsAddedToFileDumpController.html#feature-92518-download-and-filename-options-added-to-filedumpcontroller", + "Changelog\/11.3\/Feature-92518-DownloadAndFilenameOptionsAddedToFileDumpController.html#feature-92518", "Feature: #92518 - Download and filename options added to FileDumpController" ], "feature-92518-introduce-fileviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-92518-IntroduceFileViewHelper.html#feature-92518-introduce-fileviewhelper", + "Changelog\/11.3\/Feature-92518-IntroduceFileViewHelper.html#feature-92518-1668719172", "Feature: #92518 - Introduce FileViewHelper" ], "feature-93114-native-support-for-language-shona-bantu-added": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-93114-NativeSupportForLanguageShonaBantuAdded.html#feature-93114-native-support-for-language-shona-bantu-added", + "Changelog\/11.3\/Feature-93114-NativeSupportForLanguageShonaBantuAdded.html#feature-93114", "Feature: #93114 - Native support for language Shona (Bantu) added" ], "feature-93210-possibility-to-refresh-dashboard-widgets": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-93210-PossibilityToRefreshDashboardWidgets.html#feature-93210-possibility-to-refresh-dashboard-widgets", + "Changelog\/11.3\/Feature-93210-PossibilityToRefreshDashboardWidgets.html#feature-93210", "Feature: #93210 - Possibility to refresh dashboard widgets" ], "javascript-api": [ @@ -44329,19 +44461,19 @@ "feature-93631-support-for-php-8-0": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-93631-SupportForPHP80.html#feature-93631-support-for-php-8-0", + "Changelog\/11.3\/Feature-93631-SupportForPHP80.html#feature-93631", "Feature: #93631 - Support for PHP 8.0" ], "feature-93668-possibility-to-configure-symfony-mailer": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-93668-PossibilityToConfigureSymfonyMailer.html#feature-93668-possibility-to-configure-symfony-mailer", + "Changelog\/11.3\/Feature-93668-PossibilityToConfigureSymfonyMailer.html#feature-93668", "Feature: #93668 - Possibility to configure Symfony mailer" ], "feature-93825-rate-limiting-for-failed-logins": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-93825-RateLimitingForFailedLogins.html#feature-93825-rate-limiting-for-failed-logins", + "Changelog\/11.3\/Feature-93825-RateLimitingForFailedLogins.html#feature-93825", "Feature: #93825 - Rate limiting for failed logins" ], "backend-login": [ @@ -44359,115 +44491,115 @@ "feature-93835-adderrorforproperty-function-for-abstractvalidator": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-93835-AddErrorForPropertyFunctionForAbstractValidator.html#feature-93835-adderrorforproperty-function-for-abstractvalidator", + "Changelog\/11.3\/Feature-93835-AddErrorForPropertyFunctionForAbstractValidator.html#feature-93835", "Feature: #93835 - AddErrorForProperty function for AbstractValidator" ], "feature-93921-sharing-backend-links": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-93921-SharingBackendLinks.html#feature-93921-sharing-backend-links", + "Changelog\/11.3\/Feature-93921-SharingBackendLinks.html#feature-93921", "Feature: #93921 - Sharing backend links" ], "feature-94081-tca-readonly-for-t3editor": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-94081-TCAReadOnlyForT3editor.html#feature-94081-tca-readonly-for-t3editor", + "Changelog\/11.3\/Feature-94081-TCAReadOnlyForT3editor.html#feature-94081", "Feature: #94081 - TCA readOnly for t3editor" ], "feature-94143-display-creation-date-of-redirects": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-94143-DisplayCreationDateOfRedirects.html#feature-94143-display-creation-date-of-redirects", + "Changelog\/11.3\/Feature-94143-DisplayCreationDateOfRedirects.html#feature-94143", "Feature: #94143 - Display creation date of redirects" ], "feature-94206-add-excludepagesrecursive-option-to-xml-sitemap-generation": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-94206-AddExcludePagesRecursiveOptionToSitemapGeneration.html#feature-94206-add-excludepagesrecursive-option-to-xml-sitemap-generation", + "Changelog\/11.3\/Feature-94206-AddExcludePagesRecursiveOptionToSitemapGeneration.html#feature-94206", "Feature: #94206 - Add excludePagesRecursive option to XML sitemap generation" ], "feature-94210-information-about-inherited-backend-layout": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-94210-InformationAboutInheritedBackendLayout.html#feature-94210-information-about-inherited-backend-layout", + "Changelog\/11.3\/Feature-94210-InformationAboutInheritedBackendLayout.html#feature-94210", "Feature: #94210 - Information about inherited backend layout" ], "feature-94218-selectable-columns-per-table-in-record-list": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-94218-SelectableColumnsPerTableInRecordList.html#feature-94218-selectable-columns-per-table-in-record-list", + "Changelog\/11.3\/Feature-94218-SelectableColumnsPerTableInRecordList.html#feature-94218", "Feature: #94218 - Selectable columns per table in record list" ], "feature-94345-auto-detect-event-types": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-94345-AutoDetectEventTypes.html#feature-94345-auto-detect-event-types", + "Changelog\/11.3\/Feature-94345-AutoDetectEventTypes.html#feature-94345", "Feature: #94345 - Auto-detect event types" ], "feature-94374-create-new-filemount-via-the-folder-s-context-menu": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-94374-CreateNewFilemountViaFoldersContextMenu.html#feature-94374-create-new-filemount-via-the-folder-s-context-menu", + "Changelog\/11.3\/Feature-94374-CreateNewFilemountViaFoldersContextMenu.html#feature-94374", "Feature: #94374 - Create new filemount via the folder's context menu" ], "feature-94390-dropdown-for-record-list-and-file-list-in-favor-of-extended-view": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-94390-DropdownForRecordListAndFileListInFavorOfExtendedView.html#feature-94390-dropdown-for-record-list-and-file-list-in-favor-of-extended-view", + "Changelog\/11.3\/Feature-94390-DropdownForRecordListAndFileListInFavorOfExtendedView.html#feature-94390", "Feature: #94390 - Dropdown for record list and file list in favor of Extended View" ], "feature-94411-record-list-download-settings": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-94411-RecordlistDownloadSettings.html#feature-94411-record-list-download-settings", + "Changelog\/11.3\/Feature-94411-RecordlistDownloadSettings.html#feature-94411", "Feature: #94411 - Record list download settings" ], "feature-94428-extbase-request-implements-serverrequestinterface": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-94428-ExtbaseRequestImplementsServerRequestInterface.html#feature-94428-extbase-request-implements-serverrequestinterface", + "Changelog\/11.3\/Feature-94428-ExtbaseRequestImplementsServerRequestInterface.html#feature-94428", "Feature: #94428 - Extbase Request implements ServerRequestInterface" ], "feature-94447-native-support-for-language-welsh-added": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-94447-NativeSupportForLanguageWelshAdded.html#feature-94447-native-support-for-language-welsh-added", + "Changelog\/11.3\/Feature-94447-NativeSupportForLanguageWelshAdded.html#feature-94447", "Feature: #94447 - Native support for language Welsh added" ], "feature-94452-improved-multi-selection-in-file-selection": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-94452-ImprovedMulti-SelectionInFileSelection.html#feature-94452-improved-multi-selection-in-file-selection", + "Changelog\/11.3\/Feature-94452-ImprovedMulti-SelectionInFileSelection.html#feature-94452", "Feature: #94452 - Improved multi-selection in file selection" ], "feature-94474-improved-show-columns-selection-in-record-list": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-94474-ImprovedShowColumnsSelectionInRecordList.html#feature-94474-improved-show-columns-selection-in-record-list", + "Changelog\/11.3\/Feature-94474-ImprovedShowColumnsSelectionInRecordList.html#feature-94474", "Feature: #94474 - Improved show columns selection in record list" ], "feature-94524-edit-metadata-for-a-file-via-the-context-menu": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Feature-94524-EditMetadataForAFileViaTheContextMenu.html#feature-94524-edit-metadata-for-a-file-via-the-context-menu", + "Changelog\/11.3\/Feature-94524-EditMetadataForAFileViaTheContextMenu.html#feature-94524", "Feature: #94524 - Edit metadata for a file via the context menu" ], "important-91496-changes-to-password-reset-functionality": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Important-91496-ChangesToPasswordResetFunctionality.html#important-91496-changes-to-password-reset-functionality", + "Changelog\/11.3\/Important-91496-ChangesToPasswordResetFunctionality.html#important-91496", "Important: #91496 - Changes to password reset functionality" ], "important-94312-removed-be-loginsecuritylevel-and-fe-loginsecuritylevel-options": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Important-94312-RemovedBEloginSecurityLevelAndFEloginSecurityLevelOptions.html#important-94312-removed-be-loginsecuritylevel-and-fe-loginsecuritylevel-options", + "Changelog\/11.3\/Important-94312-RemovedBEloginSecurityLevelAndFEloginSecurityLevelOptions.html#important-94312", "Important: #94312 - Removed BE\/loginSecurityLevel and FE\/loginSecurityLevel options" ], "important-94315-use-proper-psr-3-logging-messages-and-context": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.3\/Important-94315-UseProperPSR-3LoggingMessagesAndContext.html#important-94315-use-proper-psr-3-logging-messages-and-context", + "Changelog\/11.3\/Important-94315-UseProperPSR-3LoggingMessagesAndContext.html#important-94315", "Important: #94315 - Use proper PSR-3 logging messages and context" ], "11-3-changes": [ @@ -44479,289 +44611,289 @@ "deprecation-85613-category-registry": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-85613-CategoryRegistry.html#deprecation-85613-category-registry", + "Changelog\/11.4\/Deprecation-85613-CategoryRegistry.html#deprecation-85613", "Deprecation: #85613 - Category Registry" ], "deprecation-94619-extbase-objectmanager": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-94619-ExtbaseObjectManager.html#deprecation-94619-extbase-objectmanager", + "Changelog\/11.4\/Deprecation-94619-ExtbaseObjectManager.html#deprecation-94619", "Deprecation: #94619 - Extbase ObjectManager" ], "deprecation-94654-generic-extbase-domain-classes": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-94654-GenericExtbaseDomainClasses.html#deprecation-94654-generic-extbase-domain-classes", + "Changelog\/11.4\/Deprecation-94654-GenericExtbaseDomainClasses.html#deprecation-94654", "Deprecation: #94654 - Generic Extbase domain classes" ], "deprecation-94664-pdo-cache-backend": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-94664-PdoCacheBackend.html#deprecation-94664-pdo-cache-backend", + "Changelog\/11.4\/Deprecation-94664-PdoCacheBackend.html#deprecation-94664", "Deprecation: #94664 - Pdo cache backend" ], "deprecation-94665-wincache-cache-backend": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-94665-WincacheCacheBackend.html#deprecation-94665-wincache-cache-backend", + "Changelog\/11.4\/Deprecation-94665-WincacheCacheBackend.html#deprecation-94665", "Deprecation: #94665 - Wincache cache backend" ], "deprecation-94684-generalutility-shortmd5": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-94684-GeneralUtilityShortMD5.html#deprecation-94684-generalutility-shortmd5", + "Changelog\/11.4\/Deprecation-94684-GeneralUtilityShortMD5.html#deprecation-94684", "Deprecation: #94684 - GeneralUtility::shortMD5()" ], "deprecation-94687-deprecate-softreferenceindex": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-94687-SoftReferenceIndex.html#deprecation-94687-deprecate-softreferenceindex", + "Changelog\/11.4\/Deprecation-94687-SoftReferenceIndex.html#deprecation-94687", "Deprecation: #94687 - Deprecate SoftReferenceIndex" ], "deprecation-94741-register-softreference-parsers-via-di": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-94741-RegisterSoftReferenceParsersViaDI.html#deprecation-94741-register-softreference-parsers-via-di", + "Changelog\/11.4\/Deprecation-94741-RegisterSoftReferenceParsersViaDI.html#deprecation-94741", "Deprecation: #94741 - Register SoftReference parsers via DI" ], "deprecation-94762-deprecate-javascript-top-fsmod-state": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-94762-DeprecateJavaScriptTopfsModState.html#deprecation-94762-deprecate-javascript-top-fsmod-state", + "Changelog\/11.4\/Deprecation-94762-DeprecateJavaScriptTopfsModState.html#deprecation-94762", "Deprecation: #94762 - Deprecate JavaScript top.fsMod state" ], "deprecation-94902-deprecate-lowercamelcase-options-of-ext-impexp-commands": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-94902-LowerCamelCaseOptionsOfExtImpExpCommands.html#deprecation-94902-deprecate-lowercamelcase-options-of-ext-impexp-commands", + "Changelog\/11.4\/Deprecation-94902-LowerCamelCaseOptionsOfExtImpExpCommands.html#deprecation-94902", "Deprecation: #94902 - Deprecate lowerCamelCase options of EXT:impexp commands" ], "deprecation-94953-edit-panel-related-frontend-functionality": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-94953-EditPanelRelatedFrontendFunctionality.html#deprecation-94953-edit-panel-related-frontend-functionality", + "Changelog\/11.4\/Deprecation-94953-EditPanelRelatedFrontendFunctionality.html#deprecation-94953", "Deprecation: #94953 - Edit panel related frontend functionality" ], "deprecation-94956-public-cobj": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-94956-PublicCObj.html#deprecation-94956-public-cobj", + "Changelog\/11.4\/Deprecation-94956-PublicCObj.html#deprecation-94956", "Deprecation: #94956 - Public $cObj" ], "deprecation-94957-typoscriptfrontendcontroller-cobjectdepthcounter": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-94957-TypoScriptFrontendController-cObjectDepthCounter.html#deprecation-94957-typoscriptfrontendcontroller-cobjectdepthcounter", + "Changelog\/11.4\/Deprecation-94957-TypoScriptFrontendController-cObjectDepthCounter.html#deprecation-94957", "Deprecation: #94957 - TypoScriptFrontendController->cObjectDepthCounter" ], "deprecation-94958-contentobjectrenderer-properties": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-94958-ContentObjectRendererProperties.html#deprecation-94958-contentobjectrenderer-properties", + "Changelog\/11.4\/Deprecation-94958-ContentObjectRendererProperties.html#deprecation-94958", "Deprecation: #94958 - ContentObjectRenderer properties" ], "deprecation-94959-contentobjectrenderer-constructor-in-standaloneview": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-94959-ContentObjectRendererConstructorInStandaloneView.html#deprecation-94959-contentobjectrenderer-constructor-in-standaloneview", + "Changelog\/11.4\/Deprecation-94959-ContentObjectRendererConstructorInStandaloneView.html#deprecation-94959", "Deprecation: #94959 - ContentObjectRenderer constructor in StandaloneView" ], "deprecation-94979-using-cachemanager-or-database-connections-during-typo3-bootstrap": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-94979-UsingCacheManagerOrDatabaseConnectionsDuringTYPO3Bootstrap.html#deprecation-94979-using-cachemanager-or-database-connections-during-typo3-bootstrap", + "Changelog\/11.4\/Deprecation-94979-UsingCacheManagerOrDatabaseConnectionsDuringTYPO3Bootstrap.html#deprecation-94979", "Deprecation: #94979 - Using CacheManager or Database Connections during TYPO3 bootstrap" ], "deprecation-94991-extbase-abstractview": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-94991-ExtbaseAbstractView.html#deprecation-94991-extbase-abstractview", + "Changelog\/11.4\/Deprecation-94991-ExtbaseAbstractView.html#deprecation-94991", "Deprecation: #94991 - Extbase AbstractView" ], "deprecation-94996-in-composer-mode-all-extensions-should-be-installed-with-composer": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-94996-InComposerModeAllExtensionsShouldBeInstalledWithComposer.html#deprecation-94996-in-composer-mode-all-extensions-should-be-installed-with-composer", + "Changelog\/11.4\/Deprecation-94996-InComposerModeAllExtensionsShouldBeInstalledWithComposer.html#deprecation-94996", "Deprecation: #94996 - In Composer Mode, all Extensions should be installed with Composer" ], "deprecation-95003-extbase-viewinterface-canrender": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-95003-ExtbaseViewInterfaceCanRender.html#deprecation-95003-extbase-viewinterface-canrender", + "Changelog\/11.4\/Deprecation-95003-ExtbaseViewInterfaceCanRender.html#deprecation-95003", "Deprecation: #95003 - Extbase ViewInterface canRender()" ], "deprecation-95005-extbase-emptyview": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-95005-ExtbaseEmptyView.html#deprecation-95005-extbase-emptyview", + "Changelog\/11.4\/Deprecation-95005-ExtbaseEmptyView.html#deprecation-95005", "Deprecation: #95005 - Extbase EmptyView" ], "deprecation-95009-passing-typoscript-configuration-as-constructor-argument-to-exception-handler": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-95009-PassingTypoScriptConfigurationAsConstructorArgumentToExceptionHandler.html#deprecation-95009-passing-typoscript-configuration-as-constructor-argument-to-exception-handler", + "Changelog\/11.4\/Deprecation-95009-PassingTypoScriptConfigurationAsConstructorArgumentToExceptionHandler.html#deprecation-95009", "Deprecation: #95009 - Passing TypoScript configuration as constructor argument to Exception handler" ], "deprecation-95011-various-global-javascript-functions-and-variables": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-95011-VariousGlobalJavaScriptFunctionsAndVariables.html#deprecation-95011-various-global-javascript-functions-and-variables", + "Changelog\/11.4\/Deprecation-95011-VariousGlobalJavaScriptFunctionsAndVariables.html#deprecation-95011", "Deprecation: #95011 - Various global JavaScript functions and variables" ], "deprecation-95037-rootuid-related-setting-of-trees": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-95037-RootUidRelatedSettingOfTrees.html#deprecation-95037-rootuid-related-setting-of-trees", + "Changelog\/11.4\/Deprecation-95037-RootUidRelatedSettingOfTrees.html#deprecation-95037", "Deprecation: #95037 - rootUid related setting of trees" ], "deprecation-95062-skipsorting-argument-of-relationhandler-writeforeignfield": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-95062-SkipSortingArgumentOfRelationHandler-writeForeignField.html#deprecation-95062-skipsorting-argument-of-relationhandler-writeforeignfield", + "Changelog\/11.4\/Deprecation-95062-SkipSortingArgumentOfRelationHandler-writeForeignField.html#deprecation-95062", "Deprecation: #95062 - $skipSorting argument of RelationHandler->writeForeignField()" ], "deprecation-95065-hook-exttablesinclusion-postprocessing": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-95065-HookExtTablesInclusion-PostProcessing.html#deprecation-95065-hook-exttablesinclusion-postprocessing", + "Changelog\/11.4\/Deprecation-95065-HookExtTablesInclusion-PostProcessing.html#deprecation-95065", "Deprecation: #95065 - Hook extTablesInclusion-PostProcessing" ], "deprecation-95077-filelist-editiconshook": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-95077-FilelistEditIconsHook.html#deprecation-95077-filelist-editiconshook", + "Changelog\/11.4\/Deprecation-95077-FilelistEditIconsHook.html#deprecation-95077-1668719172", "Deprecation: #95077 - Filelist editIconsHook" ], "deprecation-95077-filedump-checkfileaccess-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-95080-FileDumpCheckFileAccessHook.html#deprecation-95077-filedump-checkfileaccess-hook", + "Changelog\/11.4\/Deprecation-95080-FileDumpCheckFileAccessHook.html#deprecation-95077", "Deprecation: #95077 - FileDump CheckFileAccess hook" ], "deprecation-95083-backend-toolbar-cacheactions-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-95083-BackendToolbarCacheActionsHook.html#deprecation-95083-backend-toolbar-cacheactions-hook", + "Changelog\/11.4\/Deprecation-95083-BackendToolbarCacheActionsHook.html#deprecation-95083", "Deprecation: #95083 - Backend toolbar CacheActions hook" ], "deprecation-95089-extendedfileutility-processdata-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-95089-ExtendedFileUtilityProcessDataHook.html#deprecation-95089-extendedfileutility-processdata-hook", + "Changelog\/11.4\/Deprecation-95089-ExtendedFileUtilityProcessDataHook.html#deprecation-95089", "Deprecation: #95089 - ExtendedFileUtility ProcessData hook" ], "deprecation-95105-databaserecordlist-hooks": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Deprecation-95105-DatabaseRecordListHooks.html#deprecation-95105-databaserecordlist-hooks", + "Changelog\/11.4\/Deprecation-95105-DatabaseRecordListHooks.html#deprecation-95105", "Deprecation: #95105 - DatabaseRecordList hooks" ], "feature-71775-htmlparser-allows-srcset": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-71775-HtmlParserAllowsSrcset.html#feature-71775-htmlparser-allows-srcset", + "Changelog\/11.4\/Feature-71775-HtmlParserAllowsSrcset.html#feature-71775", "Feature: #71775 - HtmlParser allows srcset" ], "feature-84115-doctrine-dbal-notinset-for-expressions": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-84115-DoctrineDBAL-NotInSetForExpressions.html#feature-84115-doctrine-dbal-notinset-for-expressions", + "Changelog\/11.4\/Feature-84115-DoctrineDBAL-NotInSetForExpressions.html#feature-84115", "Feature: #84115 - Doctrine DBAL - notInSet() for expressions" ], "feature-84184-show-columns-selection-in-filelist": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-84184-ShowColumnsSelectionInFilelist.html#feature-84184-show-columns-selection-in-filelist", + "Changelog\/11.4\/Feature-84184-ShowColumnsSelectionInFilelist.html#feature-84184", "Feature: #84184 - Show columns selection in filelist" ], "feature-84718-add-cli-export-command-to-ext-impexp": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-84718-AddCLIExportCommandToImpExpExtension.html#feature-84718-add-cli-export-command-to-ext-impexp", + "Changelog\/11.4\/Feature-84718-AddCLIExportCommandToImpExpExtension.html#feature-84718", "Feature: #84718 - Add CLI export command to EXT:impexp" ], "feature-90197-introduce-cache-flush-console-command": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-90197-IntroduceCacheFlushConsoleCommand.html#feature-90197-introduce-cache-flush-console-command", + "Changelog\/11.4\/Feature-90197-IntroduceCacheFlushConsoleCommand.html#feature-90197", "Feature: #90197 - Introduce cache:flush console command" ], "feature-90336-ckeditor-autolinking-uses-https-by-default": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-90336-CKEditorAutolinkingUsesHttpsByDefault.html#feature-90336-ckeditor-autolinking-uses-https-by-default", + "Changelog\/11.4\/Feature-90336-CKEditorAutolinkingUsesHttpsByDefault.html#feature-90336", "Feature: #90336 - CKEditor Autolinking uses https by default" ], "feature-90347-enable-recursive-transformation-of-properties-in-jsonview": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-90347-EnableRecursiveTransformationOfPropertiesInJsonView.html#feature-90347-enable-recursive-transformation-of-properties-in-jsonview", + "Changelog\/11.4\/Feature-90347-EnableRecursiveTransformationOfPropertiesInJsonView.html#feature-90347", "Feature: #90347 - Enable recursive transformation of properties in JsonView" ], "feature-90548-download-multiple-files-and-folders-in-filelist": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-90548-DownloadMultipleFilesAndFoldersInFilelist.html#feature-90548-download-multiple-files-and-folders-in-filelist", + "Changelog\/11.4\/Feature-90548-DownloadMultipleFilesAndFoldersInFilelist.html#feature-90548", "Feature: #90548 - Download multiple files and folders in filelist" ], "feature-91021-filter-by-stage-in-workspaces-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-91021-FilterByStageInWorkspacesModule.html#feature-91021-filter-by-stage-in-workspaces-module", + "Changelog\/11.4\/Feature-91021-FilterByStageInWorkspacesModule.html#feature-91021", "Feature: #91021 - Filter by stage in Workspaces Module" ], "feature-92460-split-default-from-all-languages-in-page-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-92460-SplitDefaultFromAllLanguagesInPageModule.html#feature-92460-split-default-from-all-languages-in-page-module", + "Changelog\/11.4\/Feature-92460-SplitDefaultFromAllLanguagesInPageModule.html#feature-92460", "Feature: #92460 - Split default from all languages in page module" ], "feature-93197-resolve-collection-types-of-non-persistent-objects": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-93197-ResolveCollectionTypesOfNon-persistentObjects.html#feature-93197-resolve-collection-types-of-non-persistent-objects", + "Changelog\/11.4\/Feature-93197-ResolveCollectionTypesOfNon-persistentObjects.html#feature-93197", "Feature: #93197 - Resolve collection types of non-persistent objects" ], "feature-93436-introduce-cache-warmup-console-command": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-93436-IntroduceCacheWarmupConsoleCommand.html#feature-93436-introduce-cache-warmup-console-command", + "Changelog\/11.4\/Feature-93436-IntroduceCacheWarmupConsoleCommand.html#feature-93436", "Feature: #93436 - Introduce cache:warmup console command" ], "feature-94402-generate-error-pages-via-typo3-internal-sub-request": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-94402-GenerateErrorPagesViaTYPO3-internalSubRequest.html#feature-94402-generate-error-pages-via-typo3-internal-sub-request", + "Changelog\/11.4\/Feature-94402-GenerateErrorPagesViaTYPO3-internalSubRequest.html#feature-94402", "Feature: #94402 - Generate error pages via TYPO3-internal sub-request" ], "feature-94406-override-filefolder-tca-configuration-with-tsconfig": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-94406-OverrideFileFolderTCAConfigurationWithTSconfig.html#feature-94406-override-filefolder-tca-configuration-with-tsconfig", + "Changelog\/11.4\/Feature-94406-OverrideFileFolderTCAConfigurationWithTSconfig.html#feature-94406", "Feature: #94406 - Override fileFolder TCA configuration with TSconfig" ], "feature-94489-filter-for-redirects-never-hit": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-94489-FilterForRedirectsNeverHit.html#feature-94489-filter-for-redirects-never-hit", + "Changelog\/11.4\/Feature-94489-FilterForRedirectsNeverHit.html#feature-94489", "Feature: #94489 - Filter for redirects never hit" ], "feature-94577-clear-indexed-search-documents-when-content-is-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-94577-ClearIndexed_searchDocumentsWhenContentIsChanged.html#feature-94577-clear-indexed-search-documents-when-content-is-changed", + "Changelog\/11.4\/Feature-94577-ClearIndexed_searchDocumentsWhenContentIsChanged.html#feature-94577", "Feature: #94577 - Clear indexed_search documents when content is changed" ], "feature-94590-allow-icon-identifiers-in-report-module-registration": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-94590-AllowIconIdentifiersInReportModuleRegistration.html#feature-94590-allow-icon-identifiers-in-report-module-registration", + "Changelog\/11.4\/Feature-94590-AllowIconIdentifiersInReportModuleRegistration.html#feature-94590", "Feature: #94590 - Allow icon identifiers in report module registration" ], "feature-94622-new-tca-type-category": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-94622-NewTCATypeCategory.html#feature-94622-new-tca-type-category", + "Changelog\/11.4\/Feature-94622-NewTCATypeCategory.html#feature-94622", "Feature: #94622 - New TCA type \"category\"" ], "flexform-usage": [ @@ -44773,211 +44905,211 @@ "feature-94623-tt-content-images-assets-media-showpossiblelocalizationrecords": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-94623-Tt_contentImagesAssetsMediaShowPossibleLocalizationRecords.html#feature-94623-tt-content-images-assets-media-showpossiblelocalizationrecords", + "Changelog\/11.4\/Feature-94623-Tt_contentImagesAssetsMediaShowPossibleLocalizationRecords.html#feature-94623", "Feature: #94623 - tt_content images, assets, media showPossibleLocalizationRecords" ], "feature-94653-autocomplete-attribute-for-passwordviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-94653-AutocompleteAttributeForPasswordViewHelper.html#feature-94653-autocomplete-attribute-for-passwordviewhelper", + "Changelog\/11.4\/Feature-94653-AutocompleteAttributeForPasswordViewHelper.html#feature-94653", "Feature: #94653 - Autocomplete attribute for PasswordViewHelper" ], "feature-94662-add-placeholder-for-site-configuration-in-foreign-table-where": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-94662-AddPlaceholderForSiteConfigurationInForeignTableWhere.html#feature-94662-add-placeholder-for-site-configuration-in-foreign-table-where", + "Changelog\/11.4\/Feature-94662-AddPlaceholderForSiteConfigurationInForeignTableWhere.html#feature-94662", "Feature: #94662 - Add placeholder for site configuration in foreign_table_where" ], "feature-94680-show-columns-selector-filter": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-94680-ShowColumnsSelectorFilter.html#feature-94680-show-columns-selector-filter", + "Changelog\/11.4\/Feature-94680-ShowColumnsSelectorFilter.html#feature-94680", "Feature: #94680 - Show columns selector filter" ], "feature-94692-registering-icons-via-service-container": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-94692-RegisteringIconsViaServiceContainer.html#feature-94692-registering-icons-via-service-container", + "Changelog\/11.4\/Feature-94692-RegisteringIconsViaServiceContainer.html#feature-94692-1657826754", "Feature: #94692 - Registering Icons via Service Container" ], "feature-94741-register-softreference-parsers-via-di": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-94741-RegisterSoftReferenceParsersViaDI.html#feature-94741-register-softreference-parsers-via-di", + "Changelog\/11.4\/Feature-94741-RegisterSoftReferenceParsersViaDI.html#feature-94741", "Feature: #94741 - Register SoftReference parsers via DI" ], "feature-94765-introduce-shownewrecordlink-option": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-94765-IntroduceShowNewRecordLinkOption.html#feature-94765-introduce-shownewrecordlink-option", + "Changelog\/11.4\/Feature-94765-IntroduceShowNewRecordLinkOption.html#feature-94765", "Feature: #94765 - Introduce showNewRecordLink option" ], "feature-94819-improved-workspaces-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-94819-ImprovedWorkspacesModule.html#feature-94819-improved-workspaces-module", + "Changelog\/11.4\/Feature-94819-ImprovedWorkspacesModule.html#feature-94819", "Feature: #94819 - Improved Workspaces module" ], "feature-94889-add-result-option-to-typolink-returnlast-parameter": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-94889-AddResultOptionToTypolinkReturnLastParameter.html#feature-94889-add-result-option-to-typolink-returnlast-parameter", + "Changelog\/11.4\/Feature-94889-AddResultOptionToTypolinkReturnLastParameter.html#feature-94889", "Feature: #94889 - Add \"result\" option to typolink returnLast parameter" ], "feature-94906-multi-record-selection-in-filelist": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-94906-MultiRecordSelectionInFilelist.html#feature-94906-multi-record-selection-in-filelist", + "Changelog\/11.4\/Feature-94906-MultiRecordSelectionInFilelist.html#feature-94906", "Feature: #94906 - Multi record selection in filelist" ], "feature-94944-keyboard-shortcuts-for-multi-record-selection": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-94944-KeyboardShortcutsForMultiRecordSelection.html#feature-94944-keyboard-shortcuts-for-multi-record-selection", + "Changelog\/11.4\/Feature-94944-KeyboardShortcutsForMultiRecordSelection.html#feature-94944", "Feature: #94944 - Keyboard shortcuts for multi record selection" ], "feature-94966-show-debugger-in-application-information": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-94966-ShowDebuggerInApplicationInformation.html#feature-94966-show-debugger-in-application-information", + "Changelog\/11.4\/Feature-94966-ShowDebuggerInApplicationInformation.html#feature-94966", "Feature: #94966 - Show debugger in Application Information" ], "feature-94996-consider-all-composer-installed-extensions-as-active": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-94996-ConsiderAllComposerInstalledExtensionsAsActive.html#feature-94996-consider-all-composer-installed-extensions-as-active", + "Changelog\/11.4\/Feature-94996-ConsiderAllComposerInstalledExtensionsAsActive.html#feature-94996", "Feature: #94996 - Consider all Composer installed extensions as active" ], "feature-95034-list-views-select-a-row-by-clicking-on-it": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-95034-SelectRowByMouseClick.html#feature-95034-list-views-select-a-row-by-clicking-on-it", + "Changelog\/11.4\/Feature-95034-SelectRowByMouseClick.html#feature-95034", "Feature: #95034 - List views: Select a row by clicking on it" ], "feature-95035-collapse-all-for-large-trees": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-95035-CollapseAllForLargeTrees.html#feature-95035-collapse-all-for-large-trees", + "Changelog\/11.4\/Feature-95035-CollapseAllForLargeTrees.html#feature-95035", "Feature: #95035 - \"Collapse all\" for large trees" ], "feature-95037-new-startingpoints-setting-for-formengine-treeconfig": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-95037-NewStartingPointsSettingForFormEngineTreeConfig.html#feature-95037-new-startingpoints-setting-for-formengine-treeconfig", + "Changelog\/11.4\/Feature-95037-NewStartingPointsSettingForFormEngineTreeConfig.html#feature-95037", "Feature: #95037 - New startingPoints setting for FormEngine treeConfig" ], "feature-95044-support-autowired-loggerinterface-injection": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-95044-SupportAutowiredLoggerInterfaceInjection.html#feature-95044-support-autowired-loggerinterface-injection", + "Changelog\/11.4\/Feature-95044-SupportAutowiredLoggerInterfaceInjection.html#feature-95044", "Feature: #95044 - Support autowired LoggerInterface injection" ], "feature-95061-auto-creation-of-mm-tables-from-tca": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-95061-AutoCreationOfMMTablesFromTCA.html#feature-95061-auto-creation-of-mm-tables-from-tca", + "Changelog\/11.4\/Feature-95061-AutoCreationOfMMTablesFromTCA.html#feature-95061", "Feature: #95061 - Auto creation of MM tables from TCA" ], "feature-95065-new-psr-14-bootcompletedevent": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-95065-NewPSR-14BootCompletedEvent.html#feature-95065-new-psr-14-bootcompletedevent", + "Changelog\/11.4\/Feature-95065-NewPSR-14BootCompletedEvent.html#feature-95065", "Feature: #95065 - New PSR-14 BootCompletedEvent" ], "feature-95068-multi-record-selection-in-recordlist": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-95068-MultiRecordSelectionInRecordlist.html#feature-95068-multi-record-selection-in-recordlist", + "Changelog\/11.4\/Feature-95068-MultiRecordSelectionInRecordlist.html#feature-95068", "Feature: #95068 - Multi record selection in recordlist" ], "feature-95077-new-psr-14-processfilelistactionsevent": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-95077-NewPSR-14ProcessFileListActionsEvent.html#feature-95077-new-psr-14-processfilelistactionsevent", + "Changelog\/11.4\/Feature-95077-NewPSR-14ProcessFileListActionsEvent.html#feature-95077-1668719172", "Feature: #95077 - New PSR-14 ProcessFileListActionsEvent" ], "feature-95079-support-php-8-style-channel-attribute-for-logger-injection": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-95079-SupportPHP8StyleChannelAttributeForLoggerInjection.html#feature-95079-support-php-8-style-channel-attribute-for-logger-injection", + "Changelog\/11.4\/Feature-95079-SupportPHP8StyleChannelAttributeForLoggerInjection.html#feature-95079", "Feature: #95079 - Support PHP 8 style Channel attribute for logger injection" ], "feature-95077-new-psr-14-modifyfiledumpevent": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-95080-NewPSR-14ModifyFileDumpEvent.html#feature-95077-new-psr-14-modifyfiledumpevent", + "Changelog\/11.4\/Feature-95080-NewPSR-14ModifyFileDumpEvent.html#feature-95077", "Feature: #95077 - New PSR-14 ModifyFileDumpEvent" ], "feature-95083-new-psr-14-modifyclearcacheactionsevent": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-95083-NewPSR-14ModifyClearCacheActionsEvent.html#feature-95083-new-psr-14-modifyclearcacheactionsevent", + "Changelog\/11.4\/Feature-95083-NewPSR-14ModifyClearCacheActionsEvent.html#feature-95083", "Feature: #95083 - New PSR-14 ModifyClearCacheActionsEvent" ], "feature-95089-new-psr-14-afterfilecommandprocessedevent": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-95089-NewPSR-14AfterFileCommandProcessedEvent.html#feature-95089-new-psr-14-afterfilecommandprocessedevent", + "Changelog\/11.4\/Feature-95089-NewPSR-14AfterFileCommandProcessedEvent.html#feature-95089", "Feature: #95089 - New PSR-14 AfterFileCommandProcessedEvent" ], "feature-95105-new-psr-14-databaserecordlist-events": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Feature-95105-NewPSR-14DatabaseRecordListEvents.html#feature-95105-new-psr-14-databaserecordlist-events", + "Changelog\/11.4\/Feature-95105-NewPSR-14DatabaseRecordListEvents.html#feature-95105", "Feature: #95105 - New PSR-14 DatabaseRecordList events" ], "important-90264-initialize-datepicker-js-in-external-file": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Important-90264-InitializeDatepickerJSInExternalFile.html#important-90264-initialize-datepicker-js-in-external-file", + "Changelog\/11.4\/Important-90264-InitializeDatepickerJSInExternalFile.html#important-90264", "Important: #90264 - Initialize datepicker JS in external file" ], "important-92202-remove-exclude-from-important-fields": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Important-92202-RemoveExcludeFromImportantFields.html#important-92202-remove-exclude-from-important-fields", + "Changelog\/11.4\/Important-92202-RemoveExcludeFromImportantFields.html#important-92202", "Important: #92202 - Remove exclude from important fields" ], "important-94280-move-contents-of-ext-php-into-global-namespace": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Important-94280-MoveContentsOfExtPhpIntoLocalScopes.html#important-94280-move-contents-of-ext-php-into-global-namespace", + "Changelog\/11.4\/Important-94280-MoveContentsOfExtPhpIntoLocalScopes.html#important-94280", "Important: #94280 - Move contents of ext_*.php into global namespace" ], "important-94615-fluid-view-helpers-f-link-external-and-f-uri-external-use-https-by-default": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Important-94615-FluidViewHelpersFlinkexternalAndFuriexternalUseHttpsByDefault.html#important-94615-fluid-view-helpers-f-link-external-and-f-uri-external-use-https-by-default", + "Changelog\/11.4\/Important-94615-FluidViewHelpersFlinkexternalAndFuriexternalUseHttpsByDefault.html#important-94615", "Important: #94615 - Fluid view helpers f:link.external and f:uri.external use https by default" ], "important-94697-quote-database-identifiers-when-used-instead-of-globally-upfront": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Important-94697-QuoteDatabaseIdentifiersWhenUsedInsteadOfGloballyUpfront.html#important-94697-quote-database-identifiers-when-used-instead-of-globally-upfront", + "Changelog\/11.4\/Important-94697-QuoteDatabaseIdentifiersWhenUsedInsteadOfGloballyUpfront.html#important-94697", "Important: #94697 - Quote database identifiers when used instead of globally upfront" ], "important-94830-update-egulias-email-validator": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Important-94830-UpdateEguliasemail-validator.html#important-94830-update-egulias-email-validator", + "Changelog\/11.4\/Important-94830-UpdateEguliasemail-validator.html#important-94830", "Important: #94830 - Update egulias\/email-validator" ], "important-94876-remove-non-xml-text-validator-from-form-editor": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Important-94876-RemoveNon-XMLTextValidatorFromFormEditor.html#important-94876-remove-non-xml-text-validator-from-form-editor", + "Changelog\/11.4\/Important-94876-RemoveNon-XMLTextValidatorFromFormEditor.html#important-94876", "Important: #94876 - Remove \"Non-XML text\" validator from form editor" ], "important-94889-abstracttypolinkbuilder-build-now-returns-array-linkresultinterface": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Important-94889-LinkBuilderbuildNowReturnsArrayLinkResultInterface.html#important-94889-abstracttypolinkbuilder-build-now-returns-array-linkresultinterface", + "Changelog\/11.4\/Important-94889-LinkBuilderbuildNowReturnsArrayLinkResultInterface.html#important-94889", "Important: #94889 - AbstractTypoLinkBuilder::build now returns array|LinkResultInterface" ], "important-95647-composer-installations-and-extension-usage": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.4\/Important-95647-ComposerInstallationsAndExtensionUsage.html#important-95647-composer-installations-and-extension-usage", + "Changelog\/11.4\/Important-95647-ComposerInstallationsAndExtensionUsage.html#important-95647", "Important: #95647 - Composer installations and extension usage" ], "importance-of-file-ext-emconf-php-file": [ @@ -45007,7 +45139,7 @@ "deprecation-91787-inline-javascript-in-fieldchangefunc": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-91787-DeprecateInlineJavaScriptInFieldChangeFunc.html#deprecation-91787-inline-javascript-in-fieldchangefunc", + "Changelog\/11.5\/Deprecation-91787-DeprecateInlineJavaScriptInFieldChangeFunc.html#deprecation-91787", "Deprecation: #91787 - Inline JavaScript in fieldChangeFunc" ], "php-php-onfieldchangeinterface-instance": [ @@ -45031,7 +45163,7 @@ "deprecation-91814-abstractcontrol-setonclick": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-91814-DeprecateAbstractControlsetOnClick.html#deprecation-91814-abstractcontrol-setonclick", + "Changelog\/11.5\/Deprecation-91814-DeprecateAbstractControlsetOnClick.html#deprecation-91814", "Deprecation: #91814 - AbstractControl::setOnClick" ], "example-1-open-a-new-window-tab": [ @@ -45055,37 +45187,37 @@ "deprecation-94094-navigationframemodule-in-module-registration": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-94094-NavigationFrameModuleInModuleRegistration.html#deprecation-94094-navigationframemodule-in-module-registration", + "Changelog\/11.5\/Deprecation-94094-NavigationFrameModuleInModuleRegistration.html#deprecation-94094", "Deprecation: #94094 - navigationFrameModule in Module Registration" ], "deprecation-94791-generalutility-minifyjavascript": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-94791-GeneralUtilityminifyJavaScript.html#deprecation-94791-generalutility-minifyjavascript", + "Changelog\/11.5\/Deprecation-94791-GeneralUtilityminifyJavaScript.html#deprecation-94791", "Deprecation: #94791 - GeneralUtility::minifyJavaScript()" ], "deprecation-95041-f-uri-email-view-helper": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-95041-DeprecateFuriemailView-helper.html#deprecation-95041-f-uri-email-view-helper", + "Changelog\/11.5\/Deprecation-95041-DeprecateFuriemailView-helper.html#deprecation-95041", "Deprecation: #95041 - view-helper" ], "deprecation-95139-extbase-controllercontext": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-95139-ExtbaseControllerContext.html#deprecation-95139-extbase-controllercontext", + "Changelog\/11.5\/Deprecation-95139-ExtbaseControllerContext.html#deprecation-95139", "Deprecation: #95139 - Extbase ControllerContext" ], "deprecation-95164-ext-backend-backendtemplateview": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-95164-ExtbackendBackendTemplateView.html#deprecation-95164-ext-backend-backendtemplateview", + "Changelog\/11.5\/Deprecation-95164-ExtbackendBackendTemplateView.html#deprecation-95164", "Deprecation: #95164 - ext:backend BackendTemplateView" ], "deprecation-95200-requirejs-callbacks-as-inline-javascript": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-95200-DeprecateRequireJSCallbacksAsInlineJavaScript.html#deprecation-95200-requirejs-callbacks-as-inline-javascript", + "Changelog\/11.5\/Deprecation-95200-DeprecateRequireJSCallbacksAsInlineJavaScript.html#deprecation-95200", "Deprecation: #95200 - RequireJS callbacks as inline JavaScript" ], "example-in-php-formengine-component": [ @@ -45097,121 +45229,121 @@ "deprecation-95219-typoscriptfrontendcontroller-atagparams": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-95219-TypoScriptFrontendController-ATagParams.html#deprecation-95219-typoscriptfrontendcontroller-atagparams", + "Changelog\/11.5\/Deprecation-95219-TypoScriptFrontendController-ATagParams.html#deprecation-95219", "Deprecation: #95219 - TypoScriptFrontendController->ATagParams" ], "deprecation-95222-extbase-viewinterface": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-95222-ExtbaseViewInterface.html#deprecation-95222-extbase-viewinterface", + "Changelog\/11.5\/Deprecation-95222-ExtbaseViewInterface.html#deprecation-95222", "Deprecation: #95222 - Extbase ViewInterface" ], "deprecation-95235-public-getter-of-services-in-moduletemplate": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-95235-PublicGetterOfServicesInModuleTemplate.html#deprecation-95235-public-getter-of-services-in-moduletemplate", + "Changelog\/11.5\/Deprecation-95235-PublicGetterOfServicesInModuleTemplate.html#deprecation-95235", "Deprecation: #95235 - Public getter of services in ModuleTemplate" ], "deprecation-95254-two-flexformtools-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-95254-TwoFlexFormToolsMethods.html#deprecation-95254-two-flexformtools-methods", + "Changelog\/11.5\/Deprecation-95254-TwoFlexFormToolsMethods.html#deprecation-95254", "Deprecation: #95254 - Two FlexFormTools methods" ], "deprecation-95257-generalutility-isfirstpartofstr": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-95257-GeneralUtilityisFirstPartOfStr.html#deprecation-95257-generalutility-isfirstpartofstr", + "Changelog\/11.5\/Deprecation-95257-GeneralUtilityisFirstPartOfStr.html#deprecation-95257", "Deprecation: #95257 - GeneralUtility::isFirstPartOfStr()" ], "deprecation-95261-public-methods-in-sectionmarkupgenerated-events": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-95261-PublicMethodsInSectionMarkupGeneratedEvents.html#deprecation-95261-public-methods-in-sectionmarkupgenerated-events", + "Changelog\/11.5\/Deprecation-95261-PublicMethodsInSectionMarkupGeneratedEvents.html#deprecation-95261", "Deprecation: #95261 - Public methods in SectionMarkupGenerated events" ], "deprecation-95275-relationhandler-remapmm": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-95275-RelationHandler-remapMM.html#deprecation-95275-relationhandler-remapmm", + "Changelog\/11.5\/Deprecation-95275-RelationHandler-remapMM.html#deprecation-95275", "Deprecation: #95275 - RelationHandler->remapMM()" ], "deprecation-95293-stringutility-beginswith-and-stringutility-endswith": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-95293-StringUtilitystartsWithAndStringUtilityendsWith.html#deprecation-95293-stringutility-beginswith-and-stringutility-endswith", + "Changelog\/11.5\/Deprecation-95293-StringUtilitystartsWithAndStringUtilityendsWith.html#deprecation-95293", "Deprecation: #95293 - StringUtility::beginsWith() and StringUtility::endsWith()" ], "deprecation-95317-legacy-syntax-for-irre-localize-synchronize-command-in-datahandler": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-95317-LegacySyntaxForIRRELocalizeSynchronizeCommandInDataHandler.html#deprecation-95317-legacy-syntax-for-irre-localize-synchronize-command-in-datahandler", + "Changelog\/11.5\/Deprecation-95317-LegacySyntaxForIRRELocalizeSynchronizeCommandInDataHandler.html#deprecation-95317", "Deprecation: #95317 - Legacy syntax for IRRE localize synchronize command in DataHandler" ], "deprecation-95318-typoscript-parsefunc-sword": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-95318-TypoScriptParseFuncsword.html#deprecation-95318-typoscript-parsefunc-sword", + "Changelog\/11.5\/Deprecation-95318-TypoScriptParseFuncsword.html#deprecation-95318", "Deprecation: #95318 - TypoScript parseFunc.sword" ], "deprecation-95320-various-method-arguments-in-authentication-objects": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-95320-VariousMethodArgumentsInAuthenticationObjects.html#deprecation-95320-various-method-arguments-in-authentication-objects", + "Changelog\/11.5\/Deprecation-95320-VariousMethodArgumentsInAuthenticationObjects.html#deprecation-95320", "Deprecation: #95320 - Various method arguments in Authentication objects" ], "deprecation-95322-legacy-element-browser-logic": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-95322-LegacyElementBrowserLogic.html#deprecation-95322-legacy-element-browser-logic", + "Changelog\/11.5\/Deprecation-95322-LegacyElementBrowserLogic.html#deprecation-95322", "Deprecation: #95322 - Legacy Element Browser logic" ], "deprecation-95326-various-getinstance-static-methods-on-singleton-interfaces": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-95326-VariousGetInstanceStaticMethodsOnSingletonInterfaces.html#deprecation-95326-various-getinstance-static-methods-on-singleton-interfaces", + "Changelog\/11.5\/Deprecation-95326-VariousGetInstanceStaticMethodsOnSingletonInterfaces.html#deprecation-95326", "Deprecation: #95326 - Various \"getInstance()\" static methods on singleton interfaces" ], "deprecation-95343-legacy-hook-for-new-content-element-wizard": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-95343-LegacyHookForNewContentElementWizard.html#deprecation-95343-legacy-hook-for-new-content-element-wizard", + "Changelog\/11.5\/Deprecation-95343-LegacyHookForNewContentElementWizard.html#deprecation-95343", "Deprecation: #95343 - Legacy hook for new content element wizard" ], "deprecation-95349-typoscript-page-includecss-includecsslibs-import": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-95349-TypoScriptPageincludeCSSincludeCSSLibsimport.html#deprecation-95349-typoscript-page-includecss-includecsslibs-import", + "Changelog\/11.5\/Deprecation-95349-TypoScriptPageincludeCSSincludeCSSLibsimport.html#deprecation-95349", "Deprecation: #95349 - TypoScript: page.includeCSS\/includeCSSLibs.import" ], "deprecation-95351-custom-jswindow-options-in-hmenu-settings": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-95351-CustomJSWindowOptionsInHMENUSettings.html#deprecation-95351-custom-jswindow-options-in-hmenu-settings", + "Changelog\/11.5\/Deprecation-95351-CustomJSWindowOptionsInHMENUSettings.html#deprecation-95351", "Deprecation: #95351 - Custom JSWindow options in HMENU settings" ], "deprecation-95367-generalutility-isabspath": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-95367-GeneralUtilityisAbsPath.html#deprecation-95367-generalutility-isabspath", + "Changelog\/11.5\/Deprecation-95367-GeneralUtilityisAbsPath.html#deprecation-95367", "Deprecation: #95367 - GeneralUtility::isAbsPath()" ], "deprecation-95395-generalutility-isallowedhostheadervalue-and-trusted-hosts-pattern-constants": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Deprecation-95395-GeneralUtilityIsAllowedHostHeaderValueAndTrustedHostsPatternConstants.html#deprecation-95395-generalutility-isallowedhostheadervalue-and-trusted-hosts-pattern-constants", + "Changelog\/11.5\/Deprecation-95395-GeneralUtilityIsAllowedHostHeaderValueAndTrustedHostsPatternConstants.html#deprecation-95395", "Deprecation: #95395 - GeneralUtility::isAllowedHostHeaderValue() and TRUSTED_HOSTS_PATTERN constants" ], "feature-94868-introduce-bootstrap-5-compatible-and-accessible-templates": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Feature-94868-IntroduceBootstrap5CompatibleAndAccessibleTemplates.html#feature-94868-introduce-bootstrap-5-compatible-and-accessible-templates", + "Changelog\/11.5\/Feature-94868-IntroduceBootstrap5CompatibleAndAccessibleTemplates.html#feature-94868", "Feature: #94868 - Introduce Bootstrap 5 compatible and accessible templates" ], "feature-95176-introduce-f-transform-html-view-helper": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Feature-95176-IntroduceFtransformhtmlView-helper.html#feature-95176-introduce-f-transform-html-view-helper", + "Changelog\/11.5\/Feature-95176-IntroduceFtransformhtmlView-helper.html#feature-95176", "Feature: #95176 - Introduce view helper" ], "syntax": [ @@ -45223,25 +45355,25 @@ "feature-95364-event-to-modify-frontend-user-groups-without-authentication": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Feature-95364-EventToModifyFrontendUserGroupsWithoutAuthentication.html#feature-95364-event-to-modify-frontend-user-groups-without-authentication", + "Changelog\/11.5\/Feature-95364-EventToModifyFrontendUserGroupsWithoutAuthentication.html#feature-95364", "Feature: #95364 - Event to modify frontend user groups without authentication" ], "important-95261-new-public-methods-in-sectionmarkupgenerated-events": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Important-95261-NewPublicMethodsInSectionMarkupGeneratedEvents.html#important-95261-new-public-methods-in-sectionmarkupgenerated-events", + "Changelog\/11.5\/Important-95261-NewPublicMethodsInSectionMarkupGeneratedEvents.html#important-95261", "Important: #95261 - New public methods in SectionMarkupGenerated events" ], "important-95298-fluid-viewhelpers-will-be-declared-final-in-v12": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Important-95298-FluidViewhelpersWillBeDeclaredFinalInV12.html#important-95298-fluid-viewhelpers-will-be-declared-final-in-v12", + "Changelog\/11.5\/Important-95298-FluidViewhelpersWillBeDeclaredFinalInV12.html#important-95298", "Important: #95298 - Fluid ViewHelpers will be declared final in v12" ], "important-95384-tca-internal-type-db-optional-for-type-group": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5\/Important-95384-TCAInternal_typedbOptionalForTypegroup.html#important-95384-tca-internal-type-db-optional-for-type-group", + "Changelog\/11.5\/Important-95384-TCAInternal_typedbOptionalForTypegroup.html#important-95384", "Important: #95384 - TCA internal_type=db optional for type=group" ], "11-5-changes": [ @@ -45253,67 +45385,67 @@ "deprecation-95800-deprecate-generating-public-url-for-private-asset-files": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5.x\/Deprecation-95800-GeneratingPublicURLForPrivateAssetFiles.html#deprecation-95800-deprecate-generating-public-url-for-private-asset-files", + "Changelog\/11.5.x\/Deprecation-95800-GeneratingPublicURLForPrivateAssetFiles.html#deprecation-95800", "Deprecation: #95800 - Deprecate generating public URL for private asset files" ], "important-100889-allow-insecure-site-resolution-by-query-parameters": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4.x\/Important-100889-AllowInsecureSiteResolutionByQueryParameters.html#important-100889-allow-insecure-site-resolution-by-query-parameters", + "Changelog\/12.4.x\/Important-100889-AllowInsecureSiteResolutionByQueryParameters.html#important-100889-1690476871", "Important: #100889 - Allow insecure site resolution by query parameters" ], "important-102799-typo3-conf-vars-gfx-processor-stripcolorprofileparameters-option-added": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5.x\/Important-102799-TYPO3_CONF_VARSGFXprocessor_stripColorProfileParametersOptionAdded.html#important-102799-typo3-conf-vars-gfx-processor-stripcolorprofileparameters-option-added", + "Changelog\/11.5.x\/Important-102799-TYPO3_CONF_VARSGFXprocessor_stripColorProfileParametersOptionAdded.html#important-102799-1707403491", "Important: #102799 - TYPO3_CONF_VARS.GFX.processor_stripColorProfileParameters option added" ], "important-102800-file-abstraction-layer-enforces-absolute-paths-to-match-project-root-or-lockrootpath": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5.x\/Important-102800-FileAbstractionLayerEnforcesAbsolutePathsToMatchProjectRootOrLockRootPath.html#important-102800-file-abstraction-layer-enforces-absolute-paths-to-match-project-root-or-lockrootpath", + "Changelog\/11.5.x\/Important-102800-FileAbstractionLayerEnforcesAbsolutePathsToMatchProjectRootOrLockRootPath.html#important-102800-1707409544", "Important: #102800 - File Abstraction Layer enforces absolute paths to match project root or lockRootPath" ], "important-103306-frame-get-parameter-in-tx-cms-showpic-eid-disabled": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5.x\/Important-103306-FrameGETParameterInTx_cms_showpicEIDDisabled.html#important-103306-frame-get-parameter-in-tx-cms-showpic-eid-disabled", + "Changelog\/11.5.x\/Important-103306-FrameGETParameterInTx_cms_showpicEIDDisabled.html#important-103306-1714976257", "Important: #103306 - Frame GET parameter in tx_cms_showpic eID disabled" ], "important-93635-add-mail-configuration-for-setting-smtp-domain": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5.x\/Important-93635-AddMailConfigurationForSettingSmtpDomain.html#important-93635-add-mail-configuration-for-setting-smtp-domain", + "Changelog\/11.5.x\/Important-93635-AddMailConfigurationForSettingSmtpDomain.html#important-93635", "Important: #93635 - Add mail configuration for setting smtp domain" ], "important-96332-extbase-validators-can-use-dependency-injection": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5.x\/Important-96332-ExtbaseValidatorsCanUseDependencyInjection.html#important-96332-extbase-validators-can-use-dependency-injection", + "Changelog\/11.5.x\/Important-96332-ExtbaseValidatorsCanUseDependencyInjection.html#important-96332", "Important: #96332 - Extbase Validators can use dependency injection" ], "important-97111-default-uri-scheme": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Important-97111-DefaultURIScheme.html#important-97111-default-uri-scheme", + "Changelog\/12.0\/Important-97111-DefaultURIScheme.html#important-97111-1657214951", "Important: #97111 - Default URI scheme" ], "important-97950-new-iconidentifier-option-in-login-providers": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5.x\/Important-97950-NewIconOptionInLoginProviders.html#important-97950-new-iconidentifier-option-in-login-providers", + "Changelog\/11.5.x\/Important-97950-NewIconOptionInLoginProviders.html#important-97950-1657892101", "Important: #97950 - New \"iconIdentifier\" option in login providers" ], "important-98122-fix-felogin-variable-name-in-typoscript-setup": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5.x\/Important-98122-FixFeloginVariableNameInTypoScriptSetup.html#important-98122-fix-felogin-variable-name-in-typoscript-setup", + "Changelog\/11.5.x\/Important-98122-FixFeloginVariableNameInTypoScriptSetup.html#important-98122-1671636081", "Important: #98122 - Fix felogin variable name in TypoScript setup" ], "important-98960-default-type-definition-of-custom-content-types": [ "TYPO3 Core Changelog", "main", - "Changelog\/11.5.x\/Important-98960-DefaultTypeDefinitionOfCustomContentTypes.html#important-98960-default-type-definition-of-custom-content-types", + "Changelog\/11.5.x\/Important-98960-DefaultTypeDefinitionOfCustomContentTypes.html#important-98960-1667212946", "Important: #98960 - Default type definition of custom Content Types" ], "note": [ @@ -45331,163 +45463,163 @@ "breaking-87616-removed-hook-for-altering-page-links": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-87616-RemovedHookForAlteringPageLinks.html#breaking-87616-removed-hook-for-altering-page-links", + "Changelog\/12.0\/Breaking-87616-RemovedHookForAlteringPageLinks.html#breaking-87616", "Breaking: #87616 - Removed hook for altering page links" ], "breaking-90044-config-spamprotectemailaddresses-with-option-ascii-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-90044-ConfigspamProtectEmailAddressesWithOptionAsciiRemoved.html#breaking-90044-config-spamprotectemailaddresses-with-option-ascii-removed", + "Changelog\/12.0\/Breaking-90044-ConfigspamProtectEmailAddressesWithOptionAsciiRemoved.html#breaking-90044", "Breaking: #90044 - config.spamProtectEmailAddresses with option \"ascii\" removed" ], "breaking-92508-removed-hook-for-filtering-hmenu-items": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-92508-RemovedHookForFilteringHMENUItems.html#breaking-92508-removed-hook-for-filtering-hmenu-items", + "Changelog\/12.0\/Breaking-92508-RemovedHookForFilteringHMENUItems.html#breaking-92508", "Breaking: #92508 - Removed hook for filtering HMENU items" ], "breaking-93182-changed-file-extension-for-gzip-compressed-files": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-93182-ChangedFileExtensionForGzipCompressedFiles.html#breaking-93182-changed-file-extension-for-gzip-compressed-files", + "Changelog\/12.0\/Breaking-93182-ChangedFileExtensionForGzipCompressedFiles.html#breaking-93182-1651654104", "Breaking: #93182 - Changed file extension for gzip compressed files" ], "breaking-94117-register-extbase-type-converters-as-services": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-94117-RegisterExtbaseTypeConvertersAsServices.html#breaking-94117-register-extbase-type-converters-as-services", + "Changelog\/12.0\/Breaking-94117-RegisterExtbaseTypeConvertersAsServices.html#breaking-94117", "Breaking: #94117 - Register Extbase type converters as services" ], "breaking-94243-send-user-session-cookies-as-hash-signed-jwt": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-94243-SendUserSessionCookiesAsHash-signedJWT.html#breaking-94243-send-user-session-cookies-as-hash-signed-jwt", + "Changelog\/12.0\/Breaking-94243-SendUserSessionCookiesAsHash-signedJWT.html#breaking-94243-1664786038", "Breaking: #94243 - Send user session cookies as hash-signed JWT" ], "breaking-95132-set-password-forgot-hash-based-on-user-uid-in-ext-felogin": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-95132-SetPasswordForgotHashBasedOnUserUidInExtfelogin.html#breaking-95132-set-password-forgot-hash-based-on-user-uid-in-ext-felogin", + "Changelog\/12.0\/Breaking-95132-SetPasswordForgotHashBasedOnUserUidInExtfelogin.html#breaking-95132-1659375274", "Breaking: #95132 - Set password forgot hash based on user uid in ext:felogin" ], "breaking-96041-toolbar-items-register-by-tag": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96041-ToolbarItemsRegisterByTag.html#breaking-96041-toolbar-items-register-by-tag", + "Changelog\/12.0\/Breaking-96041-ToolbarItemsRegisterByTag.html#breaking-96041", "Breaking: #96041 - Toolbar items: Register by tag" ], "breaking-96044-harden-method-signature-of-logicaland-and-logicalor": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96044-HardenMethodSignatureOfLogicalAndAndLogicalOr.html#breaking-96044-harden-method-signature-of-logicaland-and-logicalor", + "Changelog\/12.0\/Breaking-96044-HardenMethodSignatureOfLogicalAndAndLogicalOr.html#breaking-96044", "Breaking: #96044 - Harden method signature of logicalAnd() and logicalOr()" ], "breaking-96094-module-icons-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96094-ModuleIconsRemoved.html#breaking-96094-module-icons-removed", + "Changelog\/12.0\/Breaking-96094-ModuleIconsRemoved.html#breaking-96094", "Breaking: #96094 - Module icons removed" ], "breaking-96107-deprecated-functionality-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96107-DeprecatedFunctionalityRemoved.html#breaking-96107-deprecated-functionality-removed", + "Changelog\/12.0\/Breaking-96107-DeprecatedFunctionalityRemoved.html#breaking-96107", "Breaking: #96107 - Deprecated functionality removed" ], "breaking-96149-ext-form-emailfinisher-always-uses-fluidemail": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96149-EXTformEmailFinisherAlwaysUsesFluidEmail.html#breaking-96149-ext-form-emailfinisher-always-uses-fluidemail", + "Changelog\/12.0\/Breaking-96149-EXTformEmailFinisherAlwaysUsesFluidEmail.html#breaking-96149", "Breaking: #96149 - EXT:form EmailFinisher always uses FluidEmail" ], "breaking-96154-deprecated-shortcut-api-functionality-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96154-DeprecatedShortcutAPIFunctionalityRemoved.html#breaking-96154-deprecated-shortcut-api-functionality-removed", + "Changelog\/12.0\/Breaking-96154-DeprecatedShortcutAPIFunctionalityRemoved.html#breaking-96154", "Breaking: #96154 - Deprecated Shortcut API functionality removed" ], "breaking-96158-remove-support-for-inline-javascript-in-fieldchangefunc": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96158-RemoveSupportForInlineJavaScriptInFieldChangeFunc.html#breaking-96158-remove-support-for-inline-javascript-in-fieldchangefunc", + "Changelog\/12.0\/Breaking-96158-RemoveSupportForInlineJavaScriptInFieldChangeFunc.html#breaking-96158", "Breaking: #96158 - Remove support for inline JavaScript in fieldChangeFunc" ], "breaking-96205-removal-of-last-relativetocurrentscript-remains": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96205-RemovalOfLastRelativeToCurrentScriptRemains.html#breaking-96205-removal-of-last-relativetocurrentscript-remains", + "Changelog\/12.0\/Breaking-96205-RemovalOfLastRelativeToCurrentScriptRemains.html#breaking-96205", "Breaking: #96205 - Removal of last relativeToCurrentScript remains" ], "breaking-96212-alt-text-is-enforced-for-custom-login-logos": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96212-AltTextIsEnforcedForCustomLoginLogos.html#breaking-96212-alt-text-is-enforced-for-custom-login-logos", + "Changelog\/12.0\/Breaking-96212-AltTextIsEnforcedForCustomLoginLogos.html#breaking-96212", "Breaking: #96212 - Alt text is enforced for custom login logos" ], "breaking-96221-deny-inline-javascript-in-formengine-s-requirejsmodules": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96221-DenyInlineJavaScriptInFormEnginesRequireJsModules.html#breaking-96221-deny-inline-javascript-in-formengine-s-requirejsmodules", + "Changelog\/12.0\/Breaking-96221-DenyInlineJavaScriptInFormEnginesRequireJsModules.html#breaking-96221", "Breaking: #96221 - Deny inline JavaScript in FormEngine's requireJsModules" ], "breaking-96222-add-getoptions-to-widgetinterface": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96222-AddGetOptionsToWidgetInterface.html#breaking-96222-add-getoptions-to-widgetinterface", + "Changelog\/12.0\/Breaking-96222-AddGetOptionsToWidgetInterface.html#breaking-96222", "Breaking: #96222 - Add getOptions() to WidgetInterface" ], "breaking-96263-remove-jquery-promise-support-for-ajax-requests": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96263-RemoveJQueryPromiseSupportForAJAXRequests.html#breaking-96263-remove-jquery-promise-support-for-ajax-requests", + "Changelog\/12.0\/Breaking-96263-RemoveJQueryPromiseSupportForAJAXRequests.html#breaking-96263", "Breaking: #96263 - Remove jQuery promise support for AJAX requests" ], "breaking-96287-doctrine-dbal-v3": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96287-DoctrineDBALv3.html#breaking-96287-doctrine-dbal-v3", + "Changelog\/12.0\/Breaking-96287-DoctrineDBALv3.html#breaking-96287", "Breaking: #96287 - Doctrine DBAL v3" ], "breaking-96291-disallow-db-connection-before-tca-is-loaded": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96291-DisallowDBConnectionBeforeTCAIsLoaded.html#breaking-96291-disallow-db-connection-before-tca-is-loaded", + "Changelog\/12.0\/Breaking-96291-DisallowDBConnectionBeforeTCAIsLoaded.html#breaking-96291", "Breaking: #96291 - Disallow DB connection before TCA is loaded" ], "breaking-96333-auto-configuration-of-contextmenu-item-providers": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96333-AutoConfigurationOfContextMenuItemProviders.html#breaking-96333-auto-configuration-of-contextmenu-item-providers", + "Changelog\/12.0\/Breaking-96333-AutoConfigurationOfContextMenuItemProviders.html#breaking-96333", "Breaking: #96333 - Auto configuration of ContextMenu item providers" ], "breaking-96351-unused-templateservice-updaterootlinedata-method-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96351-UnusedTemplateService-updateRootlineDataMethodRemoved.html#breaking-96351-unused-templateservice-updaterootlinedata-method-removed", + "Changelog\/12.0\/Breaking-96351-UnusedTemplateService-updateRootlineDataMethodRemoved.html#breaking-96351", "Breaking: #96351 - Unused TemplateService->updateRootlineData method removed" ], "breaking-96501-prefixlocalanchors-option-in-htmlparser-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96501-PrefixLocalAnchorsOptionInHTMLParserRemoved.html#breaking-96501-prefixlocalanchors-option-in-htmlparser-removed", + "Changelog\/12.0\/Breaking-96501-PrefixLocalAnchorsOptionInHTMLParserRemoved.html#breaking-96501", "Breaking: #96501 - prefixLocalAnchors option in HTMLParser removed" ], "breaking-96517-tmenu-collapse-typoscript-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96517-TMENUcollapseTyposcriptRemoved.html#breaking-96517-tmenu-collapse-typoscript-removed", + "Changelog\/12.0\/Breaking-96517-TMENUcollapseTyposcriptRemoved.html#breaking-96517", "Breaking: #96517 - TMENU.collapse TypoScript removed" ], "breaking-96518-ext-typoscript-txt-files-not-included-anymore": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96518-Ext_typoscript_txtFilesNotIncludedAnymore.html#breaking-96518-ext-typoscript-txt-files-not-included-anymore", + "Changelog\/12.0\/Breaking-96518-Ext_typoscript_txtFilesNotIncludedAnymore.html#breaking-96518", "Breaking: #96518 - ext_typoscript_*.txt files not included anymore" ], "breaking-96520-enforce-non-empty-configuration-in-cobj-parsefunc": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96520-EnforceNon-emptyConfigurationInCObjparseFunc.html#breaking-96520-enforce-non-empty-configuration-in-cobj-parsefunc", + "Changelog\/12.0\/Breaking-96520-EnforceNon-emptyConfigurationInCObjparseFunc.html#breaking-96520", "Breaking: #96520 - Enforce non-empty configuration in cObj::parseFunc" ], "php": [ @@ -45511,85 +45643,85 @@ "breaking-96522-config-disablepageexternalurl-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96522-ConfigdisablePageExternalUrlRemoved.html#breaking-96522-config-disablepageexternalurl-removed", + "Changelog\/12.0\/Breaking-96522-ConfigdisablePageExternalUrlRemoved.html#breaking-96522", "Breaking: #96522 - config.disablePageExternalUrl removed" ], "breaking-96526-removed-hooks-for-modifying-page-module-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96526-RemovedHooksForModifyingPageModuleContent.html#breaking-96526-removed-hooks-for-modifying-page-module-content", + "Changelog\/12.0\/Breaking-96526-RemovedHooksForModifyingPageModuleContent.html#breaking-96526", "Breaking: #96526 - Removed hooks for modifying page module content" ], "breaking-96550-typo3-conf-vars-sys-usdateformat-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96550-TYPO3_CONF_VARSSYSUSdateFormatRemoved.html#breaking-96550-typo3-conf-vars-sys-usdateformat-removed", + "Changelog\/12.0\/Breaking-96550-TYPO3_CONF_VARSSYSUSdateFormatRemoved.html#breaking-96550", "Breaking: #96550 - TYPO3_CONF_VARS['SYS']['USdateFormat'] removed" ], "breaking-96553-typo3-v12-system-requirements": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96553-TYPO3V12SystemRequirements.html#breaking-96553-typo3-v12-system-requirements", + "Changelog\/12.0\/Breaking-96553-TYPO3V12SystemRequirements.html#breaking-96553", "Breaking: #96553 - TYPO3 v12 system requirements" ], "breaking-96575-update-to-codemirror-6": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96575-UpdateToCodeMirror6.html#breaking-96575-update-to-codemirror-6", + "Changelog\/12.0\/Breaking-96575-UpdateToCodeMirror6.html#breaking-96575-1663324432", "Breaking: #96575 - Update to CodeMirror 6" ], "breaking-96604-removed-moduletemplate-addjavascriptcode": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96604-RemovedModuleTemplate-addJavaScriptCode.html#breaking-96604-removed-moduletemplate-addjavascriptcode", + "Changelog\/12.0\/Breaking-96604-RemovedModuleTemplate-addJavaScriptCode.html#breaking-96604", "Breaking: #96604 - Removed ModuleTemplate->addJavaScriptCode()" ], "breaking-96616-remove-frontend-login-mode-for-pages": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96616-RemoveFrontendLoginModeForPages.html#breaking-96616-remove-frontend-login-mode-for-pages", + "Changelog\/12.0\/Breaking-96616-RemoveFrontendLoginModeForPages.html#breaking-96616", "Breaking: #96616 - Remove Frontend Login Mode for pages" ], "breaking-96641-typolink-related-hooks-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96641-TypoLinkRelatedHooksRemoved.html#breaking-96641-typolink-related-hooks-removed", + "Changelog\/12.0\/Breaking-96641-TypoLinkRelatedHooksRemoved.html#breaking-96641", "Breaking: #96641 - TypoLink related hooks removed" ], "breaking-96659-registration-of-cobjects-via-typo3-conf-vars": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96659-RegistrationOfCObjectsViaTYPO3_CONF_VARS.html#breaking-96659-registration-of-cobjects-via-typo3-conf-vars", + "Changelog\/12.0\/Breaking-96659-RegistrationOfCObjectsViaTYPO3_CONF_VARS.html#breaking-96659", "Breaking: #96659 - Registration of cObjects via TYPO3_CONF_VARS" ], "breaking-96708-removed-support-for-accesskeys-in-hmenu": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96708-RemovedSupportForAccesskeysInHMENU.html#breaking-96708-removed-support-for-accesskeys-in-hmenu", + "Changelog\/12.0\/Breaking-96708-RemovedSupportForAccesskeysInHMENU.html#breaking-96708", "Breaking: #96708 - Removed support for accesskeys in HMENU" ], "breaking-96726-requesthandler-functionality-of-extbase-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96726-RequestHandlerFunctionalityOfExtbaseRemoved.html#breaking-96726-requesthandler-functionality-of-extbase-removed", + "Changelog\/12.0\/Breaking-96726-RequestHandlerFunctionalityOfExtbaseRemoved.html#breaking-96726", "Breaking: #96726 - RequestHandler functionality of Extbase removed" ], "breaking-96733-removed-support-for-module-handling-based-on-tbe-modules": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96733-RemovedSupportForModuleHandlingBasedOnTBE_MODULES.html#breaking-96733-removed-support-for-module-handling-based-on-tbe-modules", + "Changelog\/12.0\/Breaking-96733-RemovedSupportForModuleHandlingBasedOnTBE_MODULES.html#breaking-96733", "Breaking: #96733 - Removed support for module handling based on TBE_MODULES" ], "breaking-96806-removed-hook-for-modifying-button-bar": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96806-RemovedHookForModifyingButtonBar.html#breaking-96806-removed-hook-for-modifying-button-bar", + "Changelog\/12.0\/Breaking-96806-RemovedHookForModifyingButtonBar.html#breaking-96806", "Breaking: #96806 - Removed hook for modifying button bar" ], "breaking-96812-no-frontend-typoscript-based-template-overrides-in-the-backend": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96812-NoFrontendTypoScriptBasedTemplateOverridesInTheBackend.html#breaking-96812-no-frontend-typoscript-based-template-overrides-in-the-backend", + "Changelog\/12.0\/Breaking-96812-NoFrontendTypoScriptBasedTemplateOverridesInTheBackend.html#breaking-96812", "Breaking: #96812 - No Frontend TypoScript based template overrides in the backend" ], "page-module-template-overrides": [ @@ -45619,181 +45751,181 @@ "breaking-96829-removed-backendutility-getfuncinput": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96829-RemovedBackendUtility-getFuncInput.html#breaking-96829-removed-backendutility-getfuncinput", + "Changelog\/12.0\/Breaking-96829-RemovedBackendUtility-getFuncInput.html#breaking-96829", "Breaking: #96829 - Removed BackendUtility->getFuncInput()" ], "breaking-96831-enforce-html-sanitizer-during-frontend-rendering": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96831-EnforceHTMLSanitizerDuringFrontendRendering.html#breaking-96831-enforce-html-sanitizer-during-frontend-rendering", + "Changelog\/12.0\/Breaking-96831-EnforceHTMLSanitizerDuringFrontendRendering.html#breaking-96831", "Breaking: #96831 - Enforce HTML sanitizer during frontend rendering" ], "breaking-96835-https-as-default-scheme-in-pagerouter": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96835-HttpsAsDefaultSchemeInPageRouter.html#breaking-96835-https-as-default-scheme-in-pagerouter", + "Changelog\/12.0\/Breaking-96835-HttpsAsDefaultSchemeInPageRouter.html#breaking-96835", "Breaking: #96835 - https as default scheme in PageRouter" ], "breaking-96874-ckeditor-related-plugins-and-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96874-CKEditor-relatedPluginsAndConfiguration.html#breaking-96874-ckeditor-related-plugins-and-configuration", + "Changelog\/12.0\/Breaking-96874-CKEditor-relatedPluginsAndConfiguration.html#breaking-96874-1664488429", "Breaking: #96874 - CKEditor-related plugins and configuration" ], "breaking-96879-hook-get-cache-timeout-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96879-RemovedHookGetCacheTimeout.html#breaking-96879-hook-get-cache-timeout-removed", + "Changelog\/12.0\/Breaking-96879-RemovedHookGetCacheTimeout.html#breaking-96879", "Breaking: #96879 - Hook \"get_cache_timeout\" removed" ], "breaking-96889-require-php-mbstring-and-intl": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96889-RequirePHPMbstringAndIntl.html#breaking-96889-require-php-mbstring-and-intl", + "Changelog\/12.0\/Breaking-96889-RequirePHPMbstringAndIntl.html#breaking-96889", "Breaking: #96889 - Require PHP mbstring and intl" ], "breaking-96899-displaywarningmessages-hook-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96899-DisplayWarningMessagesHookRemoved.html#breaking-96899-displaywarningmessages-hook-removed", + "Changelog\/12.0\/Breaking-96899-DisplayWarningMessagesHookRemoved.html#breaking-96899", "Breaking: #96899 - \"displayWarningMessages\" hook removed" ], "breaking-96904-ext-reports-reports-do-not-receive-parent-object": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96904-ExtreportsReportsDoNotReceiveParentObject.html#breaking-96904-ext-reports-reports-do-not-receive-parent-object", + "Changelog\/12.0\/Breaking-96904-ExtreportsReportsDoNotReceiveParentObject.html#breaking-96904", "Breaking: #96904 - ext:reports reports do not receive parent object" ], "breaking-96935-register-linkvalidator-linktypes-via-service-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96935-RegisterLinkvalidatorLinktypesViaServiceConfiguration.html#breaking-96935-register-linkvalidator-linktypes-via-service-configuration", + "Changelog\/12.0\/Breaking-96935-RegisterLinkvalidatorLinktypesViaServiceConfiguration.html#breaking-96935", "Breaking: #96935 - Register linkvalidator linktypes via service configuration" ], "breaking-96968-hook-headernocache-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96968-HookHeaderNoCacheRemoved.html#breaking-96968-hook-headernocache-removed", + "Changelog\/12.0\/Breaking-96968-HookHeaderNoCacheRemoved.html#breaking-96968", "Breaking: #96968 - Hook \"headerNoCache\" removed" ], "breaking-96982-removed-support-for-global-extensions": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96982-RemovedSupportForGlobalExtensions.html#breaking-96982-removed-support-for-global-extensions", + "Changelog\/12.0\/Breaking-96982-RemovedSupportForGlobalExtensions.html#breaking-96982", "Breaking: #96982 - Removed support for global extensions" ], "breaking-96983-tablecolumnsubtype": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96983-TableColumnSubType.html#breaking-96983-tablecolumnsubtype", + "Changelog\/12.0\/Breaking-96983-TableColumnSubType.html#breaking-96983", "Breaking: #96983 - TableColumnSubType" ], "breaking-96988-global-option-allowlocalinstall-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96988-GlobalOptionAllowLocalInstallRemoved.html#breaking-96988-global-option-allowlocalinstall-removed", + "Changelog\/12.0\/Breaking-96988-GlobalOptionAllowLocalInstallRemoved.html#breaking-96988", "Breaking: #96988 - Global Option \"allowLocalInstall\" removed" ], "breaking-96996-hook-checkenablefields-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96996-HookCheckEnableFieldsRemoved.html#breaking-96996-hook-checkenablefields-removed", + "Changelog\/12.0\/Breaking-96996-HookCheckEnableFieldsRemoved.html#breaking-96996", "Breaking: #96996 - Hook \"checkEnableFields\" removed" ], "breaking-96998-extbase-validator-interface-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-96998-ExtbaseValidatorInterfaceChanged.html#breaking-96998-extbase-validator-interface-changed", + "Changelog\/12.0\/Breaking-96998-ExtbaseValidatorInterfaceChanged.html#breaking-96998", "Breaking: #96998 - Extbase validator interface changed" ], "breaking-97065-typo3-frontend-always-rendered-in-utf-8": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97065-TYPO3FrontendAlwaysRenderedInUTF-8.html#breaking-97065-typo3-frontend-always-rendered-in-utf-8", + "Changelog\/12.0\/Breaking-97065-TYPO3FrontendAlwaysRenderedInUTF-8.html#breaking-97065", "Breaking: #97065 - TYPO3 Frontend always rendered in UTF-8" ], "breaking-97091-tsfe-clear-preview-has-been-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97091-TSFE-clear_previewHasBeenRemoved.html#breaking-97091-tsfe-clear-preview-has-been-removed", + "Changelog\/12.0\/Breaking-97091-TSFE-clear_previewHasBeenRemoved.html#breaking-97091", "Breaking: #97091 - TSFE->clear_preview has been removed" ], "breaking-97126-remove-tceforms-array-key-in-flexform": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97126-RemoveTCEformsArrayKeyInFlexForm.html#breaking-97126-remove-tceforms-array-key-in-flexform", + "Changelog\/12.0\/Breaking-97126-RemoveTCEformsArrayKeyInFlexForm.html#breaking-97126", "Breaking: #97126 - Remove TCEforms array key in FlexForm" ], "breaking-97131-removed-cli-commands-related-to-files-in-uploads-folder": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97131-RemovedCLICommandsRelatedToFilesInUploadsFolder.html#breaking-97131-removed-cli-commands-related-to-files-in-uploads-folder", + "Changelog\/12.0\/Breaking-97131-RemovedCLICommandsRelatedToFilesInUploadsFolder.html#breaking-97131", "Breaking: #97131 - Removed CLI commands related to files in uploads\/ folder" ], "breaking-97135-removed-support-for-module-handling-based-on-tbe-modules-ext": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97135-RemovedSupportForModuleHandlingBasedOnTBE_MODULES_EXT.html#breaking-97135-removed-support-for-module-handling-based-on-tbe-modules-ext", + "Changelog\/12.0\/Breaking-97135-RemovedSupportForModuleHandlingBasedOnTBE_MODULES_EXT.html#breaking-97135", "Breaking: #97135 - Removed support for module handling based on TBE_MODULES_EXT" ], "breaking-97174-removed-hook-for-modifying-info-module-footer-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97174-RemovedHookForModifyingInfoModuleFooterContent.html#breaking-97174-removed-hook-for-modifying-info-module-footer-content", + "Changelog\/12.0\/Breaking-97174-RemovedHookForModifyingInfoModuleFooterContent.html#breaking-97174", "Breaking: #97174 - Removed hook for modifying info module footer content" ], "breaking-97187-removed-hook-for-modifying-link-explanation": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97187-RemovedHookForModifyingLinkExplanation.html#breaking-97187-removed-hook-for-modifying-link-explanation", + "Changelog\/12.0\/Breaking-97187-RemovedHookForModifyingLinkExplanation.html#breaking-97187", "Breaking: #97187 - Removed hook for modifying link explanation" ], "breaking-97188-register-element-browsers-via-service-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97188-RegisterElementBrowsersViaServiceConfiguration.html#breaking-97188-register-element-browsers-via-service-configuration", + "Changelog\/12.0\/Breaking-97188-RegisterElementBrowsersViaServiceConfiguration.html#breaking-97188", "Breaking: #97188 - Register element browsers via service configuration" ], "breaking-97201-removed-hook-for-new-content-element-wizard": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97201-RemovedHookForNewContentElementWizard.html#breaking-97201-removed-hook-for-new-content-element-wizard", + "Changelog\/12.0\/Breaking-97201-RemovedHookForNewContentElementWizard.html#breaking-97201", "Breaking: #97201 - Removed hook for new content element wizard" ], "breaking-97210-types-added-to-method-signatures-or-class-properties": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97210-TypesAddedToMethodSignaturesOrClassProperties.html#breaking-97210-types-added-to-method-signatures-or-class-properties", + "Changelog\/12.0\/Breaking-97210-TypesAddedToMethodSignaturesOrClassProperties.html#breaking-97210", "Breaking: #97210 - Types added to method signatures or class properties" ], "breaking-97214-use-uploadedfile-objects-instead-of-files": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97214-UseUploadedFileObjectsInsteadOf_FILES.html#breaking-97214-use-uploadedfile-objects-instead-of-files", + "Changelog\/12.0\/Breaking-97214-UseUploadedFileObjectsInsteadOf_FILES.html#breaking-97214", "Breaking: #97214 - Use UploadedFile objects instead of $_FILES" ], "breaking-97230-removed-hook-for-modifying-image-manipulation-preview-url": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97230-RemovedHookForModifyingImageManipulationPreviewUrl.html#breaking-97230-removed-hook-for-modifying-image-manipulation-preview-url", + "Changelog\/12.0\/Breaking-97230-RemovedHookForModifyingImageManipulationPreviewUrl.html#breaking-97230", "Breaking: #97230 - Removed hook for modifying image manipulation preview URL" ], "breaking-97231-removed-hook-for-manipulating-inline-element-controls": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97231-RemovedHookForManipulatingInlineElementControls.html#breaking-97231-removed-hook-for-manipulating-inline-element-controls", + "Changelog\/12.0\/Breaking-97231-RemovedHookForManipulatingInlineElementControls.html#breaking-97231", "Breaking: #97231 - Removed hook for manipulating inline element controls" ], "breaking-97243-remove-global-jquery-access-via-window": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97243-RemoveGlobalJQueryAccessViaWindow.html#breaking-97243-remove-global-jquery-access-via-window", + "Changelog\/12.0\/Breaking-97243-RemoveGlobalJQueryAccessViaWindow.html#breaking-97243", "Breaking: #97243 - Remove global jQuery access via window.$" ], "breaking-97265-simplified-access-mode-system": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97265-SimplifiedAccessModeSystem.html#breaking-97265-simplified-access-mode-system", + "Changelog\/12.0\/Breaking-97265-SimplifiedAccessModeSystem.html#breaking-97265", "Breaking: #97265 - Simplified access mode system" ], "accessing-explicitadmode": [ @@ -45823,7 +45955,7 @@ "breaking-97305-introduce-csrf-like-login-token": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97305-IntroduceCSRF-likeLoginToken.html#breaking-97305-introduce-csrf-like-login-token", + "Changelog\/12.0\/Breaking-97305-IntroduceCSRF-likeLoginToken.html#breaking-97305-1664100009", "Breaking: #97305 - Introduce CSRF-like login token" ], "example-for-overridden-backend-login-html-template-ext-backend": [ @@ -45841,13 +45973,13 @@ "breaking-97312-remove-context-sensitive-help": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97312-RemoveContextSensitiveHelp.html#breaking-97312-remove-context-sensitive-help", + "Changelog\/12.0\/Breaking-97312-RemoveContextSensitiveHelp.html#breaking-97312", "Breaking: #97312 - Remove context sensitive help" ], "breaking-97320-register-report-and-status-via-service-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97320-RegisterReportAndStatusViaServiceConfiguration.html#breaking-97320-register-report-and-status-via-service-configuration", + "Changelog\/12.0\/Breaking-97320-RegisterReportAndStatusViaServiceConfiguration.html#breaking-97320", "Breaking: #97320 - Register Report and Status via Service Configuration" ], "report": [ @@ -45865,103 +45997,103 @@ "breaking-97358-removed-eval-int-from-tca-type-datetime": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97358-RemovedEvalintFromTCATypeDatetime.html#breaking-97358-removed-eval-int-from-tca-type-datetime", + "Changelog\/12.0\/Breaking-97358-RemovedEvalintFromTCATypeDatetime.html#breaking-97358", "Breaking: #97358 - Removed eval=int from TCA type \"datetime\"" ], "breaking-97449-removed-hook-for-modifying-flex-form-parsing": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97449-RemovedHookForModifyingFlexFormParsing.html#breaking-97449-removed-hook-for-modifying-flex-form-parsing", + "Changelog\/12.0\/Breaking-97449-RemovedHookForModifyingFlexFormParsing.html#breaking-97449", "Breaking: #97449 - Removed hook for modifying flex form parsing" ], "breaking-97450-removed-hook-for-modifying-version-differences": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97450-RemovedHookForModifyingVersionDifferences.html#breaking-97450-removed-hook-for-modifying-version-differences", + "Changelog\/12.0\/Breaking-97450-RemovedHookForModifyingVersionDifferences.html#breaking-97450", "Breaking: #97450 - Removed hook for modifying version differences" ], "breaking-97451-removed-backendcontroller-page-hooks": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97451-RemoveBackendControllerPageHooks.html#breaking-97451-removed-backendcontroller-page-hooks", + "Changelog\/12.0\/Breaking-97451-RemoveBackendControllerPageHooks.html#breaking-97451", "Breaking: #97451 - Removed BackendController page hooks" ], "breaking-97452-removed-editfilecontroller-hooks": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97452-RemovedEditFileControllerHooks.html#breaking-97452-removed-editfilecontroller-hooks", + "Changelog\/12.0\/Breaking-97452-RemovedEditFileControllerHooks.html#breaking-97452", "Breaking: #97452 - Removed EditFileController hooks" ], "breaking-97454-removed-link-browser-hooks": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97454-RemoveLinkBrowserHooks.html#breaking-97454-removed-link-browser-hooks", + "Changelog\/12.0\/Breaking-97454-RemoveLinkBrowserHooks.html#breaking-97454-1657327622", "Breaking: #97454 - Removed Link Browser hooks" ], "breaking-97530-indexed-search-option-searchskipextendtosubpageschecking-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97530-IndexedSearchOptionSearchSkipExtendToSubpagesCheckingRemoved.html#breaking-97530-indexed-search-option-searchskipextendtosubpageschecking-removed", + "Changelog\/12.0\/Breaking-97530-IndexedSearchOptionSearchSkipExtendToSubpagesCheckingRemoved.html#breaking-97530-1651500260", "Breaking: #97530 - Indexed Search option searchSkipExtendToSubpagesChecking removed" ], "breaking-97550-typoscript-option-config-disablecharsetheader-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97550-TypoScriptOptionConfigdisableCharsetHeaderRemoved.html#breaking-97550-typoscript-option-config-disablecharsetheader-removed", + "Changelog\/12.0\/Breaking-97550-TypoScriptOptionConfigdisableCharsetHeaderRemoved.html#breaking-97550-1651697278", "Breaking: #97550 - TypoScript option config.disableCharsetHeader removed" ], "breaking-97605-remove-field-resizetextareas-maxheight-from-user-settings": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97605-RemoveFieldResizeTextareas_MaxHeightFromUserSettings.html#breaking-97605-remove-field-resizetextareas-maxheight-from-user-settings", + "Changelog\/12.0\/Breaking-97605-RemoveFieldResizeTextareas_MaxHeightFromUserSettings.html#breaking-97605-1652214290", "Breaking: #97605 - Remove field resizeTextareas_MaxHeight from user settings" ], "breaking-97701-tsconfig-option-disablenewcontentelementwizard-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97701-RemovedTsConfigOptionDisableNewContentElementWizard.html#breaking-97701-tsconfig-option-disablenewcontentelementwizard-removed", + "Changelog\/12.0\/Breaking-97701-RemovedTsConfigOptionDisableNewContentElementWizard.html#breaking-97701-1655154047", "Breaking: #97701 - TSconfig option disableNewContentElementWizard removed" ], "breaking-97729-respect-attribute-approved-in-xlf-files": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97729-SupportAttributeApprovedInXlfFiles.html#breaking-97729-respect-attribute-approved-in-xlf-files", + "Changelog\/12.0\/Breaking-97729-SupportAttributeApprovedInXlfFiles.html#breaking-97729-1654627167", "Breaking: #97729 - Respect attribute approved in XLF files" ], "breaking-97737-page-related-hooks-in-tsfe-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97737-Page-relatedHooksInTSFERemoved.html#breaking-97737-page-related-hooks-in-tsfe-removed", + "Changelog\/12.0\/Breaking-97737-Page-relatedHooksInTSFERemoved.html#breaking-97737-1654595331", "Breaking: #97737 - Page-related hooks in TSFE removed" ], "breaking-97752-maileradapterinterface-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97752-MailerAdapterInterfaceRemoved.html#breaking-97752-maileradapterinterface-removed", + "Changelog\/12.0\/Breaking-97752-MailerAdapterInterfaceRemoved.html#breaking-97752-1654761506", "Breaking: #97752 - MailerAdapterInterface removed" ], "breaking-97787-abstractmessage-getseverity-returns-contextualfeedbackseverity": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97787-AbstractMessageGetSeverityReturnsContextualFeedbackSeverity.html#breaking-97787-abstractmessage-getseverity-returns-contextualfeedbackseverity", + "Changelog\/12.0\/Breaking-97787-AbstractMessageGetSeverityReturnsContextualFeedbackSeverity.html#breaking-97787-1657629392", "Breaking: #97787 - AbstractMessage->getSeverity() returns ContextualFeedbackSeverity" ], "breaking-97797-gfx-setting-processor-path-lzw-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97797-GFXSettingProcessor_path_lzwRemoved.html#breaking-97797-gfx-setting-processor-path-lzw-removed", + "Changelog\/12.0\/Breaking-97797-GFXSettingProcessor_path_lzwRemoved.html#breaking-97797-1655730428", "Breaking: #97797 - GFX setting processor_path_lzw removed" ], "breaking-97816-new-typoscript-parser-in-frontend": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97816-NewTypoScriptParserInFrontend.html#breaking-97816-new-typoscript-parser-in-frontend", + "Changelog\/12.0\/Breaking-97816-NewTypoScriptParserInFrontend.html#breaking-97816-1664800747", "Breaking: #97816 - New TypoScript parser in Frontend" ], "breaking-97816-typoscript-syntax-changes": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97816-TypoScriptSyntaxChanges.html#breaking-97816-typoscript-syntax-changes", + "Changelog\/12.0\/Breaking-97816-TypoScriptSyntaxChanges.html#breaking-97816-1656350406", "Breaking: #97816 - TypoScript syntax changes" ], "streamlined-constants-usage": [ @@ -46009,157 +46141,157 @@ "breaking-97862-hooks-related-to-generating-page-content-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97862-HooksRelatedToGeneratingPageContentRemoved.html#breaking-97862-hooks-related-to-generating-page-content-removed", + "Changelog\/12.0\/Breaking-97862-HooksRelatedToGeneratingPageContentRemoved.html#breaking-97862-1657195630", "Breaking: #97862 - Hooks related to generating page content removed" ], "breaking-97926-extbase-querysettings-methods-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97926-ExtbaseQuerySettingsMethodsRemoved.html#breaking-97926-extbase-querysettings-methods-removed", + "Changelog\/12.0\/Breaking-97926-ExtbaseQuerySettingsMethodsRemoved.html#breaking-97926-1657726187", "Breaking: #97926 - Extbase QuerySettings methods removed" ], "breaking-97927-removed-typoscript-option-config-doctypeswitch": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97927-RemovedTypoScriptOptionConfigdoctypeSwitch.html#breaking-97927-removed-typoscript-option-config-doctypeswitch", + "Changelog\/12.0\/Breaking-97927-RemovedTypoScriptOptionConfigdoctypeSwitch.html#breaking-97927-1657730964", "Breaking: #97927 - Removed TypoScript option config.doctypeSwitch" ], "breaking-97945-removed-workspaceservice-hooks": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-97945-RemovedWorkspaceServiceHooks.html#breaking-97945-removed-workspaceservice-hooks", + "Changelog\/12.0\/Breaking-97945-RemovedWorkspaceServiceHooks.html#breaking-97945", "Breaking: #97945 - Removed WorkspaceService hooks" ], "breaking-98016-removed-typoscript-function-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98016-RemovedTypoScriptFunctionHook.html#breaking-98016-removed-typoscript-function-hook", + "Changelog\/12.0\/Breaking-98016-RemovedTypoScriptFunctionHook.html#breaking-98016-1658731955", "Breaking: #98016 - Removed TypoScript function hook" ], "breaking-98024-tca-option-cruser-id-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98024-TCA-option-cruserid-removed.html#breaking-98024-tca-option-cruser-id-removed", + "Changelog\/12.0\/Breaking-98024-TCA-option-cruserid-removed.html#breaking-98024", "Breaking: #98024 - TCA option cruser_id removed" ], "breaking-98032-serializable-interface-fully-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98032-SerializableInterfaceFullyRemoved.html#breaking-98032-serializable-interface-fully-removed", + "Changelog\/12.0\/Breaking-98032-SerializableInterfaceFullyRemoved.html#breaking-98032", "Breaking: #98032 - Serializable Interface fully removed" ], "breaking-98069-debugconsole-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98069-DebugConsoleRemoved.html#breaking-98069-debugconsole-removed", + "Changelog\/12.0\/Breaking-98069-DebugConsoleRemoved.html#breaking-98069-1659536025", "Breaking: #98069 - DebugConsole removed" ], "breaking-98089-removed-fontawesome": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98089-RemovedFontAwesome.html#breaking-98089-removed-fontawesome", + "Changelog\/12.0\/Breaking-98089-RemovedFontAwesome.html#breaking-98089-1659734321", "Breaking: #98089 - Removed FontAwesome" ], "breaking-98100-compression-and-concatenation-of-javascript-and-css-files-for-backend-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98100-CompressionAndConcatenationOfJavaScriptAndCSSFilesForBackendRemoved.html#breaking-98100-compression-and-concatenation-of-javascript-and-css-files-for-backend-removed", + "Changelog\/12.0\/Breaking-98100-CompressionAndConcatenationOfJavaScriptAndCSSFilesForBackendRemoved.html#breaking-98100-1659877890", "Breaking: #98100 - Compression and Concatenation of JavaScript and CSS files for Backend removed" ], "breaking-98158-update-to-symfony-6": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98158-UpdateToSymfony6.html#breaking-98158-update-to-symfony-6", + "Changelog\/12.0\/Breaking-98158-UpdateToSymfony6.html#breaking-98158-1660740286", "Breaking: #98158 - Update to Symfony 6" ], "breaking-98179-remove-backend-interface-selector-and-configurable-redirect": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98179-RemoveBackendInterfaceSelectorAndConfigurableRedirect.html#breaking-98179-remove-backend-interface-selector-and-configurable-redirect", + "Changelog\/12.0\/Breaking-98179-RemoveBackendInterfaceSelectorAndConfigurableRedirect.html#breaking-98179-1660903844", "Breaking: #98179 - Remove backend interface selector and configurable redirect" ], "breaking-98193-persistent-storage-module-returns-promises": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98193-PersistentStorageModuleReturnsPromises.html#breaking-98193-persistent-storage-module-returns-promises", + "Changelog\/12.0\/Breaking-98193-PersistentStorageModuleReturnsPromises.html#breaking-98193-1661262696", "Breaking: #98193 - Persistent storage module returns Promises" ], "breaking-98195-remove-todays-special-error-constant": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98195-RemoveTODAYS_SPECIALErrorConstant.html#breaking-98195-remove-todays-special-error-constant", + "Changelog\/12.0\/Breaking-98195-RemoveTODAYS_SPECIALErrorConstant.html#breaking-98195-1661274247", "Breaking: #98195 - Remove TODAYS_SPECIAL error constant" ], "breaking-98261-removed-jquery-in-popover-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98261-RemovedJQueryInPopoverModule.html#breaking-98261-removed-jquery-in-popover-module", + "Changelog\/12.0\/Breaking-98261-RemovedJQueryInPopoverModule.html#breaking-98261-1662389392", "Breaking: #98261 - Removed jQuery in Popover module" ], "breaking-98275-removed-pre-defined-link-title-attributes-in-rte-link-browser": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98275-RemovedPreDefinedLinkTitleAttributesInRTELinkBrowser.html#breaking-98275-removed-pre-defined-link-title-attributes-in-rte-link-browser", + "Changelog\/12.0\/Breaking-98275-RemovedPreDefinedLinkTitleAttributesInRTELinkBrowser.html#breaking-98275-1662540769", "Breaking: #98275 - Removed pre-defined link title attributes in RTE link browser" ], "breaking-98281-make-abstractplugin-internal": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98281-MakeAbstractPluginInternal.html#breaking-98281-make-abstractplugin-internal", + "Changelog\/12.0\/Breaking-98281-MakeAbstractPluginInternal.html#breaking-98281-1662549900", "Breaking: #98281 - Make AbstractPlugin @internal" ], "breaking-98288-updated-backend-modal-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98288-UpdatedBackendModalAPI.html#breaking-98288-updated-backend-modal-api", + "Changelog\/12.0\/Breaking-98288-UpdatedBackendModalAPI.html#breaking-98288-1662580832", "Breaking: #98288 - Updated Backend Modal API" ], "breaking-98303-removed-hooks-for-language-overlays-in-pagerepository": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98303-RemovedHooksForLanguageOverlaysInPageRepository.html#breaking-98303-removed-hooks-for-language-overlays-in-pagerepository", + "Changelog\/12.0\/Breaking-98303-RemovedHooksForLanguageOverlaysInPageRepository.html#breaking-98303-1662659583", "Breaking: #98303 - Removed hooks for language overlays in PageRepository" ], "breaking-98304-removed-hook-for-modifying-edit-form-user-access": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98304-RemovedHookForModifyingEditFormUserAccess.html#breaking-98304-removed-hook-for-modifying-edit-form-user-access", + "Changelog\/12.0\/Breaking-98304-RemovedHookForModifyingEditFormUserAccess.html#breaking-98304", "Breaking: #98304 - Removed hook for modifying edit form user access" ], "breaking-98308-legacy-html-attributes-border-and-longdesc-removed-from-frontend-rendering": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98308-LegacyHTMLAttributesBorderAndLongdescRemovedFromFrontendRendering.html#breaking-98308-legacy-html-attributes-border-and-longdesc-removed-from-frontend-rendering", + "Changelog\/12.0\/Breaking-98308-LegacyHTMLAttributesBorderAndLongdescRemovedFromFrontendRendering.html#breaking-98308-1662713106", "Breaking: #98308 - Legacy HTML attributes border and longdesc removed from frontend rendering" ], "breaking-98312-typoscript-setting-page-css-inlinestyle-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98312-TypoScriptSettingPageCSS_inlineStyleRemoved.html#breaking-98312-typoscript-setting-page-css-inlinestyle-removed", + "Changelog\/12.0\/Breaking-98312-TypoScriptSettingPageCSS_inlineStyleRemoved.html#breaking-98312-1662725671", "Breaking: #98312 - TypoScript setting page.CSS_inlineStyle removed" ], "breaking-98319-new-file-location-for-localconfiguration-php-and-additionalconfiguration-php": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98319-NewFileLocationForLocalConfigurationphpAndAdditionalConfigurationphp.html#breaking-98319-new-file-location-for-localconfiguration-php-and-additionalconfiguration-php", + "Changelog\/12.0\/Breaking-98319-NewFileLocationForLocalConfigurationphpAndAdditionalConfigurationphp.html#breaking-98319-1664641595", "Breaking: #98319 - New file location for LocalConfiguration.php and AdditionalConfiguration.php" ], "breaking-98370-extbase-request-cleanup-and-hardening": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98370-ExtbaseRequestCleanupAndHardening.html#breaking-98370-extbase-request-cleanup-and-hardening", + "Changelog\/12.0\/Breaking-98370-ExtbaseRequestCleanupAndHardening.html#breaking-98370-1663513316", "Breaking: #98370 - Extbase Request cleanup and hardening" ], "breaking-98375-removed-hooks-in-page-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98375-RemovedHooksInPageModule.html#breaking-98375-removed-hooks-in-page-module", + "Changelog\/12.0\/Breaking-98375-RemovedHooksInPageModule.html#breaking-98375-1663598608", "Breaking: #98375 - Removed hooks in Page Module" ], "breaking-98377-fluid-standaloneview-does-not-create-an-extbase-request-anymore": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98377-FluidStandaloneViewDoesNotCreateAnExtbaseRequestAnymore.html#breaking-98377-fluid-standaloneview-does-not-create-an-extbase-request-anymore", + "Changelog\/12.0\/Breaking-98377-FluidStandaloneViewDoesNotCreateAnExtbaseRequestAnymore.html#breaking-98377-1663607123", "Breaking: #98377 - Fluid StandaloneView does not create an Extbase Request anymore" ], "avoiding-html-f-form-in-non-extbase-context": [ @@ -46183,97 +46315,97 @@ "breaking-98437-workspace-tsconfig-swapmode-and-changestagemode-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98437-WorkspaceTSConfigSwapModeAndChangeStageModeRemoved.html#breaking-98437-workspace-tsconfig-swapmode-and-changestagemode-removed", + "Changelog\/12.0\/Breaking-98437-WorkspaceTSConfigSwapModeAndChangeStageModeRemoved.html#breaking-98437-1664187644", "Breaking: #98437 - Workspace TSConfig swapMode and changeStageMode removed" ], "breaking-98441-hook-recstatinfohooks-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98441-HookRecStatInfoHooksRemoved.html#breaking-98441-hook-recstatinfohooks-removed", + "Changelog\/12.0\/Breaking-98441-HookRecStatInfoHooksRemoved.html#breaking-98441-1664267734", "Breaking: #98441 - Hook \"recStatInfoHooks\" removed" ], "breaking-98443-extension-recordlist-merged-into-backend": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98443-ExtensionRecordlistMergedIntoBackend.html#breaking-98443-extension-recordlist-merged-into-backend", + "Changelog\/12.0\/Breaking-98443-ExtensionRecordlistMergedIntoBackend.html#breaking-98443-1664275773", "Breaking: #98443 - Extension recordlist merged into backend" ], "breaking-98455-changed-definition-of-formengine-suggest-item": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98455-ChangedDefinitionOfFormEngineSuggestItem.html#breaking-98455-changed-definition-of-formengine-suggest-item", + "Changelog\/12.0\/Breaking-98455-ChangedDefinitionOfFormEngineSuggestItem.html#breaking-98455-1664350742", "Breaking: #98455 - Changed definition of FormEngine suggest item" ], "breaking-98455-removed-devbridge-autocomplete": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98455-RemovedDevbridge-autocomplete.html#breaking-98455-removed-devbridge-autocomplete", + "Changelog\/12.0\/Breaking-98455-RemovedDevbridge-autocomplete.html#breaking-98455-1664349649", "Breaking: #98455 - Removed devbridge-autocomplete" ], "breaking-98479-removed-file-reference-related-functionality": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98479-RemovedFileReferenceRelatedFunctionality.html#breaking-98479-removed-file-reference-related-functionality", + "Changelog\/12.0\/Breaking-98479-RemovedFileReferenceRelatedFunctionality.html#breaking-98479-1664622195", "Breaking: #98479 - Removed file reference related functionality" ], "breaking-98480-tca-table-sys-template-is-no-longer-workspace-aware": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98480-TCATableSys_templateIsNoLongerWorkspaceAware.html#breaking-98480-tca-table-sys-template-is-no-longer-workspace-aware", + "Changelog\/12.0\/Breaking-98480-TCATableSys_templateIsNoLongerWorkspaceAware.html#breaking-98480-1664546652", "Breaking: #98480 - TCA table \"sys_template\" is no longer workspace aware" ], "breaking-98487-globals-pages-types-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98487-GLOBALSPAGES_TYPESRemoved.html#breaking-98487-globals-pages-types-removed", + "Changelog\/12.0\/Breaking-98487-GLOBALSPAGES_TYPESRemoved.html#breaking-98487-1664575125", "Breaking: #98487 - $GLOBALS['PAGES_TYPES'] removed" ], "breaking-98488-typolink-option-addquerystring-only-includes-resolved-query-arguments": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98488-TypolinkOptionAddQueryStringOnlyIncludesResolvedQueryArguments.html#breaking-98488-typolink-option-addquerystring-only-includes-resolved-query-arguments", + "Changelog\/12.0\/Breaking-98488-TypolinkOptionAddQueryStringOnlyIncludesResolvedQueryArguments.html#breaking-98488-1664578695", "Breaking: #98488 - Typolink option \"addQueryString\" only includes resolved query arguments" ], "breaking-98489-removal-of-sleeptask-and-testtask": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98489-RemovalOfSleepTaskAndTestTask.html#breaking-98489-removal-of-sleeptask-and-testtask", + "Changelog\/12.0\/Breaking-98489-RemovalOfSleepTaskAndTestTask.html#breaking-98489-1664577935", "Breaking: #98489 - Removal of SleepTask and TestTask" ], "breaking-98490-various-hooks-and-methods-changed-in-databaserecordlist": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Breaking-98490-VariousHooksAndMethodsChangedInDatabaseRecordList.html#breaking-98490-various-hooks-and-methods-changed-in-databaserecordlist", + "Changelog\/12.0\/Breaking-98490-VariousHooksAndMethodsChangedInDatabaseRecordList.html#breaking-98490-1664580829", "Breaking: #98490 - Various hooks and methods changed in DatabaseRecordList" ], "deprecation-87616-unused-interface-for-typolinkmodifylinkconfigforpagelinkshook": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-87616-UnusedInterfaceForTypolinkModifyLinkConfigForPageLinksHook.html#deprecation-87616-unused-interface-for-typolinkmodifylinkconfigforpagelinkshook", + "Changelog\/12.0\/Deprecation-87616-UnusedInterfaceForTypolinkModifyLinkConfigForPageLinksHook.html#deprecation-87616", "Deprecation: #87616 - Unused Interface for TypolinkModifyLinkConfigForPageLinksHook" ], "deprecation-92508-unused-interface-for-filtermenupages-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-92508-UnusedInterfaceForFilterMenuPagesHook.html#deprecation-92508-unused-interface-for-filtermenupages-hook", + "Changelog\/12.0\/Deprecation-92508-UnusedInterfaceForFilterMenuPagesHook.html#deprecation-92508", "Deprecation: #92508 - Unused Interface for filterMenuPages hook" ], "deprecation-94117-register-extbase-type-converters-as-services": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-94117-RegisterExtbaseTypeConvertersAsServices.html#deprecation-94117-register-extbase-type-converters-as-services", + "Changelog\/12.0\/Deprecation-94117-RegisterExtbaseTypeConvertersAsServices.html#deprecation-94117", "Deprecation: #94117 - Register extbase type converters as services" ], "deprecation-95456-deprecate-legacy-form-templates": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-95456-IntroduceBootstrap5CompatibleAndAccessibleTemplates.html#deprecation-95456-deprecate-legacy-form-templates", + "Changelog\/12.0\/Deprecation-95456-IntroduceBootstrap5CompatibleAndAccessibleTemplates.html#deprecation-95456", "Deprecation: #95456 - Deprecate legacy form templates" ], "deprecation-96136-deprecate-inline-javascript-in-backend-update-signals": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-96136-DeprecateInlineJavaScriptInBackendUpdateSignals.html#deprecation-96136-deprecate-inline-javascript-in-backend-update-signals", + "Changelog\/12.0\/Deprecation-96136-DeprecateInlineJavaScriptInBackendUpdateSignals.html#deprecation-96136", "Deprecation: #96136 - Deprecate inline JavaScript in backend update signals" ], "backendutility-getupdatesignalcode": [ @@ -46303,355 +46435,355 @@ "deprecation-96444-authmode-select-items-keywords-moved-to-index-5": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-96444-AuthModeSelectItemsKeywordsMovedToIndex5.html#deprecation-96444-authmode-select-items-keywords-moved-to-index-5", + "Changelog\/12.0\/Deprecation-96444-AuthModeSelectItemsKeywordsMovedToIndex5.html#deprecation-96444", "Deprecation: #96444 - authMode select items keywords moved to index 5" ], "deprecation-96500-contentobjectrenderer-getmailto": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-96500-ContentObjectRenderer-getMailTo.html#deprecation-96500-contentobjectrenderer-getmailto", + "Changelog\/12.0\/Deprecation-96500-ContentObjectRenderer-getMailTo.html#deprecation-96500", "Deprecation: #96500 - ContentObjectRenderer->getMailTo" ], "deprecation-96524-deprecate-inline-javascript-in-dashboard": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-96524-DeprecateInlineJavaScriptInDashboard.html#deprecation-96524-deprecate-inline-javascript-in-dashboard", + "Changelog\/12.0\/Deprecation-96524-DeprecateInlineJavaScriptInDashboard.html#deprecation-96524", "Deprecation: #96524 - Deprecate inline JavaScript in Dashboard" ], "deprecation-96568-requirejs-modules-in-form-framework": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-96568-RequireJSModulesInFormFramework.html#deprecation-96568-requirejs-modules-in-form-framework", + "Changelog\/12.0\/Deprecation-96568-RequireJSModulesInFormFramework.html#deprecation-96568", "Deprecation: #96568 - RequireJS modules in Form Framework" ], "deprecation-96641-link-related-functionality-in-contentobjectrenderer": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-96641-LinkRelatedFunctionalityInContentObjectRenderer.html#deprecation-96641-link-related-functionality-in-contentobjectrenderer", + "Changelog\/12.0\/Deprecation-96641-LinkRelatedFunctionalityInContentObjectRenderer.html#deprecation-96641-2", "Deprecation: #96641 - Link-related functionality in ContentObjectRenderer" ], "deprecation-96641-unused-hook-related-urlprocessorinterface": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-96641-UnusedHookRelatedUrlProcessorInterface.html#deprecation-96641-unused-hook-related-urlprocessorinterface", + "Changelog\/12.0\/Deprecation-96641-UnusedHookRelatedUrlProcessorInterface.html#deprecation-96641-1", "Deprecation: #96641 - Unused Hook related UrlProcessorInterface" ], "deprecation-96733-deprecated-tbe-modules-related-functionality": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-96733-DeprecatedTBE_MODULESRelatedFunctionality.html#deprecation-96733-deprecated-tbe-modules-related-functionality", + "Changelog\/12.0\/Deprecation-96733-DeprecatedTBE_MODULESRelatedFunctionality.html#deprecation-96733", "Deprecation: #96733 - Deprecated TBE_MODULES related functionality" ], "deprecation-96903-deprecate-old-moduletemplate-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-96903-DeprecateOldModuleTemplateAPI.html#deprecation-96903-deprecate-old-moduletemplate-api", + "Changelog\/12.0\/Deprecation-96903-DeprecateOldModuleTemplateAPI.html#deprecation-96903", "Deprecation: #96903 - Deprecate old ModuleTemplate API" ], "deprecation-96972-deprecate-querybuilder-execute": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-96972-DeprecateQueryBuilderexecute.html#deprecation-96972-deprecate-querybuilder-execute", + "Changelog\/12.0\/Deprecation-96972-DeprecateQueryBuilderexecute.html#deprecation-96972", "Deprecation: #96972 - Deprecate QueryBuilder::execute()" ], "deprecation-96983-tca-internal-type": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-96983-TCAInternal_type.html#deprecation-96983-tca-internal-type", + "Changelog\/12.0\/Deprecation-96983-TCAInternal_type.html#deprecation-96983", "Deprecation: #96983 - TCA internal_type" ], "deprecation-96996-deprecate-typoscriptfrontendcontroller-checkenablefields": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-96996-DeprecateTypoScriptFrontendController-checkEnableFields.html#deprecation-96996-deprecate-typoscriptfrontendcontroller-checkenablefields", + "Changelog\/12.0\/Deprecation-96996-DeprecateTypoScriptFrontendController-checkEnableFields.html#deprecation-96996", "Deprecation: #96996 - Deprecate TypoScriptFrontendController->checkEnableFields" ], "deprecation-97016-deprecate-usage-of-regularexpressionvalidator-in-form-editor": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-97016-DeprecateUsageOfRegularExpressionValidatorInFormEditor.html#deprecation-97016-deprecate-usage-of-regularexpressionvalidator-in-form-editor", + "Changelog\/12.0\/Deprecation-97016-DeprecateUsageOfRegularExpressionValidatorInFormEditor.html#deprecation-97016", "Deprecation: #97016 - Deprecate usage of RegularExpressionValidator in form editor" ], "deprecation-97019-deprecate-order-of-validation-message": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-97019-DeprecateOrderOfValidationMessage.html#deprecation-97019-deprecate-order-of-validation-message", + "Changelog\/12.0\/Deprecation-97019-DeprecateOrderOfValidationMessage.html#deprecation-97019", "Deprecation: #97019 - Deprecate order of validation message" ], "deprecation-97027-contentobjectrenderer-gettreelist": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-97027-ContentObjectRenderer-getTreeList.html#deprecation-97027-contentobjectrenderer-gettreelist", + "Changelog\/12.0\/Deprecation-97027-ContentObjectRenderer-getTreeList.html#deprecation-97027", "Deprecation: #97027 - ContentObjectRenderer->getTreeList()" ], "deprecation-97035-required-option-in-eval-keyword": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-97035-RequiredOptionInEvalKeyword.html#deprecation-97035-required-option-in-eval-keyword", + "Changelog\/12.0\/Deprecation-97035-RequiredOptionInEvalKeyword.html#deprecation-97035", "Deprecation: #97035 - \"required\" option in \"eval\" keyword" ], "deprecation-97057-deprecate-requirejs-support": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-97057-DeprecateRequireJSSupport.html#deprecation-97057-deprecate-requirejs-support", + "Changelog\/12.0\/Deprecation-97057-DeprecateRequireJSSupport.html#deprecation-97057-1664653704", "Deprecation: #97057 - Deprecate RequireJS support" ], "deprecation-97109-tca-type-none-cols-option": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-97109-TCATypeNoneColsOption.html#deprecation-97109-tca-type-none-cols-option", + "Changelog\/12.0\/Deprecation-97109-TCATypeNoneColsOption.html#deprecation-97109", "Deprecation: #97109 - TCA type none \"cols\" option" ], "deprecation-97126-tceforms-removed-in-flexform": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-97126-TCEformsRemovedInFlexForm.html#deprecation-97126-tceforms-removed-in-flexform", + "Changelog\/12.0\/Deprecation-97126-TCEformsRemovedInFlexForm.html#deprecation-97126", "Deprecation: #97126 - TCEforms removed in FlexForm" ], "deprecation-97201-unused-interface-for-new-content-element-wizard-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-97201-UnusedInterfaceForNewContentElementWizardHook.html#deprecation-97201-unused-interface-for-new-content-element-wizard-hook", + "Changelog\/12.0\/Deprecation-97201-UnusedInterfaceForNewContentElementWizardHook.html#deprecation-97201", "Deprecation: #97201 - Unused Interface for new content element wizard hook" ], "deprecation-97217-moved-typolinkcodecservice-to-ext-core": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-97217-MovedTypoLinkCodecServiceToEXTcore.html#deprecation-97217-moved-typolinkcodecservice-to-ext-core", + "Changelog\/12.0\/Deprecation-97217-MovedTypoLinkCodecServiceToEXTcore.html#deprecation-97217", "Deprecation: #97217 - Moved TypoLinkCodecService to EXT:core" ], "deprecation-97231-unused-interface-for-inline-element-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-97231-UnusedInterfaceForInlineElementHook.html#deprecation-97231-unused-interface-for-inline-element-hook", + "Changelog\/12.0\/Deprecation-97231-UnusedInterfaceForInlineElementHook.html#deprecation-97231", "Deprecation: #97231 - Unused Interface for inline element hook" ], "deprecation-97244-compositeexpression-methods-add-and-addmultiple": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-97244-CompositeExpressionMethodsAddAndAddMultiple.html#deprecation-97244-compositeexpression-methods-add-and-addmultiple", + "Changelog\/12.0\/Deprecation-97244-CompositeExpressionMethodsAddAndAddMultiple.html#deprecation-97244-2", "Deprecation: #97244 - CompositeExpression methods 'add()' and 'addMultiple()'" ], "deprecation-97244-direct-instantiation-of-compositeexpression": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-97244-DirectInstantiationOfCompositeExpression.html#deprecation-97244-direct-instantiation-of-compositeexpression", + "Changelog\/12.0\/Deprecation-97244-DirectInstantiationOfCompositeExpression.html#deprecation-97244-1", "Deprecation: #97244 - Direct instantiation of CompositeExpression" ], "deprecation-97271-global-color-picker-initialization": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-97271-GlobalColorPickerInitialization.html#deprecation-97271-global-color-picker-initialization", + "Changelog\/12.0\/Deprecation-97271-GlobalColorPickerInitialization.html#deprecation-97271", "Deprecation: #97271 - Global Color Picker initialization" ], "deprecation-97312-deprecate-csh-related-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-97312-DeprecateCSH-relatedMethods.html#deprecation-97312-deprecate-csh-related-methods", + "Changelog\/12.0\/Deprecation-97312-DeprecateCSH-relatedMethods.html#deprecation-97312", "Deprecation: #97312 - Deprecate CSH-related methods" ], "deprecation-97354-expressionbuilder-methods-andx-and-orx": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-97354-ExpressionBuilderMethodsAndXAndOrX.html#deprecation-97354-expressionbuilder-methods-andx-and-orx", + "Changelog\/12.0\/Deprecation-97354-ExpressionBuilderMethodsAndXAndOrX.html#deprecation-97354", "Deprecation: #97354 - ExpressionBuilder methods andX() and orX()" ], "deprecation-97384-tca-option-eval-null-replaced-with-nullable": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-97384-TCAOptionNullable.html#deprecation-97384-tca-option-eval-null-replaced-with-nullable", + "Changelog\/12.0\/Deprecation-97384-TCAOptionNullable.html#deprecation-97384", "Deprecation: #97384 - TCA option \"eval=null\" replaced with \"nullable\"" ], "deprecation-97435-usage-of-sitelanguageawaretrait-to-denote-site-language-awareness": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-97435-UsageOfSiteLanguageAwareTraitToDenoteSiteLanguageAwareness.html#deprecation-97435-usage-of-sitelanguageawaretrait-to-denote-site-language-awareness", + "Changelog\/12.0\/Deprecation-97435-UsageOfSiteLanguageAwareTraitToDenoteSiteLanguageAwareness.html#deprecation-97435", "Deprecation: #97435 - Usage of SiteLanguageAwareTrait to denote site language awareness" ], "deprecation-97531-context-related-methods-within-typoscriptfrontendcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-97531-ContextRelatedMethodsWithinTSFE.html#deprecation-97531-context-related-methods-within-typoscriptfrontendcontroller", + "Changelog\/12.0\/Deprecation-97531-ContextRelatedMethodsWithinTSFE.html#deprecation-97531", "Deprecation: #97531 - Context-related methods within TypoScriptFrontendController" ], "deprecation-97544-preview-uri-generation-related-functionality-in-backendutility": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-97544-PreviewURIGenerationRelatedFunctionalityInBackendUtility.html#deprecation-97544-preview-uri-generation-related-functionality-in-backendutility", + "Changelog\/12.0\/Deprecation-97544-PreviewURIGenerationRelatedFunctionalityInBackendUtility.html#deprecation-97544", "Deprecation: #97544 - Preview URI Generation related functionality in BackendUtility" ], "deprecation-97549-contentobjectrenderer-lasttypolink-properties": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-97549-ContentObjectRenderer-lastTypoLinkProperties.html#deprecation-97549-contentobjectrenderer-lasttypolink-properties", + "Changelog\/12.0\/Deprecation-97549-ContentObjectRenderer-lastTypoLinkProperties.html#deprecation-97549-1651696509", "Deprecation: #97549 - ContentObjectRenderer->lastTypoLink* properties" ], "deprecation-97576-typo3-cms-core-utility-resourceutility": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-97576-TYPO3CMSCoreUtilityResourceUtility.html#deprecation-97576-typo3-cms-core-utility-resourceutility", + "Changelog\/12.0\/Deprecation-97576-TYPO3CMSCoreUtilityResourceUtility.html#deprecation-97576-1651949640", "Deprecation: #97576 - TYPO3\\CMS\\Core\\Utility\\ResourceUtility" ], "deprecation-97787-severities-of-flash-messages-and-reports-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-97787-SeveritiesOfFlashMessagesAndReportsDeprecated.html#deprecation-97787-severities-of-flash-messages-and-reports-deprecated", + "Changelog\/12.0\/Deprecation-97787-SeveritiesOfFlashMessagesAndReportsDeprecated.html#deprecation-97787-1655495192", "Deprecation: #97787 - Severities of flash messages and reports deprecated" ], "deprecation-97866-various-public-tsfe-properties": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-97866-VariousPublicTSFEProperties.html#deprecation-97866-various-public-tsfe-properties", + "Changelog\/12.0\/Deprecation-97866-VariousPublicTSFEProperties.html#deprecation-97866-1657185866", "Deprecation: #97866 - Various public TSFE properties" ], "deprecation-98168-binding-context-menu-item-to-this": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-98168-BindingContextMenuItemToThis.html#deprecation-98168-binding-context-menu-item-to-this", + "Changelog\/12.0\/Deprecation-98168-BindingContextMenuItemToThis.html#deprecation-98168-1660890228", "Deprecation: #98168 - Binding context menu item to this" ], "deprecation-98283-php-constant-typo3-maindir": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-98283-PHPConstantTYPO3_mainDir.html#deprecation-98283-php-constant-typo3-maindir", + "Changelog\/12.0\/Deprecation-98283-PHPConstantTYPO3_mainDir.html#deprecation-98283-1662557018", "Deprecation: #98283 - PHP Constant TYPO3_mainDir" ], "deprecation-98303-interfaces-for-pagerepository-language-overlay-hooks": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-98303-InterfacesForPageRepositoryLanguageOverlayHooks.html#deprecation-98303-interfaces-for-pagerepository-language-overlay-hooks", + "Changelog\/12.0\/Deprecation-98303-InterfacesForPageRepositoryLanguageOverlayHooks.html#deprecation-98303-1662659648", "Deprecation: #98303 - Interfaces for PageRepository language overlay hooks" ], "deprecation-98371-deprecated-fluid-getters": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-98371-DeprecatedFluidGetters.html#deprecation-98371-deprecated-fluid-getters", + "Changelog\/12.0\/Deprecation-98371-DeprecatedFluidGetters.html#deprecation-98371-1663524265", "Deprecation: #98371 - Deprecated Fluid getters" ], "deprecation-98431-replace-requirejsmodules-in-formengine-resultarray": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-98431-ReplaceRequireJsModulesInFormEngineResultArray.html#deprecation-98431-replace-requirejsmodules-in-formengine-resultarray", + "Changelog\/12.0\/Deprecation-98431-ReplaceRequireJsModulesInFormEngineResultArray.html#deprecation-98431-1664652773", "Deprecation: #98431 - Replace requireJsModules in FormEngine resultArray" ], "deprecation-98479-deprecated-file-reference-related-functionality": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-98479-DeprecatedFileReferenceRelatedFunctionality.html#deprecation-98479-deprecated-file-reference-related-functionality", + "Changelog\/12.0\/Deprecation-98479-DeprecatedFileReferenceRelatedFunctionality.html#deprecation-98479-1664622350", "Deprecation: #98479 - Deprecated file reference related functionality" ], "deprecation-98487-extensionmanagementutility-allowtableonstandardpages": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-98487-ExtensionManagementUtilityallowTableOnStandardPages.html#deprecation-98487-extensionmanagementutility-allowtableonstandardpages", + "Changelog\/12.0\/Deprecation-98487-ExtensionManagementUtilityallowTableOnStandardPages.html#deprecation-98487-1664575576", "Deprecation: #98487 - ExtensionManagementUtility::allowTableOnStandardPages" ], "deprecation-98488-contentobjectrenderer-getqueryarguments": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Deprecation-98488-ContentObjectRenderer-getQueryArguments.html#deprecation-98488-contentobjectrenderer-getqueryarguments", + "Changelog\/12.0\/Deprecation-98488-ContentObjectRenderer-getQueryArguments.html#deprecation-98488-1664576976", "Deprecation: #98488 - ContentObjectRenderer->getQueryArguments" ], "feature-82809-make-extensionutility-registerplugin-method-return-plugin-signature": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-82809-MakeExtensionUtilityregisterPluginMethodReturnPluginSignature.html#feature-82809-make-extensionutility-registerplugin-method-return-plugin-signature", + "Changelog\/12.0\/Feature-82809-MakeExtensionUtilityregisterPluginMethodReturnPluginSignature.html#feature-82809", "Feature: #82809 - Make ExtensionUtility::registerPlugin method return plugin signature." ], "feature-83912-specify-section-in-redirect-finisher": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-83912-SpecifySectionRedirectFinisher.html#feature-83912-specify-section-in-redirect-finisher", + "Changelog\/12.0\/Feature-83912-SpecifySectionRedirectFinisher.html#feature-83912", "Feature: #83912 - Specify Section in Redirect Finisher" ], "feature-87616-psr-14-event-for-modifying-page-link-generation": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-87616-PSR-14EventForModifyingPageLinkGeneration.html#feature-87616-psr-14-event-for-modifying-page-link-generation", + "Changelog\/12.0\/Feature-87616-PSR-14EventForModifyingPageLinkGeneration.html#feature-87616", "Feature: #87616 - PSR-14 event for modifying Page Link Generation" ], "feature-89917-copy-page-access-settings-from-parent": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-89917-InheritPageAccess.html#feature-89917-copy-page-access-settings-from-parent", + "Changelog\/12.0\/Feature-89917-InheritPageAccess.html#feature-89917", "Feature: #89917 - Copy page access settings from parent" ], "feature-90919-skip-translation-of-overridden-form-finisher-options": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-90919-SkipTranslationOfOverriddenFormFinisherOptions.html#feature-90919-skip-translation-of-overridden-form-finisher-options", + "Changelog\/12.0\/Feature-90919-SkipTranslationOfOverriddenFormFinisherOptions.html#feature-90919", "Feature: #90919 - Skip translation of overridden form finisher options" ], "feature-90994-mark-current-page-in-fluid-styled-content-menu-content-elements": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-90994-MarkCurrentPageInFluid_styled_contentMenuContentElements.html#feature-90994-mark-current-page-in-fluid-styled-content-menu-content-elements", + "Changelog\/12.0\/Feature-90994-MarkCurrentPageInFluid_styled_contentMenuContentElements.html#feature-90994", "Feature: #90994 - Mark current page in fluid_styled_content menu content elements" ], "feature-91077-element-browser-entry-points-for-tca-types-group-and-folder": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-91077-ElementBrowserEntryPointsForTCATypeGroup.html#feature-91077-element-browser-entry-points-for-tca-types-group-and-folder", + "Changelog\/12.0\/Feature-91077-ElementBrowserEntryPointsForTCATypeGroup.html#feature-91077", "Feature: #91077 - Element browser entry points for TCA types \"group\" and \"folder\"" ], "feature-91082-add-new-option-show-scheduled-records-to-admin-panel": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-91082-AddNewOptionShowScheduledRecordsToAdminPanel.html#feature-91082-add-new-option-show-scheduled-records-to-admin-panel", + "Changelog\/12.0\/Feature-91082-AddNewOptionShowScheduledRecordsToAdminPanel.html#feature-91082", "Feature: #91082 - Add new option \"show scheduled records\" to admin panel" ], "feature-91715-add-multiple-has-identifier-methods-to-typo3-cms-core-page-assetcollector": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-91715-AddMultipleHasidentifierMethodsToTYPO3CMSCorePageAssetCollector.html#feature-91715-add-multiple-has-identifier-methods-to-typo3-cms-core-page-assetcollector", + "Changelog\/12.0\/Feature-91715-AddMultipleHasidentifierMethodsToTYPO3CMSCorePageAssetCollector.html#feature-91715", "Feature: #91715 - Add multiple has($identifier) methods to \\TYPO3\\CMS\\Core\\Page\\AssetCollector" ], "feature-92508-psr-14-event-for-modifying-menu-items": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-92508-PSR-14EventForModifyingMenuItems.html#feature-92508-psr-14-event-for-modifying-menu-items", + "Changelog\/12.0\/Feature-92508-PSR-14EventForModifyingMenuItems.html#feature-92508", "Feature: #92508 - PSR-14 event for modifying menu items" ], "feature-92749-improve-content-object-initialization-in-htmlviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-92749-ImproveContentObjectInitializationInHtmlViewHelper.html#feature-92749-improve-content-object-initialization-in-htmlviewhelper", + "Changelog\/12.0\/Feature-92749-ImproveContentObjectInitializationInHtmlViewHelper.html#feature-92749", "Feature: #92749 - Improve content object initialization in HtmlViewHelper" ], "feature-92861-introduce-tca-option-min": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-92861-IntroduceTCAOptionMin.html#feature-92861-introduce-tca-option-min", + "Changelog\/12.0\/Feature-92861-IntroduceTCAOptionMin.html#feature-92861", "Feature: #92861 - Introduce TCA option \"min\"" ], "feature-93494-new-psr-14-modifyqueryforlivesearchevent": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-93494-NewPSR-14ModifyQueryForLiveSearchEvent.html#feature-93494-new-psr-14-modifyqueryforlivesearchevent", + "Changelog\/12.0\/Feature-93494-NewPSR-14ModifyQueryForLiveSearchEvent.html#feature-93494", "Feature: #93494 - New PSR-14 ModifyQueryForLiveSearchEvent" ], "feature-93689-psr-14-events-on-sending-messages-with-mailer": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-93689-PSR-14EventsOnSendingMessagesWithMailer.html#feature-93689-psr-14-events-on-sending-messages-with-mailer", + "Changelog\/12.0\/Feature-93689-PSR-14EventsOnSendingMessagesWithMailer.html#feature-93689-1654629861", "Feature: #93689 - PSR-14 events on sending messages with Mailer" ], "feature-94117-improve-extbase-type-converter-registration": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-94117-ImproveExtbaseTypeConverterRegistration.html#feature-94117-improve-extbase-type-converter-registration", + "Changelog\/12.0\/Feature-94117-ImproveExtbaseTypeConverterRegistration.html#feature-94117", "Feature: #94117 - Improve Extbase type converter registration" ], "feature-94544-add-new-smtp-configuration-settings": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-94544-AddNewSMTPConfigurationSettings.html#feature-94544-add-new-smtp-configuration-settings", + "Changelog\/12.0\/Feature-94544-AddNewSMTPConfigurationSettings.html#feature-94544", "Feature: #94544 - Add new SMTP configuration settings" ], "feature-94625-introduce-sliding-window-pagination": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-94625-IntroduceSlidingWindowPagination.html#feature-94625-introduce-sliding-window-pagination", + "Changelog\/12.0\/Feature-94625-IntroduceSlidingWindowPagination.html#feature-94625", "Feature: #94625 - Introduce sliding window pagination" ], "credits": [ @@ -46663,79 +46795,79 @@ "feature-95486-add-accept-argument-for-uploadviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-95486-AddAcceptArgument.html#feature-95486-add-accept-argument-for-uploadviewhelper", + "Changelog\/12.0\/Feature-95486-AddAcceptArgument.html#feature-95486", "Feature: #95486 - Add accept argument for UploadViewHelper" ], "feature-96041-improve-backend-toolbar-registration": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96041-ImproveBackendToolbarRegistration.html#feature-96041-improve-backend-toolbar-registration", + "Changelog\/12.0\/Feature-96041-ImproveBackendToolbarRegistration.html#feature-96041", "Feature: #96041 - Improve Backend toolbar registration" ], "feature-96147-new-psr-14-redirectwashitevent": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96147-NewPSR-14RedirectWasHitEvent.html#feature-96147-new-psr-14-redirectwashitevent", + "Changelog\/12.0\/Feature-96147-NewPSR-14RedirectWasHitEvent.html#feature-96147", "Feature: #96147 - New PSR-14 RedirectWasHitEvent" ], "feature-96152-backend-toolbar-items-overview-in-configuration-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96152-BackendToolbarItemsOverviewInConfigurationModule.html#feature-96152-backend-toolbar-items-overview-in-configuration-module", + "Changelog\/12.0\/Feature-96152-BackendToolbarItemsOverviewInConfigurationModule.html#feature-96152", "Feature: #96152 - Backend Toolbar items overview in configuration module" ], "feature-96333-improve-contextmenu-item-provider-registration": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96333-ImproveContextMenuItemProviderRegistration.html#feature-96333-improve-contextmenu-item-provider-registration", + "Changelog\/12.0\/Feature-96333-ImproveContextMenuItemProviderRegistration.html#feature-96333", "Feature: #96333 - Improve ContextMenu item provider registration" ], "feature-96465-new-linkvalidator-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96465-NewLinkvalidatorModule.html#feature-96465-new-linkvalidator-module", + "Changelog\/12.0\/Feature-96465-NewLinkvalidatorModule.html#feature-96465", "Feature: #96465 - New Linkvalidator module" ], "feature-96510-infrastructure-for-javascript-modules-and-importmaps": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96510-InfrastructureForJavaScriptModulesAndImportmaps.html#feature-96510-infrastructure-for-javascript-modules-and-importmaps", + "Changelog\/12.0\/Feature-96510-InfrastructureForJavaScriptModulesAndImportmaps.html#feature-96510", "Feature: #96510 - Infrastructure for JavaScript modules and importmaps" ], "feature-96515-aliases-for-backend-routes-and-backend-modules": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96515-AliasesForBackendRoutesAndBackendModules.html#feature-96515-aliases-for-backend-routes-and-backend-modules", + "Changelog\/12.0\/Feature-96515-AliasesForBackendRoutesAndBackendModules.html#feature-96515-1657733886", "Feature: #96515 - Aliases for Backend Routes and Backend Modules" ], "feature-96526-psr-14-event-for-modifying-page-module-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96526-PSR-14EventForModifyingPageModuleContent.html#feature-96526-psr-14-event-for-modifying-page-module-content", + "Changelog\/12.0\/Feature-96526-PSR-14EventForModifyingPageModuleContent.html#feature-96526", "Feature: #96526 - PSR-14 event for modifying page module content" ], "feature-96614-automatic-inclusion-of-page-tsconfig-of-extensions": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96614-AutomaticInclusionOfPageTsConfigOfExtensions.html#feature-96614-automatic-inclusion-of-page-tsconfig-of-extensions", + "Changelog\/12.0\/Feature-96614-AutomaticInclusionOfPageTsConfigOfExtensions.html#feature-96614", "Feature: #96614 - Automatic inclusion of page TSconfig of extensions" ], "feature-96641-new-psr-14-event-for-modifying-links": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96641-NewPSR-14EventForModifyingLinks.html#feature-96641-new-psr-14-event-for-modifying-links", + "Changelog\/12.0\/Feature-96641-NewPSR-14EventForModifyingLinks.html#feature-96641", "Feature: #96641 - New PSR-14 event for modifying links" ], "feature-96659-contentobject-registration-via-service-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96659-ContentObjectRegistrationViaServiceConfiguration.html#feature-96659-contentobject-registration-via-service-configuration", + "Changelog\/12.0\/Feature-96659-ContentObjectRegistrationViaServiceConfiguration.html#feature-96659", "Feature: #96659 - ContentObject Registration via service configuration" ], "feature-96688-attributes-for-extbase-annotations": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96688-AttributesForExtbaseAnnotations.html#feature-96688-attributes-for-extbase-annotations", + "Changelog\/12.0\/Feature-96688-AttributesForExtbaseAnnotations.html#feature-96688", "Feature: #96688 - Attributes for Extbase Annotations" ], "transient-lazy": [ @@ -46759,13 +46891,13 @@ "feature-96730-simplified-ext-backend-moduletemplate-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96730-SimplifiedExtbackendModuleTemplateAPI.html#feature-96730-simplified-ext-backend-moduletemplate-api", + "Changelog\/12.0\/Feature-96730-SimplifiedExtbackendModuleTemplateAPI.html#feature-96730", "Feature: #96730 - Simplified ext:backend ModuleTemplate API" ], "feature-96733-new-backend-module-registration-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96733-NewBackendModuleRegistrationAPI.html#feature-96733-new-backend-module-registration-api", + "Changelog\/12.0\/Feature-96733-NewBackendModuleRegistrationAPI.html#feature-96733", "Feature: #96733 - New backend module registration API" ], "module-configuration-options": [ @@ -46813,19 +46945,19 @@ "feature-96800-add-sitelanguageprocessor": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96800-AddSiteLanguageProcessor.html#feature-96800-add-sitelanguageprocessor", + "Changelog\/12.0\/Feature-96800-AddSiteLanguageProcessor.html#feature-96800", "Feature: #96800 - Add SiteLanguageProcessor" ], "feature-96806-psr-14-event-for-modifying-button-bar": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96806-PSR-14EventForModifyingButtonBar.html#feature-96806-psr-14-event-for-modifying-button-bar", + "Changelog\/12.0\/Feature-96806-PSR-14EventForModifyingButtonBar.html#feature-96806", "Feature: #96806 - PSR-14 event for modifying button bar" ], "feature-96812-override-backend-templates-with-tsconfig": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96812-OverrideBackendTemplatesWithTSconfig.html#feature-96812-override-backend-templates-with-tsconfig", + "Changelog\/12.0\/Feature-96812-OverrideBackendTemplatesWithTSconfig.html#feature-96812", "Feature: #96812 - Override backend templates with TSconfig" ], "introduction": [ @@ -46849,7 +46981,7 @@ "feature-96874-ckeditor-5": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96874-CKEditor5.html#feature-96874-ckeditor-5", + "Changelog\/12.0\/Feature-96874-CKEditor5.html#feature-96874-1664488673", "Feature: #96874 - CKEditor 5" ], "css-styling": [ @@ -46867,103 +46999,103 @@ "feature-96879-new-psr-14-event-modifycachelifetimeforpageevent": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96879-NewPSR-14EventModifyCacheLifetimeForPageEvent.html#feature-96879-new-psr-14-event-modifycachelifetimeforpageevent", + "Changelog\/12.0\/Feature-96879-NewPSR-14EventModifyCacheLifetimeForPageEvent.html#feature-96879-1663513042", "Feature: #96879 - New PSR-14 event ModifyCacheLifetimeForPageEvent" ], "feature-96895-introduce-module-data-object": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96895-IntroduceModuleDataObject.html#feature-96895-introduce-module-data-object", + "Changelog\/12.0\/Feature-96895-IntroduceModuleDataObject.html#feature-96895", "Feature: #96895 - Introduce Module data object" ], "feature-96899-new-psr-14-event-modifygenericbackendmessagesevent": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96899-NewPSR-14EventModifyGenericBackendMessagesEvent.html#feature-96899-new-psr-14-event-modifygenericbackendmessagesevent", + "Changelog\/12.0\/Feature-96899-NewPSR-14EventModifyGenericBackendMessagesEvent.html#feature-96899", "Feature: #96899 - New PSR-14 event: ModifyGenericBackendMessagesEvent" ], "feature-96904-backend-toolbar-items-are-request-aware": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96904-BackendToolbarItemsAreRequestAware.html#feature-96904-backend-toolbar-items-are-request-aware", + "Changelog\/12.0\/Feature-96904-BackendToolbarItemsAreRequestAware.html#feature-96904", "Feature: #96904 - Backend toolbar items are request aware" ], "feature-96935-new-registration-for-linkvalidator-linktype": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96935-NewRegistrationForLinkvalidatorLinktype.html#feature-96935-new-registration-for-linkvalidator-linktype", + "Changelog\/12.0\/Feature-96935-NewRegistrationForLinkvalidatorLinktype.html#feature-96935", "Feature: #96935 - New registration for linkvalidator linktype" ], "feature-96961-backend-routes-contain-composer-package-name": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96961-BackendRoutesContainComposerPackageName.html#feature-96961-backend-routes-contain-composer-package-name", + "Changelog\/12.0\/Feature-96961-BackendRoutesContainComposerPackageName.html#feature-96961", "Feature: #96961 - Backend routes contain Composer package name" ], "feature-96968-psr-14-event-for-avoid-loading-frontend-pages-from-cache": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96968-PSR-14EventForAvoidLoadingFrontendPagesFromCache.html#feature-96968-psr-14-event-for-avoid-loading-frontend-pages-from-cache", + "Changelog\/12.0\/Feature-96968-PSR-14EventForAvoidLoadingFrontendPagesFromCache.html#feature-96968-1663513232", "Feature: #96968 - PSR-14 event for avoid loading Frontend pages from cache" ], "feature-96975-new-psr-14-events-for-siteconfiguration-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96975-NewPSR-14EventsForSiteConfiguration.html#feature-96975-new-psr-14-events-for-siteconfiguration-handling", + "Changelog\/12.0\/Feature-96975-NewPSR-14EventsForSiteConfiguration.html#feature-96975", "Feature: #96975 - New PSR-14 events for SiteConfiguration Handling" ], "feature-96983-tca-type-folder": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96983-TCATypeFolder.html#feature-96983-tca-type-folder", + "Changelog\/12.0\/Feature-96983-TCATypeFolder.html#feature-96983", "Feature: #96983 - TCA type \"folder\"" ], "feature-96996-psr-14-event-for-modifying-record-access-evaluation": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-96996-PSR-14EventForModifyingRecordAccessEvaluation.html#feature-96996-psr-14-event-for-modifying-record-access-evaluation", + "Changelog\/12.0\/Feature-96996-PSR-14EventForModifyingRecordAccessEvaluation.html#feature-96996-1663513388", "Feature: #96996 - PSR-14 event for modifying record access evaluation" ], "feature-97013-new-tca-type-email": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97013-NewTCATypeEmail.html#feature-97013-new-tca-type-email", + "Changelog\/12.0\/Feature-97013-NewTCATypeEmail.html#feature-97013", "Feature: #97013 - New TCA type \"email\"" ], "feature-97035-utilize-required-directly-in-tca-field-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97035-UtilizeRequiredDirectlyInTCAFieldConfiguration.html#feature-97035-utilize-required-directly-in-tca-field-configuration", + "Changelog\/12.0\/Feature-97035-UtilizeRequiredDirectlyInTCAFieldConfiguration.html#feature-97035", "Feature: #97035 - Utilize \"required\" directly in TCA field configuration" ], "feature-97051-filter-logs-by-page-in-log-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97051-FilterLogsByPageInLogModule.html#feature-97051-filter-logs-by-page-in-log-module", + "Changelog\/12.0\/Feature-97051-FilterLogsByPageInLogModule.html#feature-97051", "Feature: #97051 - Filter logs by page in Log module" ], "feature-97096-non-namespaced-arguments-in-extbase-backend-modules": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97096-Non-namespacedArgumentsInExtbaseBackendModules.html#feature-97096-non-namespaced-arguments-in-extbase-backend-modules", + "Changelog\/12.0\/Feature-97096-Non-namespacedArgumentsInExtbaseBackendModules.html#feature-97096", "Feature: #97096 - Non-namespaced arguments in Extbase backend modules" ], "feature-97104-new-tca-type-password": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97104-NewTCATypePassword.html#feature-97104-new-tca-type-password", + "Changelog\/12.0\/Feature-97104-NewTCATypePassword.html#feature-97104", "Feature: #97104 - New TCA type \"password\"" ], "feature-97135-new-registration-for-module-functions": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97135-NewRegistrationForModuleFunctions.html#feature-97135-new-registration-for-module-functions", + "Changelog\/12.0\/Feature-97135-NewRegistrationForModuleFunctions.html#feature-97135", "Feature: #97135 - New Registration for module functions" ], "feature-97159-new-tca-type-link": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97159-NewTCATypeLink.html#feature-97159-new-tca-type-link", + "Changelog\/12.0\/Feature-97159-NewTCATypeLink.html#feature-97159", "Feature: #97159 - New TCA type \"link\"" ], "allowed-type-record": [ @@ -46975,13 +47107,13 @@ "feature-97173-auto-creation-of-database-fields-for-tca-slug": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97173-AutoCreationOfDatabaseFieldsForTCASlug.html#feature-97173-auto-creation-of-database-fields-for-tca-slug", + "Changelog\/12.0\/Feature-97173-AutoCreationOfDatabaseFieldsForTCASlug.html#feature-97173-1663950087", "Feature: #97173 - Auto creation of database fields for TCA \"slug\"" ], "feature-97174-psr-14-event-for-modifying-info-module-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97174-PSR-14EventForModifyingInfoModuleContent.html#feature-97174-psr-14-event-for-modifying-info-module-content", + "Changelog\/12.0\/Feature-97174-PSR-14EventForModifyingInfoModuleContent.html#feature-97174", "Feature: #97174 - PSR-14 event for modifying info module content" ], "access-control": [ @@ -46993,37 +47125,37 @@ "feature-97187-psr-14-event-for-modifying-link-explanation": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97187-PSR-14EventForModifyingLinkExplanation.html#feature-97187-psr-14-event-for-modifying-link-explanation", + "Changelog\/12.0\/Feature-97187-PSR-14EventForModifyingLinkExplanation.html#feature-97187", "Feature: #97187 - PSR-14 event for modifying link explanation" ], "feature-97188-new-registration-for-element-browsers": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97188-NewRegistrationForElementBrowsers.html#feature-97188-new-registration-for-element-browsers", + "Changelog\/12.0\/Feature-97188-NewRegistrationForElementBrowsers.html#feature-97188", "Feature: #97188 - New registration for element browsers" ], "feature-97193-new-tca-type-number": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97193-NewTCATypeNumber.html#feature-97193-new-tca-type-number", + "Changelog\/12.0\/Feature-97193-NewTCATypeNumber.html#feature-97193", "Feature: #97193 - New TCA type \"number\"" ], "feature-97201-psr-14-event-for-modifying-new-content-element-wizard-items": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97201-PSR-14EventForModifyingNewContentElementWizardItems.html#feature-97201-psr-14-event-for-modifying-new-content-element-wizard-items", + "Changelog\/12.0\/Feature-97201-PSR-14EventForModifyingNewContentElementWizardItems.html#feature-97201", "Feature: #97201 - PSR-14 event for modifying new content element wizard items" ], "feature-97230-psr-14-event-for-modifying-image-manipulation-preview-url": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97230-PSR-14EventForModifyingImageManipulationPreviewUrl.html#feature-97230-psr-14-event-for-modifying-image-manipulation-preview-url", + "Changelog\/12.0\/Feature-97230-PSR-14EventForModifyingImageManipulationPreviewUrl.html#feature-97230", "Feature: #97230 - PSR-14 event for modifying image manipulation preview URL" ], "feature-97231-psr-14-events-for-modifying-inline-element-controls": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97231-PSR-14EventsForModifyingInlineElementControls.html#feature-97231-psr-14-events-for-modifying-inline-element-controls", + "Changelog\/12.0\/Feature-97231-PSR-14EventsForModifyingInlineElementControls.html#feature-97231", "Feature: #97231 - PSR-14 events for modifying inline element controls" ], "available-methods": [ @@ -47035,7 +47167,7 @@ "feature-97232-new-tca-type-datetime": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97232-NewTCATypeDatetime.html#feature-97232-new-tca-type-datetime", + "Changelog\/12.0\/Feature-97232-NewTCATypeDatetime.html#feature-97232", "Feature: #97232 - New TCA type \"datetime\"" ], "automatic-database-fields": [ @@ -47047,19 +47179,19 @@ "feature-97254-add-luxembourgish-as-supported-language": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97254-AddLuxembourgishAsSupportedLanguage.html#feature-97254-add-luxembourgish-as-supported-language", + "Changelog\/12.0\/Feature-97254-AddLuxembourgishAsSupportedLanguage.html#feature-97254", "Feature: #97254 - Add Luxembourgish as supported language" ], "feature-97271-new-tca-type-color": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97271-NewTCATypeColor.html#feature-97271-new-tca-type-color", + "Changelog\/12.0\/Feature-97271-NewTCATypeColor.html#feature-97271", "Feature: #97271 - New TCA type \"color\"" ], "feature-97305-introduce-csrf-like-request-token-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97305-IntroduceCSRF-likeRequest-tokenHandling.html#feature-97305-introduce-csrf-like-request-token-handling", + "Changelog\/12.0\/Feature-97305-IntroduceCSRF-likeRequest-tokenHandling.html#feature-97305-1664099950", "Feature: #97305 - Introduce CSRF-like request-token handling" ], "1-retrieve-nonce-and-request-token-values": [ @@ -47083,13 +47215,13 @@ "feature-97306-refresh-the-look-of-page-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97306-RefreshTheLookOfPagemodule.html#feature-97306-refresh-the-look-of-page-module", + "Changelog\/12.0\/Feature-97306-RefreshTheLookOfPagemodule.html#feature-97306", "Feature: #97306 - Refresh the look of page module" ], "feature-97320-new-registration-for-reports-and-status": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97320-NewRegistrationForReportsAndStatus.html#feature-97320-new-registration-for-reports-and-status", + "Changelog\/12.0\/Feature-97320-NewRegistrationForReportsAndStatus.html#feature-97320", "Feature: #97320 - New registration for reports and status" ], "reports": [ @@ -47101,25 +47233,25 @@ "feature-97326-open-backend-page-from-admin-panel": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97326-OpenBackendPageFromAdminPanel.html#feature-97326-open-backend-page-from-admin-panel", + "Changelog\/12.0\/Feature-97326-OpenBackendPageFromAdminPanel.html#feature-97326", "Feature: #97326 - Open backend page from admin panel" ], "feature-97347-allow-keyboard-navigation-in-live-search": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97347-LiveSearchKeyboardNavigation.html#feature-97347-allow-keyboard-navigation-in-live-search", + "Changelog\/12.0\/Feature-97347-LiveSearchKeyboardNavigation.html#feature-97347", "Feature: #97347 - Allow keyboard navigation in live search" ], "feature-97384-tca-option-nullable": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97384-TCAOptionNullable.html#feature-97384-tca-option-nullable", + "Changelog\/12.0\/Feature-97384-TCAOptionNullable.html#feature-97384", "Feature: #97384 - TCA option \"nullable\"" ], "feature-97388-introduce-configurable-password-policies": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97388-ConfigurablePasswordPolicies.html#feature-97388-introduce-configurable-password-policies", + "Changelog\/12.0\/Feature-97388-ConfigurablePasswordPolicies.html#feature-97388", "Feature: #97388 - Introduce configurable password policies" ], "configuring-password-policies": [ @@ -47161,85 +47293,85 @@ "feature-97449-psr-14-events-for-modifying-flexform-parsing": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97449-PSR-14EventsForModifyingFlexFormParsing.html#feature-97449-psr-14-events-for-modifying-flexform-parsing", + "Changelog\/12.0\/Feature-97449-PSR-14EventsForModifyingFlexFormParsing.html#feature-97449", "Feature: #97449 - PSR-14 events for modifying FlexForm parsing" ], "feature-97450-psr-14-event-for-modifying-version-differences": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97450-PSR-14EventForModifyingVersionDifferences.html#feature-97450-psr-14-event-for-modifying-version-differences", + "Changelog\/12.0\/Feature-97450-PSR-14EventForModifyingVersionDifferences.html#feature-97450", "Feature: #97450 - PSR-14 event for modifying version differences" ], "feature-97451-psr-14-events-for-modifying-backend-page-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97451-PSR-14EventsForBackendPageController.html#feature-97451-psr-14-events-for-modifying-backend-page-content", + "Changelog\/12.0\/Feature-97451-PSR-14EventsForBackendPageController.html#feature-97451", "Feature: #97451 - PSR-14 events for modifying backend page content" ], "feature-97454-psr-14-events-for-modifying-link-browser-behavior": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97454-PSR14EventsForLinkBrowserLifecycle.html#feature-97454-psr-14-events-for-modifying-link-browser-behavior", + "Changelog\/12.0\/Feature-97454-PSR14EventsForLinkBrowserLifecycle.html#feature-97454-1657327622", "Feature: #97454 - PSR-14 events for modifying link browser behavior" ], "feature-97480-symfony-expression-language-providers-available-in-configuration-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97480-SymfonyExpressionLanguageProvidersAvailableInConfigurationModule.html#feature-97480-symfony-expression-language-providers-available-in-configuration-module", + "Changelog\/12.0\/Feature-97480-SymfonyExpressionLanguageProvidersAvailableInConfigurationModule.html#feature-97480", "Feature: #97480 - Symfony Expression Language providers available in configuration module" ], "feature-97544-psr-14-events-for-modifying-preview-uris": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97544-PSR-14EventsForModifyingPreviewURIs.html#feature-97544-psr-14-events-for-modifying-preview-uris", + "Changelog\/12.0\/Feature-97544-PSR-14EventsForModifyingPreviewURIs.html#feature-97544", "Feature: #97544 - PSR-14 events for modifying preview URIs" ], "feature-97595-provide-default-queue-for-notifications": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97595-ProvideDefaultQueueForNotifications.html#feature-97595-provide-default-queue-for-notifications", + "Changelog\/12.0\/Feature-97595-ProvideDefaultQueueForNotifications.html#feature-97595-1652121042", "Feature: #97595 - Provide default queue for notifications" ], "feature-97653-typoscript-option-showwebsitetitle": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97653-TypoScriptOptionShowWebsiteTitle.html#feature-97653-typoscript-option-showwebsitetitle", + "Changelog\/12.0\/Feature-97653-TypoScriptOptionShowWebsiteTitle.html#feature-97653-1652873318", "Feature: #97653 - TypoScript Option \"showWebsiteTitle\"" ], "feature-97729-respect-attribute-approved-in-xlf-files": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97729-SupportAttributeApprovedInXlfFiles.html#feature-97729-respect-attribute-approved-in-xlf-files", + "Changelog\/12.0\/Feature-97729-SupportAttributeApprovedInXlfFiles.html#feature-97729-1654626734", "Feature: #97729 - Respect attribute approved in XLF files" ], "feature-97737-new-psr-14-events-when-page-rootline-in-frontend-is-resolved": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97737-PSR-14EventsWhenPageRootlineInFrontendIsResolved.html#feature-97737-new-psr-14-events-when-page-rootline-in-frontend-is-resolved", + "Changelog\/12.0\/Feature-97737-PSR-14EventsWhenPageRootlineInFrontendIsResolved.html#feature-97737-1654595148", "Feature: #97737 - New PSR-14 events when Page + Rootline in Frontend is resolved" ], "feature-97778-support-of-language-direction-in-ckeditor": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97778-SupportOfLanguageDirectionInCkeditor.html#feature-97778-support-of-language-direction-in-ckeditor", + "Changelog\/12.0\/Feature-97778-SupportOfLanguageDirectionInCkeditor.html#feature-97778-1655732248", "Feature: #97778 - Support of language direction in ckeditor" ], "feature-97787-enum-for-severities-introduced": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97787-EnumForSeveritiesIntroduced.html#feature-97787-enum-for-severities-introduced", + "Changelog\/12.0\/Feature-97787-EnumForSeveritiesIntroduced.html#feature-97787-1655495723", "Feature: #97787 - Enum for severities introduced" ], "feature-97816-new-aftertemplateshavebeendeterminedevent": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97816-NewAfterTemplatesHaveBeenDeterminedEvent.html#feature-97816-new-aftertemplateshavebeendeterminedevent", + "Changelog\/12.0\/Feature-97816-NewAfterTemplatesHaveBeenDeterminedEvent.html#feature-97816-1664801053", "Feature: #97816 - New AfterTemplatesHaveBeenDeterminedEvent" ], "feature-97816-typoscript-syntax-improvements": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97816-TypoScriptSyntaxImprovements.html#feature-97816-typoscript-syntax-improvements", + "Changelog\/12.0\/Feature-97816-TypoScriptSyntaxImprovements.html#feature-97816-1656350667", "Feature: #97816 - TypoScript syntax improvements" ], "improved-comment-parsing": [ @@ -47281,85 +47413,85 @@ "feature-97821-option-to-configure-primary-actions-in-file-list": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97821-OptionToConfigurePrimaryActionsInFileList.html#feature-97821-option-to-configure-primary-actions-in-file-list", + "Changelog\/12.0\/Feature-97821-OptionToConfigurePrimaryActionsInFileList.html#feature-97821-1662456761", "Feature: #97821 - Option to configure primary actions in File List" ], "feature-97862-new-psr-14-events-for-manipulating-frontend-page-generation-and-cache-behaviour": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97862-NewPSR-14EventsForManipulatingFrontendPageGenerationAndCacheBehaviour.html#feature-97862-new-psr-14-events-for-manipulating-frontend-page-generation-and-cache-behaviour", + "Changelog\/12.0\/Feature-97862-NewPSR-14EventsForManipulatingFrontendPageGenerationAndCacheBehaviour.html#feature-97862-1657195761", "Feature: #97862 - New PSR-14 events for manipulating frontend page generation and cache behaviour" ], "feature-97922-improve-performance-and-usability-while-editing-sys-filemounts": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97922-ImprovePerformanceAndUsabilityWhileEditingSys_filemounts.html#feature-97922-improve-performance-and-usability-while-editing-sys-filemounts", + "Changelog\/12.0\/Feature-97922-ImprovePerformanceAndUsabilityWhileEditingSys_filemounts.html#feature-97922-1657706124", "Feature: #97922 - Improve performance and usability while editing sys_filemounts" ], "feature-97926-configure-extbase-persistence-language-via-languageaspect": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97926-ConfigureExtbasePersistenceLanguageViaLanguageAspect.html#feature-97926-configure-extbase-persistence-language-via-languageaspect", + "Changelog\/12.0\/Feature-97926-ConfigureExtbasePersistenceLanguageViaLanguageAspect.html#feature-97926-1657726554", "Feature: #97926 - Configure Extbase Persistence Language via LanguageAspect" ], "feature-97941-improved-typoscript-template-analyzer": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97941-ImprovedTypoScriptTemplateAnalyzer.html#feature-97941-improved-typoscript-template-analyzer", + "Changelog\/12.0\/Feature-97941-ImprovedTypoScriptTemplateAnalyzer.html#feature-97941-1657809445", "Feature: #97941 - Improved TypoScript Template Analyzer" ], "feature-97945-psr-14-afterpagetreeitemspreparedevent": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-97945-PSR14AfterPageTreeItemsPreparedEvent.html#feature-97945-psr-14-afterpagetreeitemspreparedevent", + "Changelog\/12.0\/Feature-97945-PSR14AfterPageTreeItemsPreparedEvent.html#feature-97945", "Feature: #97945 - PSR-14 AfterPageTreeItemsPreparedEvent" ], "feature-98016-psr-14-evaluatemodifierfunctionevent": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-98016-PSR-14EvaluateModifierFunctionEvent.html#feature-98016-psr-14-evaluatemodifierfunctionevent", + "Changelog\/12.0\/Feature-98016-PSR-14EvaluateModifierFunctionEvent.html#feature-98016-1658732423", "Feature: #98016 - PSR-14 EvaluateModifierFunctionEvent" ], "feature-98130-allow-deprecation-of-icons-in-extensions": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-98130-AllowDeprecationOfIconsInExtensions.html#feature-98130-allow-deprecation-of-icons-in-extensions", + "Changelog\/12.0\/Feature-98130-AllowDeprecationOfIconsInExtensions.html#feature-98130-1660295017", "Feature: #98130 - Allow deprecation of icons in extensions" ], "feature-98158-symfony-6-components": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-98158-Symfony6Components.html#feature-98158-symfony-6-components", + "Changelog\/12.0\/Feature-98158-Symfony6Components.html#feature-98158-1660740363", "Feature: #98158 - Symfony 6 Components" ], "feature-98171-add-extbase-typeconverter-for-enums": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-98171-AddExtbaseTypeConverterForEnums.html#feature-98171-add-extbase-typeconverter-for-enums", + "Changelog\/12.0\/Feature-98171-AddExtbaseTypeConverterForEnums.html#feature-98171-1660910151", "Feature: #98171 - Add Extbase TypeConverter for enums" ], "feature-98303-psr-14-events-for-modifying-language-overlays": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-98303-PSR-14EventsForModifyingLanguageOverlays.html#feature-98303-psr-14-events-for-modifying-language-overlays", + "Changelog\/12.0\/Feature-98303-PSR-14EventsForModifyingLanguageOverlays.html#feature-98303-1662659478", "Feature: #98303 - PSR-14 events for modifying language overlays" ], "feature-98304-psr-14-event-for-modifying-edit-form-user-access": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-98304-PSR-14EventForModifyingEditFormUserAccess.html#feature-98304-psr-14-event-for-modifying-edit-form-user-access", + "Changelog\/12.0\/Feature-98304-PSR-14EventForModifyingEditFormUserAccess.html#feature-98304", "Feature: #98304 - PSR-14 event for modifying edit form user access" ], "feature-98348-live-search-moved-into-modal-window": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-98348-LiveSearchMovedIntoModalWindow.html#feature-98348-live-search-moved-into-modal-window", + "Changelog\/12.0\/Feature-98348-LiveSearchMovedIntoModalWindow.html#feature-98348-1663235550", "Feature: #98348 - Live Search moved into modal window" ], "feature-98375-psr-14-events-in-page-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-98375-PSR-14EventsInPageModule.html#feature-98375-psr-14-events-in-page-module", + "Changelog\/12.0\/Feature-98375-PSR-14EventsInPageModule.html#feature-98375-1663598746", "Feature: #98375 - PSR-14 events in Page Module" ], "example-for-php-iscontentusedonpagelayoutevent": [ @@ -47383,19 +47515,19 @@ "feature-98426-new-psr-14-event-afterrecordsummaryforlocalizationevent": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-98426-PSR-14AfterRecordSummaryForLocalizationEvent.html#feature-98426-new-psr-14-event-afterrecordsummaryforlocalizationevent", + "Changelog\/12.0\/Feature-98426-PSR-14AfterRecordSummaryForLocalizationEvent.html#feature-98426-1664381958", "Feature: #98426 - New PSR-14 event AfterRecordSummaryForLocalizationEvent" ], "feature-98431-support-javascriptmodules-in-formengine-resultarray": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-98431-SupportJavaScriptModulesInFormEngineResultArray.html#feature-98431-support-javascriptmodules-in-formengine-resultarray", + "Changelog\/12.0\/Feature-98431-SupportJavaScriptModulesInFormEngineResultArray.html#feature-98431-1664652179", "Feature: #98431 - Support javaScriptModules in FormEngine resultArray" ], "feature-98479-new-tca-type-file": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-98479-NewTCATypeFile.html#feature-98479-new-tca-type-file", + "Changelog\/12.0\/Feature-98479-NewTCATypeFile.html#feature-98479-1664537749", "Feature: #98479 - New TCA type \"file\"" ], "customfilecontrolsevent": [ @@ -47419,85 +47551,85 @@ "feature-98487-tca-option-ctrl-security-ignorepagetyperestriction": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-98487-TCAOptionCtrlsecurityignorePageTypeRestriction.html#feature-98487-tca-option-ctrl-security-ignorepagetyperestriction", + "Changelog\/12.0\/Feature-98487-TCAOptionCtrlsecurityignorePageTypeRestriction.html#feature-98487-1664575753", "Feature: #98487 - TCA option [ctrl][security][ignorePageTypeRestriction]" ], "feature-98488-additional-setting-for-typolink-option-addquerystring": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-98488-AdditionalSettingForTypolinkOptionAddQueryString.html#feature-98488-additional-setting-for-typolink-option-addquerystring", + "Changelog\/12.0\/Feature-98488-AdditionalSettingForTypolinkOptionAddQueryString.html#feature-98488-1664578785", "Feature: #98488 - Additional setting for Typolink option \"addQueryString\"" ], "feature-98490-psr-14-event-to-alter-the-records-rendered-in-record-listings": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Feature-98490-PSR-14EventToAlterTheRecordsRenderedInRecordListings.html#feature-98490-psr-14-event-to-alter-the-records-rendered-in-record-listings", + "Changelog\/12.0\/Feature-98490-PSR-14EventToAlterTheRecordsRenderedInRecordListings.html#feature-98490-1664580564", "Feature: #98490 - PSR-14 event to alter the records rendered in record listings" ], "important-59992-extbase-consistent-uid-values-from-persistence-session": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Important-59992-ExtbaseConsistentUidValuesFromPersistenceSession.html#important-59992-extbase-consistent-uid-values-from-persistence-session", + "Changelog\/12.0\/Important-59992-ExtbaseConsistentUidValuesFromPersistenceSession.html#important-59992-1657551957", "Important: #59992 - Extbase: Consistent uid values from Persistence Session" ], "important-97031-removed-log-submodule-from-info-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Important-97031-RemovedLogSubmoduleFromInfoModule.html#important-97031-removed-log-submodule-from-info-module", + "Changelog\/12.0\/Important-97031-RemovedLogSubmoduleFromInfoModule.html#important-97031", "Important: #97031 - Removed \"Log\" submodule from info module" ], "important-97145-serialized-log-data-in-sys-log-migrated-to-json-encoded-data": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Important-97145-SerializedLog_dataInSys_logMigratedToJSON-encodedData.html#important-97145-serialized-log-data-in-sys-log-migrated-to-json-encoded-data", + "Changelog\/12.0\/Important-97145-SerializedLog_dataInSys_logMigratedToJSON-encodedData.html#important-97145", "Important: #97145 - Serialized log_data in sys_log migrated to JSON-encoded data" ], "important-97159-maillinkhandler-key-in-tsconfig-renamed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Important-97159-MailLinkHandlerKeyInTSconfigRenamed.html#important-97159-maillinkhandler-key-in-tsconfig-renamed", + "Changelog\/12.0\/Important-97159-MailLinkHandlerKeyInTSconfigRenamed.html#important-97159", "Important: #97159 - MailLinkHandler key in TSconfig renamed" ], "important-97411-align-systemenvironment-checks-to-changed-requirements": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Important-97411-AlignSystemEnvironmentChecksToChangedRequirements.html#important-97411-align-systemenvironment-checks-to-changed-requirements", + "Changelog\/12.0\/Important-97411-AlignSystemEnvironmentChecksToChangedRequirements.html#important-97411", "Important: #97411 - Align SystemEnvironment checks to changed requirements" ], "important-97462-removed-mssql-supportive-code": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Important-97462-RemovedMSSQLSupportiveCode.html#important-97462-removed-mssql-supportive-code", + "Changelog\/12.0\/Important-97462-RemovedMSSQLSupportiveCode.html#important-97462", "Important: #97462 - Removed MSSQL supportive code" ], "important-97517-remove-the-superfluous-namespace-within-the-form-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Important-97517-RemoveTheSuperfluousNamespaceWithinTheFormConfiguration.html#important-97517-remove-the-superfluous-namespace-within-the-form-configuration", + "Changelog\/12.0\/Important-97517-RemoveTheSuperfluousNamespaceWithinTheFormConfiguration.html#important-97517", "Important: #97517 - Remove the superfluous namespace within the form configuration" ], "important-97809-update-typo3-icons-to-v3": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Important-97809-UpdateTypo3iconsToV3.html#important-97809-update-typo3-icons-to-v3", + "Changelog\/12.0\/Important-97809-UpdateTypo3iconsToV3.html#important-97809-1656679033", "Important: #97809 - Update @typo3.icons to v3" ], "important-98090-use-preconfigured-utf-8-filesystem-on-first-installation": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Important-98090-UsePreconfiguredUTF8FilesystemOnFirstInstallation.html#important-98090-use-preconfigured-utf-8-filesystem-on-first-installation", + "Changelog\/12.0\/Important-98090-UsePreconfiguredUTF8FilesystemOnFirstInstallation.html#important-98090-1660490213", "Important: #98090 - Use preconfigured UTF-8 filesystem on first installation" ], "important-98475-unsigned-pid-table-columns": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Important-98475-UnsignedPidTableColumns.html#important-98475-unsigned-pid-table-columns", + "Changelog\/12.0\/Important-98475-UnsignedPidTableColumns.html#important-98475-1664482965", "Important: #98475 - Unsigned \"pid\" table columns" ], "important-98484-extensions-and-assets-outside-of-document-root-for-composer-based-typo3-installations": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.0\/Important-98484-ExtensionsOutsideOfDocumentRootForComposer-basedTYPO3Installations.html#important-98484-extensions-and-assets-outside-of-document-root-for-composer-based-typo3-installations", + "Changelog\/12.0\/Important-98484-ExtensionsOutsideOfDocumentRootForComposer-basedTYPO3Installations.html#important-98484-1664553704", "Important: #98484 - Extensions and assets outside of document root for Composer-based TYPO3 installations" ], "12-0-changes": [ @@ -47509,13 +47641,13 @@ "deprecation-97536-linkresultfactory": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Deprecation-97536-LinkResultFactory.html#deprecation-97536-linkresultfactory", + "Changelog\/12.1\/Deprecation-97536-LinkResultFactory.html#deprecation-97536-1651523804", "Deprecation: #97536 - LinkResultFactory" ], "deprecation-98613-ckeditor-removeplugin-configuration-as-string": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Deprecation-98613-CKEditorRemovePluginConfigurationAsString.html#deprecation-98613-ckeditor-removeplugin-configuration-as-string", + "Changelog\/12.1\/Deprecation-98613-CKEditorRemovePluginConfigurationAsString.html#deprecation-98613", "Deprecation: #98613 - CKEditor removePlugin configuration as string" ], "before": [ @@ -47533,55 +47665,55 @@ "deprecation-98996-doctrine-dbal-backendworkspacerestriction-and-frontendworkspacerestriction": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Deprecation-98996-DoctrineDBALBackendWorkspaceRestrictionAndFrontendWorkspaceRestriction.html#deprecation-98996-doctrine-dbal-backendworkspacerestriction-and-frontendworkspacerestriction", + "Changelog\/12.1\/Deprecation-98996-DoctrineDBALBackendWorkspaceRestrictionAndFrontendWorkspaceRestriction.html#deprecation-98996-1667549770", "Deprecation: #98996 - Doctrine DBAL: BackendWorkspaceRestriction and FrontendWorkspaceRestriction" ], "deprecation-99019-deprecated-ext-emconf-php-clearcacheonload": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Deprecation-99019-DeprecatedExt_emconfphpClearCacheOnLoad.html#deprecation-99019-deprecated-ext-emconf-php-clearcacheonload", + "Changelog\/12.1\/Deprecation-99019-DeprecatedExt_emconfphpClearCacheOnLoad.html#deprecation-99019-1667905697", "Deprecation: #99019 - Deprecated ext_emconf.php clearCacheOnLoad" ], "deprecation-99020-deprecate-typoscript-templateservice": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Deprecation-99020-DeprecateTypoScriptTemplateService.html#deprecation-99020-deprecate-typoscript-templateservice", + "Changelog\/12.1\/Deprecation-99020-DeprecateTypoScriptTemplateService.html#deprecation-99020-1667911024", "Deprecation: #99020 - Deprecate TypoScript\/TemplateService" ], "deprecation-99031-deprecated-f-format-html-in-backend-context": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Deprecation-99031-DeprecatedFformathtmlInBackendContext.html#deprecation-99031-deprecated-f-format-html-in-backend-context", + "Changelog\/12.1\/Deprecation-99031-DeprecatedFformathtmlInBackendContext.html#deprecation-99031-1667998430", "Deprecation: #99031 - Deprecated f:format.html in Backend context" ], "deprecation-99040-deprecated-typoscript-setup-constants-top-level-object": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Deprecation-99040-DeprecatedTypoScriptSetupConstantsTop-level-object.html#deprecation-99040-deprecated-typoscript-setup-constants-top-level-object", + "Changelog\/12.1\/Deprecation-99040-DeprecatedTypoScriptSetupConstantsTop-level-object.html#deprecation-99040-1668076207", "Deprecation: #99040 - Deprecated TypoScript setup \"constants\" top-level-object" ], "deprecation-99050-typoscript-css-page-style-and-config-removepagecss": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Deprecation-99050-TypoScript_CSS_PAGE_STYLEAndConfigremovePageCss.html#deprecation-99050-typoscript-css-page-style-and-config-removepagecss", + "Changelog\/12.1\/Deprecation-99050-TypoScript_CSS_PAGE_STYLEAndConfigremovePageCss.html#deprecation-99050-1668086497", "Deprecation: #99050 - TypoScript _CSS_PAGE_STYLE and config.removePageCss" ], "deprecation-99075-fe-users-and-fe-groups-tsconfig": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Deprecation-99075-Fe_usersAndFe_groupsTSconfig.html#deprecation-99075-fe-users-and-fe-groups-tsconfig", + "Changelog\/12.1\/Deprecation-99075-Fe_usersAndFe_groupsTSconfig.html#deprecation-99075-1668337874", "Deprecation: #99075 - fe_users and fe_groups TSconfig" ], "deprecation-99084-make-trigger-of-context-menu-configurable": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Deprecation-99084-MakeContextMenuTriggerConfigurable.html#deprecation-99084-make-trigger-of-context-menu-configurable", + "Changelog\/12.1\/Deprecation-99084-MakeContextMenuTriggerConfigurable.html#deprecation-99084-1667981931", "Deprecation: #99084 - Make trigger of context menu configurable" ], "deprecation-99098-static-usage-of-formprotectionfactory": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Deprecation-99098-StaticUsageOfFormProtectionFactory.html#deprecation-99098-static-usage-of-formprotectionfactory", + "Changelog\/12.1\/Deprecation-99098-StaticUsageOfFormProtectionFactory.html#deprecation-99098-1668546853", "Deprecation: #99098 - Static usage of FormProtectionFactory" ], "provided-implementation-by-typo3-core": [ @@ -47599,85 +47731,85 @@ "deprecation-99150-updated-chart-library-in-ext-dashboard": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Deprecation-99150-UpdatedChartLibraryInEXTdashboard.html#deprecation-99150-updated-chart-library-in-ext-dashboard", + "Changelog\/12.1\/Deprecation-99150-UpdatedChartLibraryInEXTdashboard.html#deprecation-99150-1669026092", "Deprecation: #99150 - Updated chart library in EXT:dashboard" ], "deprecation-99170-config-baseurl-and-base-tag-functionality": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Deprecation-99170-ConfigbaseURLAndBaseTagFunctionality.html#deprecation-99170-config-baseurl-and-base-tag-functionality", + "Changelog\/12.1\/Deprecation-99170-ConfigbaseURLAndBaseTagFunctionality.html#deprecation-99170-1669411707", "Deprecation: #99170 - config.baseURL and tag functionality" ], "deprecation-99201-usersessionmanager-createfromglobalcookieoranonymous": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Deprecation-99201-UserSessionManager-createFromGlobalCookieOrAnonymous.html#deprecation-99201-usersessionmanager-createfromglobalcookieoranonymous", + "Changelog\/12.1\/Deprecation-99201-UserSessionManager-createFromGlobalCookieOrAnonymous.html#deprecation-99201-1669561044", "Deprecation: #99201 - UserSessionManager->createFromGlobalCookieOrAnonymous" ], "feature-100586-null-safe-operator-in-typoscript-conditions": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-100586-Null-safeOperatorInTypoScriptConditions.html#feature-100586-null-safe-operator-in-typoscript-conditions", + "Changelog\/12.1\/Feature-100586-Null-safeOperatorInTypoScriptConditions.html#feature-100586-1681464016", "Feature: #100586 - Null-safe operator in TypoScript conditions" ], "feature-87919-allow-generation-of-absolute-urls-completely": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-87919-AllowGenerationOfAbsoluteURLsCompletely.html#feature-87919-allow-generation-of-absolute-urls-completely", + "Changelog\/12.1\/Feature-87919-AllowGenerationOfAbsoluteURLsCompletely.html#feature-87919-1667984808", "Feature: #87919 - Allow generation of absolute URLs completely" ], "feature-91499-additional-attributes-for-includejs-includecss-and-all-other-page-include": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-91499-AdditionalAttributesForIncludeJSIncludeCSSAndAllOtherInclude.html#feature-91499-additional-attributes-for-includejs-includecss-and-all-other-page-include", + "Changelog\/12.1\/Feature-91499-AdditionalAttributesForIncludeJSIncludeCSSAndAllOtherInclude.html#feature-91499", "Feature: #91499 - Additional attributes for includeJS, includeCSS and all other page.include**" ], "feature-93112-allow-glob-patterns-in-yaml-imports": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-93112-AllowGlobPatternsInYamlImports.html#feature-93112-allow-glob-patterns-in-yaml-imports", + "Changelog\/12.1\/Feature-93112-AllowGlobPatternsInYamlImports.html#feature-93112-1667904722", "Feature: #93112 - Allow glob patterns in yaml imports" ], "feature-93423-show-warning-about-duplicated-root-pages-in-sites-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-93423-ShowWarningAboutDuplicatedRootPagesInSitesModule.html#feature-93423-show-warning-about-duplicated-root-pages-in-sites-module", + "Changelog\/12.1\/Feature-93423-ShowWarningAboutDuplicatedRootPagesInSitesModule.html#feature-93423-1667988850", "Feature: #93423 - Show warning about duplicated root pages in sites module" ], "feature-96005-allow-tagging-and-aliasing-of-data-processors": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-96005-AllowTaggingandAliasingOfDataProcessors.html#feature-96005-allow-tagging-and-aliasing-of-data-processors", + "Changelog\/12.1\/Feature-96005-AllowTaggingandAliasingOfDataProcessors.html#feature-96005-1660340104", "Feature: #96005 - Allow tagging and aliasing of data processors" ], "feature-97309-differentiate-redirects-based-on-creation-type": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-97309-DifferentiateRedirectsBasedOnCreationType.html#feature-97309-differentiate-redirects-based-on-creation-type", + "Changelog\/12.1\/Feature-97309-DifferentiateRedirectsBasedOnCreationType.html#feature-97309", "Feature: #97309 - Differentiate redirects based on creation type" ], "feature-97391-use-password-policy-for-password-reset-in-ext-backend": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-97391-UsePasswordPolicyForPasswordResetInExtbackend.html#feature-97391-use-password-policy-for-password-reset-in-ext-backend", + "Changelog\/12.1\/Feature-97391-UsePasswordPolicyForPasswordResetInExtbackend.html#feature-97391", "Feature: #97391 - Use password policy for password reset in ext:backend" ], "feature-97536-unified-api-for-generating-typolinks": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-97536-UnifiedAPIForGeneratingTypolinks.html#feature-97536-unified-api-for-generating-typolinks", + "Changelog\/12.1\/Feature-97536-UnifiedAPIForGeneratingTypolinks.html#feature-97536-1651523601", "Feature: #97536 - Unified API for generating typolinks" ], "feature-97747-introduce-mailerinterface": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-97747-IntroduceMailerInterface.html#feature-97747-introduce-mailerinterface", + "Changelog\/12.1\/Feature-97747-IntroduceMailerInterface.html#feature-97747-1654691279", "Feature: #97747 - Introduce MailerInterface" ], "feature-98373-reactions-incoming-webhooks-for-typo3": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-98373-ReactionIncomingWebHooksforTYPO3.html#feature-98373-reactions-incoming-webhooks-for-typo3", + "Changelog\/12.1\/Feature-98373-ReactionIncomingWebHooksforTYPO3.html#feature-98373-1663587471", "Feature: #98373 - Reactions - Incoming webhooks for TYPO3" ], "definition-of-the-placeholders-in-the-record": [ @@ -47695,13 +47827,13 @@ "feature-98521-psr-14-event-to-modify-form-data-for-edit-file-form": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-98521-PSR-14EventToModifyFormDataForEditFileForm.html#feature-98521-psr-14-event-to-modify-form-data-for-edit-file-form", + "Changelog\/12.1\/Feature-98521-PSR-14EventToModifyFormDataForEditFileForm.html#feature-98521-1664890745", "Feature: #98521 - PSR-14 event to modify form data for edit file form" ], "feature-98540-new-tca-field-control-passwordgenerator": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-98540-NewFieldControlPasswordGenerator.html#feature-98540-new-tca-field-control-passwordgenerator", + "Changelog\/12.1\/Feature-98540-NewFieldControlPasswordGenerator.html#feature-98540", "Feature: #98540 - New TCA field control \"passwordGenerator\"" ], "example-configuration": [ @@ -47725,79 +47857,79 @@ "feature-98912-installation-wide-services-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-98912-Installation-wide-ServicesConfiguration.html#feature-98912-installation-wide-services-configuration", + "Changelog\/12.1\/Feature-98912-Installation-wide-ServicesConfiguration.html#feature-98912-1667814888", "Feature: #98912 - Installation-wide services configuration" ], "feature-98914-typoscript-as-request-attribute": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-98914-TypoScriptAsRequestAttribute.html#feature-98914-typoscript-as-request-attribute", + "Changelog\/12.1\/Feature-98914-TypoScriptAsRequestAttribute.html#feature-98914-1666689687", "Feature: #98914 - TypoScript as request attribute" ], "feature-98921-get-multiple-items-by-common-key-prefix-from-local-storages": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-98921-GetMultipleItemsByCommonKeyPrefixFromLocalStorages.html#feature-98921-get-multiple-items-by-common-key-prefix-from-local-storages", + "Changelog\/12.1\/Feature-98921-GetMultipleItemsByCommonKeyPrefixFromLocalStorages.html#feature-98921-1666766437", "Feature: #98921 - Get multiple items by common key prefix from local storages" ], "feature-98957-respect-write-protected-settings-php-in-install-tool": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-98957-RespectWrite-protectedSettingsphpInInstallTool.html#feature-98957-respect-write-protected-settings-php-in-install-tool", + "Changelog\/12.1\/Feature-98957-RespectWrite-protectedSettingsphpInInstallTool.html#feature-98957-1667131640", "Feature: #98957 - Respect write-protected settings.php in Install Tool" ], "feature-99011-allow-descriptions-for-redirects": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-99011-AllowDescriptionsForRedirects.html#feature-99011-allow-descriptions-for-redirects", + "Changelog\/12.1\/Feature-99011-AllowDescriptionsForRedirects.html#feature-99011-1667944274", "Feature: #99011 - Allow descriptions for redirects" ], "feature-99033-add-table-filter-for-backend-search": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-99033-AddTableFilterForBackendSearch.html#feature-99033-add-table-filter-for-backend-search", + "Changelog\/12.1\/Feature-99033-AddTableFilterForBackendSearch.html#feature-99033-1668008969", "Feature: #99033 - Add table filter for backend search" ], "feature-99038-overview-for-filemounts": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-99038-SubmoduleForFilemountsInBeUsermodule.html#feature-99038-overview-for-filemounts", + "Changelog\/12.1\/Feature-99038-SubmoduleForFilemountsInBeUsermodule.html#feature-99038-1668093242", "Feature: #99038 - Overview for filemounts" ], "feature-99047-load-site-settings-from-separate-settings-yaml": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-99047-LoadSiteSettingsFromSeparateSettingsyaml.html#feature-99047-load-site-settings-from-separate-settings-yaml", + "Changelog\/12.1\/Feature-99047-LoadSiteSettingsFromSeparateSettingsyaml.html#feature-99047-1668081474", "Feature: #99047 - Load site settings from separate settings.yaml" ], "feature-99048-site-settings-read-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-99048-SiteSettingsReadAPI.html#feature-99048-site-settings-read-api", + "Changelog\/12.1\/Feature-99048-SiteSettingsReadAPI.html#feature-99048-1668081533", "Feature: #99048 - Site settings read API" ], "feature-99053-route-aspect-fallback-value-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-99053-RouteAspectFallbackValueHandling.html#feature-99053-route-aspect-fallback-value-handling", + "Changelog\/12.1\/Feature-99053-RouteAspectFallbackValueHandling.html#feature-99053-1668163567", "Feature: #99053 - Route aspect fallback value handling" ], "feature-99055-backendcontroller-service-tag-attribute": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-99055-BackendControllerServiceTagAttribute.html#feature-99055-backendcontroller-service-tag-attribute", + "Changelog\/12.1\/Feature-99055-BackendControllerServiceTagAttribute.html#feature-99055-1668096727", "Feature: #99055 - BackendController service tag attribute" ], "feature-99062-native-json-database-field-support-in-doctrine-dbal": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-99062-NativeJSONDatabaseFieldSupportInDoctrineDBAL.html#feature-99062-native-json-database-field-support-in-doctrine-dbal", + "Changelog\/12.1\/Feature-99062-NativeJSONDatabaseFieldSupportInDoctrineDBAL.html#feature-99062-1668170141", "Feature: #99062 - Native JSON database field support in Doctrine DBAL" ], "feature-99084-make-context-menu-trigger-configurable": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-99084-MakeContextMenuTriggerConfigurable.html#feature-99084-make-context-menu-trigger-configurable", + "Changelog\/12.1\/Feature-99084-MakeContextMenuTriggerConfigurable.html#feature-99084-1667981931", "Feature: #99084 - Make context menu trigger configurable" ], "new-options": [ @@ -47809,13 +47941,13 @@ "feature-99092-allow-static-backdrops-in-modals": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-99092-AllowStaticBackdropsInModals.html#feature-99092-allow-static-backdrops-in-modals", + "Changelog\/12.1\/Feature-99092-AllowStaticBackdropsInModals.html#feature-99092-1668509154", "Feature: #99092 - Allow static backdrops in modals" ], "feature-99093-introduce-dropdownbutton-component": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-99093-IntroduceDropDownButtonComponent.html#feature-99093-introduce-dropdownbutton-component", + "Changelog\/12.1\/Feature-99093-IntroduceDropDownButtonComponent.html#feature-99093-1668065501", "Feature: #99093 - Introduce DropDownButton component" ], "dropdownbutton": [ @@ -47857,73 +47989,73 @@ "feature-99118-psr-14-event-to-define-whether-files-are-selectable": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-99118-PSR-14EventToDefineWhetherFilesAreSelectable.html#feature-99118-psr-14-event-to-define-whether-files-are-selectable", + "Changelog\/12.1\/Feature-99118-PSR-14EventToDefineWhetherFilesAreSelectable.html#feature-99118", "Feature: #99118 - PSR-14 event to define whether files are selectable" ], "feature-99155-add-tile-view-to-filelist": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-99155-AddTileViewToFilelist.html#feature-99155-add-tile-view-to-filelist", + "Changelog\/12.1\/Feature-99155-AddTileViewToFilelist.html#feature-99155-1669116236", "Feature: #99155 - Add tile view to filelist" ], "feature-99169-add-backend-user-group-filter": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-99169-AddBackendUserGroupFilter.html#feature-99169-add-backend-user-group-filter", + "Changelog\/12.1\/Feature-99169-AddBackendUserGroupFilter.html#feature-99169-1669832578", "Feature: #99169 - Add backend user group filter" ], "feature-99194-support-for-various-string-comparisons-for-stdwrap-if-typoscript-function": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-99194-SupportForVariousStringComparisonsForStdWrapifTypoScriptFunction.html#feature-99194-support-for-various-string-comparisons-for-stdwrap-if-typoscript-function", + "Changelog\/12.1\/Feature-99194-SupportForVariousStringComparisonsForStdWrapifTypoScriptFunction.html#feature-99194-1669413174", "Feature: #99194 - Support for various string comparisons for stdWrap.if TypoScript function" ], "feature-99212-group-select-item-in-formengine-via-tsconfig": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-99212-GroupSelectItemInFormEngineViaTSconfig.html#feature-99212-group-select-item-in-formengine-via-tsconfig", + "Changelog\/12.1\/Feature-99212-GroupSelectItemInFormEngineViaTSconfig.html#feature-99212-1669896293", "Feature: #99212 - Group select item in FormEngine via TSconfig" ], "feature-99221-introduce-cli-setup-command": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-99221-AddCliInstallSetupCommand.html#feature-99221-introduce-cli-setup-command", + "Changelog\/12.1\/Feature-99221-AddCliInstallSetupCommand.html#feature-97747-1669740094", "Feature: #99221 - Introduce CLI setup command" ], "feature-99226-introduce-dbtype-json-for-tca-type-user": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-99226-IntroduceDbTypeJsonForTCATypeUser.html#feature-99226-introduce-dbtype-json-for-tca-type-user", + "Changelog\/12.1\/Feature-99226-IntroduceDbTypeJsonForTCATypeUser.html#feature-99226-1669801019", "Feature: #99226 - Introduce dbType json for TCA type user" ], "feature-99234-dynamic-url-parts-in-typo3-backend-urls": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-99234-DynamicURLPartsInTYPO3BackendURLs.html#feature-99234-dynamic-url-parts-in-typo3-backend-urls", + "Changelog\/12.1\/Feature-99234-DynamicURLPartsInTYPO3BackendURLs.html#feature-99234-1669840449", "Feature: #99234 - Dynamic URL parts in TYPO3 backend URLs" ], "feature-99245-registered-reactions-in-configuration-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Feature-99245-RegisteredReactionsInConfigurationModule.html#feature-99245-registered-reactions-in-configuration-module", + "Changelog\/12.1\/Feature-99245-RegisteredReactionsInConfigurationModule.html#feature-99245-1669974318", "Feature: #99245 - Registered reactions in configuration module" ], "important-88158-replaced-moment-js-with-luxon": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Important-88158-ReplacedMomentJsWithLuxon.html#important-88158-replaced-moment-js-with-luxon", + "Changelog\/12.1\/Important-88158-ReplacedMomentJsWithLuxon.html#important-88158-1668433741", "Important: #88158 - Replaced moment.js with luxon" ], "important-98502-correct-fallback-to-default-error-handler": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Important-98502-CorrectFallbackToDefaultErrorHandler.html#important-98502-correct-fallback-to-default-error-handler", + "Changelog\/12.1\/Important-98502-CorrectFallbackToDefaultErrorHandler.html#important-98502-1664738430", "Important: #98502 - Correct fallback to default error handler" ], "important-99044-ensure-auto-created-redirect-are-stored-on-connected-site-root": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.1\/Important-99044-EnsureAuto-createdRedirectAreStoredOnConnectedSiteRoot.html#important-99044-ensure-auto-created-redirect-are-stored-on-connected-site-root", + "Changelog\/12.1\/Important-99044-EnsureAuto-createdRedirectAreStoredOnConnectedSiteRoot.html#important-99044-1668077928", "Important: #99044 - Ensure auto-created redirect are stored on connected site root" ], "12-1-changes": [ @@ -47935,13 +48067,13 @@ "deprecation-97923-deprecate-userfilemountservice": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Deprecation-97923-DeprecateUserFileMountService.html#deprecation-97923-deprecate-userfilemountservice", + "Changelog\/12.2\/Deprecation-97923-DeprecateUserFileMountService.html#deprecation-97923-1673529717", "Deprecation: #97923 - Deprecate UserFileMountService" ], "deprecation-99120-deprecate-old-typoscriptparser": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Deprecation-99120-DeprecateOldTypoScriptParser.html#deprecation-99120-deprecate-old-typoscriptparser", + "Changelog\/12.2\/Deprecation-99120-DeprecateOldTypoScriptParser.html#deprecation-99120-1670428555", "Deprecation: #99120 - Deprecate old TypoScriptParser" ], "php-typo3-cms-core-configuration-event-modifyloadedpagetsconfigevent": [ @@ -47971,145 +48103,145 @@ "deprecation-99416-various-doctype-related-properties-and-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Deprecation-99416-VariousDoctypeRelatedPropertiesAndMethods.html#deprecation-99416-various-doctype-related-properties-and-methods", + "Changelog\/12.2\/Deprecation-99416-VariousDoctypeRelatedPropertiesAndMethods.html#deprecation-99416-1671746489", "Deprecation: #99416 - Various doctype related properties and methods" ], "deprecation-99454-restore-visibility-for-soft-hyphens-and-non-breaking-spaces": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Deprecation-99454-RestoreVisibilityForSoftHyphensAndNonBreakingSpaces.html#deprecation-99454-restore-visibility-for-soft-hyphens-and-non-breaking-spaces", + "Changelog\/12.2\/Deprecation-99454-RestoreVisibilityForSoftHyphensAndNonBreakingSpaces.html#deprecation-99454-1672842347", "Deprecation: #99454 - Restore visibility for soft hyphens and non-breaking spaces" ], "deprecation-99519-deprecated-backendutility-getfuncmenu": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Deprecation-99519-DeprecatedBackendUtilitygetFuncMenu.html#deprecation-99519-deprecated-backendutility-getfuncmenu", + "Changelog\/12.2\/Deprecation-99519-DeprecatedBackendUtilitygetFuncMenu.html#deprecation-99519-1673444609", "Deprecation: #99519 - Deprecated BackendUtility::getFuncMenu()" ], "deprecation-99523-deprecate-type-none-pass-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Deprecation-99523-DeprecateTypenonePass_content.html#deprecation-99523-deprecate-type-none-pass-content", + "Changelog\/12.2\/Deprecation-99523-DeprecateTypenonePass_content.html#deprecation-99523-1673454068", "Deprecation: #99523 - Deprecate type=\"none\" pass_content" ], "deprecation-99531-backwards-compatible-language-key-mapping": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Deprecation-99531-Backwards-compatibleLanguageKeyMapping.html#deprecation-99531-backwards-compatible-language-key-mapping", + "Changelog\/12.2\/Deprecation-99531-Backwards-compatibleLanguageKeyMapping.html#deprecation-99531-1673606839", "Deprecation: #99531 - Backwards-compatible language key mapping" ], "deprecation-99558-deprecate-pagerepository-getexturl": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Deprecation-99558-DeprecatePageRepository-getExtURL.html#deprecation-99558-deprecate-pagerepository-getexturl", + "Changelog\/12.2\/Deprecation-99558-DeprecatePageRepository-getExtURL.html#deprecation-99558-1673887807", "Deprecation: #99558 - Deprecate PageRepository->getExtURL()" ], "deprecation-99564-deprecated-backendutility-getdropdownmenu": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Deprecation-99564-DeprecatedBackendUtilityGetDropdownMenu.html#deprecation-99564-deprecated-backendutility-getdropdownmenu", + "Changelog\/12.2\/Deprecation-99564-DeprecatedBackendUtilityGetDropdownMenu.html#deprecation-99564-1673958788", "Deprecation: #99564 - Deprecated BackendUtility::getDropdownMenu()" ], "deprecation-99579-backendutility-getfunccheck": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Deprecation-99579-BackendUtilityGetFuncCheck.html#deprecation-99579-backendutility-getfunccheck", + "Changelog\/12.2\/Deprecation-99579-BackendUtilityGetFuncCheck.html#deprecation-99579-1673983578", "Deprecation: #99579 - BackendUtility::getFuncCheck()" ], "deprecation-99586-registration-of-upgrade-wizards-via-globals": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Deprecation-99586-RegistrationOfUpgradeWizardsViaGLOBALS.html#deprecation-99586-registration-of-upgrade-wizards-via-globals", + "Changelog\/12.2\/Deprecation-99586-RegistrationOfUpgradeWizardsViaGLOBALS.html#deprecation-99586-1673990657", "Deprecation: #99586 - Registration of upgrade wizards via $GLOBALS" ], "deprecation-99588-public-properties-in-pagerepository": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Deprecation-99588-PublicPropertiesInPageRepository.html#deprecation-99588-public-properties-in-pagerepository", + "Changelog\/12.2\/Deprecation-99588-PublicPropertiesInPageRepository.html#deprecation-99588-1673995832", "Deprecation: #99588 - Public Properties in PageRepository" ], "deprecation-99592-deprecated-flushbytag-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Deprecation-99592-DeprecatedFlushByTagHook.html#deprecation-99592-deprecated-flushbytag-hook", + "Changelog\/12.2\/Deprecation-99592-DeprecatedFlushByTagHook.html#deprecation-99592-1674033859", "Deprecation: #99592 - Deprecated \"flushByTag\" hook" ], "deprecation-99615-generalutility-gpmerged": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Deprecation-99615-GeneralUtilityGPMerged.html#deprecation-99615-generalutility-gpmerged", + "Changelog\/12.2\/Deprecation-99615-GeneralUtilityGPMerged.html#deprecation-99615-1674056024", "Deprecation: #99615 - GeneralUtility::_GPmerged()" ], "deprecation-99633-generalutility-post": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Deprecation-99633-GeneralUtilityPOST.html#deprecation-99633-generalutility-post", + "Changelog\/12.2\/Deprecation-99633-GeneralUtilityPOST.html#deprecation-99633-1674121794", "Deprecation: #99633 - GeneralUtility::_POST()" ], "deprecation-99638-environment-getbackendpath": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Deprecation-99638-EnvironmentgetBackendPath.html#deprecation-99638-environment-getbackendpath", + "Changelog\/12.2\/Deprecation-99638-EnvironmentgetBackendPath.html#deprecation-99638-1674127318", "Deprecation: #99638 - Environment::getBackendPath()" ], "deprecation-99650-global-request-object-usage-in-extbase-uribuilder": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Deprecation-99650-ExtbaseUriBuilderGlobalRequest.html#deprecation-99650-global-request-object-usage-in-extbase-uribuilder", + "Changelog\/12.2\/Deprecation-99650-ExtbaseUriBuilderGlobalRequest.html#deprecation-99650-1674205203", "Deprecation: #99650 - Global Request object usage in Extbase UriBuilder" ], "deprecation-99685-pagerenderer-removelinebreaksfromtemplate": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Deprecation-99685-RemoveLineBreaksFromTemplate.html#deprecation-99685-pagerenderer-removelinebreaksfromtemplate", + "Changelog\/12.2\/Deprecation-99685-RemoveLineBreaksFromTemplate.html#deprecation-99685-1674497039", "Deprecation: #99685 - PageRenderer::removeLineBreaksFromTemplate" ], "deprecation-99717-deprecated-modifyblindedconfigurationoptions-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Deprecation-99717-DeprecatedModifyBlindedConfigurationOptionsHook.html#deprecation-99717-deprecated-modifyblindedconfigurationoptions-hook", + "Changelog\/12.2\/Deprecation-99717-DeprecatedModifyBlindedConfigurationOptionsHook.html#deprecation-99717-1674654675", "Deprecation: #99717 - Deprecated \"modifyBlindedConfigurationOptions\" hook" ], "deprecation-99811-deprecate-javascript-bootstrap-tooltip": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Deprecation-99811-DeprecateBootstrapTooltip.html#deprecation-99811-deprecate-javascript-bootstrap-tooltip", + "Changelog\/12.2\/Deprecation-99811-DeprecateBootstrapTooltip.html#deprecation-99811-1675447357", "Deprecation: #99811 - Deprecate JavaScript bootstrap tooltip" ], "feature-97390-use-password-policy-for-backend-user-password-in-ext-install": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-77072-UsePasswordPolicyForInstall.html#feature-97390-use-password-policy-for-backend-user-password-in-ext-install", + "Changelog\/12.2\/Feature-77072-UsePasswordPolicyForInstall.html#feature-77072-1671089957", "Feature: #97390 - Use password policy for backend user password in ext:install" ], "feature-86913-automatic-support-for-language-files-of-languages-with-region-suffix": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-86913-AutomaticSupportForLanguageFilesOfLanguagesWithRegionSuffix.html#feature-86913-automatic-support-for-language-files-of-languages-with-region-suffix", + "Changelog\/12.2\/Feature-86913-AutomaticSupportForLanguageFilesOfLanguagesWithRegionSuffix.html#feature-86913-1673955088", "Feature: #86913 - Automatic support for language files of languages with region suffix" ], "feature-88137-multi-level-fallback-for-content-in-frontend-rendering": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-88137-Multi-levelFallbackForContentInFrontendRendering.html#feature-88137-multi-level-fallback-for-content-in-frontend-rendering", + "Changelog\/12.2\/Feature-88137-Multi-levelFallbackForContentInFrontendRendering.html#feature-88137-1673993076", "Feature: #88137 - Multi-level fallback for content in frontend rendering" ], "feature-92517-custom-namespace-for-extbase-plugin-enhancer": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-92517-CustomNamespaceForExtbasePluginEnhancer.html#feature-92517-custom-namespace-for-extbase-plugin-enhancer", + "Changelog\/12.2\/Feature-92517-CustomNamespaceForExtbasePluginEnhancer.html#feature-92517-1671616097", "Feature: #92517 - Custom namespace for Extbase plugin enhancer" ], "feature-97392-use-password-policy-for-new-admin-users-created-in-ext-install": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-97392-UsePasswordPolicyForNewAdminUsersCreatedInExtinstall.html#feature-97392-use-password-policy-for-new-admin-users-created-in-ext-install", + "Changelog\/12.2\/Feature-97392-UsePasswordPolicyForNewAdminUsersCreatedInExtinstall.html#feature-97392-1672220371", "Feature: #97392 - Use password policy for new admin users created in ext:install" ], "feature-97700-adopt-symfony-messenger-as-a-message-bus-and-queue": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-97700-AdoptSymfonyMessengerAsAMessageBusAndQueue.html#feature-97700-adopt-symfony-messenger-as-a-message-bus-and-queue", + "Changelog\/12.2\/Feature-97700-AdoptSymfonyMessengerAsAMessageBusAndQueue.html#feature-97700-1672214769", "Feature: #97700 - Adopt Symfony Messenger as a message bus and queue" ], "everyday-usage-as-a-developer": [ @@ -48169,37 +48301,37 @@ "feature-97923-improve-performance-and-usability-while-editing-sys-file-collection": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-97923-ImprovePerformanceAndUsabilityWhileEditingSys_file_collection.html#feature-97923-improve-performance-and-usability-while-editing-sys-file-collection", + "Changelog\/12.2\/Feature-97923-ImprovePerformanceAndUsabilityWhileEditingSys_file_collection.html#feature-97923-1673529192", "Feature: #97923 - Improve performance and usability while editing sys_file_collection" ], "feature-98394-introduce-event-to-prevent-downloading-of-language-packs": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-98394-IntroduceEventToPreventDownloadingOfLanguagePacks.html#feature-98394-introduce-event-to-prevent-downloading-of-language-packs", + "Changelog\/12.2\/Feature-98394-IntroduceEventToPreventDownloadingOfLanguagePacks.html#feature-98394-1674070213", "Feature: #98394 - Introduce event to prevent downloading of language packs" ], "feature-98528-new-file-location-for-enable-install-tool": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-98528-NewFileLocationForENABLE_INSTALL_TOOL.html#feature-98528-new-file-location-for-enable-install-tool", + "Changelog\/12.2\/Feature-98528-NewFileLocationForENABLE_INSTALL_TOOL.html#feature-98528-1674126393", "Feature: #98528 - New file location for ENABLE_INSTALL_TOOL" ], "feature-99191-create-folders-via-modals": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-99191-CreateFoldersViaModals.html#feature-99191-create-folders-via-modals", + "Changelog\/12.2\/Feature-99191-CreateFoldersViaModals.html#feature-99191-1669906308", "Feature: #99191 - Create folders via modals" ], "feature-99220-add-event-to-modify-search-results": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-99220-AddEventToModifySearchResults.html#feature-99220-add-event-to-modify-search-results", + "Changelog\/12.2\/Feature-99220-AddEventToModifySearchResults.html#feature-99220-1670250156", "Feature: #99220 - Add event to modify search results" ], "feature-99285-add-fluid-trimviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-99285-AddFluidTrimViewhelper.html#feature-99285-add-fluid-trimviewhelper", + "Changelog\/12.2\/Feature-99285-AddFluidTrimViewhelper.html#feature-99285-1670321970", "Feature: #99285 - Add Fluid TrimViewHelper" ], "trim-from-both-sides": [ @@ -48223,43 +48355,43 @@ "feature-99312-psr-14-event-for-fetching-youtube-vimeo-preview-image": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-99312-PSR-14EventForFetchingYoutubeVimeoPreviewImage.html#feature-99312-psr-14-event-for-fetching-youtube-vimeo-preview-image", + "Changelog\/12.2\/Feature-99312-PSR-14EventForFetchingYoutubeVimeoPreviewImage.html#feature-99312", "Feature: #99312 - PSR-14 Event for fetching YouTube\/Vimeo preview image" ], "feature-99341-introduce-cli-create-user-command": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-99341-AddCliCreateBeUserCommand.html#feature-99341-introduce-cli-create-user-command", + "Changelog\/12.2\/Feature-99341-AddCliCreateBeUserCommand.html#feature-99341-1670827943", "Feature: #99341 - Introduce CLI create user command" ], "feature-99430-add-event-after-record-publishing-in-workspaces": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-99430-AddEventAfterRecordPublishingInWorkspaces.html#feature-99430-add-event-after-record-publishing-in-workspaces", + "Changelog\/12.2\/Feature-99430-AddEventAfterRecordPublishingInWorkspaces.html#feature-99430-1672129914", "Feature: #99430 - Add event after record publishing in workspaces" ], "feature-99552-introduce-missing-meta-description-widget": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-99552-IntroduceMissingMetaDescriptionWidget.html#feature-99552-introduce-missing-meta-description-widget", + "Changelog\/12.2\/Feature-99552-IntroduceMissingMetaDescriptionWidget.html#feature-99552-1673955499", "Feature: #99552 - Introduce \"Missing Meta Description\" widget" ], "feature-99584-allow-to-provide-name-for-new-admin-users-in-ext-install": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-99584-AllowToProvideRealNameForNewAdminUsersInExtinstall.html#feature-99584-allow-to-provide-name-for-new-admin-users-in-ext-install", + "Changelog\/12.2\/Feature-99584-AllowToProvideRealNameForNewAdminUsersInExtinstall.html#feature-99584-1673985938", "Feature: #99584 - Allow to provide name for new admin users in ext:install" ], "feature-99586-registration-of-upgrade-wizards-via-service-tag": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-99586-RegistrationOfUpgradeWizardsViaServiceTag.html#feature-99586-registration-of-upgrade-wizards-via-service-tag", + "Changelog\/12.2\/Feature-99586-RegistrationOfUpgradeWizardsViaServiceTag.html#feature-99586-1673989775", "Feature: #99586 - Registration of upgrade wizards via service tag" ], "feature-99618-list-of-countries-in-the-world-and-their-localized-names": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-99618-ListOfCountriesInTheWorldAndTheirLocalizedNames.html#feature-99618-list-of-countries-in-the-world-and-their-localized-names", + "Changelog\/12.2\/Feature-99618-ListOfCountriesInTheWorldAndTheirLocalizedNames.html#feature-99618-1674063182", "Feature: #99618 - List of countries in the world and their localized names" ], "available-options": [ @@ -48271,19 +48403,19 @@ "feature-99626-sites-configuration-yaml-in-configuration-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-99626-SitesConfigurationYAMLInConfigurationModule.html#feature-99626-sites-configuration-yaml-in-configuration-module", + "Changelog\/12.2\/Feature-99626-SitesConfigurationYAMLInConfigurationModule.html#feature-99626-1674115749", "Feature: #99626 - Sites configuration (YAML) in configuration module" ], "feature-99632-introduce-php-attribute-to-mark-a-webhook-message": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-99632-IntroducePHPAttributeToMarkAWebhookMessage.html#feature-99632-introduce-php-attribute-to-mark-a-webhook-message", + "Changelog\/12.2\/Feature-99632-IntroducePHPAttributeToMarkAWebhookMessage.html#feature-99632-1674121967", "Feature: #99632 - Introduce PHP attribute to mark a webhook message" ], "feature-99647-specific-routes-for-backend-modules": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-99647-SpecificRoutesForBackendModules.html#feature-99647-specific-routes-for-backend-modules", + "Changelog\/12.2\/Feature-99647-SpecificRoutesForBackendModules.html#feature-99647-1674134370", "Feature: #99647 - Specific routes for backend modules" ], "extbase-modules": [ @@ -48295,37 +48427,37 @@ "feature-99694-unified-locale-handling-for-translation-files-xlf": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-99694-UnifiedLocaleHandlingForTranslationFilesXLF.html#feature-99694-unified-locale-handling-for-translation-files-xlf", + "Changelog\/12.2\/Feature-99694-UnifiedLocaleHandlingForTranslationFilesXLF.html#feature-99694-1674552209", "Feature: #99694 - Unified Locale handling for translation files (XLF)" ], "feature-99717-new-psr-14-modifyblindedconfigurationoptionsevent": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-99717-NewPSR-14ModifyBlindedConfigurationOptionsEvent.html#feature-99717-new-psr-14-modifyblindedconfigurationoptionsevent", + "Changelog\/12.2\/Feature-99717-NewPSR-14ModifyBlindedConfigurationOptionsEvent.html#feature-99717-1674654720", "Feature: #99717 - New PSR-14 ModifyBlindedConfigurationOptionsEvent" ], "feature-99733-drag-drop-between-different-folders-in-file-list": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-99733-DragDropBetweenDifferentFoldersInFileList.html#feature-99733-drag-drop-between-different-folders-in-file-list", + "Changelog\/12.2\/Feature-99733-DragDropBetweenDifferentFoldersInFileList.html#feature-99733-1675025218", "Feature: #99733 - Drag + Drop between different folders in file list" ], "feature-99746-new-psr-14-slugredirectchangeitemcreatedevent": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-99746-NewPSR-14SlugRedirectChangeItemCreatedEvent.html#feature-99746-new-psr-14-slugredirectchangeitemcreatedevent", + "Changelog\/12.2\/Feature-99746-NewPSR-14SlugRedirectChangeItemCreatedEvent.html#feature-99746-1675059434", "Feature: #99746 - New PSR-14 SlugRedirectChangeItemCreatedEvent" ], "feature-99806-introduce-genericbutton-component": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Feature-99806-IntroduceGenericButtonComponent.html#feature-99806-introduce-genericbutton-component", + "Changelog\/12.2\/Feature-99806-IntroduceGenericButtonComponent.html#feature-99806-1675673144", "Feature: #99806 - Introduce GenericButton component" ], "important-99490-provide-tag-to-add-javascript-modules-to-importmap-in-backend-form": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Important-99490-ProvideTagToAddJavaScriptModulesToImportmapInBackendForm.html#important-99490-provide-tag-to-add-javascript-modules-to-importmap-in-backend-form", + "Changelog\/12.2\/Important-99490-ProvideTagToAddJavaScriptModulesToImportmapInBackendForm.html#important-99490-1673358047", "Important: #99490 - Provide tag to add JavaScript Modules to importmap in backend form" ], "example-configuration-javascriptmodules-php": [ @@ -48337,13 +48469,13 @@ "important-99609-streamline-flag-icons": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Important-99609-StreamlineFlagIcons.html#important-99609-streamline-flag-icons", + "Changelog\/12.2\/Important-99609-StreamlineFlagIcons.html#important-99609-1674123952", "Important: #99609 - Streamline flag icons" ], "important-99660-remove-content-area-from-new-record-wizard": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.2\/Important-99660-RemoveContentSectionFromNewRecordController.html#important-99660-remove-content-area-from-new-record-wizard", + "Changelog\/12.2\/Important-99660-RemoveContentSectionFromNewRecordController.html#important-99660-1674251294", "Important: #99660 - Remove content area from new record wizard" ], "12-2-changes": [ @@ -48355,85 +48487,85 @@ "deprecation-100014-function-getparameterfromurl-of-typo3-backend-utility-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Deprecation-100014-FunctionGetParameterFromUrlOfTypo3backendutilityModule.html#deprecation-100014-function-getparameterfromurl-of-typo3-backend-utility-module", + "Changelog\/12.3\/Deprecation-100014-FunctionGetParameterFromUrlOfTypo3backendutilityModule.html#deprecation-100014-1677078784", "Deprecation: #100014 - Function getParameterFromUrl() of @typo3\/backend\/utility module" ], "deprecation-100033-tbe-styles-stylesheet-and-stylesheet2": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Deprecation-100033-TBE_STYLESStylesheetAndStylesheet2.html#deprecation-100033-tbe-styles-stylesheet-and-stylesheet2", + "Changelog\/12.3\/Deprecation-100033-TBE_STYLESStylesheetAndStylesheet2.html#deprecation-100033-1677433329", "Deprecation: #100033 - TBE_STYLES stylesheet and stylesheet2" ], "deprecation-100047-deprecated-conditionmatcher-classes": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Deprecation-100047-DeprecatedConditionMatcherClasses.html#deprecation-100047-deprecated-conditionmatcher-classes", + "Changelog\/12.3\/Deprecation-100047-DeprecatedConditionMatcherClasses.html#deprecation-100047-1677607925", "Deprecation: #100047 - Deprecated ConditionMatcher classes" ], "deprecation-100047-page-tsconfig-and-user-tsconfig-must-not-rely-on-request": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Deprecation-100047-PageTsConfigAndUserTsConfigMustNotRelyOnRequest.html#deprecation-100047-page-tsconfig-and-user-tsconfig-must-not-rely-on-request", + "Changelog\/12.3\/Deprecation-100047-PageTsConfigAndUserTsConfigMustNotRelyOnRequest.html#deprecation-100047-1677608959", "Deprecation: #100047 - Page TSconfig and user TSconfig must not rely on request" ], "deprecation-100053-generalutility-gp": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Deprecation-100053-GeneralUtility_GP.html#deprecation-100053-generalutility-gp", + "Changelog\/12.3\/Deprecation-100053-GeneralUtility_GP.html#deprecation-100053-1677670333", "Deprecation: #100053 - GeneralUtility::_GP()" ], "deprecation-100071-magic-repository-findby-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Deprecation-100071-MagicRepositoryFindByMethods.html#deprecation-100071-magic-repository-findby-methods", + "Changelog\/12.3\/Deprecation-100071-MagicRepositoryFindByMethods.html#deprecation-100071-1677853787", "Deprecation: #100071 - Magic repository findBy() methods" ], "deprecation-100232-tbe-styles-skinning-functionality": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Deprecation-100232-TBE_STYLESSkinningFunctionality.html#deprecation-100232-tbe-styles-skinning-functionality", + "Changelog\/12.3\/Deprecation-100232-TBE_STYLESSkinningFunctionality.html#deprecation-100232-1679344508", "Deprecation: #100232 - $TBE_STYLES skinning functionality" ], "deprecation-100237-typoscript-related-exceptions": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Deprecation-100237-TypoScriptRelatedExceptions.html#deprecation-100237-typoscript-related-exceptions", + "Changelog\/12.3\/Deprecation-100237-TypoScriptRelatedExceptions.html#deprecation-100237-1679393509", "Deprecation: #100237 - TypoScript-related exceptions" ], "deprecation-100247-various-interconnected-methods-in-ext-scheduler": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Deprecation-100247-VariousInterconnectedMethodsInEXTscheduler.html#deprecation-100247-various-interconnected-methods-in-ext-scheduler", + "Changelog\/12.3\/Deprecation-100247-VariousInterconnectedMethodsInEXTscheduler.html#deprecation-100247-1679480707", "Deprecation: #100247 - Various interconnected methods in EXT:scheduler" ], "deprecation-100278-postloginfailureprocessing-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Deprecation-100278-PostLoginFailureProcessingHook.html#deprecation-100278-postloginfailureprocessing-hook", + "Changelog\/12.3\/Deprecation-100278-PostLoginFailureProcessingHook.html#deprecation-100278-1679605129", "Deprecation: #100278 - PostLoginFailureProcessing hook" ], "deprecation-100307-various-hooks-related-to-authentication-users": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Deprecation-100307-VariousHooksRelatedToAuthenticationUsers.html#deprecation-100307-various-hooks-related-to-authentication-users", + "Changelog\/12.3\/Deprecation-100307-VariousHooksRelatedToAuthenticationUsers.html#deprecation-100307-1679924603", "Deprecation: #100307 - Various hooks related to authentication users" ], "deprecation-83608-backend-user-s-getdefaultuploadfolder-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Deprecation-83608-BackendUsersGetDefaultUploadFolderHook.html#deprecation-83608-backend-user-s-getdefaultuploadfolder-hook", + "Changelog\/12.3\/Deprecation-83608-BackendUsersGetDefaultUploadFolderHook.html#deprecation-83608-1679521195", "Deprecation: #83608 - Backend user's getDefaultUploadFolder hook" ], "deprecation-97390-typoscript-validators-for-password-reset-in-ext-felogin": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Deprecation-97390-TypoScriptValidatorsForPasswordResetInExtfelogin.html#deprecation-97390-typoscript-validators-for-password-reset-in-ext-felogin", + "Changelog\/12.3\/Deprecation-97390-TypoScriptValidatorsForPasswordResetInExtfelogin.html#deprecation-97390-1667657114", "Deprecation: #97390 - TypoScript validators for password reset in ext:felogin" ], "deprecation-99739-indexed-array-keys-for-tca-items": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Deprecation-99739-IndexedArrayKeysForTCAItems.html#deprecation-99739-indexed-array-keys-for-tca-items", + "Changelog\/12.3\/Deprecation-99739-IndexedArrayKeysForTCAItems.html#deprecation-99739-1674869090", "Deprecation: #99739 - Indexed array keys for TCA items" ], "itemsprocfunc": [ @@ -48445,67 +48577,67 @@ "deprecation-99810-versionnumberinfilename-option-now-boolean": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Deprecation-99810-VersionNumberedFilenameOptionNowBoolean.html#deprecation-99810-versionnumberinfilename-option-now-boolean", + "Changelog\/12.3\/Deprecation-99810-VersionNumberedFilenameOptionNowBoolean.html#deprecation-99810-1675704638", "Deprecation: #99810 - \"versionNumberInFilename\" option now boolean" ], "deprecation-99882-site-language-typo3language-setting": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Deprecation-99882-SiteLanguageTypo3LanguageSetting.html#deprecation-99882-site-language-typo3language-setting", + "Changelog\/12.3\/Deprecation-99882-SiteLanguageTypo3LanguageSetting.html#deprecation-99882-1675873624", "Deprecation: #99882 - Site language \"typo3Language\" setting" ], "deprecation-99900-limit-parameter-of-generalutility-intexplode": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Deprecation-99900-GeneralUtilityIntExplodeLimitParameter.html#deprecation-99900-limit-parameter-of-generalutility-intexplode", + "Changelog\/12.3\/Deprecation-99900-GeneralUtilityIntExplodeLimitParameter.html#deprecation-99900-1676292952", "Deprecation: #99900 - $limit parameter of GeneralUtility::intExplode()" ], "deprecation-99905-site-language-iso-639-1-setting": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Deprecation-99905-SiteLanguageIso-639-1Setting.html#deprecation-99905-site-language-iso-639-1-setting", + "Changelog\/12.3\/Deprecation-99905-SiteLanguageIso-639-1Setting.html#deprecation-99905-1675963182", "Deprecation: #99905 - Site language \"iso-639-1\" setting" ], "deprecation-99908-site-language-hreflang-setting": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Deprecation-99908-SiteLanguageHreflangSetting.html#deprecation-99908-site-language-hreflang-setting", + "Changelog\/12.3\/Deprecation-99908-SiteLanguageHreflangSetting.html#deprecation-99908-1675976983", "Deprecation: #99908 - Site language \"hreflang\" setting" ], "deprecation-99916-site-language-direction-setting": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Deprecation-99916-SiteLanguageDirectionSetting.html#deprecation-99916-site-language-direction-setting", + "Changelog\/12.3\/Deprecation-99916-SiteLanguageDirectionSetting.html#deprecation-99916-1676027922", "Deprecation: #99916 - Site language \"direction\" setting" ], "deprecation-99932-pagerenderer-removelinebreaksfromtemplate": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Deprecation-99932-PageRendererEnableDebugMode.html#deprecation-99932-pagerenderer-removelinebreaksfromtemplate", + "Changelog\/12.3\/Deprecation-99932-PageRendererEnableDebugMode.html#deprecation-99932-1676186779", "Deprecation: #99932 - PageRenderer::removeLineBreaksFromTemplate" ], "feature-100027-copy-files-and-folders-within-the-file-list-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-100027-CopyFilesAndFoldersWithinTheFileListModule.html#feature-100027-copy-files-and-folders-within-the-file-list-module", + "Changelog\/12.3\/Feature-100027-CopyFilesAndFoldersWithinTheFileListModule.html#feature-100027-1677251094", "Feature: #100027 - Copy files and folders within the File > List module" ], "feature-100071-introduce-non-magic-repository-find-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-100071-IntroduceNon-magicRepositoryFindMethods.html#feature-100071-introduce-non-magic-repository-find-methods", + "Changelog\/12.3\/Feature-100071-IntroduceNon-magicRepositoryFindMethods.html#feature-100071-1677853567", "Feature: #100071 - Introduce non-magic repository find methods" ], "feature-100088-new-tca-type-json": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-100088-NewTCATypeJson.html#feature-100088-new-tca-type-json", + "Changelog\/12.3\/Feature-100088-NewTCATypeJson.html#feature-100088-1677965005", "Feature: #100088 - New TCA type \"json\"" ], "feature-100089-introduce-doctrine-dbal-v3-driver-middlewares": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-100089-IntroduceDoctrineDBALv3drivermiddlewares.html#feature-100089-introduce-doctrine-dbal-v3-driver-middlewares", + "Changelog\/12.3\/Feature-100089-IntroduceDoctrineDBALv3drivermiddlewares.html#feature-100089-1677961107", "Feature: #100089 - Introduce Doctrine DBAL v3 driver middlewares" ], "registering-a-new-driver-middleware": [ @@ -48517,49 +48649,49 @@ "feature-100093-show-path-to-record-location-in-group-elements": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-100093-ShowPathToRecordLocationInGroupElements.html#feature-100093-show-path-to-record-location-in-group-elements", + "Changelog\/12.3\/Feature-100093-ShowPathToRecordLocationInGroupElements.html#feature-100093-1678091347", "Feature: #100093 - Show path to record location in group elements" ], "feature-100116-make-psr-7-request-accessible-for-authentication-services": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-100116-MakePSR-7RequestAccessibleForAuthenticationServices.html#feature-100116-make-psr-7-request-accessible-for-authentication-services", + "Changelog\/12.3\/Feature-100116-MakePSR-7RequestAccessibleForAuthenticationServices.html#feature-100116-1678299307", "Feature: #100116 - Make PSR-7 request accessible for authentication services" ], "feature-100143-add-scheduler-command-to-execute-and-list-tasks": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-100143-SchedulerCommandExecuteAndList.html#feature-100143-add-scheduler-command-to-execute-and-list-tasks", + "Changelog\/12.3\/Feature-100143-SchedulerCommandExecuteAndList.html#feature-100143-1678575248", "Feature: #100143 - Add scheduler command to execute and list tasks" ], "feature-100167-adminpanel-add-sql-and-memory-metrics-to-toolbar": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-100167-AdminPanelAddSQLAndMemoryInfosToToolbar.html#feature-100167-adminpanel-add-sql-and-memory-metrics-to-toolbar", + "Changelog\/12.3\/Feature-100167-AdminPanelAddSQLAndMemoryInfosToToolbar.html#feature-100167-1679005733", "Feature: #100167 - AdminPanel: Add SQL and memory metrics to toolbar" ], "feature-100171-introduce-tca-type-uuid": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-100171-IntroduceTCATypeUuid.html#feature-100171-introduce-tca-type-uuid", + "Changelog\/12.3\/Feature-100171-IntroduceTCATypeUuid.html#feature-100171-1678869689", "Feature: #100171 - Introduce TCA type uuid" ], "feature-100187-icu-based-date-and-time-formatting": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-100187-ICU-basedDateAndTimeFormatting.html#feature-100187-icu-based-date-and-time-formatting", + "Changelog\/12.3\/Feature-100187-ICU-basedDateAndTimeFormatting.html#feature-100187-1679001588", "Feature: #100187 - ICU-based date and time formatting" ], "feature-100206-enable-list-tile-view-for-resources-in-link-browser": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-100206-EnableListtileViewForResourcesInLinkbrowser.html#feature-100206-enable-list-tile-view-for-resources-in-link-browser", + "Changelog\/12.3\/Feature-100206-EnableListtileViewForResourcesInLinkbrowser.html#feature-100206-1679299435", "Feature: #100206 - Enable list\/tile view for resources in link browser" ], "feature-100218-improved-typoscript-and-page-tsconfig-modules": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-100218-ImprovedTypoScriptAndPageTsConfigModules.html#feature-100218-improved-typoscript-and-page-tsconfig-modules", + "Changelog\/12.3\/Feature-100218-ImprovedTypoScriptAndPageTsConfigModules.html#feature-100218-1679312518", "Feature: #100218 - Improved TypoScript and page TSconfig modules" ], "frontend-typoscript": [ @@ -48577,85 +48709,85 @@ "feature-100232-load-additional-stylesheets-in-typo3-backend": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-100232-LoadAdditionalStylesheetsInTYPO3Backend.html#feature-100232-load-additional-stylesheets-in-typo3-backend", + "Changelog\/12.3\/Feature-100232-LoadAdditionalStylesheetsInTYPO3Backend.html#feature-100232-1679344020", "Feature: #100232 - Load additional stylesheets in TYPO3 backend" ], "feature-100278-psr-14-event-after-failed-logins-in-backend-or-frontend-users": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-100278-PSR-14EventAfterFailedLoginsInBackendOrFrontendUsers.html#feature-100278-psr-14-event-after-failed-logins-in-backend-or-frontend-users", + "Changelog\/12.3\/Feature-100278-PSR-14EventAfterFailedLoginsInBackendOrFrontendUsers.html#feature-100278-1679604666", "Feature: #100278 - PSR-14 Event after failed logins in backend or frontend users" ], "feature-100284-add-ckeditor-inspector-for-backend-rte-forms": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-100284-AddCKEditorInspectorForBackendRTEForms.html#feature-100284-add-ckeditor-inspector-for-backend-rte-forms", + "Changelog\/12.3\/Feature-100284-AddCKEditorInspectorForBackendRTEForms.html#feature-100284-1679681558", "Feature: #100284 - Add CKEditor Inspector for backend RTE forms" ], "feature-100293-new-contentobject-extbaseplugin-in-typoscript": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-100293-NewContentObjectEXTBASEPLUGINInTypoScript.html#feature-100293-new-contentobject-extbaseplugin-in-typoscript", + "Changelog\/12.3\/Feature-100293-NewContentObjectEXTBASEPLUGINInTypoScript.html#feature-100293-1679673289", "Feature: #100293 - New ContentObject EXTBASEPLUGIN in TypoScript" ], "feature-100294-add-psr-14-event-to-enrich-password-validation-contextdata": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-100294-AddPSR-14EventToEnrichPasswordValidationContextData.html#feature-100294-add-psr-14-event-to-enrich-password-validation-contextdata", + "Changelog\/12.3\/Feature-100294-AddPSR-14EventToEnrichPasswordValidationContextData.html#feature-100294-1679766730", "Feature: #100294 - Add PSR-14 event to enrich password validation ContextData" ], "feature-100307-psr-14-events-for-user-login-logout": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-100307-PSR-14EventsForUserLoginLogout.html#feature-100307-psr-14-events-for-user-login-logout", + "Changelog\/12.3\/Feature-100307-PSR-14EventsForUserLoginLogout.html#feature-100307-1679924551", "Feature: #100307 - PSR-14 events for user login & logout" ], "feature-19856-set-special-atagparams-for-links-to-access-restricted-pages": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-19856-SetSpecialATagParamsForLinksToAccessRestrictedPages.html#feature-19856-set-special-atagparams-for-links-to-access-restricted-pages", + "Changelog\/12.3\/Feature-19856-SetSpecialATagParamsForLinksToAccessRestrictedPages.html#feature-19856-1679091117", "Feature: #19856 - Set special ATagParams for links to access restricted pages" ], "feature-45039-command-to-clean-up-local-processed-files": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-45039-CommandToCleanUpLocalProcessedFiles.html#feature-45039-command-to-clean-up-local-processed-files", + "Changelog\/12.3\/Feature-45039-CommandToCleanUpLocalProcessedFiles.html#feature-45039-1674297405", "Feature: #45039 - Command to clean up local processed files" ], "feature-65020-change-button-labels-within-tca-type-file": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-65020-ChangeButtonLabelsWithinTCATypefile.html#feature-65020-change-button-labels-within-tca-type-file", + "Changelog\/12.3\/Feature-65020-ChangeButtonLabelsWithinTCATypefile.html#feature-65020-1679498591", "Feature: #65020 - Change button labels within TCA type=file" ], "feature-83608-page-tsconfig-setting-options-defaultuploadfolder-added": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-83608-PageTSconfigSettingOptionsdefaultUploadFolderAdded.html#feature-83608-page-tsconfig-setting-options-defaultuploadfolder-added", + "Changelog\/12.3\/Feature-83608-PageTSconfigSettingOptionsdefaultUploadFolderAdded.html#feature-83608-1668162306", "Feature: #83608 - Page TSconfig setting \"options.defaultUploadFolder\" added" ], "feature-83608-psr-14-event-to-modify-resolved-default-upload-folder": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-83608-PSR-14EventToModifyResolvedDefaultUploadFolder.html#feature-83608-psr-14-event-to-modify-resolved-default-upload-folder", + "Changelog\/12.3\/Feature-83608-PSR-14EventToModifyResolvedDefaultUploadFolder.html#feature-83608-1669634686", "Feature: #83608 - PSR-14 event to modify resolved default upload folder" ], "feature-84594-additional-parameters-to-email-links": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-84594-AdditionalParametersToEmailLinks.html#feature-84594-additional-parameters-to-email-links", + "Changelog\/12.3\/Feature-84594-AdditionalParametersToEmailLinks.html#feature-84594-1674211080", "Feature: #84594 - Additional parameters to email links" ], "feature-86880-enable-password-view-at-backend-login": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-86880-EnablePasswordViewAtBackendLogin.html#feature-86880-enable-password-view-at-backend-login", + "Changelog\/12.3\/Feature-86880-EnablePasswordViewAtBackendLogin.html#feature-86880-1659742357", "Feature: #86880 - Enable password view at backend login" ], "feature-94499-implement-addpagetypezerosource-event-listener": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-94499-ImplementAddPageTypeZeroSourceEventListener.html#feature-94499-implement-addpagetypezerosource-event-listener", + "Changelog\/12.3\/Feature-94499-ImplementAddPageTypeZeroSourceEventListener.html#feature-94499-1675615684", "Feature: #94499 - Implement AddPageTypeZeroSource event listener" ], "remove-plain-slug-source-if-page-type-0-differs": [ @@ -48667,61 +48799,61 @@ "feature-94499-provide-additional-pagetypesource-auto-create-redirect-source-type": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-94499-ProvideAdditionalPageTypeSourceAuto-createRedirectSourceType.html#feature-94499-provide-additional-pagetypesource-auto-create-redirect-source-type", + "Changelog\/12.3\/Feature-94499-ProvideAdditionalPageTypeSourceAuto-createRedirectSourceType.html#feature-94499-1675615570", "Feature: #94499 - Provide additional PageTypeSource auto-create redirect source type" ], "feature-97389-add-password-policy-validation-for-tca-type-password": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-97389-AddPasswordPolicyValidationForTCATypepassword.html#feature-97389-add-password-policy-validation-for-tca-type-password", + "Changelog\/12.3\/Feature-97389-AddPasswordPolicyValidationForTCATypepassword.html#feature-97389-1673972552", "Feature: #97389 - Add password policy validation for TCA type=password" ], "feature-97390-use-password-policy-for-password-reset-in-ext-felogin": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-97390-UsePasswordPolicyForPasswordResetInExtfelogin.html#feature-97390-use-password-policy-for-password-reset-in-ext-felogin", + "Changelog\/12.3\/Feature-97390-UsePasswordPolicyForPasswordResetInExtfelogin.html#feature-97390-1667653394", "Feature: #97390 - Use password policy for password reset in ext:felogin" ], "feature-97667-add-keyboard-support-for-multiselect": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-97667-AddKeyboardSupportForSelectMultipleSideBySideGroupFolder.html#feature-97667-add-keyboard-support-for-multiselect", + "Changelog\/12.3\/Feature-97667-AddKeyboardSupportForSelectMultipleSideBySideGroupFolder.html#feature-97667-1678967840", "Feature: #97667 - Add keyboard support for Multiselect" ], "feature-98132-extbase-entity-properties-support-union-types": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-98132-LetClassSchemaDetectMultiplePropertyTypes.html#feature-98132-extbase-entity-properties-support-union-types", + "Changelog\/12.3\/Feature-98132-LetClassSchemaDetectMultiplePropertyTypes.html#feature-98132-1677928250", "Feature: #98132 - Extbase entity properties support union types" ], "feature-98517-username-in-backend-password-reset-mail": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-98517-UsernameInBackendPasswordResetMail.html#feature-98517-username-in-backend-password-reset-mail", + "Changelog\/12.3\/Feature-98517-UsernameInBackendPasswordResetMail.html#feature-98517-1675861888", "Feature: #98517 - Username in backend password reset mail" ], "feature-99258-add-minimum-age-option-to-ext-lowlevel-cleanup-deletedrecords-command": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-99258-AddMinimumAgeOptionToRecordDeletionCommand.html#feature-99258-add-minimum-age-option-to-ext-lowlevel-cleanup-deletedrecords-command", + "Changelog\/12.3\/Feature-99258-AddMinimumAgeOptionToRecordDeletionCommand.html#feature-99258-1670017157", "Feature: #99258 - Add minimum age option to EXT:lowlevel cleanup:deletedrecords command" ], "feature-99321-add-presets-for-site-languages": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-99321-AddSiteLanguagePresets.html#feature-99321-add-presets-for-site-languages", + "Changelog\/12.3\/Feature-99321-AddSiteLanguagePresets.html#feature-99321-1670525282", "Feature: #99321 - Add presets for site languages" ], "feature-99436-list-commands-in-scheduler-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-99436-ListCommandsInSchedulerModule.html#feature-99436-list-commands-in-scheduler-module", + "Changelog\/12.3\/Feature-99436-ListCommandsInSchedulerModule.html#feature-99436-1672410981", "Feature: #99436 - List commands in scheduler module" ], "feature-99499-introduce-content-security-policy-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-99499-IntroduceContent-Security-PolicyHandling.html#feature-99499-introduce-content-security-policy-handling", + "Changelog\/12.3\/Feature-99499-IntroduceContent-Security-PolicyHandling.html#feature-99499-1677703100", "Feature: #99499 - Introduce Content-Security-Policy handling" ], "policy-builder-approach": [ @@ -48763,13 +48895,13 @@ "feature-99608-add-password-policy-action-to-exclude-validators-in-su-mode": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-99608-AddPasswordPolicyActionToExcludeValidatorsInSUMode.html#feature-99608-add-password-policy-action-to-exclude-validators-in-su-mode", + "Changelog\/12.3\/Feature-99608-AddPasswordPolicyActionToExcludeValidatorsInSUMode.html#feature-99608-1674053552", "Feature: #99608 - Add password policy action to exclude validators in SU mode" ], "feature-99629-webhooks-outgoing-webhooks-for-typo3": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-99629-Webhooks-OutgoingWebhooksForTYPO3.html#feature-99629-webhooks-outgoing-webhooks-for-typo3", + "Changelog\/12.3\/Feature-99629-Webhooks-OutgoingWebhooksForTYPO3.html#feature-99629-1674550092", "Feature: #99629 - Webhooks - Outgoing webhooks for TYPO3" ], "triggers-provided-by-the-typo3-core": [ @@ -48823,55 +48955,55 @@ "feature-99735-new-country-select-form-element": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-99735-NewCountrySelectFormElement.html#feature-99735-new-country-select-form-element", + "Changelog\/12.3\/Feature-99735-NewCountrySelectFormElement.html#feature-99735-1678701694", "Feature: #99735 - New Country Select form element" ], "feature-99739-associative-array-keys-for-tca-items": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-99739-AssociativeArrayKeysForTCAItems.html#feature-99739-associative-array-keys-for-tca-items", + "Changelog\/12.3\/Feature-99739-AssociativeArrayKeysForTCAItems.html#feature-99739-1674867455", "Feature: #99739 - Associative array keys for TCA items" ], "feature-99802-new-psr-14-modifyredirectmanagementcontrollerviewdataevent": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-99802-NewPSR-14ModifyRedirectManagementControllerViewDataEvent.html#feature-99802-new-psr-14-modifyredirectmanagementcontrollerviewdataevent", + "Changelog\/12.3\/Feature-99802-NewPSR-14ModifyRedirectManagementControllerViewDataEvent.html#feature-99802-1675370033", "Feature: #99802 - New PSR-14 ModifyRedirectManagementControllerViewDataEvent" ], "feature-99803-new-psr-14-beforeredirectmatchdomainevent": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-99803-NewPSR-14BeforeRedirectMatchDomainEvent.html#feature-99803-new-psr-14-beforeredirectmatchdomainevent", + "Changelog\/12.3\/Feature-99803-NewPSR-14BeforeRedirectMatchDomainEvent.html#feature-99803-1675373908", "Feature: #99803 - New PSR-14 BeforeRedirectMatchDomainEvent" ], "feature-99834-new-psr-14-afterautocreateredirecthasbeenpersistedevent": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-99834-NewPSR-14AfterAutoCreateRedirectHasBeenPersistedEvent.html#feature-99834-new-psr-14-afterautocreateredirecthasbeenpersistedevent", + "Changelog\/12.3\/Feature-99834-NewPSR-14AfterAutoCreateRedirectHasBeenPersistedEvent.html#feature-99834-1675612921", "Feature: #99834 - New PSR-14 AfterAutoCreateRedirectHasBeenPersistedEvent" ], "feature-99834-new-psr-14-modifyautocreateredirectrecordbeforepersistingevent": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-99834-NewPSR-14ModifyAutoCreateRedirectRecordBeforePersistingEvent.html#feature-99834-new-psr-14-modifyautocreateredirectrecordbeforepersistingevent", + "Changelog\/12.3\/Feature-99834-NewPSR-14ModifyAutoCreateRedirectRecordBeforePersistingEvent.html#feature-99834-1675612872", "Feature: #99834 - New PSR-14 ModifyAutoCreateRedirectRecordBeforePersistingEvent" ], "feature-99861-add-tile-view-to-element-browser": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-99861-AddTileViewToElementBrowser.html#feature-99861-add-tile-view-to-element-browser", + "Changelog\/12.3\/Feature-99861-AddTileViewToElementBrowser.html#feature-99861-1675757796", "Feature: #99861 - Add tile view to element browser" ], "feature-99874-edit-task-groups-within-the-scheduler-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-99874-ManageSchdulerGroupsWithinBeModule.html#feature-99874-edit-task-groups-within-the-scheduler-module", + "Changelog\/12.3\/Feature-99874-ManageSchdulerGroupsWithinBeModule.html#feature-99874-1678720364", "Feature: #99874 - Edit task groups within the Scheduler module" ], "feature-99976-introduce-ignoreflexformsettingsifempty-extbase-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Feature-99976-IntroduceignoreFlexFormSettingsIfEmptyExtbaseConfiguration.html#feature-99976-introduce-ignoreflexformsettingsifempty-extbase-configuration", + "Changelog\/12.3\/Feature-99976-IntroduceignoreFlexFormSettingsIfEmptyExtbaseConfiguration.html#feature-99976-1676660028", "Feature: #99976 - Introduce ignoreFlexFormSettingsIfEmpty Extbase configuration" ], "event-example": [ @@ -48883,19 +49015,19 @@ "important-100032-add-http-security-headers-for-backend-by-default": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Important-100032-AddHTTPSecurityHeadersForBackendByDefault.html#important-100032-add-http-security-headers-for-backend-by-default", + "Changelog\/12.3\/Important-100032-AddHTTPSecurityHeadersForBackendByDefault.html#important-100032-1677331239", "Important: #100032 - Add HTTP security headers for backend by default" ], "important-100088-remove-dbtype-json-for-tca-type-user": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Important-100088-RemoveDbTypeJsonForTCATypeUser.html#important-100088-remove-dbtype-json-for-tca-type-user", + "Changelog\/12.3\/Important-100088-RemoveDbTypeJsonForTCATypeUser.html#important-100088-1677950866", "Important: #100088 - Remove dbType json for TCA type user" ], "important-100135-remove-cookie-warning-in-ext-felogin": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.3\/Important-100135-RemoveCookieWarningInExtfelogin.html#important-100135-remove-cookie-warning-in-ext-felogin", + "Changelog\/12.3\/Important-100135-RemoveCookieWarningInExtfelogin.html#important-100135-1678453394", "Important: #100135 - Remove cookie warning in ext:felogin" ], "12-3-changes": [ @@ -48907,97 +49039,97 @@ "deprecation-100173-various-methods-and-properties-in-userauthentication-classes-now-internal": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Deprecation-100173-VariousMethodsAndPropertiesInUserAuthenticationClassesNowInternal.html#deprecation-100173-various-methods-and-properties-in-userauthentication-classes-now-internal", + "Changelog\/12.4\/Deprecation-100173-VariousMethodsAndPropertiesInUserAuthenticationClassesNowInternal.html#deprecation-100173-1680696124", "Deprecation: #100173 - Various methods and properties in UserAuthentication classes now internal" ], "deprecation-100335-tca-config-mm-insert-fields": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Deprecation-100335-TCAConfigMM_insert_fields.html#deprecation-100335-tca-config-mm-insert-fields", + "Changelog\/12.4\/Deprecation-100335-TCAConfigMM_insert_fields.html#deprecation-100335-1679998903", "Deprecation: #100335 - TCA config MM_insert_fields" ], "deprecation-100349-typoscript-loginuser-and-usergroup-conditions": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Deprecation-100349-TypoScriptLoginUserAndUsergroupConditions.html#deprecation-100349-typoscript-loginuser-and-usergroup-conditions", + "Changelog\/12.4\/Deprecation-100349-TypoScriptLoginUserAndUsergroupConditions.html#deprecation-100349-1680097287", "Deprecation: #100349 - TypoScript loginUser() and usergroup() conditions" ], "deprecation-100355-deprecate-methods-in-passwordchangeevent-in-ext-felogin": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Deprecation-100355-DeprecateMethodsInPasswordChangeEventInExtfelogin.html#deprecation-100355-deprecate-methods-in-passwordchangeevent-in-ext-felogin", + "Changelog\/12.4\/Deprecation-100355-DeprecateMethodsInPasswordChangeEventInExtfelogin.html#deprecation-100355-1680608322", "Deprecation: #100355 - Deprecate methods in PasswordChangeEvent in ext:felogin" ], "deprecation-100405-property-typoscriptfrontendcontroller-type": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Deprecation-100405-PropertyTypoScriptFrontendController-type.html#deprecation-100405-property-typoscriptfrontendcontroller-type", + "Changelog\/12.4\/Deprecation-100405-PropertyTypoScriptFrontendController-type.html#deprecation-100405-1680520177", "Deprecation: #100405 - Property TypoScriptFrontendController->type" ], "deprecation-100454-legacy-tree-implementations": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Deprecation-100454-LegacyTreeImplementations.html#deprecation-100454-legacy-tree-implementations", + "Changelog\/12.4\/Deprecation-100454-LegacyTreeImplementations.html#deprecation-100454-1680685413", "Deprecation: #100454 - Legacy tree implementations" ], "deprecation-100459-backendutility-getrecordtooltip": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Deprecation-100459-BackendUtilitygetRecordToolTip.html#deprecation-100459-backendutility-getrecordtooltip", + "Changelog\/12.4\/Deprecation-100459-BackendUtilitygetRecordToolTip.html#deprecation-100459-1680683235", "Deprecation: #100459 - BackendUtility::getRecordToolTip()" ], "deprecation-100461-typoscript-option-config-xhtmldoctype": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Deprecation-100461-TypoScriptOptionConfigxhtmlDoctype.html#deprecation-100461-typoscript-option-config-xhtmldoctype", + "Changelog\/12.4\/Deprecation-100461-TypoScriptOptionConfigxhtmlDoctype.html#deprecation-100461-1680690006", "Deprecation: #100461 - TypoScript option config.xhtmlDoctype" ], "deprecation-100577-formengine-needs-request-object": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Deprecation-100577-FormEngineNeedsRequestObject.html#deprecation-100577-formengine-needs-request-object", + "Changelog\/12.4\/Deprecation-100577-FormEngineNeedsRequestObject.html#deprecation-100577-1681384407", "Deprecation: #100577 - FormEngine needs request object" ], "deprecation-100581-avoid-constructor-argument-in-formdatacompiler": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Deprecation-100581-AvoidConstructorArgumentInFormDataCompiler.html#deprecation-100581-avoid-constructor-argument-in-formdatacompiler", + "Changelog\/12.4\/Deprecation-100581-AvoidConstructorArgumentInFormDataCompiler.html#deprecation-100581-1681396349", "Deprecation: #100581 - Avoid constructor argument in FormDataCompiler" ], "deprecation-100584-generalutility-linkthisscript": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Deprecation-100584-GeneralUtilitylinkThisScript.html#deprecation-100584-generalutility-linkthisscript", + "Changelog\/12.4\/Deprecation-100584-GeneralUtilitylinkThisScript.html#deprecation-100584-1681452843", "Deprecation: #100584 - GeneralUtility::linkThisScript()" ], "deprecation-100587-deprecate-form-engine-additionaljavascriptpost-and-custom-eval-inline-javascript": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Deprecation-100587-DeprecateFormEngineAdditionalJavaScriptPostAndCustomEvalInlineJavaScript.html#deprecation-100587-deprecate-form-engine-additionaljavascriptpost-and-custom-eval-inline-javascript", + "Changelog\/12.4\/Deprecation-100587-DeprecateFormEngineAdditionalJavaScriptPostAndCustomEvalInlineJavaScript.html#deprecation-100587-1681477405", "Deprecation: #100587 - Deprecate form engine additionalJavaScriptPost and custom eval inline JavaScript" ], "deprecation-100596-generalutility-get": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Deprecation-100596-GeneralUtility_GET.html#deprecation-100596-generalutility-get", + "Changelog\/12.4\/Deprecation-100596-GeneralUtility_GET.html#deprecation-100596-1681478199", "Deprecation: #100596 - GeneralUtility::_GET()" ], "deprecation-100597-backendutility-methods-getthumbnailurl-and-getlinktodatahandleraction": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Deprecation-100597-BackendUtilityMethodsGetThumbnailUrlAndGetLinkToDataHandlerAction.html#deprecation-100597-backendutility-methods-getthumbnailurl-and-getlinktodatahandleraction", + "Changelog\/12.4\/Deprecation-100597-BackendUtilityMethodsGetThumbnailUrlAndGetLinkToDataHandlerAction.html#deprecation-100597-1681480956", "Deprecation: #100597 - BackendUtility methods getThumbnailUrl() and getLinkToDataHandlerAction()" ], "deprecation-100614-deprecate-pagerenderer-inlinejavascriptwrap-and-inlinecsswrap": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Deprecation-100614-DeprecatePageRendererinlineJavascriptWrapAndInlineCssWrap.html#deprecation-100614-deprecate-pagerenderer-inlinejavascriptwrap-and-inlinecsswrap", + "Changelog\/12.4\/Deprecation-100614-DeprecatePageRendererinlineJavascriptWrapAndInlineCssWrap.html#deprecation-100614-1681589901", "Deprecation: #100614 - Deprecate PageRenderer::$inlineJavascriptWrap and $inlineCssWrap" ], "deprecation-100622-extbase-feature-toggles": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Deprecation-100622-ExtbaseFeatureToggles.html#deprecation-100622-extbase-feature-toggles", + "Changelog\/12.4\/Deprecation-100622-ExtbaseFeatureToggles.html#deprecation-100622-1681664078", "Deprecation: #100622 - Extbase feature toggles" ], "skipdefaultarguments-1": [ @@ -49021,37 +49153,37 @@ "deprecation-100637-third-argument-contentobjectrenderer-start": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Deprecation-100637-ThirdArgumentContentObjectRenderer-start.html#deprecation-100637-third-argument-contentobjectrenderer-start", + "Changelog\/12.4\/Deprecation-100637-ThirdArgumentContentObjectRenderer-start.html#deprecation-100637-1681737971", "Deprecation: #100637 - Third argument ContentObjectRenderer->start()" ], "deprecation-100639-deprecate-abstractplugin": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Deprecation-100639-DeprecateAbstractPlugin.html#deprecation-100639-deprecate-abstractplugin", + "Changelog\/12.4\/Deprecation-100639-DeprecateAbstractPlugin.html#deprecation-100639-1681740974", "Deprecation: #100639 - Deprecate AbstractPlugin" ], "deprecation-100653-deprecated-some-methods-in-debugutility": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Deprecation-100653-DeprecatedSomeMethodsInDebugUtility.html#deprecation-100653-deprecated-some-methods-in-debugutility", + "Changelog\/12.4\/Deprecation-100653-DeprecatedSomeMethodsInDebugUtility.html#deprecation-100653-1681805677", "Deprecation: #100653 - Deprecated some methods in DebugUtility" ], "deprecation-100657-typo3-conf-vars-be-languagedebug": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Deprecation-100657-TYPO3_CONF_VARSBElanguageDebug.html#deprecation-100657-typo3-conf-vars-be-languagedebug", + "Changelog\/12.4\/Deprecation-100657-TYPO3_CONF_VARSBElanguageDebug.html#deprecation-100657-1681816063", "Deprecation: #100657 - TYPO3_CONF_VARS['BE']['languageDebug']" ], "deprecation-100662-configurationmanager-getcontentobject": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Deprecation-100662-ConfigurationManager-getContentObject.html#deprecation-100662-configurationmanager-getcontentobject", + "Changelog\/12.4\/Deprecation-100662-ConfigurationManager-getContentObject.html#deprecation-100662-1681906563", "Deprecation: #100662 - ConfigurationManager->getContentObject()" ], "deprecation-100670-di-aware-formengine-nodes": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Deprecation-100670-DIAwareFormEngineNodes.html#deprecation-100670-di-aware-formengine-nodes", + "Changelog\/12.4\/Deprecation-100670-DIAwareFormEngineNodes.html#deprecation-100670-1681916011", "Deprecation: #100670 - DI-aware FormEngine nodes" ], "compatibility-with-typo3-v11-and-v12": [ @@ -49075,25 +49207,25 @@ "deprecation-100721-label-related-methods-and-arguments": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Deprecation-100721-LabelRelatedMethodsAndArguments.html#deprecation-100721-label-related-methods-and-arguments", + "Changelog\/12.4\/Deprecation-100721-LabelRelatedMethodsAndArguments.html#deprecation-100721-1682333511", "Deprecation: #100721 - Label-related methods and arguments" ], "deprecation-98093-ext-icon-as-extension-icon-file-location": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Deprecation-98093-Ext_iconAsExtensionIconFileLocation.html#deprecation-98093-ext-icon-as-extension-icon-file-location", + "Changelog\/12.4\/Deprecation-98093-Ext_iconAsExtensionIconFileLocation.html#deprecation-98093-1681741493", "Deprecation: #98093 - ext_icon.* as extension icon file location" ], "deprecation-99237-magicimageservice": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Deprecation-99237-MagicImageService.html#deprecation-99237-magicimageservice", + "Changelog\/12.4\/Deprecation-99237-MagicImageService.html#deprecation-99237-1681640732", "Deprecation: #99237 - MagicImageService" ], "important-100207-let-datamapper-createemptyobject-use-doctrine-instantiator": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Important-100207-LetDataMappercreateEmptyObjectUseDoctrineinstantiator.html#important-100207-let-datamapper-createemptyobject-use-doctrine-instantiator", + "Changelog\/12.4\/Important-100207-LetDataMappercreateEmptyObjectUseDoctrineinstantiator.html#important-100207-1679414752", "Important: #100207 - Let DataMapper::createEmptyObject() use doctrine\/instantiator" ], "hydrating-objects": [ @@ -49141,25 +49273,25 @@ "important-100525-dropped-usage-of-text-right-and-text-left-classes": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Important-100525-DropUsageOfTextRightAndTextLeft.html#important-100525-dropped-usage-of-text-right-and-text-left-classes", + "Changelog\/12.4\/Important-100525-DropUsageOfTextRightAndTextLeft.html#important-100525-1681029540", "Important: #100525 - Dropped usage of .text(-)-right and .text(-)-left classes" ], "important-100634-rich-text-editor-always-enabled-per-user": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Important-100634-Rich-Text-EditorAlwaysEnabledPerUser.html#important-100634-rich-text-editor-always-enabled-per-user", + "Changelog\/12.4\/Important-100634-Rich-Text-EditorAlwaysEnabledPerUser.html#important-100634-1681822129", "Important: #100634 - Rich Text Editor always enabled per user" ], "important-100658-drop-use-tsconfig-options-createfoldersineb-and-foldertree-hidecreatefolder": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Important-100658-DropUserTSOptionsCreateFoldersInEBAndFolderTreehideCreateFolder.html#important-100658-drop-use-tsconfig-options-createfoldersineb-and-foldertree-hidecreatefolder", + "Changelog\/12.4\/Important-100658-DropUserTSOptionsCreateFoldersInEBAndFolderTreehideCreateFolder.html#important-100658-1681819486", "Important: #100658 - Drop use TSconfig options createFoldersInEB and folderTree.hideCreateFolder" ], "important-94246-generic-sudo-mode-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4\/Important-94246-GenericSudoModeConfiguration.html#important-94246-generic-sudo-mode-configuration", + "Changelog\/12.4\/Important-94246-GenericSudoModeConfiguration.html#important-94246-1681366863", "Important: #94246 - Generic sudo mode configuration" ], "process-in-a-nutshell": [ @@ -49177,79 +49309,79 @@ "deprecation-102099-deprecate-ckeditor5-bundle-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4.x\/Deprecation-102099-DeprecateCKEditor5BundleModule.html#deprecation-102099-deprecate-ckeditor5-bundle-module", + "Changelog\/12.4.x\/Deprecation-102099-DeprecateCKEditor5BundleModule.html#deprecation-102099", "Deprecation: #102099 - Deprecate CKEditor5 bundle module" ], "important-100847-added-font-plugin-to-ckeditor5": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4.x\/Important-100847-AddedFontPluginToCKEditor5.html#important-100847-added-font-plugin-to-ckeditor5", + "Changelog\/12.4.x\/Important-100847-AddedFontPluginToCKEditor5.html#important-100847-1686218342", "Important: #100847 - Added font plugin to CKEditor5" ], "important-100925-use-dedicated-cache-for-database-schema-information": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4.x\/Important-100925-UseDedicatedCacheForDatabaseSchemaInformation.html#important-100925-use-dedicated-cache-for-database-schema-information", + "Changelog\/12.4.x\/Important-100925-UseDedicatedCacheForDatabaseSchemaInformation.html#important-100925-1686234441", "Important: #100925 - Use dedicated cache for database schema information" ], "important-101128-ckeditor-s-highlight-plugin-introduces-mark-html-tag": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4.x\/Important-101128-CkeditorsHighlightPluginIntroducesMarkHTMLTag.html#important-101128-ckeditor-s-highlight-plugin-introduces-mark-html-tag", + "Changelog\/12.4.x\/Important-101128-CkeditorsHighlightPluginIntroducesMarkHTMLTag.html#important-101128-1723726464", "Important: #101128 - CKEditor's highlight plugin introduces mark HTML tag" ], "important-101567-use-symfony-attribute-to-autoconfigure-cli-commands": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4.x\/Important-101567-UseSymfonyAttributeToAutoconfigureCliCommands.html#important-101567-use-symfony-attribute-to-autoconfigure-cli-commands", + "Changelog\/12.4.x\/Important-101567-UseSymfonyAttributeToAutoconfigureCliCommands.html#important-101567-1691227840", "Important: #101567 - Use Symfony attribute to autoconfigure cli commands" ], "important-101580-introduce-content-security-policy-report-only-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4.x\/Important-101580-IntroduceContentSecurityPolicyReportOnlyHandling.html#important-101580-introduce-content-security-policy-report-only-handling", + "Changelog\/12.4.x\/Important-101580-IntroduceContentSecurityPolicyReportOnlyHandling.html#important-101580-1723653576", "Important: #101580 - Introduce Content-Security-Policy-Report-Only handling" ], "important-101776-email-validation-in-generalutility-validemail-now-rejects-spaces-before": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4.x\/Important-101776-ChangeInEmailValidation.html#important-101776-email-validation-in-generalutility-validemail-now-rejects-spaces-before", + "Changelog\/12.4.x\/Important-101776-ChangeInEmailValidation.html#important-101776-1694342579", "Important: #101776 - Email validation in GeneralUtility::validEmail() now rejects spaces before \"@\"" ], "important-102314-add-title-argument-to-iconviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4.x\/Important-102314-TitleCoreIconViewhelper.html#important-102314-add-title-argument-to-iconviewhelper", + "Changelog\/12.4.x\/Important-102314-TitleCoreIconViewhelper.html#important-102314-1699259952", "Important: #102314 - Add title argument to IconViewhelper" ], "important-102507-default-ckeditor5-allowed-classes-and-data-attributes-configurated-reverted": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4.x\/Important-102507-DefaultCKEditor5AllowedClassesAndDataAttributesConfiguratedReverted.html#important-102507-default-ckeditor5-allowed-classes-and-data-attributes-configurated-reverted", + "Changelog\/12.4.x\/Important-102507-DefaultCKEditor5AllowedClassesAndDataAttributesConfiguratedReverted.html#important-102507-1702317316", "Important: #102507 - Default CKEditor5 allowed classes and data attributes configurated reverted" ], "important-102904-use-tca-group-field-as-foreign-selector": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4.x\/Important-102904-UseTCAGroupFieldAsForeignSelector.html#important-102904-use-tca-group-field-as-foreign-selector", + "Changelog\/12.4.x\/Important-102904-UseTCAGroupFieldAsForeignSelector.html#important-102904-1706702424", "Important: #102904 - Use TCA group field as foreign selector" ], "important-103392-form-framework-select-markup-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4.x\/Important-103117-FormFrameworkSelectMarkupChanged.html#important-103392-form-framework-select-markup-changed", + "Changelog\/12.4.x\/Important-103117-FormFrameworkSelectMarkupChanged.html#important-103392-1710345611", "Important: #103392 - Form framework select markup changed" ], "important-103496-iso-format-used-for-date-rendering": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4.x\/Important-103496-ISOFormatUsedForDateRendering.html#important-103496-iso-format-used-for-date-rendering", + "Changelog\/12.4.x\/Important-103496-ISOFormatUsedForDateRendering.html#important-103496-1711623416", "Important: #103496 - ISO format used for date rendering" ], "important-104549-introduce-site-specific-content-security-policy-disposition": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4.x\/Important-104549-IntroduceSiteSpecificContentSecurityPolicyDisposition.html#important-104549-introduce-site-specific-content-security-policy-disposition", + "Changelog\/12.4.x\/Important-104549-IntroduceSiteSpecificContentSecurityPolicyDisposition.html#important-104549-1723461851", "Important: #104549 - Introduce site-specific Content-Security-Policy-Disposition" ], "example-disable-content-security-policy": [ @@ -49273,25 +49405,31 @@ "important-104693-setting-allowlanguagesynchronization-via-columnsoverrides": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4.x\/Important-104693-SettingAllowLanguageSynchronizationViaColumnsOverrides.html#important-104693-setting-allowlanguagesynchronization-via-columnsoverrides", + "Changelog\/12.4.x\/Important-104693-SettingAllowLanguageSynchronizationViaColumnsOverrides.html#important-104693-1725960199", "Important: #104693 - Setting allowLanguageSynchronization via columnsOverrides" ], "important-104827-allow-to-use-regular-expressions-in-ckeditor-yaml": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4.x\/Important-104827-AllowToUseRegularExpressionsInCKEditorYAML.html#important-104827-allow-to-use-regular-expressions-in-ckeditor-yaml", + "Changelog\/12.4.x\/Important-104827-AllowToUseRegularExpressionsInCKEditorYAML.html#important-104827-1725611875", "Important: #104827 - Allow to use Regular Expressions in CKEditor YAML" ], "important-104839-rte-processing-yaml-configuration-now-respects-removetags": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4.x\/Important-104839-RTEProcessingConfigurationRespectsRemoveTags.html#important-104839-rte-processing-yaml-configuration-now-respects-removetags", + "Changelog\/12.4.x\/Important-104839-RTEProcessingConfigurationRespectsRemoveTags.html#important-104839-1726124400", "Important: #104839 - RTE processing YAML configuration now respects removeTags" ], + "important-96218-use-proper-surrounding-html-tags-for-fluid-systememail": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/12.4.x\/Important-96218-UseProperSurroundingHTMLTagsForFluidSystemEmail.html#important-96218-1733990267", + "Important: #96218 - Use proper surrounding \"html\" tags for Fluid SystemEmail" + ], "important-99781-exporting-and-downloading-records-in-the-list-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/12.4.x\/Important-99781-ExportingAndDownloadingRecordsInTheListModule.html#important-99781-exporting-and-downloading-records-in-the-list-module", + "Changelog\/12.4.x\/Important-99781-ExportingAndDownloadingRecordsInTheListModule.html#important-99781-1707215955", "Important: #99781 - Exporting and downloading records in the list module" ], "12-4-x-changes": [ @@ -49303,181 +49441,181 @@ "breaking-100224-mfaviewtype-migrated-to-backed-enum": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-100224-MfaViewTypeMigratedToBackedEnum.html#breaking-100224-mfaviewtype-migrated-to-backed-enum", + "Changelog\/13.0\/Breaking-100224-MfaViewTypeMigratedToBackedEnum.html#breaking-100224-1688541732", "Breaking: #100224 - MfaViewType migrated to backed enum" ], "breaking-100229-convert-jsconfirmation-to-a-bitset": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-100229-ConvertJSConfirmationToBitSet.html#breaking-100229-convert-jsconfirmation-to-a-bitset", + "Changelog\/13.0\/Breaking-100229-ConvertJSConfirmationToBitSet.html#breaking-JSConfirmation-1687503100", "Breaking: #100229 - Convert JSConfirmation to a BitSet" ], "breaking-100963-deprecated-functionality-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-100963-DeprecatedFunctionalityRemoved.html#breaking-100963-deprecated-functionality-removed", + "Changelog\/13.0\/Breaking-100963-DeprecatedFunctionalityRemoved.html#breaking-100963-1686129084", "Breaking: #100963 - Deprecated functionality removed" ], "breaking-100966-remove-jquery-ui": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-100966-RemoveJquery-ui.html#breaking-100966-remove-jquery-ui", + "Changelog\/13.0\/Breaking-100966-RemoveJquery-ui.html#breaking-100966-1686062649", "Breaking: #100966 - Remove jquery-ui" ], "breaking-101129-convert-action-to-native-backed-enum": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101129-ConvertActionToNativeEnum.html#breaking-101129-convert-action-to-native-backed-enum", + "Changelog\/13.0\/Breaking-101129-ConvertActionToNativeEnum.html#breaking-Action-1687355374", "Breaking: #101129 - Convert Action to native backed enum" ], "breaking-101131-convert-logintype-to-native-backed-enum": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101131-ConvertLoginTypeToNativeEnum.html#breaking-101131-convert-logintype-to-native-backed-enum", + "Changelog\/13.0\/Breaking-101131-ConvertLoginTypeToNativeEnum.html#breaking-101131-1687289195", "Breaking: #101131 - Convert LoginType to native backed enum" ], "breaking-101133-iconfactory-geticon-signature-change": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101133-IconFactorySignatureChange.html#breaking-101133-iconfactory-geticon-signature-change", + "Changelog\/13.0\/Breaking-101133-IconFactorySignatureChange.html#breaking-101133-1687875354", "Breaking: #101133 - IconFactory->getIcon() signature change" ], "breaking-101133-icon-state-changed-type": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101133-IconStateChangedType.html#breaking-101133-icon-state-changed-type", + "Changelog\/13.0\/Breaking-101133-IconStateChangedType.html#breaking-101133-1687875355", "Breaking: #101133 - Icon->state changed type" ], "breaking-101137-page-doktype-recycler-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101137-PageDoktypeRecyclerRemoved.html#breaking-101137-page-doktype-recycler-removed", + "Changelog\/13.0\/Breaking-101137-PageDoktypeRecyclerRemoved.html#breaking-101137-1688397315", "Breaking: #101137 - Page Doktype \"Recycler\" removed" ], "breaking-101143-strict-typing-in-linktypeinterface": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101143-StrictTypingLinktypeInterface.html#breaking-101143-strict-typing-in-linktypeinterface", + "Changelog\/13.0\/Breaking-101143-StrictTypingLinktypeInterface.html#breaking-LinktypeInterface-1687413563", "Breaking: #101143 - Strict typing in LinktypeInterface" ], "breaking-101149-mark-pagetsbackendlayoutdataprovider-as-final": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101149-MarkPageTsBackendLayoutDataProviderAsFinal.html#breaking-101149-mark-pagetsbackendlayoutdataprovider-as-final", + "Changelog\/13.0\/Breaking-101149-MarkPageTsBackendLayoutDataProviderAsFinal.html#breaking-PageTsBackendLayoutDataProvider-1687440947", "Breaking: #101149 - Mark PageTsBackendLayoutDataProvider as final" ], "breaking-101175-convert-versionstate-to-native-backed-enum": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101175-ConvertVersionStateToNativeEnum.html#breaking-101175-convert-versionstate-to-native-backed-enum", + "Changelog\/13.0\/Breaking-101175-ConvertVersionStateToNativeEnum.html#breaking-VersionState-1687856333", "Breaking: #101175 - Convert VersionState to native backed enum" ], "breaking-101186-strict-typing-in-unabletolinkexception": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101186-StrictTypingUnableToLinkException.html#breaking-101186-strict-typing-in-unabletolinkexception", + "Changelog\/13.0\/Breaking-101186-StrictTypingUnableToLinkException.html#breaking-UnableToLinkException-1687953808", "Breaking: #101186 - Strict typing in UnableToLinkException" ], "breaking-101192-remove-fallback-for-ckeditor-removeplugins": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101192-RemoveFallbackRemovePlugins.html#breaking-101192-remove-fallback-for-ckeditor-removeplugins", + "Changelog\/13.0\/Breaking-101192-RemoveFallbackRemovePlugins.html#breaking-101192-1688017013", "Breaking: #101192 - Remove fallback for CKEditor removePlugins" ], "breaking-101266-remove-requirejs": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101266-RemoveRequireJS.html#breaking-101266-remove-requirejs", + "Changelog\/13.0\/Breaking-101266-RemoveRequireJS.html#breaking-101266-1688654482", "Breaking: #101266 - Remove RequireJS" ], "breaking-101281-introduce-type-declarations-in-resourceinterface": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101281-IntroduceTypeDeclarationsInResourceInterface.html#breaking-101281-introduce-type-declarations-in-resourceinterface", + "Changelog\/13.0\/Breaking-101281-IntroduceTypeDeclarationsInResourceInterface.html#breaking-101281-1688708590", "Breaking: #101281 - Introduce type declarations in ResourceInterface" ], "breaking-101291-introduce-capabilities-bit-set": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101291-IntroduceCapabilitiesBitSet.html#breaking-101291-introduce-capabilities-bit-set", + "Changelog\/13.0\/Breaking-101291-IntroduceCapabilitiesBitSet.html#breaking-101291-1688740732", "Breaking: #101291 - Introduce capabilities bit set" ], "breaking-101294-introduce-type-declarations-in-fileinterface": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101294-IntroduceTypeDeclarationsInFileInterface.html#breaking-101294-introduce-type-declarations-in-fileinterface", + "Changelog\/13.0\/Breaking-101294-IntroduceTypeDeclarationsInFileInterface.html#breaking-101294-1688885539", "Breaking: #101294 - Introduce type declarations in FileInterface" ], "breaking-101305-introduce-type-declarations-for-some-methods-in-generalutility": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101305-IntroduceTypeDeclarationsInGeneralUtilityMethods.html#breaking-101305-introduce-type-declarations-for-some-methods-in-generalutility", + "Changelog\/13.0\/Breaking-101305-IntroduceTypeDeclarationsInGeneralUtilityMethods.html#breaking-101305-1689059968", "Breaking: #101305 - Introduce type declarations for some methods in GeneralUtility" ], "breaking-101309-introduce-type-declarations-in-driverinterface": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101309-IntroduceTypeDeclarationsInDriverInterface.html#breaking-101309-introduce-type-declarations-in-driverinterface", + "Changelog\/13.0\/Breaking-101309-IntroduceTypeDeclarationsInDriverInterface.html#breaking-101309-1689061837", "Breaking: #101309 - Introduce type declarations in DriverInterface" ], "breaking-101311-make-the-parameter-for-generalutility-sanitizelocalurl-required": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101311-MakeParameterForGeneralUtilitySanitizeLocalUrlRequired.html#breaking-101311-make-the-parameter-for-generalutility-sanitizelocalurl-required", + "Changelog\/13.0\/Breaking-101311-MakeParameterForGeneralUtilitySanitizeLocalUrlRequired.html#breaking-101311-1689067519", "Breaking: #101311 - Make the parameter for GeneralUtility::sanitizeLocalUrl required" ], "breaking-101327-harden-fileinterface-getsize": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101327-HardenFileInterfacegetSize.html#breaking-101327-harden-fileinterface-getsize", + "Changelog\/13.0\/Breaking-101327-HardenFileInterfacegetSize.html#breaking-101327-1689092559", "Breaking: #101327 - Harden FileInterface::getSize()" ], "breaking-101398-remove-leftover-fetchallfields-in-relationhandler": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101398-FetchAllFieldsRelationHandler.html#breaking-101398-remove-leftover-fetchallfields-in-relationhandler", + "Changelog\/13.0\/Breaking-101398-FetchAllFieldsRelationHandler.html#breaking-101398-1689861816", "Breaking: #101398 - Remove leftover $fetchAllFields in RelationHandler" ], "breaking-101469-introduce-type-declarations-in-folderinterface": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101469-IntroduceTypeDeclarationsInFolderInterface.html#breaking-101469-introduce-type-declarations-in-folderinterface", + "Changelog\/13.0\/Breaking-101469-IntroduceTypeDeclarationsInFolderInterface.html#breaking-101469-1690528614", "Breaking: #101469 - Introduce type declarations in FolderInterface" ], "breaking-101471-introduce-type-declarations-in-abstractdriver": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101471-IntroduceTypeDeclarationsInAbstractDriver.html#breaking-101471-introduce-type-declarations-in-abstractdriver", + "Changelog\/13.0\/Breaking-101471-IntroduceTypeDeclarationsInAbstractDriver.html#breaking-101471-1690531810", "Breaking: #101471 - Introduce type declarations in AbstractDriver" ], "breaking-101519-remove-immediate-flag-in-debounceevent": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101519-RemoveImmediateFlagInDebounceEvent.html#breaking-101519-remove-immediate-flag-in-debounceevent", + "Changelog\/13.0\/Breaking-101519-RemoveImmediateFlagInDebounceEvent.html#breaking-101519-1690884375", "Breaking: #101519 - Remove immediate flag in DebounceEvent" ], "breaking-101603-removed-hook-for-overriding-icon-overlay-identifier": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101603-RemovedHookForOverridingIconOverlayIdentifier.html#breaking-101603-removed-hook-for-overriding-icon-overlay-identifier", + "Changelog\/13.0\/Breaking-101603-RemovedHookForOverridingIconOverlayIdentifier.html#breaking-101603-1691322822", "Breaking: #101603 - Removed hook for overriding icon overlay identifier" ], "breaking-101612-linkparameterproviderinterface-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101612-LinkParameterProviderInterfaceChanged.html#breaking-101612-linkparameterproviderinterface-changed", + "Changelog\/13.0\/Breaking-101612-LinkParameterProviderInterfaceChanged.html#breaking-101612-1691447955", "Breaking: #101612 - LinkParameterProviderInterface changed" ], "breaking-101647-unused-graphical-assets-removed-from-ext-backend": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101647-UnusedGraphicalAssetsRemovedFromEXTbackend.html#breaking-101647-unused-graphical-assets-removed-from-ext-backend", + "Changelog\/13.0\/Breaking-101647-UnusedGraphicalAssetsRemovedFromEXTbackend.html#breaking-101647-1691669710", "Breaking: #101647 - Unused graphical assets removed from EXT:backend" ], "breaking-101671-disable-external-linktypes-by-default-in-ext-linkvalidator": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101671-DisableExternalLinktypesByDefaultInEXTlinkvalidator.html#breaking-101671-disable-external-linktypes-by-default-in-ext-linkvalidator", + "Changelog\/13.0\/Breaking-101671-DisableExternalLinktypesByDefaultInEXTlinkvalidator.html#breaking-101671-1691924837", "Breaking: #101671 - Disable external linktypes by default in EXT:linkvalidator" ], "example-for-activating-external-linktype": [ @@ -49489,289 +49627,289 @@ "breaking-101820-remove-bootstrap-jquery-interface-and-window-jquery": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101820-RemoveBootstrapJQueryInterfaceAndWindowJQuery.html#breaking-101820-remove-bootstrap-jquery-interface-and-window-jquery", + "Changelog\/13.0\/Breaking-101820-RemoveBootstrapJQueryInterfaceAndWindowJQuery.html#breaking-101820", "Breaking: #101820 - Remove bootstrap jQuery interface and window.jQuery" ], "breaking-101822-change-callback-interruption-in-typo3-backend-document-save-actions": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101822-ChangeCallbackInterruptionInTypo3backenddocument-save-actions.html#breaking-101822-change-callback-interruption-in-typo3-backend-document-save-actions", + "Changelog\/13.0\/Breaking-101822-ChangeCallbackInterruptionInTypo3backenddocument-save-actions.html#breaking-101822-1693575438", "Breaking: #101822 - Change callback interruption in @typo3\/backend\/document-save-actions" ], "breaking-101933-dispatch-afteruserloggedinevent-for-frontend-user-login": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101933-DispatchAfterUserLoggedInEventForFrontendUserLogin.html#breaking-101933-dispatch-afteruserloggedinevent-for-frontend-user-login", + "Changelog\/13.0\/Breaking-101933-DispatchAfterUserLoggedInEventForFrontendUserLogin.html#breaking-101933-1695472624", "Breaking: #101933 - Dispatch AfterUserLoggedInEvent for frontend user login" ], "breaking-101941-various-gfx-related-legacy-options-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101941-VariousGFX-relatedLegacyOptionsRemoved.html#breaking-101941-various-gfx-related-legacy-options-removed", + "Changelog\/13.0\/Breaking-101941-VariousGFX-relatedLegacyOptionsRemoved.html#breaking-101941-1695060791", "Breaking: #101941 - Various GFX-related legacy options removed" ], "breaking-101948-file-based-abstractrepository-class-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101948-FileBasedAbstractRepositoryClassRemoved.html#breaking-101948-file-based-abstractrepository-class-removed", + "Changelog\/13.0\/Breaking-101948-FileBasedAbstractRepositoryClassRemoved.html#breaking-101948-1695118827", "Breaking: #101948 - File-based AbstractRepository class removed" ], "breaking-101950-removed-legacy-setting-gfx-processor-allowtemporarymasksaspng": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101950-RemovedLegacySettingGFXprocessor_allowTemporaryMasksAsPng.html#breaking-101950-removed-legacy-setting-gfx-processor-allowtemporarymasksaspng", + "Changelog\/13.0\/Breaking-101950-RemovedLegacySettingGFXprocessor_allowTemporaryMasksAsPng.html#breaking-101950-1695121128", "Breaking: #101950 - Removed legacy setting 'GFX\/processor_allowTemporaryMasksAsPng'" ], "breaking-101955-removed-public-methods-related-to-image-generation": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-101955-RemovedPublicMethodsRelatedToImageGeneration.html#breaking-101955-removed-public-methods-related-to-image-generation", + "Changelog\/13.0\/Breaking-101955-RemovedPublicMethodsRelatedToImageGeneration.html#breaking-101955-1695195288", "Breaking: #101955 - Removed public methods related to Image Generation" ], "breaking-102009-imagesizes-cache-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102009-ImagesizesCacheRemoved.html#breaking-102009-imagesizes-cache-removed", + "Changelog\/13.0\/Breaking-102009-ImagesizesCacheRemoved.html#breaking-102009-1695376655", "Breaking: #102009 - imagesizes cache removed" ], "breaking-102020-removed-legacy-setting-gfx-gdlib-png": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102020-RemovedLegacySettingGFXgdlib_png.html#breaking-102020-removed-legacy-setting-gfx-gdlib-png", + "Changelog\/13.0\/Breaking-102020-RemovedLegacySettingGFXgdlib_png.html#breaking-102020-1695429353", "Breaking: #102020 - Removed legacy setting 'GFX\/gdlib_png'" ], "breaking-102023-remove-security-usepasswordpolicyforfrontendusers": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102023-RemoveSecurityusePasswordPolicyForFrontendUsers.html#breaking-102023-remove-security-usepasswordpolicyforfrontendusers", + "Changelog\/13.0\/Breaking-102023-RemoveSecurityusePasswordPolicyForFrontendUsers.html#breaking-102023-1695557477", "Breaking: #102023 - Remove security.usePasswordPolicyForFrontendUsers" ], "breaking-102108-tca-types-bitmask-settings": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102108-TCATypesbitmask_Settings.html#breaking-102108-tca-types-bitmask-settings", + "Changelog\/13.0\/Breaking-102108-TCATypesbitmask_Settings.html#breaking-102108-1696618684", "Breaking: #102108 - TCA [types][bitmask_*] settings" ], "breaking-102113-removed-legacy-setting-gfx-gdlib": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102113-RemovedLegacySettingGFXgdlib.html#breaking-102113-removed-legacy-setting-gfx-gdlib", + "Changelog\/13.0\/Breaking-102113-RemovedLegacySettingGFXgdlib.html#breaking-102113-1696697947", "Breaking: #102113 - Removed legacy setting 'GFX\/gdlib'" ], "breaking-102146-removed-legacy-setting-be-flexformforcecdata": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102146-RemovedLegacySettingBEflexformForceCDATA.html#breaking-102146-removed-legacy-setting-be-flexformforcecdata", + "Changelog\/13.0\/Breaking-102146-RemovedLegacySettingBEflexformForceCDATA.html#breaking-102146-1697045119", "Breaking: #102146 - Removed legacy setting 'BE\/flexformForceCDATA'" ], "breaking-102151-xml-prologue-always-added-in-flexarray2xml": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102151-XMLPrologueAlwaysAddedInFlexArray2Xml.html#breaking-102151-xml-prologue-always-added-in-flexarray2xml", + "Changelog\/13.0\/Breaking-102151-XMLPrologueAlwaysAddedInFlexArray2Xml.html#breaking-102151-1697111006", "Breaking: #102151 - XML prologue always added in flexArray2Xml()" ], "breaking-102165-file-abstraction-layer-processing-apis-and-interface-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102165-FileAbstractionLayerProcessingAPIsAndInterfaceChanged.html#breaking-102165-file-abstraction-layer-processing-apis-and-interface-changed", + "Changelog\/13.0\/Breaking-102165-FileAbstractionLayerProcessingAPIsAndInterfaceChanged.html#breaking-102165-1698700428", "Breaking: #102165 - File Abstraction Layer: Processing APIs and interface changed" ], "breaking-102181-removed-cli-options-using-bin-typo3-cleanup-flexforms": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102181-RemovedCLIOptionsUsingBintypo3Cleanupflexforms.html#breaking-102181-removed-cli-options-using-bin-typo3-cleanup-flexforms", + "Changelog\/13.0\/Breaking-102181-RemovedCLIOptionsUsingBintypo3Cleanupflexforms.html#breaking-102181-1697467272", "Breaking: #102181 - Removed CLI options using bin\/typo3 cleanup:flexforms" ], "breaking-102224-templavoila-related-flexform-datastructure-lookups": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102224-TemplaVoilaRelatedFlexFormDataStructureLookups.html#breaking-102224-templavoila-related-flexform-datastructure-lookups", + "Changelog\/13.0\/Breaking-102224-TemplaVoilaRelatedFlexFormDataStructureLookups.html#breaking-102224-1697983588", "Breaking: #102224 - TemplaVoila related FlexForm dataStructure lookups" ], "breaking-102229-removed-flexformtools-traverseflexformxmldata": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102229-RemovedFlexFormTools-traverseFlexFormXMLData.html#breaking-102229-removed-flexformtools-traverseflexformxmldata", + "Changelog\/13.0\/Breaking-102229-RemovedFlexFormTools-traverseFlexFormXMLData.html#breaking-102229-1698053674", "Breaking: #102229 - Removed FlexFormTools->traverseFlexFormXMLData()" ], "breaking-102260-removed-tca-softref-notify": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102260-RemovedTCASoftrefNotify.html#breaking-102260-removed-tca-softref-notify", + "Changelog\/13.0\/Breaking-102260-RemovedTCASoftrefNotify.html#breaking-102260-1698252706", "Breaking: #102260 - Removed TCA ['softref'] = 'notify'" ], "breaking-102440-ext-t3editor-merged-into-ext-backend": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102440-EXTt3editorMergedIntoEXTbackend.html#breaking-102440-ext-t3editor-merged-into-ext-backend", + "Changelog\/13.0\/Breaking-102440-EXTt3editorMergedIntoEXTbackend.html#breaking-102440-1700638677", "Breaking: #102440 - EXT:t3editor merged into EXT:backend" ], "breaking-102499-user-tsconfig-setting-overridepagemodule-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102499-UserTSconfigSettingOverridePageModuleRemoved.html#breaking-102499-user-tsconfig-setting-overridepagemodule-removed", + "Changelog\/13.0\/Breaking-102499-UserTSconfigSettingOverridePageModuleRemoved.html#breaking-102499-1700813634", "Breaking: #102499 - User TSconfig setting \"overridePageModule\" removed" ], "breaking-102518-database-engine-version-requirements": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102518-DatabaseEngineVersionRequirements.html#breaking-102518-database-engine-version-requirements", + "Changelog\/13.0\/Breaking-102518-DatabaseEngineVersionRequirements.html#breaking-102518-1701035329", "Breaking: #102518 - Database engine version requirements" ], "breaking-102581-removed-hook-for-manipulating-contentobjectrenderer": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102581-RemovedHookForManipulatingContentObjectRenderer.html#breaking-102581-removed-hook-for-manipulating-contentobjectrenderer", + "Changelog\/13.0\/Breaking-102581-RemovedHookForManipulatingContentObjectRenderer.html#breaking-102581-1701449553", "Breaking: #102581 - Removed hook for manipulating ContentObjectRenderer" ], "breaking-102583-removed-context-aspect-typoscript": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102583-RemovedContextAspectTyposcript.html#breaking-102583-removed-context-aspect-typoscript", + "Changelog\/13.0\/Breaking-102583-RemovedContextAspectTyposcript.html#breaking-102583-1701510037", "Breaking: #102583 - Removed context aspect typoscript" ], "breaking-102590-tsfe-generatepage-preprocessing-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102590-TSFE-generatePage_preProcessingRemoved.html#breaking-102590-tsfe-generatepage-preprocessing-removed", + "Changelog\/13.0\/Breaking-102590-TSFE-generatePage_preProcessingRemoved.html#breaking-102590-1701598566", "Breaking: #102590 - TSFE->generatePage_preProcessing() removed" ], "breaking-102600-tsfe-applicationdata-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102600-TSFE-applicationDataRemoved.html#breaking-102600-tsfe-applicationdata-removed", + "Changelog\/13.0\/Breaking-102600-TSFE-applicationDataRemoved.html#breaking-102600-1701707508", "Breaking: #102600 - TSFE->applicationData removed" ], "breaking-102605-tsfe-fe-user-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102605-TSFE-fe_userRemoved.html#breaking-102605-tsfe-fe-user-removed", + "Changelog\/13.0\/Breaking-102605-TSFE-fe_userRemoved.html#breaking-102605-1701772495", "Breaking: #102605 - TSFE->fe_user removed" ], "breaking-102614-removed-hook-for-manipulating-getdata-result": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102614-RemovedHookForManipulatingGetDataResult.html#breaking-102614-removed-hook-for-manipulating-getdata-result", + "Changelog\/13.0\/Breaking-102614-RemovedHookForManipulatingGetDataResult.html#breaking-102614-1701869646", "Breaking: #102614 - Removed Hook for manipulating GetData result" ], "breaking-102621-most-tsfe-members-marked-internal-or-read-only": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102621-MostTSFEMembersMarkedInternalOrRead-only.html#breaking-102621-most-tsfe-members-marked-internal-or-read-only", + "Changelog\/13.0\/Breaking-102621-MostTSFEMembersMarkedInternalOrRead-only.html#breaking-102621-1701937690", "Breaking: #102621 - Most TSFE members marked internal or read-only" ], "breaking-102624-psr-14-event-for-modifying-image-source-collection": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102624-RemovedHookForManipulatingImageSourceCollection.html#breaking-102624-psr-14-event-for-modifying-image-source-collection", + "Changelog\/13.0\/Breaking-102624-RemovedHookForManipulatingImageSourceCollection.html#breaking-102624-1701943942", "Breaking: #102624 - PSR-14 Event for modifying image source collection" ], "breaking-102627-removed-special-properties-of-page-arrays-in-pagerepository": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102627-RemovedSpecialPropertiesOfPageArraysInPageRepository.html#breaking-102627-removed-special-properties-of-page-arrays-in-pagerepository", + "Changelog\/13.0\/Breaking-102627-RemovedSpecialPropertiesOfPageArraysInPageRepository.html#breaking-102627-1704301828", "Breaking: #102627 - Removed special properties of page arrays in PageRepository" ], "breaking-102632-use-strict-types-in-extbase": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102632-UseStrictTypesInExtbase.html#breaking-102632-use-strict-types-in-extbase", + "Changelog\/13.0\/Breaking-102632-UseStrictTypesInExtbase.html#breaking-102632-1702043797", "Breaking: #102632 - Use strict types in Extbase" ], "breaking-102645-more-strict-context-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102645-MoreStrictContextHandling.html#breaking-102645-more-strict-context-handling", + "Changelog\/13.0\/Breaking-102645-MoreStrictContextHandling.html#breaking-102645-1702194379", "Breaking: #102645 - More strict Context handling" ], "breaking-102715-frontend-determineid-related-events-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102715-FrontendDetermineIdRelatedEventsChanged.html#breaking-102715-frontend-determineid-related-events-changed", + "Changelog\/13.0\/Breaking-102715-FrontendDetermineIdRelatedEventsChanged.html#breaking-102715-1703254781", "Breaking: #102715 - Frontend \"determineId()\" related events changed" ], "breaking-102731-removed-typoscript-setting-showforgotpasswordlink-in-ext-felogin": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102731-RemovedTypoScriptSettingShowForgotPasswordLinkInExtfelogin.html#breaking-102731-removed-typoscript-setting-showforgotpasswordlink-in-ext-felogin", + "Changelog\/13.0\/Breaking-102731-RemovedTypoScriptSettingShowForgotPasswordLinkInExtfelogin.html#breaking-102731-1703944154", "Breaking: #102731 - Removed TypoScript setting showForgotPasswordLink in ext:felogin" ], "breaking-102745-removed-contentobject-stdwrap-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102745-RemovedContentObjectStdWrapHook.html#breaking-102745-removed-contentobject-stdwrap-hook", + "Changelog\/13.0\/Breaking-102745-RemovedContentObjectStdWrapHook.html#breaking-102745-1705054472", "Breaking: #102745 - Removed ContentObject stdWrap hook" ], "breaking-102755-improved-getimageresource-functionality": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102755-ImprovedGetImageResourceFunctionality.html#breaking-102755-improved-getimageresource-functionality", + "Changelog\/13.0\/Breaking-102755-ImprovedGetImageResourceFunctionality.html#breaking-102755-1704381963", "Breaking: #102755 - Improved getImageResource functionality" ], "breaking-102763-extbase-hashservice-usage-replaced-with-core-hashservice": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102763-ExtbaseHashServiceUsageReplacedWithCoreHashService.html#breaking-102763-extbase-hashservice-usage-replaced-with-core-hashservice", + "Changelog\/13.0\/Breaking-102763-ExtbaseHashServiceUsageReplacedWithCoreHashService.html#breaking-102763-1706362598", "Breaking: #102763 - Extbase HashService usage replaced with Core HashService" ], "breaking-102763-frontend-user-password-recovery-hashes-invalidated": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102763-FrontendUserPasswordRecoveryHashesInvalidated.html#breaking-102763-frontend-user-password-recovery-hashes-invalidated", + "Changelog\/13.0\/Breaking-102763-FrontendUserPasswordRecoveryHashesInvalidated.html#breaking-102763-1706375934", "Breaking: #102763 - Frontend user password recovery hashes invalidated" ], "breaking-102775-pagerepository-methods-with-native-php-types": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102775-PageRepositoryMethodsWithNativePHPTypes.html#breaking-102775-pagerepository-methods-with-native-php-types", + "Changelog\/13.0\/Breaking-102775-PageRepositoryMethodsWithNativePHPTypes.html#breaking-102775-1704711591", "Breaking: #102775 - PageRepository methods with native PHP types" ], "breaking-102779-typo3-v13-system-requirements": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102779-TYPO3V13SystemRequirements.html#breaking-102779-typo3-v13-system-requirements", + "Changelog\/13.0\/Breaking-102779-TYPO3V13SystemRequirements.html#breaking-102779-1704721008", "Breaking: #102779 - TYPO3 v13 System Requirements" ], "breaking-102793-pagerepository-enablefields-hook-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102793-PageRepository-enableFieldsHookRemoved.html#breaking-102793-pagerepository-enablefields-hook-removed", + "Changelog\/13.0\/Breaking-102793-PageRepository-enableFieldsHookRemoved.html#breaking-102793-1704798752", "Breaking: #102793 - PageRepository->enableFields hook removed" ], "breaking-102806-hooks-in-pagerepository-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102806-HooksInPageRepositoryRemoved.html#breaking-102806-hooks-in-pagerepository-removed", + "Changelog\/13.0\/Breaking-102806-HooksInPageRepositoryRemoved.html#breaking-102806-1704874383", "Breaking: #102806 - Hooks in PageRepository removed" ], "breaking-102834-remove-items-from-new-content-element-wizard": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102834-RemoveItemsFromNewContentElementWizard.html#breaking-102834-remove-items-from-new-content-element-wizard", + "Changelog\/13.0\/Breaking-102834-RemoveItemsFromNewContentElementWizard.html#breaking-102834-1705491713", "Breaking: #102834 - Remove items from New Content Element Wizard" ], "breaking-102835-strict-typing-in-final-typolinkcodecservice": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102835-StrictTypingInFinalTypoLinkCodecService.html#breaking-102835-strict-typing-in-final-typolinkcodecservice", + "Changelog\/13.0\/Breaking-102835-StrictTypingInFinalTypoLinkCodecService.html#breaking-102835-1705314374", "Breaking: #102835 - Strict typing in final TypoLinkCodecService" ], "breaking-102849-removed-contentobject-stdwrap-cachestore-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102849-RemovedContentObjectStdWrapCacheStoreHook.html#breaking-102849-removed-contentobject-stdwrap-cachestore-hook", + "Changelog\/13.0\/Breaking-102849-RemovedContentObjectStdWrapCacheStoreHook.html#breaking-102849-1705514231", "Breaking: #102849 - Removed ContentObject stdWrap cacheStore hook" ], "breaking-102855-removed-linkservice-resolvebystringrepresentation-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102855-RemovedLinkServiceResolveByStringRepresentationHook.html#breaking-102855-removed-linkservice-resolvebystringrepresentation-hook", + "Changelog\/13.0\/Breaking-102855-RemovedLinkServiceResolveByStringRepresentationHook.html#breaking-102855-1705567984", "Breaking: #102855 - Removed LinkService resolveByStringRepresentation hook" ], "breaking-102875-changed-connection-method-signatures-and-behaviour": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102875-ChangedConnectionMethodSignaturesAndBehaviour.html#breaking-102875-changed-connection-method-signatures-and-behaviour", + "Changelog\/13.0\/Breaking-102875-ChangedConnectionMethodSignaturesAndBehaviour.html#breaking-102875-1705944556", "Breaking: #102875 - Changed Connection method signatures and behaviour" ], "php-lastinsertid": [ @@ -49783,7 +49921,7 @@ "breaking-102875-expressionbuilder-changes": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102875-ExpressionBuilderChanges.html#breaking-102875-expressionbuilder-changes", + "Changelog\/13.0\/Breaking-102875-ExpressionBuilderChanges.html#breaking-102875-1706013339", "Breaking: #102875 - ExpressionBuilder changes" ], "signature-changes-for-following-methods": [ @@ -49813,7 +49951,7 @@ "breaking-102875-querybuilder-changes": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102875-QueryBuilderChanges.html#breaking-102875-querybuilder-changes", + "Changelog\/13.0\/Breaking-102875-QueryBuilderChanges.html#breaking-102875-1705944493", "Breaking: #102875 - QueryBuilder changes" ], "php-querybuilder-add-query-part-name": [ @@ -49849,19 +49987,19 @@ "breaking-102895-packageinterface-modified": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102895-PackageInterfaceModified.html#breaking-102895-packageinterface-modified", + "Changelog\/13.0\/Breaking-102895-PackageInterfaceModified.html#breaking-102895-1706002517", "Breaking: #102895 - PackageInterface modified" ], "breaking-102900-metaphone-search-removed-from-indexed-search": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102900-MetaphoneSearchRemovedFromIndexed_search.html#breaking-102900-metaphone-search-removed-from-indexed-search", + "Changelog\/13.0\/Breaking-102900-MetaphoneSearchRemovedFromIndexed_search.html#breaking-102900-1706016651", "Breaking: #102900 - Metaphone search removed from indexed_search" ], "breaking-102902-search-rules-removed-from-indexed-search": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102902-SearchRulesRemovedFromIndexedSearch.html#breaking-102902-search-rules-removed-from-indexed-search", + "Changelog\/13.0\/Breaking-102902-SearchRulesRemovedFromIndexedSearch.html#breaking-102902-1706022423", "Breaking: #102902 - Search rules removed from Indexed Search" ], "fluid": [ @@ -49873,25 +50011,25 @@ "breaking-102907-indexed-search-typoscript-settings-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102907-IndexedSearchTypoScriptSettingsRemoved.html#breaking-102907-indexed-search-typoscript-settings-removed", + "Changelog\/13.0\/Breaking-102907-IndexedSearchTypoScriptSettingsRemoved.html#breaking-102907-1706043066", "Breaking: #102907 - Indexed Search TypoScript settings removed" ], "breaking-102921-remove-several-outdated-indexed-search-features": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102921-RemoveSeveralOutdatedIndexedSearchFeatures.html#breaking-102921-remove-several-outdated-indexed-search-features", + "Changelog\/13.0\/Breaking-102921-RemoveSeveralOutdatedIndexedSearchFeatures.html#breaking-102921-1706170368", "Breaking: #102921 - Remove several outdated indexed search features" ], "breaking-102924-single-table-inheritance-from-fe-groups-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102924-SingleTableInheritanceFromFeGroupsRemoved.html#breaking-102924-single-table-inheritance-from-fe-groups-removed", + "Changelog\/13.0\/Breaking-102924-SingleTableInheritanceFromFeGroupsRemoved.html#breaking-102924-1706178654", "Breaking: #102924 - Single Table Inheritance from fe_groups removed" ], "breaking-102925-template-changes-in-indexed-search": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102925-TemplateChangesInIndexedSearch.html#breaking-102925-template-changes-in-indexed-search", + "Changelog\/13.0\/Breaking-102925-TemplateChangesInIndexedSearch.html#breaking-102925-1706182267", "Breaking: #102925 - Template changes in Indexed Search" ], "pagination": [ @@ -49915,43 +50053,43 @@ "breaking-102931-removed-hook-in-gifbuilder": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102931-GifBuilderHookRemoved.html#breaking-102931-removed-hook-in-gifbuilder", + "Changelog\/13.0\/Breaking-102931-GifBuilderHookRemoved.html#breaking-102931-1706198332", "Breaking: #102931 - Removed hook in GifBuilder" ], "breaking-102932-removed-typoscriptfrontendcontroller-hooks": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102932-RemovedTypoScriptFrontendControllerHooks.html#breaking-102932-removed-typoscriptfrontendcontroller-hooks", + "Changelog\/13.0\/Breaking-102932-RemovedTypoScriptFrontendControllerHooks.html#breaking-102932-1706202449", "Breaking: #102932 - Removed TypoScriptFrontendController hooks" ], "breaking-102935-overhauled-extension-installation-in-extension-manager": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102935-OverhauledExtensionInstallationInExtensionManager.html#breaking-102935-overhauled-extension-installation-in-extension-manager", + "Changelog\/13.0\/Breaking-102935-OverhauledExtensionInstallationInExtensionManager.html#breaking-102935-1706258423", "Breaking: #102935 - Overhauled extension installation in Extension Manager" ], "breaking-102937-pi1-hooks-hook-removed-from-indexed-search": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102937-Pi1_hooksHookRemovedFromIndexedSearch.html#breaking-102937-pi1-hooks-hook-removed-from-indexed-search", + "Changelog\/13.0\/Breaking-102937-Pi1_hooksHookRemovedFromIndexedSearch.html#breaking-102937-1706261180", "Breaking: #102937 - pi1_hooks hook removed from Indexed Search" ], "breaking-102945-pagination-of-indexed-search-replaced": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102945-PaginationOfIndexedSearchReplaced.html#breaking-102945-pagination-of-indexed-search-replaced", + "Changelog\/13.0\/Breaking-102945-PaginationOfIndexedSearchReplaced.html#breaking-102945-1706274593", "Breaking: #102945 - Pagination of Indexed Search replaced" ], "breaking-102968-formengine-itemformelid-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102968-FormEngineItemFormElIDRemoved.html#breaking-102968-formengine-itemformelid-removed", + "Changelog\/13.0\/Breaking-102968-FormEngineItemFormElIDRemoved.html#breaking-102968-1706440705", "Breaking: #102968 - FormEngine itemFormElID removed" ], "breaking-102970-no-database-relations-in-flexform-container-sections": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102970-NoDatabaseRelationsInFlexFormSectionContainers.html#breaking-102970-no-database-relations-in-flexform-container-sections", + "Changelog\/13.0\/Breaking-102970-NoDatabaseRelationsInFlexFormSectionContainers.html#breaking-102970-1706447911", "Breaking: #102970 - No database relations in FlexForm container sections" ], "affected-flexform-xml": [ @@ -49969,157 +50107,157 @@ "breaking-102971-most-classes-of-ext-workspaces-declared-internal": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102971-MostClassesOfEXTworkspacesDeclaredInternal.html#breaking-102971-most-classes-of-ext-workspaces-declared-internal", + "Changelog\/13.0\/Breaking-102971-MostClassesOfEXTworkspacesDeclaredInternal.html#breaking-102971-1706453204", "Breaking: #102971 - Most classes of EXT:workspaces declared internal" ], "breaking-102975-use-full-md5-hashes-in-indexed-search": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102975-UseFullMd5HashesInIndexed_search.html#breaking-102975-use-full-md5-hashes-in-indexed-search", + "Changelog\/13.0\/Breaking-102975-UseFullMd5HashesInIndexed_search.html#breaking-102975-1706525161", "Breaking: #102975 - Use full md5 hashes in indexed_search" ], "breaking-102976-timetracker-read-api-internal": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102976-TimeTrackerReadAPIInternal.html#breaking-102976-timetracker-read-api-internal", + "Changelog\/13.0\/Breaking-102976-TimeTrackerReadAPIInternal.html#breaking-102976-1706528522", "Breaking: #102976 - TimeTracker read API internal" ], "breaking-102980-getallpagenumbers-in-paginationinterface": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102980-GetAllPageNumbersInPaginationInterface.html#breaking-102980-getallpagenumbers-in-paginationinterface", + "Changelog\/13.0\/Breaking-102980-GetAllPageNumbersInPaginationInterface.html#breaking-102980-1706534274", "Breaking: #102980 - getAllPageNumbers() in PaginationInterface" ], "breaking-102985-declare-indexed-search-as-content-type": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-102985-DeclareIndexedSearchAsContentType.html#breaking-102985-declare-indexed-search-as-content-type", + "Changelog\/13.0\/Breaking-102985-DeclareIndexedSearchAsContentType.html#breaking-102985-1706549304", "Breaking: #102985 - Declare Indexed Search as Content Type" ], "breaking-97330-formengine-element-classes-must-create-label-or-legend": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-97330-FormEngineElementClassesMustCreateLabelOrLegend.html#breaking-97330-formengine-element-classes-must-create-label-or-legend", + "Changelog\/13.0\/Breaking-97330-FormEngineElementClassesMustCreateLabelOrLegend.html#breaking-97330-1687870738", "Breaking: #97330 - FormEngine element classes must create label or legend" ], "breaking-97664-formpersistencemanagerinterface-modified": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-97664-FormPersistenceManagerInterfaceModifed.html#breaking-97664-formpersistencemanagerinterface-modified", + "Changelog\/13.0\/Breaking-97664-FormPersistenceManagerInterfaceModifed.html#breaking-97664-1688659987", "Breaking: #97664 - FormPersistenceManagerInterface modified" ], "breaking-99323-removed-hook-for-modifying-records-after-fetching-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-99323-RemovedHookForModifyingRecordsAfterFetchingContent.html#breaking-99323-removed-hook-for-modifying-records-after-fetching-content", + "Changelog\/13.0\/Breaking-99323-RemovedHookForModifyingRecordsAfterFetchingContent.html#breaking-99323-1704980682", "Breaking: #99323 - Removed hook for modifying records after fetching content" ], "breaking-99807-relocated-modifyurlforcanonicaltagevent": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-99807-RelocatedModifyUrlForCanonicalTagEvent.html#breaking-99807-relocated-modifyurlforcanonicaltagevent", + "Changelog\/13.0\/Breaking-99807-RelocatedModifyUrlForCanonicalTagEvent.html#breaking-99807-1706107646", "Breaking: #99807 - Relocated ModifyUrlForCanonicalTagEvent" ], "breaking-99898-continuous-array-keys-from-generalutility-intexplode": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-99898-ContinuousArrayKeysForIntExplode.html#breaking-99898-continuous-array-keys-from-generalutility-intexplode", + "Changelog\/13.0\/Breaking-99898-ContinuousArrayKeysForIntExplode.html#breaking-99898-1705657466", "Breaking: #99898 - Continuous array keys from GeneralUtility::intExplode" ], "breaking-99937-utilize-bigint-database-column-type-for-datetime-tca": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Breaking-99937-DateTimeTCAFieldsToBigint.html#breaking-99937-utilize-bigint-database-column-type-for-datetime-tca", + "Changelog\/13.0\/Breaking-99937-DateTimeTCAFieldsToBigint.html#breaking-99937-1691166389", "Breaking: #99937 - Utilize BIGINT database column type for datetime TCA" ], "deprecation-101133-iconstate-class": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-101133-IconStateClass.html#deprecation-101133-iconstate-class", + "Changelog\/13.0\/Deprecation-101133-IconStateClass.html#deprecation-101133-1687875352", "Deprecation: #101133 - IconState class" ], "deprecation-101151-duplicationbehavior-class": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-101151-DuplicationBehaviorClass.html#deprecation-101151-duplicationbehavior-class", + "Changelog\/13.0\/Deprecation-101151-DuplicationBehaviorClass.html#deprecation-101151-1688113521", "Deprecation: #101151 - DuplicationBehavior class" ], "deprecation-101163-abstract-class-enumeration": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-101163-Enumeration.html#deprecation-101163-abstract-class-enumeration", + "Changelog\/13.0\/Deprecation-101163-Enumeration.html#deprecation-101163-1681741493", "Deprecation: #101163 - Abstract class Enumeration" ], "deprecation-101174-informationstatus-class": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-101174-InformationStatusClass.html#deprecation-101174-informationstatus-class", + "Changelog\/13.0\/Deprecation-101174-InformationStatusClass.html#deprecation-101174-1688128234", "Deprecation: #101174 - InformationStatus class" ], "deprecation-101175-methods-in-versionstate": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-101175-VersionState.html#deprecation-101175-methods-in-versionstate", + "Changelog\/13.0\/Deprecation-101175-VersionState.html#deprecation-101175-1687941546", "Deprecation: #101175 - Methods in VersionState" ], "deprecation-101475-icon-size-string-constants": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-101475-IconSizeStringConstants.html#deprecation-101475-icon-size-string-constants", + "Changelog\/13.0\/Deprecation-101475-IconSizeStringConstants.html#deprecation-101475-1690546218", "Deprecation: #101475 - Icon::SIZE_* string constants" ], "deprecation-101554-obsolete-tca-mm-hasuidfield": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-101554-ObsoleteTCAMM_hasUidField.html#deprecation-101554-obsolete-tca-mm-hasuidfield", + "Changelog\/13.0\/Deprecation-101554-ObsoleteTCAMM_hasUidField.html#deprecation-101554-1691480627", "Deprecation: #101554 - Obsolete TCA MM_hasUidField" ], "deprecation-101793-datahandler-checkstoredrecords-properties": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-101793-DataHandlerCheckStoredRecordsProperties.html#deprecation-101793-datahandler-checkstoredrecords-properties", + "Changelog\/13.0\/Deprecation-101793-DataHandlerCheckStoredRecordsProperties.html#deprecation-101793-1693356502", "Deprecation: #101793 - DataHandler checkStoredRecords properties" ], "deprecation-101799-extensionmanagementutility-addpagetsconfig": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-101799-ExtensionManagementUtilityaddPageTSConfig.html#deprecation-101799-extensionmanagementutility-addpagetsconfig", + "Changelog\/13.0\/Deprecation-101799-ExtensionManagementUtilityaddPageTSConfig.html#deprecation-101799-1693397542", "Deprecation: #101799 - ExtensionManagementUtility::addPageTSConfig()" ], "deprecation-101807-extensionmanagementutility-addusertsconfig": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-101807-ExtensionManagementUtilityaddUserTSConfig.html#deprecation-101807-extensionmanagementutility-addusertsconfig", + "Changelog\/13.0\/Deprecation-101807-ExtensionManagementUtilityaddUserTSConfig.html#deprecation-101807-1693474000", "Deprecation: #101807 - ExtensionManagementUtility::addUserTSConfig()" ], "deprecation-101912-passing-jquery-objects-to-formengine-validation": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-101912-DeprecatedPassingJQueryObjectsToFormEngineValidation.html#deprecation-101912-passing-jquery-objects-to-formengine-validation", + "Changelog\/13.0\/Deprecation-101912-DeprecatedPassingJQueryObjectsToFormEngineValidation.html#deprecation-101912-1694611003", "Deprecation: #101912 - Passing jQuery objects to FormEngine validation" ], "deprecation-102032-abstractfile-filetype-constants": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-102032-AbstractFileConstants.html#deprecation-102032-abstractfile-filetype-constants", + "Changelog\/13.0\/Deprecation-102032-AbstractFileConstants.html#deprecation-102032-1695805007", "Deprecation: #102032 - AbstractFile::FILETYPE_* constants" ], "deprecation-102440-ext-t3editor-merged-into-ext-backend": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-102440-EXTt3editorMergedIntoEXTBackend.html#deprecation-102440-ext-t3editor-merged-into-ext-backend", + "Changelog\/13.0\/Deprecation-102440-EXTt3editorMergedIntoEXTBackend.html#deprecation-102440-1700638677", "Deprecation: #102440 - EXT:t3editor merged into EXT:backend" ], "deprecation-102581-unused-interface-for-contentobjectrenderer-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-102581-UnusedInterfaceForContentObjectRendererHook.html#deprecation-102581-unused-interface-for-contentobjectrenderer-hook", + "Changelog\/13.0\/Deprecation-102581-UnusedInterfaceForContentObjectRendererHook.html#deprecation-102581-1701449501", "Deprecation: #102581 - Unused Interface for ContentObjectRenderer hook" ], "deprecation-102586-deprecate-simple-string-connection-driver-middleware-registration": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-102586-DeprecateSimpleStringConnectionDriverMiddlewareRegistration.html#deprecation-102586-deprecate-simple-string-connection-driver-middleware-registration", + "Changelog\/13.0\/Deprecation-102586-DeprecateSimpleStringConnectionDriverMiddlewareRegistration.html#deprecation-102586-1701536568", "Deprecation: #102586 - Deprecate simple string connection driver middleware registration" ], "registration-for-driver-middlewares-for-typo3-v12-and-v13": [ @@ -50131,43 +50269,43 @@ "deprecation-102614-unused-interface-for-getdata-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-102614-UnusedInterfaceForGetDataHook.html#deprecation-102614-unused-interface-for-getdata-hook", + "Changelog\/13.0\/Deprecation-102614-UnusedInterfaceForGetDataHook.html#deprecation-102614-1701869807", "Deprecation: #102614 - Unused Interface for GetData Hook" ], "deprecation-102624-unused-interface-for-getimagesourcecollection-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-102624-UnusedInterfaceForGetImageSourceCollectionHook.html#deprecation-102624-unused-interface-for-getimagesourcecollection-hook", + "Changelog\/13.0\/Deprecation-102624-UnusedInterfaceForGetImageSourceCollectionHook.html#deprecation-102624-1701943829", "Deprecation: #102624 - Unused Interface for getImageSourceCollection Hook" ], "deprecation-102631-deprecated-controller-attribute-for-auto-configuring-backend-controllers": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-102631-DeprecatedControllerAttributeForAutoConfiguringBackendControllers.html#deprecation-102631-deprecated-controller-attribute-for-auto-configuring-backend-controllers", + "Changelog\/13.0\/Deprecation-102631-DeprecatedControllerAttributeForAutoConfiguringBackendControllers.html#deprecation-102631-1702031387", "Deprecation: #102631 - Deprecated Controller attribute for auto configuring backend controllers" ], "deprecation-102745-unused-interface-for-stdwrap-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-102745-UnusedInterfaceForStdWrapHook.html#deprecation-102745-unused-interface-for-stdwrap-hook", + "Changelog\/13.0\/Deprecation-102745-UnusedInterfaceForStdWrapHook.html#deprecation-102745-1705054271", "Deprecation: #102745 - Unused interface for stdWrap hook" ], "deprecation-102755-unused-interface-for-getimageresource-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-102755-UnusedInterfaceForGetImageResourceHook.html#deprecation-102755-unused-interface-for-getimageresource-hook", + "Changelog\/13.0\/Deprecation-102755-UnusedInterfaceForGetImageResourceHook.html#deprecation-102755-1704449836", "Deprecation: #102755 - Unused interface for getImageResource hook" ], "deprecation-102763-extbase-hashservice": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-102763-ExtbaseHashService.html#deprecation-102763-extbase-hashservice", + "Changelog\/13.0\/Deprecation-102763-ExtbaseHashService.html#deprecation-102763-1706358913", "Deprecation: #102763 - Extbase HashService" ], "deprecation-102793-pagerepository-enablefields": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-102793-PageRepositoryEnableFields.html#deprecation-102793-pagerepository-enablefields", + "Changelog\/13.0\/Deprecation-102793-PageRepositoryEnableFields.html#deprecation-102793-1704798252", "Deprecation: #102793 - PageRepository->enableFields" ], "before-typo3-v12": [ @@ -50185,31 +50323,31 @@ "deprecation-102806-interfaces-for-pagerepository-hooks": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-102806-InterfacesForPageRepositoryHooks.html#deprecation-102806-interfaces-for-pagerepository-hooks", + "Changelog\/13.0\/Deprecation-102806-InterfacesForPageRepositoryHooks.html#deprecation-102806-1704876661", "Deprecation: #102806 - Interfaces for PageRepository hooks" ], "deprecation-102895-extensionmanagementutility-getextensionicon": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-102895-ExtensionManagementUtilitygetExtensionIcon.html#deprecation-102895-extensionmanagementutility-getextensionicon", + "Changelog\/13.0\/Deprecation-102895-ExtensionManagementUtilitygetExtensionIcon.html#deprecation-102895-1706003502", "Deprecation: #102895 - ExtensionManagementUtility::getExtensionIcon" ], "deprecation-102908-indexed-search-content-parsers-returning-arrays": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-102908-IndexedSearchContentParsersReturningArrays.html#deprecation-102908-indexed-search-content-parsers-returning-arrays", + "Changelog\/13.0\/Deprecation-102908-IndexedSearchContentParsersReturningArrays.html#deprecation-102908-1706081017", "Deprecation: #102908 - Indexed Search content parsers returning arrays" ], "deprecation-102943-abstractdownloadextensionupdate-moved-to-ext-extensionmanager": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-102943-AbstractDownloadExtensionUpdateMovedToExtextensionmanager.html#deprecation-102943-abstractdownloadextensionupdate-moved-to-ext-extensionmanager", + "Changelog\/13.0\/Deprecation-102943-AbstractDownloadExtensionUpdateMovedToExtextensionmanager.html#deprecation-102943-1706271208", "Deprecation: #102943 - AbstractDownloadExtensionUpdate moved to ext:extensionmanager" ], "deprecation-87889-typo3-backend-entry-point-script-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Deprecation-87889-TYPO3BackendEntrypointScriptDeprecated.html#deprecation-87889-typo3-backend-entry-point-script-deprecated", + "Changelog\/13.0\/Deprecation-87889-TYPO3BackendEntrypointScriptDeprecated.html#deprecation-87889-1705928143", "Deprecation: #87889 - TYPO3 backend entry point script deprecated" ], "apache-configuration": [ @@ -50227,61 +50365,61 @@ "feature-100268-provide-full-userdata-in-password-recovery-email": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-100268-ProvideFullUserdataInPasswordRecoveryEmail.html#feature-100268-provide-full-userdata-in-password-recovery-email", + "Changelog\/13.0\/Feature-100268-ProvideFullUserdataInPasswordRecoveryEmail.html#feature-100268-1698511146", "Feature: #100268 - Provide full userdata in password recovery email" ], "feature-100926-introduce-rotatingfilewriter-for-log-rotation": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-100926-IntroduceRotatingFileWriterforLogRotation.html#feature-100926-introduce-rotatingfilewriter-for-log-rotation", + "Changelog\/13.0\/Feature-100926-IntroduceRotatingFileWriterforLogRotation.html#feature-100926-1685267155", "Feature: #100926 - Introduce RotatingFileWriter for log rotation" ], "feature-101113-show-if-redirects-were-checked-in-report": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-101113-ShowIfRedirectsWereCheckedInReport.html#feature-101113-show-if-redirects-were-checked-in-report", + "Changelog\/13.0\/Feature-101113-ShowIfRedirectsWereCheckedInReport.html#feature-101113-1687149377", "Feature: #101113 - Show if redirects were checked in report" ], "feature-101133-native-enum-iconstate": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-101133-IconStateEnum.html#feature-101133-native-enum-iconstate", + "Changelog\/13.0\/Feature-101133-IconStateEnum.html#feature-101133-1687875353", "Feature: #101133 - Native enum IconState" ], "feature-101151-native-enum-duplicationbehavior": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-101151-DuplicationBehavior.html#feature-101151-native-enum-duplicationbehavior", + "Changelog\/13.0\/Feature-101151-DuplicationBehavior.html#feature-101151-1688113519", "Feature: #101151 - Native enum DuplicationBehavior" ], "feature-101174-native-enum-informationstatus": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-101174-InformationStatus.html#feature-101174-native-enum-informationstatus", + "Changelog\/13.0\/Feature-101174-InformationStatus.html#feature-101174-1688128233", "Feature: #101174 - Native enum InformationStatus" ], "feature-101396-let-extbase-handle-native-enums": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-101396-LetExtbaseHandleNativeEnums.html#feature-101396-let-extbase-handle-native-enums", + "Changelog\/13.0\/Feature-101396-LetExtbaseHandleNativeEnums.html#feature-101396-1689843367", "Feature: #101396 - Let Extbase handle native enums" ], "feature-101475-iconsizeenum": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-101475-IconSizeEnum.html#feature-101475-iconsizeenum", + "Changelog\/13.0\/Feature-101475-IconSizeEnum.html#feature-101475-1690546909", "Feature: #101475 - IconSizeEnum" ], "feature-101507-hotkey-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-101507-HotkeyAPI.html#feature-101507-hotkey-api", + "Changelog\/13.0\/Feature-101507-HotkeyAPI.html#feature-101507-1690808401", "Feature: #101507 - Hotkey API" ], "feature-101544-introduce-php-attribute-to-autoconfigure-event-listeners": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-101544-IntroducePHPAttributeToAutoconfigureEventListeners.html#feature-101544-introduce-php-attribute-to-autoconfigure-event-listeners", + "Changelog\/13.0\/Feature-101544-IntroducePHPAttributeToAutoconfigureEventListeners.html#feature-101544-1691063522", "Feature: #101544 - Introduce PHP attribute to autoconfigure event listeners" ], "migration-example": [ @@ -50305,7 +50443,7 @@ "feature-101553-auto-create-db-fields-from-tca-columns": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-101553-Auto-createDBFieldsFromTCAColumns.html#feature-101553-auto-create-db-fields-from-tca-columns", + "Changelog\/13.0\/Feature-101553-Auto-createDBFieldsFromTCAColumns.html#feature-101553-1691166389", "Feature: #101553 - Auto-create DB fields from TCA columns" ], "new-tca-config-option-php-dbfieldlength": [ @@ -50323,91 +50461,91 @@ "feature-101603-psr-14-event-for-modifying-record-overlay-icon-identifier": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-101603-PSR-14EventForModifyingRecordOverlayIconIdentifier.html#feature-101603-psr-14-event-for-modifying-record-overlay-icon-identifier", + "Changelog\/13.0\/Feature-101603-PSR-14EventForModifyingRecordOverlayIconIdentifier.html#feature-101603-1691322746", "Feature: #101603 - PSR-14 event for modifying record overlay icon identifier" ], "feature-101612-uribuilder-buildurifromrequest": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-101612-UriBuilder-buildUriFromRequest.html#feature-101612-uribuilder-buildurifromrequest", + "Changelog\/13.0\/Feature-101612-UriBuilder-buildUriFromRequest.html#feature-101612-1691425003", "Feature: #101612 - UriBuilder->buildUriFromRequest" ], "feature-101700-use-symfony-attribute-to-autoconfigure-message-handlers": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-101700-UseSymfonyAttributeToAutoconfigureMessageHandler.html#feature-101700-use-symfony-attribute-to-autoconfigure-message-handlers", + "Changelog\/13.0\/Feature-101700-UseSymfonyAttributeToAutoconfigureMessageHandler.html#important-101700-1703832449", "Feature: #101700 - Use Symfony attribute to autoconfigure message handlers" ], "feature-101807-automatic-inclusion-of-user-tsconfig-of-extensions": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-101807-AutomaticInclusionOfUserTSconfigOfExtensions.html#feature-101807-automatic-inclusion-of-user-tsconfig-of-extensions", + "Changelog\/13.0\/Feature-101807-AutomaticInclusionOfUserTSconfigOfExtensions.html#feature-101807-1693473782", "Feature: #101807 - Automatic inclusion of user TSconfig of extensions" ], "feature-101818-beforeloadedpagetsconfigevent": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-101818-BeforeLoadedPageTsConfigEvent.html#feature-101818-beforeloadedpagetsconfigevent", + "Changelog\/13.0\/Feature-101818-BeforeLoadedPageTsConfigEvent.html#feature-101818-1693570608", "Feature: #101818 - BeforeLoadedPageTsConfigEvent" ], "feature-101838-beforeloadedusertsconfigevent": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-101838-BeforeLoadedUserTsConfigEvent.html#feature-101838-beforeloadedusertsconfigevent", + "Changelog\/13.0\/Feature-101838-BeforeLoadedUserTsConfigEvent.html#feature-101838-1693834389", "Feature: #101838 - BeforeLoadedUserTsConfigEvent" ], "feature-101843-allow-configuration-of-color-palettes-in-formengine": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-101843-AllowConfigurationOfColorPalettesInFormEngine.html#feature-101843-allow-configuration-of-color-palettes-in-formengine", + "Changelog\/13.0\/Feature-101843-AllowConfigurationOfColorPalettesInFormEngine.html#feature-101843-1693895770", "Feature: #101843 - Allow configuration of color palettes in FormEngine" ], "feature-101933-dispatch-afteruserloggedinevent-for-frontend-user-login": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-101933-DispatchAfterUserLoggedInEventForFrontendUserLogin.html#feature-101933-dispatch-afteruserloggedinevent-for-frontend-user-login", + "Changelog\/13.0\/Feature-101933-DispatchAfterUserLoggedInEventForFrontendUserLogin.html#feature-101933-1694883742", "Feature: #101933 - Dispatch AfterUserLoggedInEvent for frontend user login" ], "feature-101970-ajax-api-accepts-native-url-and-urlsearchparams-objects-as-arguments": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-101970-AJAXAPIAcceptsNativeURLAndURLSearchParamsObjectsAsArguments.html#feature-101970-ajax-api-accepts-native-url-and-urlsearchparams-objects-as-arguments", + "Changelog\/13.0\/Feature-101970-AJAXAPIAcceptsNativeURLAndURLSearchParamsObjectsAsArguments.html#feature-101970-1695205584", "Feature: #101970 - Ajax API accepts native URL and URLSearchParams objects as arguments" ], "feature-102032-native-enum-filetype": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102032-FileType.html#feature-102032-native-enum-filetype", + "Changelog\/13.0\/Feature-102032-FileType.html#feature-102032-1695805096", "Feature: #102032 - Native enum FileType" ], "feature-102067-psr-14-beforetcaoverridesevent": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102067-BeforeTcaOverridesEvent.html#feature-102067-psr-14-beforetcaoverridesevent", + "Changelog\/13.0\/Feature-102067-BeforeTcaOverridesEvent.html#feature-102067-1695985288", "Feature: #102067 - PSR-14 BeforeTcaOverridesEvent" ], "feature-102072-allow-redirect-filtering-by-protected-state": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102072-AllowRedirectFilteringByProtectedState.html#feature-102072-allow-redirect-filtering-by-protected-state", + "Changelog\/13.0\/Feature-102072-AllowRedirectFilteringByProtectedState.html#feature-102072-1696076672", "Feature: #102072 - Allow redirect filtering by \"protected\" state" ], "feature-102077-allow-custom-default-value-in-getformvalue-conditions-function": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102077-AllowCustomDefaultValueInGetFormValueConditionsFunction.html#feature-102077-allow-custom-default-value-in-getformvalue-conditions-function", + "Changelog\/13.0\/Feature-102077-AllowCustomDefaultValueInGetFormValueConditionsFunction.html#feature-102077-1696240251", "Feature: #102077 - Allow custom default value in getFormValue() conditions function" ], "feature-102177-webp-support-for-images-generated-by-gifbuilder": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102177-WebPSupportForImagesGeneratedByGIFBUILDER.html#feature-102177-webp-support-for-images-generated-by-gifbuilder", + "Changelog\/13.0\/Feature-102177-WebPSupportForImagesGeneratedByGIFBUILDER.html#feature-102177-1697483829", "Feature: #102177 - WebP support for images generated by GIFBUILDER" ], "feature-102496-introduce-global-doctrine-dbal-driver-middlewares": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102496-IntroduceGlobalDoctrineDBALDriverMiddlewares.html#feature-102496-introduce-global-doctrine-dbal-driver-middlewares", + "Changelog\/13.0\/Feature-102496-IntroduceGlobalDoctrineDBALDriverMiddlewares.html#feature-102496-1700775381", "Feature: #102496 - Introduce global Doctrine DBAL driver middlewares" ], "registering-a-new-global-driver-middleware": [ @@ -50425,25 +50563,25 @@ "feature-102581-psr-14-event-for-modifying-contentobjectrenderer": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102581-PSR-14EventForModifyingContentObjectRenderer.html#feature-102581-psr-14-event-for-modifying-contentobjectrenderer", + "Changelog\/13.0\/Feature-102581-PSR-14EventForModifyingContentObjectRenderer.html#feature-102581-1701449291", "Feature: #102581 - PSR-14 event for modifying ContentObjectRenderer" ], "feature-102582-allow-cli-command-cleanup-localprocessedfiles-to-reset-all-records": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102582-AllowCLICommandCleanupLocalprocessedfilesToResetAllRecords.html#feature-102582-allow-cli-command-cleanup-localprocessedfiles-to-reset-all-records", + "Changelog\/13.0\/Feature-102582-AllowCLICommandCleanupLocalprocessedfilesToResetAllRecords.html#feature-102582-1701678139", "Feature: #102582 - Allow CLI command cleanup:localprocessedfiles to reset all records" ], "feature-102586-introduce-sortable-doctrine-dbal-middleware-registration": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102586-IntroduceSortableDoctrineDBALMiddlewareRegistration.html#feature-102586-introduce-sortable-doctrine-dbal-middleware-registration", + "Changelog\/13.0\/Feature-102586-IntroduceSortableDoctrineDBALMiddlewareRegistration.html#feature-102586-1701536342", "Feature: #102586 - Introduce sortable Doctrine DBAL middleware registration" ], "feature-102587-introduce-driver-middleware-interface-usableforconnectioninterface": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102587-IntroduceDriverMiddlewareInterfaceUsableForConnectionInterface.html#feature-102587-introduce-driver-middleware-interface-usableforconnectioninterface", + "Changelog\/13.0\/Feature-102587-IntroduceDriverMiddlewareInterfaceUsableForConnectionInterface.html#feature-102587-1701564155", "Feature: #102587 - Introduce driver middleware interface UsableForConnectionInterface" ], "custom-driver-middleware-example-using-the-interface": [ @@ -50455,121 +50593,121 @@ "feature-102614-psr-14-event-for-modifying-getdata-result": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102614-PSR-14EventForModifyingGetDataResult.html#feature-102614-psr-14-event-for-modifying-getdata-result", + "Changelog\/13.0\/Feature-102614-PSR-14EventForModifyingGetDataResult.html#feature-102614-1701869725", "Feature: #102614 - PSR-14 event for modifying GetData result" ], "feature-102624-psr-14-event-for-modifying-image-source-collection": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102624-PSR-14EventForModifyingImageSourceCollection.html#feature-102624-psr-14-event-for-modifying-image-source-collection", + "Changelog\/13.0\/Feature-102624-PSR-14EventForModifyingImageSourceCollection.html#feature-102624-1701943870", "Feature: #102624 - PSR-14 event for modifying image source collection" ], "feature-102628-cache-instruction-middleware": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102628-CacheInstructionMiddleware.html#feature-102628-cache-instruction-middleware", + "Changelog\/13.0\/Feature-102628-CacheInstructionMiddleware.html#feature-102628-1702031683", "Feature: #102628 - Cache instruction middleware" ], "feature-102631-introduce-ascontroller-attribute-to-autoconfigure-backend-controllers": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102631-IntroduceAsControllerAttributeToAutoconfigureBackendControllers.html#feature-102631-introduce-ascontroller-attribute-to-autoconfigure-backend-controllers", + "Changelog\/13.0\/Feature-102631-IntroduceAsControllerAttributeToAutoconfigureBackendControllers.html#feature-102631-1702031335", "Feature: #102631 - Introduce AsController attribute to autoconfigure backend controllers" ], "feature-102715-new-frontend-page-information-request-attribute": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102715-NewFrontendpageinformationRequestAttribute.html#feature-102715-new-frontend-page-information-request-attribute", + "Changelog\/13.0\/Feature-102715-NewFrontendpageinformationRequestAttribute.html#feature-102715-1703261072", "Feature: #102715 - New frontend.page.information request attribute" ], "feature-102745-psr-14-events-for-modifying-contentobject-stdwrap-functionality": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102745-PSR-14EventsForModifyingContentObjectStdWrapFunctionality.html#feature-102745-psr-14-events-for-modifying-contentobject-stdwrap-functionality", + "Changelog\/13.0\/Feature-102745-PSR-14EventsForModifyingContentObjectStdWrapFunctionality.html#feature-102745-1705054628", "Feature: #102745 - PSR-14 events for modifying ContentObject stdWrap functionality" ], "feature-102755-psr-14-event-for-modifying-getimageresource-result": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102755-PSR-14EventForModifyingGetImageResourceResult.html#feature-102755-psr-14-event-for-modifying-getimageresource-result", + "Changelog\/13.0\/Feature-102755-PSR-14EventForModifyingGetImageResourceResult.html#feature-102755-1704381990", "Feature: #102755 - PSR-14 event for modifying getImageResource result" ], "feature-102761-introduce-class-to-generate-validate-hmac-hashes": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102761-IntroduceClassToGeneratevalidateHMACHashes.html#feature-102761-introduce-class-to-generate-validate-hmac-hashes", + "Changelog\/13.0\/Feature-102761-IntroduceClassToGeneratevalidateHMACHashes.html#feature-102761-1704532036", "Feature: #102761 - Introduce class to generate\/validate HMAC hashes" ], "feature-102793-psr-14-event-for-modifying-default-constraints-in-pagerepository": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102793-PSR-14EventForModifyingDefaultConstraintsInPageRepository.html#feature-102793-psr-14-event-for-modifying-default-constraints-in-pagerepository", + "Changelog\/13.0\/Feature-102793-PSR-14EventForModifyingDefaultConstraintsInPageRepository.html#feature-102793-1704805673", "Feature: #102793 - PSR-14 event for modifying default constraints in PageRepository" ], "feature-102806-beforepageisretrievedevent-in-pagerepository": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102806-BeforePageIsRetrievedEventInPageRepository.html#feature-102806-beforepageisretrievedevent-in-pagerepository", + "Changelog\/13.0\/Feature-102806-BeforePageIsRetrievedEventInPageRepository.html#feature-102806-1704878293", "Feature: #102806 - BeforePageIsRetrievedEvent in PageRepository" ], "feature-102815-support-applicationcontext-in-typoscript-data": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102815-SupportApplicationContextInTypoScriptData.html#feature-102815-support-applicationcontext-in-typoscript-data", + "Changelog\/13.0\/Feature-102815-SupportApplicationContextInTypoScriptData.html#feature-102815-1704964154", "Feature: #102815 - Support ApplicationContext in TypoScript data" ], "feature-102834-auto-registration-of-new-content-element-wizard-via-tca": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102834-Auto-registrationOfNewContentElementWizardViaTCA.html#feature-102834-auto-registration-of-new-content-element-wizard-via-tca", + "Changelog\/13.0\/Feature-102834-Auto-registrationOfNewContentElementWizardViaTCA.html#feature-102834-1705256634", "Feature: #102834 - Auto-registration of New Content Element Wizard via TCA" ], "feature-102835-add-psr-14-events-to-manipulate-typolinkcodecservice": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102835-AddPSR-14EventsToManipulateTypoLinkCodecService.html#feature-102835-add-psr-14-events-to-manipulate-typolinkcodecservice", + "Changelog\/13.0\/Feature-102835-AddPSR-14EventsToManipulateTypoLinkCodecService.html#feature-102835-1705314133", "Feature: #102835 - Add PSR-14 events to manipulate TypoLinkCodecService" ], "feature-102849-psr-14-event-for-manipulating-store-cache-functionality-of-stdwrap": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102849-PSR-14EventForManipulatingStoreCacheFunctionalityOfStdWrap.html#feature-102849-psr-14-event-for-manipulating-store-cache-functionality-of-stdwrap", + "Changelog\/13.0\/Feature-102849-PSR-14EventForManipulatingStoreCacheFunctionalityOfStdWrap.html#feature-102849-1705513646", "Feature: #102849 - PSR-14 event for manipulating store cache functionality of stdWrap" ], "feature-102855-psr-14-event-for-modifying-resolved-link-result-data": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102855-PSR-14EventForModifyingResolvedLinkResultData.html#feature-102855-psr-14-event-for-modifying-resolved-link-result-data", + "Changelog\/13.0\/Feature-102855-PSR-14EventForModifyingResolvedLinkResultData.html#feature-102855-1705568085", "Feature: #102855 - PSR-14 event for modifying resolved link result data" ], "feature-102865-psr-14-event-for-modifying-loaded-form-definition": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102865-PSR-14EventForModifyingLoadedFormDefinition.html#feature-102865-psr-14-event-for-modifying-loaded-form-definition", + "Changelog\/13.0\/Feature-102865-PSR-14EventForModifyingLoadedFormDefinition.html#feature-102865-1705587633", "Feature: #102865 - PSR-14 event for modifying loaded form definition" ], "feature-102932-new-typoscript-related-frontend-events": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102932-NewTypoScriptRelatedFrontendEvents.html#feature-102932-new-typoscript-related-frontend-events", + "Changelog\/13.0\/Feature-102932-NewTypoScriptRelatedFrontendEvents.html#feature-102932-1706202287", "Feature: #102932 - New TypoScript-related frontend events" ], "feature-102935-psr-14-event-for-package-initialization-functionality": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-102935-PSR-14EventForPackageInitializationFunctionality.html#feature-102935-psr-14-event-for-package-initialization-functionality", + "Changelog\/13.0\/Feature-102935-PSR-14EventForPackageInitializationFunctionality.html#feature-102935-1706258668", "Feature: #102935 - PSR-14 event for package initialization functionality" ], "feature-82855-update-metadata-of-online-media-assets": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-82855-UpdateMetadataOfOnlineMediaAssets.html#feature-82855-update-metadata-of-online-media-assets", + "Changelog\/13.0\/Feature-82855-UpdateMetadataOfOnlineMediaAssets.html#feature-82855-1695120648", "Feature: #82855 - Update Metadata of online media assets" ], "feature-87889-configurable-typo3-backend-url": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-87889-ConfigurableTYPO3BackendURL.html#feature-87889-configurable-typo3-backend-url", + "Changelog\/13.0\/Feature-87889-ConfigurableTYPO3BackendURL.html#feature-87889-1705931337", "Feature: #87889 - Configurable TYPO3 backend URL" ], "configure-to-a-specific-path": [ @@ -50593,91 +50731,91 @@ "feature-88537-webp-image-format-support-for-image-processing": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-88537-WebPImageFormatSupportForImageProcessing.html#feature-88537-webp-image-format-support-for-image-processing", + "Changelog\/13.0\/Feature-88537-WebPImageFormatSupportForImageProcessing.html#feature-88537-1702764465", "Feature: #88537 - WebP image format support for Image Processing" ], "feature-88817-make-autocomplete-selectable-in-ext-form-backend": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-88817-MakeAutocompleteSelectableInTheBackend.html#feature-88817-make-autocomplete-selectable-in-ext-form-backend", + "Changelog\/13.0\/Feature-88817-MakeAutocompleteSelectableInTheBackend.html#feature-88817", "Feature: #88817 - Make autocomplete selectable in EXT:form backend" ], "feature-94501-fal-support-for-flexformprocessor": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-94501-FALSupportForFlexFormProcessor.html#feature-94501-fal-support-for-flexformprocessor", + "Changelog\/13.0\/Feature-94501-FALSupportForFlexFormProcessor.html#feature-94501-1669163526", "Feature: #94501 - FAL support for FlexFormProcessor" ], "feature-95808-enable-item-groups-from-foreign-tables": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-95808-EnableItemGroupsFromForeignTables.html#feature-95808-enable-item-groups-from-foreign-tables", + "Changelog\/13.0\/Feature-95808-EnableItemGroupsFromForeignTables.html#feature-95808-1702313827", "Feature: #95808 - Enable item groups from foreign tables" ], "feature-97664-add-search-functionality-to-form-manager": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-97664-AddSearchFunctionalityToFormManager.html#feature-97664-add-search-functionality-to-form-manager", + "Changelog\/13.0\/Feature-97664-AddSearchFunctionalityToFormManager.html#feature-97664-1656981240", "Feature: #97664 - Add search functionality to form manager" ], "feature-99165-add-edit-metadata-button-to-element-information-view": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-99165-AddEditButtonToElementInformation.html#feature-99165-add-edit-metadata-button-to-element-information-view", + "Changelog\/13.0\/Feature-99165-AddEditButtonToElementInformation.html#feature-99165-1669201746", "Feature: #99165 - Add \"Edit Metadata\" button to element information view" ], "feature-99323-psr-14-event-for-modifying-records-after-fetching-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-99323-AddModifyRecordsAfterFetchingContentEvent.html#feature-99323-psr-14-event-for-modifying-records-after-fetching-content", + "Changelog\/13.0\/Feature-99323-AddModifyRecordsAfterFetchingContentEvent.html#feature-99323", "Feature: #99323 - PSR-14 event for modifying records after fetching content" ], "feature-99485-show-the-redirect-integrity-status": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-99485-ShowTheRedirectIntegrityStatus.html#feature-99485-show-the-redirect-integrity-status", + "Changelog\/13.0\/Feature-99485-ShowTheRedirectIntegrityStatus.html#feature-99485-1673115922", "Feature: #99485 - Show the redirect integrity status" ], "feature-99807-improve-modifyurlforcanonicaltagevent": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Feature-99807-ImproveModifyUrlForCanonicalTagEvent.html#feature-99807-improve-modifyurlforcanonicaltagevent", + "Changelog\/13.0\/Feature-99807-ImproveModifyUrlForCanonicalTagEvent.html#feature-99807-1706107691", "Feature: #99807 - Improve ModifyUrlForCanonicalTagEvent" ], "important-102130-optimizing-t3d-import-export-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Important-102130-ImpExpModification.html#important-102130-optimizing-t3d-import-export-module", + "Changelog\/13.0\/Important-102130-ImpExpModification.html#important-ImpExp-1698313214", "Important: #102130 - Optimizing T3D Import\/Export module" ], "important-102402-extended-doctrine-dbal-platform-classes": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Important-102402-ExtendedDoctrineDBALPlatformClasses.html#important-102402-extended-doctrine-dbal-platform-classes", + "Changelog\/13.0\/Important-102402-ExtendedDoctrineDBALPlatformClasses.html#important-102402-1700410900", "Important: #102402 - Extended Doctrine DBAL Platform classes" ], "important-102551-flexform-section-toggle-control-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Important-102551-FlexFormSection_TOGGLEControlRemoved.html#important-102551-flexform-section-toggle-control-removed", + "Changelog\/13.0\/Important-102551-FlexFormSection_TOGGLEControlRemoved.html#important-102551-1701252243", "Important: #102551 - FlexForm section _TOGGLE control removed" ], "important-102786-updated-dependency-symfony-7": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Important-102786-UpdatedDependencySymfony7.html#important-102786-updated-dependency-symfony-7", + "Changelog\/13.0\/Important-102786-UpdatedDependencySymfony7.html#important-102786-1704811367", "Important: #102786 - Updated dependency: Symfony 7" ], "important-102875-updated-dependency-doctrine-dbal-4": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Important-102875-UpdatedDependencyDoctrineDBAL4.html#important-102875-updated-dependency-doctrine-dbal-4", + "Changelog\/13.0\/Important-102875-UpdatedDependencyDoctrineDBAL4.html#important-102875-1705915392", "Important: #102875 - Updated Dependency: Doctrine DBAL 4" ], "important-102960-tca-and-system-tables-on-one-db-connection": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.0\/Important-102960-TCAAndSystemTablesOnOneDBConnection.html#important-102960-tca-and-system-tables-on-one-db-connection", + "Changelog\/13.0\/Important-102960-TCAAndSystemTablesOnOneDBConnection.html#important-102960-1706383783", "Important: #102960 - TCA and system tables on one DB connection" ], "13-0-changes": [ @@ -50689,91 +50827,91 @@ "deprecation-102762-deprecate-generalutility-hmac": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Deprecation-102762-GeneralUtilityhmac.html#deprecation-102762-deprecate-generalutility-hmac", + "Changelog\/13.1\/Deprecation-102762-GeneralUtilityhmac.html#deprecation-102762-1710402828", "Deprecation: #102762 - Deprecate GeneralUtility::hmac()" ], "deprecation-103211-deprecate-pagetree-backgroundcolor": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Deprecation-103211-DeprecatePageTreebackgroundColor.html#deprecation-103211-deprecate-pagetree-backgroundcolor", + "Changelog\/13.1\/Deprecation-103211-DeprecatePageTreebackgroundColor.html#deprecation-103211-1709038752", "Deprecation: #103211 - Deprecate pageTree.backgroundColor" ], "deprecation-103230-deprecate-typo3-backend-wizard-js": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Deprecation-103230-DeprecateTypo3backendwizardjs.html#deprecation-103230-deprecate-typo3-backend-wizard-js", + "Changelog\/13.1\/Deprecation-103230-DeprecateTypo3backendwizardjs.html#deprecation-103230-1709202638", "Deprecation: #103230 - Deprecate @typo3\/backend\/wizard.js" ], "deprecation-103244-class-slugenricher": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Deprecation-103244-ClassSlugEnricher.html#deprecation-103244-class-slugenricher", + "Changelog\/13.1\/Deprecation-103244-ClassSlugEnricher.html#deprecation-103244-1709376790", "Deprecation: #103244 - Class SlugEnricher" ], "deprecation-103528-deprecated-documentsaveactions-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Deprecation-103528-DeprecatedDocumentSaveActionsModule.html#deprecation-103528-deprecated-documentsaveactions-module", + "Changelog\/13.1\/Deprecation-103528-DeprecatedDocumentSaveActionsModule.html#deprecation-103528-1712153304", "Deprecation: #103528 - Deprecated DocumentSaveActions module" ], "deprecation-103850-renamed-page-tree-navigation-component-id": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Deprecation-103850-RenamedPageTreeNavigationComponentID.html#deprecation-103850-renamed-page-tree-navigation-component-id", + "Changelog\/13.1\/Deprecation-103850-RenamedPageTreeNavigationComponentID.html#deprecation-103850-1715873982", "Deprecation: #103850 - Renamed Page Tree Navigation Component ID" ], "feature-102836-allow-deleting-irre-elements-via-postmessage": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Feature-102836-AllowDeletingIRREElementsViaPostMessage.html#feature-102836-allow-deleting-irre-elements-via-postmessage", + "Changelog\/13.1\/Feature-102836-AllowDeletingIRREElementsViaPostMessage.html#feature-102836-1705994823", "Feature: #102836 - Allow deleting IRRE elements via postMessage()" ], "feature-103043-modernize-tree-rendering-and-implement-rtl-and-dark-mode": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Feature-103043-ModernizeTreeRenderingAndImplementRTLAndDarkMode.html#feature-103043-modernize-tree-rendering-and-implement-rtl-and-dark-mode", + "Changelog\/13.1\/Feature-103043-ModernizeTreeRenderingAndImplementRTLAndDarkMode.html#feature-103043-1707113495", "Feature: #103043 - Modernize tree rendering and implement RTL and dark mode" ], "feature-103147-provide-full-userdata-in-password-recovery-email-in-ext-backend": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Feature-103147-ProvideFullUserdataInPasswordRecoveryEmailInExtbackend.html#feature-103147-provide-full-userdata-in-password-recovery-email-in-ext-backend", + "Changelog\/13.1\/Feature-103147-ProvideFullUserdataInPasswordRecoveryEmailInExtbackend.html#feature-100268-1708278982", "Feature: #103147 - Provide full userdata in password recovery email in ext:backend" ], "feature-103186-introduce-tree-node-status-information": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Feature-103186-IntroduceTreeNodeStatusInformation.html#feature-103186-introduce-tree-node-status-information", + "Changelog\/13.1\/Feature-103186-IntroduceTreeNodeStatusInformation.html#feature-103186-1708686767", "Feature: #103186 - Introduce tree node status information" ], "feature-103187-introduce-cli-command-to-create-backend-user-groups": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Feature-103187-AddCliCreateBeUserGroupCommand.html#feature-103187-introduce-cli-command-to-create-backend-user-groups", + "Changelog\/13.1\/Feature-103187-AddCliCreateBeUserGroupCommand.html#feature-103187-1708943723", "Feature: #103187 - Introduce CLI command to create backend user groups" ], "feature-103211-introduce-tree-node-labels": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Feature-103211-IntroduceTreeNodeLabels.html#feature-103211-introduce-tree-node-labels", + "Changelog\/13.1\/Feature-103211-IntroduceTreeNodeLabels.html#feature-103211-1709036591", "Feature: #103211 - Introduce tree node labels" ], "feature-103220-support-comma-separated-lists-in-page-tree-filter": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Feature-103220-SupportComma-separatedListsInPageTreeFilter.html#feature-103220-support-comma-separated-lists-in-page-tree-filter", + "Changelog\/13.1\/Feature-103220-SupportComma-separatedListsInPageTreeFilter.html#feature-103220-1709106910", "Feature: #103220 - Support comma-separated lists in page tree filter" ], "feature-103255-native-support-for-language-scottish-gaelic-added": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Feature-103255-NativeSupportForLanguageGaelicAdded.html#feature-103255-native-support-for-language-scottish-gaelic-added", + "Changelog\/13.1\/Feature-103255-NativeSupportForLanguageGaelicAdded.html#feature-103255", "Feature: #103255 - Native support for language Scottish Gaelic added" ], "feature-103309-add-more-expression-methods-to-expressionbuilder": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Feature-103309-AddMoreExpressionMethodsToExpressionBuilder.html#feature-103309-add-more-expression-methods-to-expressionbuilder", + "Changelog\/13.1\/Feature-103309-AddMoreExpressionMethodsToExpressionBuilder.html#feature-103309-1709741435", "Feature: #103309 - Add more expression methods to ExpressionBuilder" ], "php-expressionbuilder-as": [ @@ -50839,19 +50977,19 @@ "feature-103331-native-support-for-language-maltese-added": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Feature-103331-NativeSupportForLanguageMalteseAdded.html#feature-103331-native-support-for-language-maltese-added", + "Changelog\/13.1\/Feature-103331-NativeSupportForLanguageMalteseAdded.html#feature-103331", "Feature: #103331 - Native support for language Maltese added" ], "feature-103372-native-support-for-language-irish-gaelic-added": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Feature-103372-NativeSupportForLanguageIrishGaelicAdded.html#feature-103372-native-support-for-language-irish-gaelic-added", + "Changelog\/13.1\/Feature-103372-NativeSupportForLanguageIrishGaelicAdded.html#feature-103372", "Feature: #103372 - Native support for language Irish Gaelic added" ], "feature-103437-introduce-site-sets": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Feature-103437-IntroduceSiteSets.html#feature-103437-introduce-site-sets", + "Changelog\/13.1\/Feature-103437-IntroduceSiteSets.html#feature-103437-1712062105", "Feature: #103437 - Introduce site sets" ], "settings-definitions": [ @@ -50875,7 +51013,7 @@ "feature-103439-typoscript-provider-for-sites-and-sets": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Feature-103439-TypoScriptProviderForSitesAndSets.html#feature-103439-typoscript-provider-for-sites-and-sets", + "Changelog\/13.1\/Feature-103439-TypoScriptProviderForSitesAndSets.html#feature-103439-1712321631", "Feature: #103439 - TypoScript provider for sites and sets" ], "site-typoscript": [ @@ -50893,37 +51031,37 @@ "global-typoscript": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Feature-103439-TypoScriptProviderForSitesAndSets.html#global-typoscript", + "Changelog\/13.1\/Feature-103439-TypoScriptProviderForSitesAndSets.html#global_typoscript_in_site_sets", "Global TypoScript" ], "feature-103441-request-id-as-public-visible-error-reference-in-error-handlers-output": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Feature-103441-RequestIdAsPublicVisibleErrorReferenceInErrorHandlersOutput.html#feature-103441-request-id-as-public-visible-error-reference-in-error-handlers-output", + "Changelog\/13.1\/Feature-103441-RequestIdAsPublicVisibleErrorReferenceInErrorHandlersOutput.html#feature-103441-1710969809", "Feature: #103441 - Request ID as public visible error reference in error handlers output" ], "feature-103504-new-contentobject-pageview": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Feature-103504-NewContentObjectPageView.html#feature-103504-new-contentobject-pageview", + "Changelog\/13.1\/Feature-103504-NewContentObjectPageView.html#feature-103504-1712041725", "Feature: #103504 - New ContentObject PAGEVIEW" ], "feature-103522-page-tsconfig-provider-for-sites-and-sets": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Feature-103522-PageTSconfigProviderForSitesAndSets.html#feature-103522-page-tsconfig-provider-for-sites-and-sets", + "Changelog\/13.1\/Feature-103522-PageTSconfigProviderForSitesAndSets.html#feature-103522-1712323334", "Feature: #103522 - Page TSconfig provider for sites and sets" ], "feature-103529-introduce-hotkey-for-save-and-close": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Feature-103529-IntroduceHotkeyForSaveAndClose.html#feature-103529-introduce-hotkey-for-save-and-close", + "Changelog\/13.1\/Feature-103529-IntroduceHotkeyForSaveAndClose.html#feature-103529-1712154338", "Feature: #103529 - Introduce hotkey for \"Save and Close\"" ], "feature-103560-update-fluid-standalone-to-version-2-11": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Feature-103560-UpdateFluidStandalone.html#feature-103560-update-fluid-standalone-to-version-2-11", + "Changelog\/13.1\/Feature-103560-UpdateFluidStandalone.html#feature-103560-1712562637", "Feature: #103560 - Update Fluid Standalone to version 2.11" ], "html-f-split-viewhelper": [ @@ -50953,13 +51091,13 @@ "feature-103563-add-saving-related-hotkeys-to-scheduler-backend-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Feature-103563-AddSaving-relatedHotkeysToSchedulerBackendModule.html#feature-103563-add-saving-related-hotkeys-to-scheduler-backend-module", + "Changelog\/13.1\/Feature-103563-AddSaving-relatedHotkeysToSchedulerBackendModule.html#feature-103563-1712569921", "Feature: #103563 - Add saving-related hotkeys to scheduler backend module" ], "feature-103578-add-database-default-value-support-for-text-blob-and-json-field-types": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Feature-103578-AddDatabaseDefaultValueSupportForTEXTBLOBAndJSONFieldTypes.html#feature-103578-add-database-default-value-support-for-text-blob-and-json-field-types", + "Changelog\/13.1\/Feature-103578-AddDatabaseDefaultValueSupportForTEXTBLOBAndJSONFieldTypes.html#feature-103578-1712678936", "Feature: #103578 - Add database default value support for TEXT, BLOB and JSON field types" ], "advanced-example-with-value-quoting": [ @@ -50971,13 +51109,13 @@ "feature-103671-provide-null-coalescing-operator-for-typoscript-constants": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Feature-103671-ProvideNullCoalescingOperatorForTypoScriptConstants.html#feature-103671-provide-null-coalescing-operator-for-typoscript-constants", + "Changelog\/13.1\/Feature-103671-ProvideNullCoalescingOperatorForTypoScriptConstants.html#feature-103671-1713511090", "Feature: #103671 - Provide null coalescing operator for TypoScript constants" ], "feature-93942-crop-svg-images-natively": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Feature-93942-CropSVGImagesNatively.html#feature-93942-crop-svg-images-natively", + "Changelog\/13.1\/Feature-93942-CropSVGImagesNatively.html#feature-93942-1709722341", "Feature: #93942 - Crop SVG images natively" ], "html-f-image-viewhelper-example": [ @@ -50995,7 +51133,7 @@ "important-103165-database-table-cache-treelist-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.1\/Important-103165-Remove-treelist-cache.html#important-103165-database-table-cache-treelist-removed", + "Changelog\/13.1\/Important-103165-Remove-treelist-cache.html#important-103165-1708508519", "Important: #103165 - Database table cache_treelist removed" ], "13-1-changes": [ @@ -51007,55 +51145,55 @@ "deprecation-102326-regularexpressionvalidator-validator-option-errormessage": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Deprecation-102326-RegularExpressionValidatorValidatorOptionErrorMessage.html#deprecation-102326-regularexpressionvalidator-validator-option-errormessage", + "Changelog\/13.2\/Deprecation-102326-RegularExpressionValidatorValidatorOptionErrorMessage.html#deprecation-102326-1699703964", "Deprecation: #102326 - RegularExpressionValidator validator option \"errorMessage\"" ], "deprecation-102337-deprecate-hooks-for-record-download": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Deprecation-102337-DeprecateHooksForRecordDownload.html#deprecation-102337-deprecate-hooks-for-record-download", + "Changelog\/13.2\/Deprecation-102337-DeprecateHooksForRecordDownload.html#deprecation-102337-1715591179", "Deprecation: #102337 - Deprecate hooks for record download" ], "deprecation-103752-obsolete-globals-typo3-conf-vars-fe-addrootlinefields": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Deprecation-103752-ObsoleteGLOBALSTYPO3_CONF_VARSFEaddRootLineFields.html#deprecation-103752-obsolete-globals-typo3-conf-vars-fe-addrootlinefields", + "Changelog\/13.2\/Deprecation-103752-ObsoleteGLOBALSTYPO3_CONF_VARSFEaddRootLineFields.html#deprecation-103752-1714304437", "Deprecation: #103752 - Obsolete $GLOBALS['TYPO3_CONF_VARS']['FE']['addRootLineFields']" ], "deprecation-103785-deprecate-mathutility-converttopositiveinteger": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Deprecation-103785-DeprecateMathUtilityConvertToPositiveInteger.html#deprecation-103785-deprecate-mathutility-converttopositiveinteger", + "Changelog\/13.2\/Deprecation-103785-DeprecateMathUtilityConvertToPositiveInteger.html#deprecation-103785-1714720280", "Deprecation: #103785 - Deprecate MathUtility::convertToPositiveInteger()" ], "deprecation-103965-deprecate-namespaced-shorthand-validator-usage-in-extbase": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Deprecation-103965-DeprecateNamespacedShorthandValidatorUsageInExtbase.html#deprecation-103965-deprecate-namespaced-shorthand-validator-usage-in-extbase", + "Changelog\/13.2\/Deprecation-103965-DeprecateNamespacedShorthandValidatorUsageInExtbase.html#deprecation-103965-1717335369", "Deprecation: #103965 - Deprecate namespaced shorthand validator usage in Extbase" ], "deprecation-104108-table-dependant-definition-of-columnsonly": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Deprecation-104108-TableDependantDefinitionOfColumnsOnly.html#deprecation-104108-table-dependant-definition-of-columnsonly", + "Changelog\/13.2\/Deprecation-104108-TableDependantDefinitionOfColumnsOnly.html#deprecation-104108-1718354448", "Deprecation: #104108 - Table dependant definition of columnsOnly" ], "deprecation-104154-deprecate-utility-updatequerystringparameter": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Deprecation-104154-DeprecateUtilityupdateQueryStringParameter.html#deprecation-104154-deprecate-utility-updatequerystringparameter", + "Changelog\/13.2\/Deprecation-104154-DeprecateUtilityupdateQueryStringParameter.html#deprecation-104154-1718802119", "Deprecation: #104154 - Deprecate Utility.updateQueryStringParameter()" ], "feature-102155-user-tsconfig-option-for-default-resources-viewmode": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Feature-102155-UserTSconfigOptionForDefaultViewModeInFileList.html#feature-102155-user-tsconfig-option-for-default-resources-viewmode", + "Changelog\/13.2\/Feature-102155-UserTSconfigOptionForDefaultViewModeInFileList.html#feature-102155-1717653944", "Feature: #102155 - User TSconfig option for default resources ViewMode" ], "feature-102326-allow-custom-translations-for-extbase-validators": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Feature-102326-AllowCustomTranslationsForExtbaseValidators.html#feature-102326-allow-custom-translations-for-extbase-validators", + "Changelog\/13.2\/Feature-102326-AllowCustomTranslationsForExtbaseValidators.html#feature-102326-1699707043", "Feature: #102326 - Allow custom translations for Extbase validators" ], "example-with-translations": [ @@ -51073,7 +51211,7 @@ "feature-102337-psr-14-event-for-modifying-record-list-export-data": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Feature-102337-IntroducePSR14EventModifyRecordListDownloadData.html#feature-102337-psr-14-event-for-modifying-record-list-export-data", + "Changelog\/13.2\/Feature-102337-IntroducePSR14EventModifyRecordListDownloadData.html#feature-102337-1715591178", "Feature: #102337 - PSR-14 event for modifying record list export data" ], "migrating-php-customizecsvheader": [ @@ -51091,49 +51229,49 @@ "feature-102337-psr-14-event-for-modifying-record-list-download-presets": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Feature-102337-IntroducePSR14EventModifyRecordListDownloadPresets.html#feature-102337-psr-14-event-for-modifying-record-list-download-presets", + "Changelog\/13.2\/Feature-102337-IntroducePSR14EventModifyRecordListDownloadPresets.html#feature-102337-1715591177", "Feature: #102337 - PSR-14 event for modifying record list download presets" ], "feature-102337-presets-for-download-of-record-lists": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Feature-102337-PresetsForRecordListDownload.html#feature-102337-presets-for-download-of-record-lists", + "Changelog\/13.2\/Feature-102337-PresetsForRecordListDownload.html#feature-102337-1712597691", "Feature: #102337 - Presets for download of record lists" ], "feature-102869-list-workspaces-in-livesearch": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Feature-102869-ListWorkspacesInLiveSearch.html#feature-102869-list-workspaces-in-livesearch", + "Changelog\/13.2\/Feature-102869-ListWorkspacesInLiveSearch.html#feature-102869-1705661913", "Feature: #102869 - List workspaces in LiveSearch" ], "feature-102951-provide-psr-7-request-in-extbase-validators": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Feature-102951-ProvidePSR-7RequestInExtbaseValidators.html#feature-102951-provide-psr-7-request-in-extbase-validators", + "Changelog\/13.2\/Feature-102951-ProvidePSR-7RequestInExtbaseValidators.html#feature-102951-1709643048", "Feature: #102951 - Provide PSR-7 request in Extbase validators" ], "feature-103019-modifyredirecturlvalidationresultevent-psr-14-event": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Feature-103019-ModifyRedirectUrlValidationResultEventPSR-14Event.html#feature-103019-modifyredirecturlvalidationresultevent-psr-14-event", + "Changelog\/13.2\/Feature-103019-ModifyRedirectUrlValidationResultEventPSR-14Event.html#feature-103019-1706856586", "Feature: #103019 - ModifyRedirectUrlValidationResultEvent PSR-14 event" ], "feature-103493-edit-full-record-in-check-links-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Feature-103493-EditFullRecordInCheckLinksModule.html#feature-103493-edit-full-record-in-check-links-module", + "Changelog\/13.2\/Feature-103493-EditFullRecordInCheckLinksModule.html#feature-103493-1711562309", "Feature: #103493 - Edit full record in \"Check Links\" module" ], "feature-103706-default-search-level-for-record-search": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Feature-103706-DefaultSearchLevelForRecordSearch.html#feature-103706-default-search-level-for-record-search", + "Changelog\/13.2\/Feature-103706-DefaultSearchLevelForRecordSearch.html#feature-103706-1713883119", "Feature: #103706 - Default search level for record search" ], "feature-103783-recordtransformation-data-processor": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Feature-103783-RecordTransformationDataProcessor.html#feature-103783-recordtransformation-data-processor", + "Changelog\/13.2\/Feature-103783-RecordTransformationDataProcessor.html#feature-103783-1715113274", "Feature: #103783 - RecordTransformation Data Processor" ], "usage-in-fluid-templates": [ @@ -51145,19 +51283,19 @@ "feature-103894-additional-properties-for-columns-in-page-layouts": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Feature-103894-AdditionalPropertiesForColumnsInPageLayouts.html#feature-103894-additional-properties-for-columns-in-page-layouts", + "Changelog\/13.2\/Feature-103894-AdditionalPropertiesForColumnsInPageLayouts.html#feature-103894-1716544976", "Feature: #103894 - Additional properties for columns in Page Layouts" ], "feature-104002-schema-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Feature-104002-SchemaAPI.html#feature-104002-schema-api", + "Changelog\/13.2\/Feature-104002-SchemaAPI.html#feature-104002-1718273913", "Feature: #104002 - Schema API" ], "feature-104020-viewhelper-to-check-feature-flags": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Feature-104020-ViewHelperToCheckFeatureFlags.html#feature-104020-viewhelper-to-check-feature-flags", + "Changelog\/13.2\/Feature-104020-ViewHelperToCheckFeatureFlags.html#feature-104020-1718381897", "Feature: #104020 - ViewHelper to check feature flags" ], "basic-usage": [ @@ -51175,43 +51313,43 @@ "feature-104067-sorting-of-forms-in-the-form-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Feature-104067-SortingOfFormsInTheFormModule.html#feature-104067-sorting-of-forms-in-the-form-module", + "Changelog\/13.2\/Feature-104067-SortingOfFormsInTheFormModule.html#feature-104067-1718188232", "Feature: #104067 - Sorting of forms in the form module" ], "feature-104069-improved-backend-notifications-display-and-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Feature-104069-ImprovedBackendNotificationsDisplayAndHandling.html#feature-104069-improved-backend-notifications-display-and-handling", + "Changelog\/13.2\/Feature-104069-ImprovedBackendNotificationsDisplayAndHandling.html#feature-104069-1718551315", "Feature: #104069 - Improved backend notifications display and handling" ], "feature-104085-edit-specific-columns-of-multiple-records-in-list-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Feature-104085-EditSpecificColumnsOfMultipleRecordsInListModule.html#feature-104085-edit-specific-columns-of-multiple-records-in-list-module", + "Changelog\/13.2\/Feature-104085-EditSpecificColumnsOfMultipleRecordsInListModule.html#feature-104085-1718271935", "Feature: #104085 - Edit specific columns of multiple records in List module" ], "feature-104095-edit-specific-columns-of-multiple-files-in-filelist-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Feature-104095-EditSpecificColumnsOfMultipleFilesInFilelistModule.html#feature-104095-edit-specific-columns-of-multiple-files-in-filelist-module", + "Changelog\/13.2\/Feature-104095-EditSpecificColumnsOfMultipleFilesInFilelistModule.html#feature-104095-1718283782", "Feature: #104095 - Edit specific columns of multiple files in Filelist module" ], "feature-104114-command-to-generate-fluid-schema-files": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Feature-104114-CommandToGenerateFluidSchemaFiles.html#feature-104114-command-to-generate-fluid-schema-files", + "Changelog\/13.2\/Feature-104114-CommandToGenerateFluidSchemaFiles.html#feature-104114-1719419341", "Feature: #104114 - Command to generate Fluid schema files" ], "feature-104220-make-parsefunc-allowtags-and-denytags-optional": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Feature-104220-MakeParseFuncAllowTagsAndDenyTagsOptional.html#feature-104220-make-parsefunc-allowtags-and-denytags-optional", + "Changelog\/13.2\/Feature-104220-MakeParseFuncAllowTagsAndDenyTagsOptional.html#feature-104220-1719409311", "Feature: #104220 - Make parseFunc allowTags and denyTags optional" ], "feature-104223-update-fluid-standalone-to-2-12": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Feature-104223-UpdateFluidStandaloneTo212.html#feature-104223-update-fluid-standalone-to-2-12", + "Changelog\/13.2\/Feature-104223-UpdateFluidStandaloneTo212.html#feature-104223-1719417803", "Feature: #104223 - Update Fluid Standalone to 2.12" ], "arbitrary-tags-with-tag-based-view-helpers": [ @@ -51229,19 +51367,19 @@ "feature-91783-allow-system-maintainer-to-mute-disable-functions-error": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Feature-91783-AllowSystemMaintainerToMuteDisableFunctionsError.html#feature-91783-allow-system-maintainer-to-mute-disable-functions-error", + "Changelog\/13.2\/Feature-91783-AllowSystemMaintainerToMuteDisableFunctionsError.html#feature-91783-1712426102", "Feature: #91783 - Allow system maintainer to mute disable_functions error" ], "feature-92009-provide-backend-modules-in-livesearch": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Feature-92009-ProvideBackendModulesInLiveSearch.html#feature-92009-provide-backend-modules-in-livesearch", + "Changelog\/13.2\/Feature-92009-ProvideBackendModulesInLiveSearch.html#feature-92009-1718182575", "Feature: #92009 - Provide backend modules in LiveSearch" ], "feature-99203-streamline-fe-versionnumberinfilename-to-ext-resources": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Feature-99203-StreamlineFEversionNumberInFilenameToEXTResources.html#feature-99203-streamline-fe-versionnumberinfilename-to-ext-resources", + "Changelog\/13.2\/Feature-99203-StreamlineFEversionNumberInFilenameToEXTResources.html#feature-99203-1704401590", "Feature: #99203 - Streamline FE\/versionNumberInFilename to 'EXT:' resources" ], "gettext-asset-to-cache-bust-assets-in-typoscript": [ @@ -51259,37 +51397,37 @@ "important-101621-changed-default-value-for-twitter-card-field": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Important-101621-ChangedDefaultValueForTwitter_cardField.html#important-101621-changed-default-value-for-twitter-card-field", + "Changelog\/13.2\/Important-101621-ChangedDefaultValueForTwitter_cardField.html#important-101621-1718125029", "Important: #101621 - Changed default value for twitter_card field" ], "important-103485-provide-lib-parsefunc-via-ext-frontend": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Important-103485-ProvideLibparseFuncViaExtfrontend.html#important-103485-provide-lib-parsefunc-via-ext-frontend", + "Changelog\/13.2\/Important-103485-ProvideLibparseFuncViaExtfrontend.html#important-103485-1718964758", "Important: #103485 - Provide lib.parseFunc via ext:frontend" ], "important-103748-reference-index-rebuild-required": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Important-103748-ReferenceIndexRebuildRequired.html#important-103748-reference-index-rebuild-required", + "Changelog\/13.2\/Important-103748-ReferenceIndexRebuildRequired.html#important-103748-1714290385", "Important: #103748 - Reference index rebuild required" ], "important-103915-adjust-database-field-defaults-for-check-tca-types": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Important-103915-AutoDBCreationForTCATypeCheck.html#important-103915-adjust-database-field-defaults-for-check-tca-types", + "Changelog\/13.2\/Important-103915-AutoDBCreationForTCATypeCheck.html#important-103915-1716666919", "Important: #103915 - Adjust database field defaults for \"check\" TCA types" ], "important-104037-backend-module-access-renamed-to-permissions": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Important-104037-RenameAccessModuleToPermissions.html#important-104037-backend-module-access-renamed-to-permissions", + "Changelog\/13.2\/Important-104037-RenameAccessModuleToPermissions.html#important-104037-1718098487", "Important: #104037 - Backend module \"Access\" renamed to \"Permissions\"" ], "important-104153-about-database-error-row-size-too-large": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.2\/Important-104153-AboutDatabaseErrorRowSizeTooLarge.html#important-104153-about-database-error-row-size-too-large", + "Changelog\/13.2\/Important-104153-AboutDatabaseErrorRowSizeTooLarge.html#important-104153-1718790066", "Important: #104153 - About database error \"Row size too large\"" ], "preface": [ @@ -51373,25 +51511,25 @@ "deprecation-101559-extbase-uses-ext-core-viewinterface": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Deprecation-101559-ExtbaseUsesExtcoreViewInterface.html#deprecation-101559-extbase-uses-ext-core-viewinterface", + "Changelog\/13.3\/Deprecation-101559-ExtbaseUsesExtcoreViewInterface.html#deprecation-101559-1721761906", "Deprecation: #101559 - Extbase uses ext:core ViewInterface" ], "deprecation-102422-typoscriptfrontendcontroller-addcachetags-and-getpagecachetags": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Deprecation-102422-TypoScriptFrontendController-addCacheTags.html#deprecation-102422-typoscriptfrontendcontroller-addcachetags-and-getpagecachetags", + "Changelog\/13.3\/Deprecation-102422-TypoScriptFrontendController-addCacheTags.html#deprecation-102422-1700563266", "Deprecation: #102422 - TypoScriptFrontendController->addCacheTags() and ->getPageCacheTags()" ], "deprecation-102821-extensionmanagementutility-addpitost43": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Deprecation-102821-ExtensionManagementUtilityaddPItoST43.html#deprecation-102821-extensionmanagementutility-addpitost43", + "Changelog\/13.3\/Deprecation-102821-ExtensionManagementUtilityaddPItoST43.html#deprecation-102821-1709843835", "Deprecation: #102821 - ExtensionManagementUtility::addPItoST43()" ], "deprecation-104223-fluid-standalone-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Deprecation-104223-FluidStandaloneMethods.html#deprecation-104223-fluid-standalone-methods", + "Changelog\/13.3\/Deprecation-104223-FluidStandaloneMethods.html#deprecation-104223-1721383576", "Deprecation: #104223 - Fluid standalone methods" ], "registeruniversaltagattributes": [ @@ -51409,115 +51547,115 @@ "deprecation-104304-backendutility-gettcafieldconfiguration": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Deprecation-104304-BackendUtilitygetTcaFieldConfiguration.html#deprecation-104304-backendutility-gettcafieldconfiguration", + "Changelog\/13.3\/Deprecation-104304-BackendUtilitygetTcaFieldConfiguration.html#deprecation-104304-1720084447", "Deprecation: #104304 - BackendUtility::getTcaFieldConfiguration" ], "deprecation-104325-diffutility-makediffdisplay": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Deprecation-104325-DiffUtility-makeDiffDisplay.html#deprecation-104325-diffutility-makediffdisplay", + "Changelog\/13.3\/Deprecation-104325-DiffUtility-makeDiffDisplay.html#deprecation-104325-1720298173", "Deprecation: #104325 - DiffUtility->makeDiffDisplay()" ], "deprecation-104463-fluid-standalone-overrideargument": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Deprecation-104463-FluidStandaloneOverrideArgument.html#deprecation-104463-fluid-standalone-overrideargument", + "Changelog\/13.3\/Deprecation-104463-FluidStandaloneOverrideArgument.html#deprecation-104463-1721754926", "Deprecation: #104463 - Fluid standalone overrideArgument" ], "deprecation-104607-backenduserauthentication-returnwebmounts": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Deprecation-104607-BackendUserAuthenticationReturnWebmounts.html#deprecation-104607-backenduserauthentication-returnwebmounts", + "Changelog\/13.3\/Deprecation-104607-BackendUserAuthenticationReturnWebmounts.html#deprecation-104607-1723556132", "Deprecation: #104607 - BackendUserAuthentication:returnWebmounts()" ], "deprecation-104662-backendutility-thumbcode": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Deprecation-104662-BackendUtilityThumbCode.html#deprecation-104662-backendutility-thumbcode", + "Changelog\/13.3\/Deprecation-104662-BackendUtilityThumbCode.html#deprecation-104662-1724058079", "Deprecation: #104662 - BackendUtility thumbCode" ], "deprecation-104684-fluid-renderingcontext-getrequest": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Deprecation-104684-FluidRenderingContext-getRequest.html#deprecation-104684-fluid-renderingcontext-getrequest", + "Changelog\/13.3\/Deprecation-104684-FluidRenderingContext-getRequest.html#deprecation-104684-1724258020", "Deprecation: #104684 - Fluid RenderingContext->getRequest()" ], "deprecation-104764-fluid-templatepaths-filldefaultsbypackagename": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Deprecation-104764-FluidTemplatePaths-fillDefaultsByPackageName.html#deprecation-104764-fluid-templatepaths-filldefaultsbypackagename", + "Changelog\/13.3\/Deprecation-104764-FluidTemplatePaths-fillDefaultsByPackageName.html#deprecation-104764-1724851918", "Deprecation: #104764 - Fluid TemplatePaths->fillDefaultsByPackageName" ], "deprecation-104773-custom-fluid-views-and-extbase": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Deprecation-104773-CustomFluidViewsAndExtbase.html#deprecation-104773-custom-fluid-views-and-extbase", + "Changelog\/13.3\/Deprecation-104773-CustomFluidViewsAndExtbase.html#deprecation-104773-1724942036", "Deprecation: #104773 - Custom Fluid views and Extbase" ], "deprecation-104773-ext-backend-loginproviderinterface-changes": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Deprecation-104773-ExtbackendLoginProviderInterfaceChanges.html#deprecation-104773-ext-backend-loginproviderinterface-changes", + "Changelog\/13.3\/Deprecation-104773-ExtbackendLoginProviderInterfaceChanges.html#deprecation-104773-1724940753", "Deprecation: #104773 - ext:backend LoginProviderInterface changes" ], "deprecation-104778-instantiation-of-iconregistry-in-ext-localconf-php": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Deprecation-104778-InstantiationOfIconRegistryInExtLocalconf.html#deprecation-104778-instantiation-of-iconregistry-in-ext-localconf-php", + "Changelog\/13.3\/Deprecation-104778-InstantiationOfIconRegistryInExtLocalconf.html#deprecation-104778-1724953249", "Deprecation: #104778 - Instantiation of IconRegistry in ext_localconf.php" ], "deprecation-104789-fluid-variables-true-false-null": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Deprecation-104789-FluidVariablesTrueFalseNull.html#deprecation-104789-fluid-variables-true-false-null", + "Changelog\/13.3\/Deprecation-104789-FluidVariablesTrueFalseNull.html#deprecation-104789-1725196704", "Deprecation: #104789 - Fluid variables true, false, null" ], "deprecation-104789-renderstatic-for-fluid-viewhelpers": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Deprecation-104789-RenderStaticForFluidViewHelpers.html#deprecation-104789-renderstatic-for-fluid-viewhelpers", + "Changelog\/13.3\/Deprecation-104789-RenderStaticForFluidViewHelpers.html#deprecation-104789-1725195584", "Deprecation: #104789 - renderStatic() for Fluid ViewHelpers" ], "feature-101252-introduce-errorhandler-for-403-errors-with-redirect-option": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-101252-IntroduceErrorHandlerFor403ErrorsWithRedirectOption.html#feature-101252-introduce-errorhandler-for-403-errors-with-redirect-option", + "Changelog\/13.3\/Feature-101252-IntroduceErrorHandlerFor403ErrorsWithRedirectOption.html#feature-101252-1715447531", "Feature: #101252 - Introduce ErrorHandler for 403 errors with redirect option" ], "feature-101391-add-base64-attribute-to-imageviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-101391-AddBase64OptionToImageViewHelper.html#feature-101391-add-base64-attribute-to-imageviewhelper", + "Changelog\/13.3\/Feature-101391-AddBase64OptionToImageViewHelper.html#feature-101391-1689772689", "Feature: #101391 - Add base64 attribute to ImageViewHelper" ], "feature-101472-allow-static-routes-to-assets": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-101472-AllowStaticRoutesToAssets.html#feature-101472-allow-static-routes-to-assets", + "Changelog\/13.3\/Feature-101472-AllowStaticRoutesToAssets.html#feature-101472-1721137289", "Feature: #101472 - Allow static routes to assets" ], "feature-102255-option-to-skip-url-processing-in-assetrenderer": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-102255-OptionToSkipURLProcessingInAssetRenderer.html#feature-102255-option-to-skip-url-processing-in-assetrenderer", + "Changelog\/13.3\/Feature-102255-OptionToSkipURLProcessingInAssetRenderer.html#feature-102255-1726090749", "Feature: #102255 - Option to skip URL processing in AssetRenderer" ], "feature-102353-avif-support-for-images-generated-by-gifbuilder": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-102353-AVIFSupportForImagesGeneratedByGIFBUILDER.html#feature-102353-avif-support-for-images-generated-by-gifbuilder", + "Changelog\/13.3\/Feature-102353-AVIFSupportForImagesGeneratedByGIFBUILDER.html#feature-102353-1699523309", "Feature: #102353 - AVIF support for images generated by GIFBUILDER" ], "feature-102422-introduce-cachedatacollector-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-102422-CacheDataCollectorApi.html#feature-102422-introduce-cachedatacollector-api", + "Changelog\/13.3\/Feature-102422-CacheDataCollectorApi.html#feature-109999-1700506000", "Feature: #102422 - Introduce CacheDataCollector Api" ], "feature-103090-make-link-type-label-configurable": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-103090-MakeLinktypeLabelConfigurable.html#feature-103090-make-link-type-label-configurable", + "Changelog\/13.3\/Feature-103090-MakeLinktypeLabelConfigurable.html#feature-103090-1707479280", "Feature: #103090 - Make link type label configurable" ], "example-extending-the-abstract": [ @@ -51535,7 +51673,7 @@ "feature-103511-introduce-extbase-file-upload-and-deletion-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-103511-IntroduceExtbaseFileUploadHandling.html#feature-103511-introduce-extbase-file-upload-and-deletion-handling", + "Changelog\/13.3\/Feature-103511-IntroduceExtbaseFileUploadHandling.html#feature-103511-1711894330", "Feature: #103511 - Introduce Extbase file upload and deletion handling" ], "nesting-of-domain-models": [ @@ -51631,7 +51769,7 @@ "file-upload-validation": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-103511-IntroduceExtbaseFileUploadHandling.html#file-upload-validation", + "Changelog\/13.3\/Feature-103511-IntroduceExtbaseFileUploadHandling.html#83749-validationkeys", "File upload validation" ], "shorthand-notation-for-allowedmimetypes": [ @@ -51661,19 +51799,19 @@ "feature-103521-change-table-restrictions-ui-to-combine-read-and-write-permissions": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-103521-ChangeTableRestrictionsUiToCombineReadAndWritePermissions.html#feature-103521-change-table-restrictions-ui-to-combine-read-and-write-permissions", + "Changelog\/13.3\/Feature-103521-ChangeTableRestrictionsUiToCombineReadAndWritePermissions.html#feature-103521-1718028096", "Feature: #103521 - Change table restrictions UI to combine read and write permissions" ], "feature-103576-allow-defining-opacity-in-tca-type-color-element": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-103576-AllowDefiningOpacityInColorElement.html#feature-103576-allow-defining-opacity-in-tca-type-color-element", + "Changelog\/13.3\/Feature-103576-AllowDefiningOpacityInColorElement.html#feature-103576-1720813198", "Feature: #103576 - Allow defining opacity in TCA type=color element" ], "feature-103581-automatically-transform-tca-field-values-for-record-objects": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-103581-AutomaticallyTransformTCAFieldValuesForRecordObjects.html#feature-103581-automatically-transform-tca-field-values-for-record-objects", + "Changelog\/13.3\/Feature-103581-AutomaticallyTransformTCAFieldValuesForRecordObjects.html#feature-103581-1723209131", "Feature: #103581 - Automatically transform TCA field values for record objects" ], "new-tca-option-relationship": [ @@ -51691,31 +51829,31 @@ "feature-103789-add-close-button-to-page-layout-if-returnurl-is-set": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-103789-AddCloseButtonToPageLayoutIfReturnUrlIsSet.html#feature-103789-add-close-button-to-page-layout-if-returnurl-is-set", + "Changelog\/13.3\/Feature-103789-AddCloseButtonToPageLayoutIfReturnUrlIsSet.html#feature-103789-1714805317", "Feature: #103789 - Add \"close\"-button to page layout, if returnUrl is set" ], "feature-104126-add-configuration-setting-to-define-backend-locking-file": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104126-AddConfigurationSettingToDefineBackendLockingFile.html#feature-104126-add-configuration-setting-to-define-backend-locking-file", + "Changelog\/13.3\/Feature-104126-AddConfigurationSettingToDefineBackendLockingFile.html#feature-104126-1714290385", "Feature: #104126 - Add configuration setting to define backend-locking file" ], "feature-104168-psr-14-event-for-modifying-countries": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104168-PSR-14EventForModifyingCountries.html#feature-104168-psr-14-event-for-modifying-countries", + "Changelog\/13.3\/Feature-104168-PSR-14EventForModifyingCountries.html#feature-104168-1719373149", "Feature: #104168 - PSR-14 event for modifying countries" ], "feature-104221-psr-14-events-for-rte-persistence-transformations": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104221-IntroducePSR14EventsForRteTransformations.html#feature-104221-psr-14-events-for-rte-persistence-transformations", + "Changelog\/13.3\/Feature-104221-IntroducePSR14EventsForRteTransformations.html#feature-104221-1715591178", "Feature: #104221 - PSR-14 events for RTE <-> Persistence transformations" ], "feature-104311-auto-created-system-tca-columns": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104311-AutoCreatedSystemTCAColumns.html#feature-104311-auto-created-system-tca-columns", + "Changelog\/13.3\/Feature-104311-AutoCreatedSystemTCAColumns.html#feature-104311-1720176189", "Feature: #104311 - Auto created system TCA columns" ], "auto-created-columns-from-ctrl": [ @@ -51793,19 +51931,19 @@ "feature-104321-allow-handling-of-argument-mapping-exceptions-in-actioncontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104321-AllowHandlingOfArgumentMappingExceptionsInActionController.html#feature-104321-allow-handling-of-argument-mapping-exceptions-in-actioncontroller", + "Changelog\/13.3\/Feature-104321-AllowHandlingOfArgumentMappingExceptionsInActionController.html#feature-104321-1720369379", "Feature: #104321 - Allow handling of argument mapping exceptions in ActionController" ], "feature-104451-redis-backends-support-for-key-prefixing": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104451-RedisBackendsSupportForKeyPrefixing.html#feature-104451-redis-backends-support-for-key-prefixing", + "Changelog\/13.3\/Feature-104451-RedisBackendsSupportForKeyPrefixing.html#feature-104451-1721646565", "Feature: #104451 - Redis backends support for key prefixing" ], "feature-104482-add-if-support-to-expressionbuilder": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104482-IfSupportInExpressionBuilder.html#feature-104482-add-if-support-to-expressionbuilder", + "Changelog\/13.3\/Feature-104482-IfSupportInExpressionBuilder.html#feature-104482-1721939108", "Feature: #104482 - Add if() support to ExpressionBuilder" ], "expressionbuilder-if": [ @@ -51817,7 +51955,7 @@ "feature-104493-add-casttext-expression-support-to-expressionbuilder": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104493-AddCastTextExpressionSupportToExpressionBuilder.html#feature-104493-add-casttext-expression-support-to-expressionbuilder", + "Changelog\/13.3\/Feature-104493-AddCastTextExpressionSupportToExpressionBuilder.html#feature-104493-1722127314", "Feature: #104493 - Add castText() expression support to ExpressionBuilder" ], "expressionbuilder-casttext": [ @@ -51829,7 +51967,7 @@ "feature-104526-provide-validators-for-psr-7-uploadedfile-objects-in-extbase": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104526-ProvideValidatorsForPSR-7UploadedFileObjectsInExtbase.html#feature-104526-provide-validators-for-psr-7-uploadedfile-objects-in-extbase", + "Changelog\/13.3\/Feature-104526-ProvideValidatorsForPSR-7UploadedFileObjectsInExtbase.html#feature-104526-1722603089", "Feature: #104526 - Provide validators for PSR-7 UploadedFile objects in Extbase" ], "filenamevalidator": [ @@ -51859,7 +51997,7 @@ "feature-104631-add-union-clause-support-to-the-querybuilder": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104631-AddUNIONClauseSupportToTheQueryBuilder.html#feature-104631-add-union-clause-support-to-the-querybuilder", + "Changelog\/13.3\/Feature-104631-AddUNIONClauseSupportToTheQueryBuilder.html#feature-104631-1723714985", "Feature: #104631 - Add UNION Clause support to the QueryBuilder" ], "uniontype-distinct-and-uniontype-all": [ @@ -51877,25 +52015,25 @@ "feature-104655-add-console-command-to-mark-upgrade-wizards-as-undone": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104655-AddConsoleCommandToMarkUpgradeWizardsAsUndone.html#feature-104655-add-console-command-to-mark-upgrade-wizards-as-undone", + "Changelog\/13.3\/Feature-104655-AddConsoleCommandToMarkUpgradeWizardsAsUndone.html#feature-104655-1724859386", "Feature: #104655 - Add console command to mark upgrade wizards as undone" ], "feature-104773-generic-view-factory": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104773-GenericViewFactory.html#feature-104773-generic-view-factory", + "Changelog\/13.3\/Feature-104773-GenericViewFactory.html#feature-104773-1724939348", "Feature: #104773 - Generic view factory" ], "feature-104789-support-for-contentargumentname-in-abstractviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104789-SupportForContentArgumentNameInAbstractViewHelper.html#feature-104789-support-for-contentargumentname-in-abstractviewhelper", + "Changelog\/13.3\/Feature-104789-SupportForContentArgumentNameInAbstractViewHelper.html#feature-104789-1725194699", "Feature: #104789 - Support for contentArgumentName in AbstractViewHelper" ], "feature-104794-introduce-site-settings-editor": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104794-IntroduceSiteSettingsEditor.html#feature-104794-introduce-site-settings-editor", + "Changelog\/13.3\/Feature-104794-IntroduceSiteSettingsEditor.html#feature-104794-1725980585", "Feature: #104794 - Introduce Site Settings Editor" ], "categorization": [ @@ -51919,109 +52057,109 @@ "feature-104814-automatically-add-system-fields-to-content-types": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104814-AutomaticallyAddSystemFieldsToContentTypes.html#feature-104814-automatically-add-system-fields-to-content-types", + "Changelog\/13.3\/Feature-104814-AutomaticallyAddSystemFieldsToContentTypes.html#feature-104814-1725444916", "Feature: #104814 - Automatically add system fields to content types" ], "feature-104832-psr-14-event-to-alter-the-results-of-pagetreerepository": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104832-PSR-14EventToAlterTheResultsOfPageTreeRepository.html#feature-104832-psr-14-event-to-alter-the-results-of-pagetreerepository", + "Changelog\/13.3\/Feature-104832-PSR-14EventToAlterTheResultsOfPageTreeRepository.html#feature-104832-1725537890", "Feature: #104832 - PSR-14 Event to alter the results of PageTreeRepository" ], "feature-104844-add-widgets-for-listing-all-the-sys-notes-inside-the-typo3-system": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104844-Dashboard-Sys_note-AddWidgetsForListingAllTheSys_notesInsideTheTYPO3System.html#feature-104844-add-widgets-for-listing-all-the-sys-notes-inside-the-typo3-system", + "Changelog\/13.3\/Feature-104844-Dashboard-Sys_note-AddWidgetsForListingAllTheSys_notesInsideTheTYPO3System.html#feature-104844-1725617507", "Feature: #104844 - Add widgets for listing all the sys_notes inside the TYPO3 system" ], "feature-104846-custom-field-transformations-for-new-records": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104846-CustomFieldTransformationsForNewRecords.html#feature-104846-custom-field-transformations-for-new-records", + "Changelog\/13.3\/Feature-104846-CustomFieldTransformationsForNewRecords.html#feature-104846-1725631434", "Feature: #104846 - Custom field transformations for new records" ], "feature-104868-add-color-scheme-switching": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104868-AddColorSchemeSwitching.html#feature-104868-add-color-scheme-switching", + "Changelog\/13.3\/Feature-104868-AddColorSchemeSwitching.html#feature-104868-1725912804", "Feature: #104868 - Add color scheme switching" ], "feature-104878-introduce-dashboard-widget-for-pages-with-latest-changes": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104878-IntroduceDashboardWidgetForPagesWithLatestChanges.html#feature-104878-introduce-dashboard-widget-for-pages-with-latest-changes", + "Changelog\/13.3\/Feature-104878-IntroduceDashboardWidgetForPagesWithLatestChanges.html#feature-104878-1725993353", "Feature: #104878 - Introduce dashboard widget for pages with latest changes" ], "feature-104896-raise-fluid-standalone-to-4-0": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104896-RaiseFluidStandaloneTo40.html#feature-104896-raise-fluid-standalone-to-4-0", + "Changelog\/13.3\/Feature-104896-RaiseFluidStandaloneTo40.html#feature-104896-1726046146", "Feature: #104896 - Raise Fluid Standalone to 4.0" ], "feature-104904-ignore-fluid-syntax-error-in-f-comment": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104904-IgnoreFluidSyntaxErrorInFComment.html#feature-104904-ignore-fluid-syntax-error-in-f-comment", + "Changelog\/13.3\/Feature-104904-IgnoreFluidSyntaxErrorInFComment.html#feature-104904-1726049662", "Feature: #104904 - Ignore Fluid syntax error in " ], "feature-104914-updated-http-headers-for-frontend-rendering-and-new-typoscript-setting-for-proxies": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104914-UpdatedHTTPHeadersForFrontendRenderingAndNewTypoScriptSettingForProxies.html#feature-104914-updated-http-headers-for-frontend-rendering-and-new-typoscript-setting-for-proxies", + "Changelog\/13.3\/Feature-104914-UpdatedHTTPHeadersForFrontendRenderingAndNewTypoScriptSettingForProxies.html#feature-104914-1726075631", "Feature: #104914 - Updated HTTP headers for frontend rendering and new TypoScript setting for proxies" ], "feature-104935-allow-moving-content-elements-via-page-tree": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104935-AllowMovingContentElementsViaPageTree.html#feature-104935-allow-moving-content-elements-via-page-tree", + "Changelog\/13.3\/Feature-104935-AllowMovingContentElementsViaPageTree.html#feature-104935-1726135959", "Feature: #104935 - Allow moving content elements via page tree" ], "feature-104973-activate-the-shipped-lintyaml-executable-for-typo3": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104973-ActivateLintYamlExecutableForTYPO3.html#feature-104973-activate-the-shipped-lintyaml-executable-for-typo3", + "Changelog\/13.3\/Feature-104973-ActivateLintYamlExecutableForTYPO3.html#feature-104973-1726393875", "Feature: #104973 - Activate the shipped LintYaml executable for TYPO3" ], "feature-104990-automatic-frontend-cache-tagging": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-104990-AutomaticFrontendCacheTagging.html#feature-104990-automatic-frontend-cache-tagging", + "Changelog\/13.3\/Feature-104990-AutomaticFrontendCacheTagging.html#feature-104990-1726495719", "Feature: #104990 - Automatic frontend cache tagging" ], "feature-83835-check-more-fields-in-link-validator": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-83835-CheckMoreFieldsInLinkValidator.html#feature-83835-check-more-fields-in-link-validator", + "Changelog\/13.3\/Feature-83835-CheckMoreFieldsInLinkValidator.html#feature-83835-1711517686", "Feature: #83835 - Check more fields in Link Validator" ], "feature-93100-allow-to-directly-declare-static-route-variables": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-93100-AllowToDirectlyDeclareStaticRouteVariables.html#feature-93100-allow-to-directly-declare-static-route-variables", + "Changelog\/13.3\/Feature-93100-AllowToDirectlyDeclareStaticRouteVariables.html#feature-93100-1710488213", "Feature: #93100 - Allow to directly declare static route variables" ], "feature-99418-enable-recycler-by-default": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-99418-EnableRecyclerByDefault.html#feature-99418-enable-recycler-by-default", + "Changelog\/13.3\/Feature-99418-EnableRecyclerByDefault.html#feature-99418-1722544152", "Feature: #99418 - Enable recycler by default" ], "feature-99510-add-file-embedding-option-to-asset-viewhelpers": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Feature-99510-AddFileEmbeddingOptionToAssetViewhelpers.html#feature-99510-add-file-embedding-option-to-asset-viewhelpers", + "Changelog\/13.3\/Feature-99510-AddFileEmbeddingOptionToAssetViewhelpers.html#feature-99510-1716815124", "Feature: #99510 - Add file embedding option to asset ViewHelpers" ], "important-101535-unused-db-fields-from-tt-content-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Important-101535-UnusedDBFieldsFromTt_contentRemoved.html#important-101535-unused-db-fields-from-tt-content-removed", + "Changelog\/13.3\/Important-101535-UnusedDBFieldsFromTt_contentRemoved.html#important-101535-1726059919", "Important: #101535 - Unused DB fields from tt_content removed" ], "important-104126-drop-typo3conf-directory-from-system-status-check-and-backend-locking": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.3\/Important-104126-DropTypo3confDirectoryFromSystemStatusAndBackendLocking.html#important-104126-drop-typo3conf-directory-from-system-status-check-and-backend-locking", + "Changelog\/13.3\/Important-104126-DropTypo3confDirectoryFromSystemStatusAndBackendLocking.html#important-104126-1714290385", "Important: #104126 - Drop \"typo3conf\" directory from system status check and backend locking" ], "13-3-changes": [ @@ -52033,7 +52171,7 @@ "deprecation-105076-plugin-content-element-and-plugin-sub-types": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.4\/Deprecation-105076-PluginContentElementAndPluginSubTypes.html#deprecation-105076-plugin-content-element-and-plugin-sub-types", + "Changelog\/13.4\/Deprecation-105076-PluginContentElementAndPluginSubTypes.html#deprecation-105076-1726923626", "Deprecation: #105076 - Plugin content element and plugin sub types" ], "common-example": [ @@ -52045,43 +52183,43 @@ "deprecation-105171-include-typoscript-typoscript-syntax": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.4\/Deprecation-105171-INCLUDE_TYPOSCRIPTTypoScriptSyntax.html#deprecation-105171-include-typoscript-typoscript-syntax", + "Changelog\/13.4\/Deprecation-105171-INCLUDE_TYPOSCRIPTTypoScriptSyntax.html#deprecation-105171-1727785626", "Deprecation: #105171 - INCLUDE_TYPOSCRIPT TypoScript syntax" ], "deprecation-105213-tca-sub-types": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.4\/Deprecation-105213-TCASubTypes.html#deprecation-105213-tca-sub-types", + "Changelog\/13.4\/Deprecation-105213-TCASubTypes.html#deprecation-105213-1728286135", "Deprecation: #105213 - TCA sub types" ], "deprecation-105230-typoscriptfrontendcontroller-and-globals-tsfe": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.4\/Deprecation-105230-TypoScriptFrontendControllerAndGLOBALSTSFE.html#deprecation-105230-typoscriptfrontendcontroller-and-globals-tsfe", + "Changelog\/13.4\/Deprecation-105230-TypoScriptFrontendControllerAndGLOBALSTSFE.html#deprecation-105230-1728374467", "Deprecation: #105230 - TypoScriptFrontendController and $GLOBALS['TSFE']" ], "deprecation-105252-dataprovidercontext-getters-and-setters": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.4\/Deprecation-105252-DataProviderContextGettersAndSetters.html#deprecation-105252-dataprovidercontext-getters-and-setters", + "Changelog\/13.4\/Deprecation-105252-DataProviderContextGettersAndSetters.html#deprecation-105252-1728471144", "Deprecation: #105252 - DataProviderContext getters and setters" ], "deprecation-105279-replace-typo3-enumtype-with-doctrine-dbal-enumtype": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.4\/Deprecation-105279-ReplaceTYPO3EnumTypeWithDoctrinedbalEnumType.html#deprecation-105279-replace-typo3-enumtype-with-doctrine-dbal-enumtype", + "Changelog\/13.4\/Deprecation-105279-ReplaceTYPO3EnumTypeWithDoctrinedbalEnumType.html#deprecation-105279-1728669356", "Deprecation: #105279 - Replace TYPO3 EnumType with Doctrine DBAL EnumType" ], "deprecation-105297-tableoptions-and-collate-connection-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.4\/Deprecation-105297-DeprecateTableoptionsAndCollateConnectionConfiguration.html#deprecation-105297-tableoptions-and-collate-connection-configuration", + "Changelog\/13.4\/Deprecation-105297-DeprecateTableoptionsAndCollateConnectionConfiguration.html#deprecation-105297-1728836814", "Deprecation: #105297 - tableoptions and collate connection configuration" ], "important-105175-move-frontendbackenduserauthentication-into-ext-frontend": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.4\/Important-105175-MoveFrontendBackendUserAuthenticationIntoEXTfrontend.html#important-105175-move-frontendbackenduserauthentication-into-ext-frontend", + "Changelog\/13.4\/Important-105175-MoveFrontendBackendUserAuthenticationIntoEXTfrontend.html#important-105175-1727799093", "Important: #105175 - Move FrontendBackendUserAuthentication into EXT:frontend" ], "13-4-changes": [ @@ -52093,15 +52231,39 @@ "feature-105638-modify-fetched-page-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.4.x\/Feature-105638-ModifyFetchedPageContent.html#feature-105638-modify-fetched-page-content", + "Changelog\/13.4.x\/Feature-105638-ModifyFetchedPageContent.html#feature-105638-1732034075", "Feature: #105638 - Modify fetched page content" ], "important-105007-manipulation-of-final-search-query-in-ext-indexed-search": [ "TYPO3 Core Changelog", "main", - "Changelog\/13.4.x\/Important-105007-ManipulationOfFinalSearchQueryInEXTindexed_search.html#important-105007-manipulation-of-final-search-query-in-ext-indexed-search", + "Changelog\/13.4.x\/Important-105007-ManipulationOfFinalSearchQueryInEXTindexed_search.html#important-105007-1728977233", "Important: #105007 - Manipulation of final search query in EXT:indexed_search" ], + "important-105310-create-char-and-binary-as-fixed-length-columns": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Important-105310-CreateCHARAndBINARYAsFixedLengthColumns.html#important-105310-1736154829", + "Important: #105310 - Create CHAR and BINARY as fixed-length columns" + ], + "fixed-length-sql-char": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Important-105310-CreateCHARAndBINARYAsFixedLengthColumns.html#fixed-length-sql-char", + "Fixed-length CHAR" + ], + "example-of-difference-in-behaviour-of-fixed-length-sql-char-types": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Important-105310-CreateCHARAndBINARYAsFixedLengthColumns.html#example-of-difference-in-behaviour-of-fixed-length-sql-char-types", + "Example of difference in behaviour of fixed-length CHAR types" + ], + "important-105653-require-a-template-filename-in-extbase-module-template-rendering": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/13.4.x\/Important-105653-RequireATemplateFilenameInExtbaseModuleTemplateRendering.html#important-105653-1732210472", + "Important: #105653 - Require a template filename in extbase module template rendering" + ], "13-4-x-changes": [ "TYPO3 Core Changelog", "main", @@ -52111,43 +52273,85 @@ "breaking-105377-deprecated-functionality-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/14.0\/Breaking-105377-DeprecatedFunctionalityRemoved.html#breaking-105377-deprecated-functionality-removed", + "Changelog\/14.0\/Breaking-105377-DeprecatedFunctionalityRemoved.html#breaking-105377-1729513863", "Breaking: #105377 - Deprecated functionality removed" ], "breaking-105686-avoid-obsolete-charset-in-sanitizefilename": [ "TYPO3 Core Changelog", "main", - "Changelog\/14.0\/Breaking-105686-AvoidObsoleteCharsetInSanitizeFileName.html#breaking-105686-avoid-obsolete-charset-in-sanitizefilename", + "Changelog\/14.0\/Breaking-105686-AvoidObsoleteCharsetInSanitizeFileName.html#breaking-105686-1732289792", "Breaking: #105686 - Avoid obsolete $charset in sanitizeFileName()" ], "breaking-105695-simplified-charsetconverter": [ "TYPO3 Core Changelog", "main", - "Changelog\/14.0\/Breaking-105695-SimplifiedCharsetConverter.html#breaking-105695-simplified-charsetconverter", + "Changelog\/14.0\/Breaking-105695-SimplifiedCharsetConverter.html#breaking-105695-1732540153", "Breaking: #105695 - Simplified CharsetConverter" ], "breaking-105728-extbase-backend-modules-not-in-page-context-rely-on-global-typoscript-only": [ "TYPO3 Core Changelog", "main", - "Changelog\/14.0\/Breaking-105728-ExtbaseBackendModulesDoNotGuessPageIdForTypoScriptAnymore.html#breaking-105728-extbase-backend-modules-not-in-page-context-rely-on-global-typoscript-only", + "Changelog\/14.0\/Breaking-105728-ExtbaseBackendModulesDoNotGuessPageIdForTypoScriptAnymore.html#breaking-105728-1732882067", "Breaking: #105728 - Extbase backend modules not in page context rely on global TypoScript only" ], "breaking-105733-filenamevalidator-no-longer-accepts-custom-regex-in-construct": [ "TYPO3 Core Changelog", "main", - "Changelog\/14.0\/Breaking-105733-FileNameValidatorNoLongerAcceptsCustomRegexIn__construct.html#breaking-105733-filenamevalidator-no-longer-accepts-custom-regex-in-construct", + "Changelog\/14.0\/Breaking-105733-FileNameValidatorNoLongerAcceptsCustomRegexIn__construct.html#breaking-105733-1733018161", "Breaking: #105733 - FileNameValidator no longer accepts custom regex in __construct()" ], + "breaking-105809-aftermailerinitializationevent-removed": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Breaking-105809-AfterMailerInitializationEventRemoved.html#breaking-105809-1733928218", + "Breaking: #105809 - AfterMailerInitializationEvent removed" + ], + "breaking-105855-remove-file-backwards-compatibility-for-alt-and-link-field": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Breaking-105855-RemoveFileBwCompatForAltAndLinkField.html#breaking-105855-1734686200", + "Breaking: #105855 - Remove file backwards compatibility for alt and link field" + ], + "breaking-105863-remove-exposenonexistentuserinforgotpassworddialog-setting-in-ext-felogin": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Breaking-105863-RemoveExposeNonexistentUserInForgotPasswordDialogSettingInExtfelogin.html#breaking-105863-1735234295", + "Breaking: #105863 - Remove exposeNonexistentUserInForgotPasswordDialog setting in ext:felogin" + ], + "breaking-105920-folder-getsubfolder-throws-folderdoesnotexistexception": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Breaking-105920-Folder-getSubFolderThrowsFolderDoesNotExistException.html#breaking-105920-1736777357", + "Breaking: #105920 - Folder->getSubFolder() throws FolderDoesNotExistException" + ], "feature-105624-psr-14-event-after-a-backend-user-password-has-been-reset": [ "TYPO3 Core Changelog", "main", - "Changelog\/14.0\/Feature-105624-PSR-14EventAfterBackendUserPasswordReset.html#feature-105624-psr-14-event-after-a-backend-user-password-has-been-reset", + "Changelog\/14.0\/Feature-105624-PSR-14EventAfterBackendUserPasswordReset.html#feature-105624-1731956541", "Feature: #105624 - PSR-14 event after a Backend user password has been reset" ], + "feature-105783-notify-backend-user-on-failed-mfa-verification-attempts": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Feature-105783-NotifyBackendUserOnFailedMFAVerificationAttempt.html#feature-105783-1733506414", + "Feature: #105783 - Notify backend user on failed MFA verification attempts" + ], + "feature-105833-extended-page-tree-filter-functionality": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Feature-105833-ExtendedPageTreeFilterFunctionality.html#feature-105833-1734420558", + "Feature: #105833 - Extended page tree filter functionality" + ], + "feature-92760-configurable-timezone-for-dateviewhelper": [ + "TYPO3 Core Changelog", + "main", + "Changelog\/14.0\/Feature-92760-ConfigurableTimezoneForDateViewHelper.html#feature-92760-1733907198", + "Feature: #92760 - Configurable timezone for DateViewHelper" + ], "important-105538-list-type-and-sub-types": [ "TYPO3 Core Changelog", "main", - "Changelog\/14.0\/Important-105538-ListTypeAndSubTypes.html#important-105538-list-type-and-sub-types", + "Changelog\/14.0\/Important-105538-ListTypeAndSubTypes.html#important-105538-1730752784", "Important: #105538 - list_type and sub types" ], "14-0-changes": [ @@ -52159,25 +52363,25 @@ "breaking-19737-prefer-root-templates-for-pages": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-19737-PreferRootTemplate.html#breaking-19737-prefer-root-templates-for-pages", + "Changelog\/7.0\/Breaking-19737-PreferRootTemplate.html#breaking-19737", "Breaking: #19737 - Prefer root templates for pages" ], "breaking-33805-clickmenu-rewrite": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-33805-ClickMenuRewrite.html#breaking-33805-clickmenu-rewrite", + "Changelog\/7.0\/Breaking-33805-ClickMenuRewrite.html#breaking-33805", "Breaking: #33805 - ClickMenu Rewrite" ], "breaking-42543-default-typoscript-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-42543-DefaultTypoScriptRemoved.html#breaking-42543-default-typoscript-removed", + "Changelog\/7.0\/Breaking-42543-DefaultTypoScriptRemoved.html#breaking-42543", "Breaking: #42543 - Default TypoScript Removed" ], "breaking-53542-removal-of-deprecated-code-in-sysext-fluid": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-53542-DeprecatedCodeRemovalInFluid.html#breaking-53542-removal-of-deprecated-code-in-sysext-fluid", + "Changelog\/7.0\/Breaking-53542-DeprecatedCodeRemovalInFluid.html#breaking-53542", "Breaking: #53542 - Removal of deprecated code in sysext fluid" ], "containerviewhelper": [ @@ -52201,31 +52405,31 @@ "breaking-53658-option-alternatebgcolors-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-53658-RemoveAlternateBgColorsOption.html#breaking-53658-option-alternatebgcolors-removed", + "Changelog\/7.0\/Breaking-53658-RemoveAlternateBgColorsOption.html#breaking-53658", "Breaking: #53658 - option alternateBgColors removed" ], "breaking-54409-rte-acronym-button-was-renamed-abbreviation": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-54409-RteAcronymButtonRenamedAbbreviation.html#breaking-54409-rte-acronym-button-was-renamed-abbreviation", + "Changelog\/7.0\/Breaking-54409-RteAcronymButtonRenamedAbbreviation.html#breaking-54409", "Breaking: #54409 - RTE \"acronym\" button was renamed \"abbreviation\"" ], "breaking-57382-remove-old-flash-message-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-57382-FlashMessageApi.html#breaking-57382-remove-old-flash-message-api", + "Changelog\/7.0\/Breaking-57382-FlashMessageApi.html#breaking-57382", "Breaking: #57382 - Remove old flash message API" ], "breaking-57396-deprecated-extbase-property-mapper-was-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-57396-ExtbaseDeprecatedPropertyMapperRemoved.html#breaking-57396-deprecated-extbase-property-mapper-was-removed", + "Changelog\/7.0\/Breaking-57396-ExtbaseDeprecatedPropertyMapperRemoved.html#breaking-57396", "Breaking: #57396 - Deprecated Extbase Property Mapper was removed" ], "breaking-59659-removal-of-deprecated-code-in-sysext-backend": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-59659-DeprecatedCodeRemovalInBackendSysext.html#breaking-59659-removal-of-deprecated-code-in-sysext-backend", + "Changelog\/7.0\/Breaking-59659-DeprecatedCodeRemovalInBackendSysext.html#breaking-59659", "Breaking: #59659 - Removal of deprecated code in sysext backend" ], "flexforms": [ @@ -52255,217 +52459,217 @@ "breaking-59966-extension-configuration-cache-flushing-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-59966-ExtensionConfigurationCacheClearing.html#breaking-59966-extension-configuration-cache-flushing-changed", + "Changelog\/7.0\/Breaking-59966-ExtensionConfigurationCacheClearing.html#breaking-59966", "Breaking: #59966 - Extension Configuration cache-flushing changed" ], "breaking-60063-felogin-plugin-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-60063-FeloginPluginFileRemoved.html#breaking-60063-felogin-plugin-removed", + "Changelog\/7.0\/Breaking-60063-FeloginPluginFileRemoved.html#breaking-60063", "Breaking: #60063 - Felogin Plugin Removed" ], "breaking-60135-recursive-stdwrap-is-now-only-called-once": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-60135-RecursiveStdWrapChange.html#breaking-60135-recursive-stdwrap-is-now-only-called-once", + "Changelog\/7.0\/Breaking-60135-RecursiveStdWrapChange.html#breaking-60135", "Breaking: #60135 - Recursive stdWrap is now only called once" ], "breaking-60152-generalutility-formatsize-is-now-locale-aware": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-60152-formatSizeAdheresLocale.html#breaking-60152-generalutility-formatsize-is-now-locale-aware", + "Changelog\/7.0\/Breaking-60152-formatSizeAdheresLocale.html#breaking-60152", "Breaking: #60152 - GeneralUtility::formatSize is now locale aware" ], "breaking-60559-dropped-backend-login-options": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-60559-DroppedBackendLoginOptions.html#breaking-60559-dropped-backend-login-options", + "Changelog\/7.0\/Breaking-60559-DroppedBackendLoginOptions.html#breaking-60559-1668719184", "Breaking: #60559 - Dropped Backend Login Options" ], "breaking-60559-t3skin-backend-login-javascript-file-moved": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-60559-T3skinBackendLoginJavascriptFileMoved.html#breaking-60559-t3skin-backend-login-javascript-file-moved", + "Changelog\/7.0\/Breaking-60559-T3skinBackendLoginJavascriptFileMoved.html#breaking-60559-1668719172", "Breaking: #60559 - T3skin Backend Login Javascript File Moved" ], "breaking-60559-t3skin-backend-login-template-file-moved": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-60559-T3skinBackendLoginTemplateMoved.html#breaking-60559-t3skin-backend-login-template-file-moved", + "Changelog\/7.0\/Breaking-60559-T3skinBackendLoginTemplateMoved.html#breaking-60559", "Breaking: #60559 - T3skin Backend Login Template File Moved" ], "breaking-60561-default-typoscript-constants-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-60561-DefaultTypoScriptConstantsRemoved.html#breaking-60561-default-typoscript-constants-removed", + "Changelog\/7.0\/Breaking-60561-DefaultTypoScriptConstantsRemoved.html#breaking-60561", "Breaking: #60561 - Default TypoScript Constants Removed" ], "breaking-60582-rsaauth-javascript-files-moved": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-60582-RsaauthJavascriptFilesMoved.html#breaking-60582-rsaauth-javascript-files-moved", + "Changelog\/7.0\/Breaking-60582-RsaauthJavascriptFilesMoved.html#breaking-60582", "Breaking: #60582 - Rsaauth Javascript Files Moved" ], "breaking-60609-configuration-manager-signal-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-60609-ConfigurationManagerSignalChange.html#breaking-60609-configuration-manager-signal-changed", + "Changelog\/7.0\/Breaking-60609-ConfigurationManagerSignalChange.html#breaking-60609", "Breaking: #60609 - Configuration Manager Signal Changed" ], "breaking-60630-scheduler-javascript-file-moved": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-60630-SchedulerJavascriptFileMoved.html#breaking-60630-scheduler-javascript-file-moved", + "Changelog\/7.0\/Breaking-60630-SchedulerJavascriptFileMoved.html#breaking-60630-1668719172", "Breaking: #60630 - Scheduler Javascript File Moved" ], "breaking-60630-scheduler-language-files-moved": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-60630-SchedulerLanguageFilesMoved.html#breaking-60630-scheduler-language-files-moved", + "Changelog\/7.0\/Breaking-60630-SchedulerLanguageFilesMoved.html#breaking-60630", "Breaking: #60630 - Scheduler Language Files Moved" ], "breaking-60630-scheduler-module-template-file-moved": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-60630-SchedulerModuleTemplateMoved.html#breaking-60630-scheduler-module-template-file-moved", + "Changelog\/7.0\/Breaking-60630-SchedulerModuleTemplateMoved.html#breaking-60630-1668719184", "Breaking: #60630 - Scheduler Module Template File Moved" ], "breaking-61459-removal-of-tslib-directory-and-constant": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-61459-RemovalTslib.html#breaking-61459-removal-of-tslib-directory-and-constant", + "Changelog\/7.0\/Breaking-61459-RemovalTslib.html#breaking-61459", "Breaking: #61459 - Removal of tslib directory and constant" ], "breaking-61471-ext-t3skin-css-files-moved-to-less": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-61471-t3skinCssFilesMovedToLess.html#breaking-61471-ext-t3skin-css-files-moved-to-less", + "Changelog\/7.0\/Breaking-61471-t3skinCssFilesMovedToLess.html#breaking-61471", "Breaking: #61471 - EXT:t3skin CSS files moved to less" ], "breaking-61781-include-once-array-in-clickmenucontroller-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-61781-IncludeOnceArrayOfClickMenuControllerRemoved.html#breaking-61781-include-once-array-in-clickmenucontroller-removed", + "Changelog\/7.0\/Breaking-61781-IncludeOnceArrayOfClickMenuControllerRemoved.html#breaking-61781", "Breaking: #61781 - include_once array in ClickMenuController removed" ], "breaking-61782-deprecated-documenttemplate-classes-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-61782-DeprecatedDocumentTemplateClassesRemoved.html#breaking-61782-deprecated-documenttemplate-classes-removed", + "Changelog\/7.0\/Breaking-61782-DeprecatedDocumentTemplateClassesRemoved.html#breaking-61782", "Breaking: #61782 - deprecated DocumentTemplate classes removed" ], "breaking-61783-removed-deprecated-mailing-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-61783-RemoveDeprecatedMailFunctionality.html#breaking-61783-removed-deprecated-mailing-api", + "Changelog\/7.0\/Breaking-61783-RemoveDeprecatedMailFunctionality.html#breaking-61783", "Breaking: #61783 - Removed deprecated mailing API" ], "breaking-61785-getcompressedtcarray-and-includetca-from-typoscriptfrontendcontroller-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-61785-FrontendTcaFunctionsRemoved.html#breaking-61785-getcompressedtcarray-and-includetca-from-typoscriptfrontendcontroller-removed", + "Changelog\/7.0\/Breaking-61785-FrontendTcaFunctionsRemoved.html#breaking-61785-1668719172", "Breaking: #61785 - getCompressedTCarray and includeTCA from TypoScriptFrontendController removed" ], "breaking-61785-loadtca-function-in-generalutility-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-61785-LoadTcaFunctionRemoved.html#breaking-61785-loadtca-function-in-generalutility-removed", + "Changelog\/7.0\/Breaking-61785-LoadTcaFunctionRemoved.html#breaking-61785", "Breaking: #61785 - loadTCA function in GeneralUtility removed" ], "breaking-61786-remove-deprecated-typehandlingservice-in-extbase": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-61786-ExtbaseDeprecatedTypeHandlingServiceRemoved.html#breaking-61786-remove-deprecated-typehandlingservice-in-extbase", + "Changelog\/7.0\/Breaking-61786-ExtbaseDeprecatedTypeHandlingServiceRemoved.html#breaking-61786", "Breaking: #61786 - remove deprecated TypeHandlingService in extbase" ], "breaking-61802-deprecated-islocalconfwritable-function-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-61802-IsLocalconfWritableFunctionRemoved.html#breaking-61802-deprecated-islocalconfwritable-function-removed", + "Changelog\/7.0\/Breaking-61802-IsLocalconfWritableFunctionRemoved.html#breaking-61802", "Breaking: #61802 - deprecated isLocalconfWritable function removed" ], "breaking-61820-deprecated-phpoptionsutility-functions-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-61820-PhpOptionsUtilityDeprecatedFunctionsRemoved.html#breaking-61820-deprecated-phpoptionsutility-functions-removed", + "Changelog\/7.0\/Breaking-61820-PhpOptionsUtilityDeprecatedFunctionsRemoved.html#breaking-61820", "Breaking: #61820 - deprecated PhpOptionsUtility functions removed" ], "breaking-61821-classfile-option-in-makeinstanceservice-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-61821-ClassFileOptionInMakeInstanceServiceRemoved.html#breaking-61821-classfile-option-in-makeinstanceservice-removed", + "Changelog\/7.0\/Breaking-61821-ClassFileOptionInMakeInstanceServiceRemoved.html#breaking-61821", "Breaking: #61821 - classFile option in makeInstanceService removed" ], "breaking-61822-deprecated-function-getuniquefields-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-61822-GetUniqueFieldsFunctionRemoved.html#breaking-61822-deprecated-function-getuniquefields-removed", + "Changelog\/7.0\/Breaking-61822-GetUniqueFieldsFunctionRemoved.html#breaking-61822", "Breaking: #61822 - deprecated function getUniqueFields() removed" ], "breaking-61823-remove-magic-setter-for-fromtc": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-61823-RemoveMagicSettterForFromTC.html#breaking-61823-remove-magic-setter-for-fromtc", + "Changelog\/7.0\/Breaking-61823-RemoveMagicSettterForFromTC.html#breaking-61823", "Breaking: #61823 - Remove magic setter for $fromTC" ], "breaking-61859-deprecated-file-type-filetype-software-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-61859-FileTypeSoftwareRemoved.html#breaking-61859-deprecated-file-type-filetype-software-removed", + "Changelog\/7.0\/Breaking-61859-FileTypeSoftwareRemoved.html#breaking-61859", "Breaking: #61859 - deprecated file type FILETYPE_SOFTWARE removed" ], "breaking-61860-deprecated-function-int-from-ver-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-61860-RemoveIntFromVerFunction.html#breaking-61860-deprecated-function-int-from-ver-removed", + "Changelog\/7.0\/Breaking-61860-RemoveIntFromVerFunction.html#breaking-61860", "Breaking: #61860 - deprecated function int_from_ver removed" ], "breaking-61863-deprecated-connectdb-from-eidutility-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-61863-ConnectDbFunctionRemoved.html#breaking-61863-deprecated-connectdb-from-eidutility-removed", + "Changelog\/7.0\/Breaking-61863-ConnectDbFunctionRemoved.html#breaking-61863", "Breaking: #61863 - deprecated connectDB from EidUtility removed" ], "breaking-61890-tbe-styling-removed-from-formengine-and-tca": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-61890-Remove-TBE-Styling-From-FormEngine.html#breaking-61890-tbe-styling-removed-from-formengine-and-tca", + "Changelog\/7.0\/Breaking-61890-Remove-TBE-Styling-From-FormEngine.html#breaking-61890", "Breaking: #61890 - TBE Styling removed from FormEngine and TCA" ], "breaking-61959-move-flash-message-output-to-alerts": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-61959-FlashMessageClasses.html#breaking-61959-move-flash-message-output-to-alerts", + "Changelog\/7.0\/Breaking-61959-FlashMessageClasses.html#breaking-61959", "Breaking: #61959 - Move flash message output to alerts" ], "breaking-62038-deprecated-documenttemplate-functionality": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-62038-RemovedDocumentTemplateOptions.html#breaking-62038-deprecated-documenttemplate-functionality", + "Changelog\/7.0\/Breaking-62038-RemovedDocumentTemplateOptions.html#breaking-62038", "Breaking: #62038 - Deprecated DocumentTemplate functionality" ], "breaking-62039-removed-tbe-styles-maincolors": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-62039-RemovedTBE_StylesMainColors.html#breaking-62039-removed-tbe-styles-maincolors", + "Changelog\/7.0\/Breaking-62039-RemovedTBE_StylesMainColors.html#breaking-62039", "Breaking: #62039 - Removed TBE_STYLES[mainColors]" ], "breaking-62291-rte-deprecated-javascript-methods-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-62291-RTEDeprecatedJavaScriptMethodsRemoved.html#breaking-62291-rte-deprecated-javascript-methods-removed", + "Changelog\/7.0\/Breaking-62291-RTEDeprecatedJavaScriptMethodsRemoved.html#breaking-62291-1668719172", "Breaking: #62291 - RTE Deprecated JavaScript methods removed" ], "breaking-62339-move-ext-perm-into-ext-beuser-and-remove-ext-perm": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-62339-MoveExtPermIntoExtBeuser.html#breaking-62339-move-ext-perm-into-ext-beuser-and-remove-ext-perm", + "Changelog\/7.0\/Breaking-62339-MoveExtPermIntoExtBeuser.html#breaking-62339", "Breaking: #62339 - Move EXT:perm into EXT:beuser and remove EXT:perm" ], "breaking-62416-removal-of-deprecated-code-in-sysext-core": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-62416-DeprecatedCodeRemovalInCoreSysext.html#breaking-62416-removal-of-deprecated-code-in-sysext-core", + "Changelog\/7.0\/Breaking-62416-DeprecatedCodeRemovalInCoreSysext.html#breaking-62416", "Breaking: #62416 - Removal of deprecated code in sysext core" ], "datahandler": [ @@ -52507,13 +52711,13 @@ "breaking-62595-remove-su-change-to-mode": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-62595-RemovedChangeToSwitchModeFromBeUser.html#breaking-62595-remove-su-change-to-mode", + "Changelog\/7.0\/Breaking-62595-RemovedChangeToSwitchModeFromBeUser.html#breaking-62595", "Breaking: #62595 - Remove SU change-to mode" ], "breaking-62670-removal-of-deprecated-code-in-multiple-sysexts": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-62670-DeprecatedCodeRemovalInMultipleSysexts.html#breaking-62670-removal-of-deprecated-code-in-multiple-sysexts", + "Changelog\/7.0\/Breaking-62670-DeprecatedCodeRemovalInMultipleSysexts.html#breaking-62670", "Breaking: #62670 - Removal of deprecated code in multiple sysexts" ], "dbal-databaseconnection": [ @@ -52543,7 +52747,7 @@ "breaking-62673-deprecated-extbase-code-is-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-62673-ExtbaseDeprecatedCodeRemoved.html#breaking-62673-deprecated-extbase-code-is-removed", + "Changelog\/7.0\/Breaking-62673-ExtbaseDeprecatedCodeRemoved.html#breaking-62673", "Breaking: #62673 - Deprecated extbase code is removed" ], "generic-qom-statement": [ @@ -52561,241 +52765,241 @@ "breaking-62291-rte-wizard-classes-renamed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-62731-RTEWizardClassesRenamed.html#breaking-62291-rte-wizard-classes-renamed", + "Changelog\/7.0\/Breaking-62731-RTEWizardClassesRenamed.html#breaking-62291", "Breaking: #62291 - RTE wizard classes renamed" ], "breaking-62733-rte-javascript-files-moved": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-62733-RTEJavaScriptFilesMoved.html#breaking-62733-rte-javascript-files-moved", + "Changelog\/7.0\/Breaking-62733-RTEJavaScriptFilesMoved.html#breaking-62733", "Breaking: #62733 - RTE Javascript Files Moved" ], "breaking-62793-typoscript-config-notification-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-62793-RemoveConfigNotification.html#breaking-62793-typoscript-config-notification-removed", + "Changelog\/7.0\/Breaking-62793-RemoveConfigNotification.html#breaking-62793", "Breaking: #62793 - TypoScript config.notification_* removed" ], "breaking-62804-rte-javascript-method-htmlarea-editor-getnodebyposition-was-moved": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-62804-RTEJavaScriptMethodMoved.html#breaking-62804-rte-javascript-method-htmlarea-editor-getnodebyposition-was-moved", + "Changelog\/7.0\/Breaking-62804-RTEJavaScriptMethodMoved.html#breaking-62804", "Breaking: #62804 - RTE JavaScript method HTMLArea.Editor::getNodeByPosition was moved" ], "breaking-62819-remove-php-localization-support": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-62819-LocalizationWithPHPFiles.html#breaking-62819-remove-php-localization-support", + "Changelog\/7.0\/Breaking-62819-LocalizationWithPHPFiles.html#breaking-62819", "Breaking: #62819 - Remove php Localization Support" ], "breaking-62833-removed-dividers2tabs-functionality": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-62833-Dividers2Tabs.html#breaking-62833-removed-dividers2tabs-functionality", + "Changelog\/7.0\/Breaking-62833-Dividers2Tabs.html#breaking-62833", "Breaking: #62833 - Removed dividers2tabs functionality" ], "breaking-62859-removal-of-doc-link-action-view-helper": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-62859-RemovalDocumentationLinkActionViewHelper.html#breaking-62859-removal-of-doc-link-action-view-helper", + "Changelog\/7.0\/Breaking-62859-RemovalDocumentationLinkActionViewHelper.html#breaking-62859", "Breaking: #62859 - Removal of doc:link.action view helper" ], "breaking-62888-remove-config-uniquelinkvars": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-62888-RemoveUniqueLinkVars.html#breaking-62888-remove-config-uniquelinkvars", + "Changelog\/7.0\/Breaking-62888-RemoveUniqueLinkVars.html#breaking-62888", "Breaking: #62888 - Remove config.uniqueLinkVars" ], "breaking-62914-early-check-for-php-5-5-in-install-tool": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-62914-EarlyCheckPHP55InInstallTool.html#breaking-62914-early-check-for-php-5-5-in-install-tool", + "Changelog\/7.0\/Breaking-62914-EarlyCheckPHP55InInstallTool.html#breaking-62914", "Breaking: #62914 - Early check for PHP 5.5 in Install Tool" ], "breaking-62987-remove-csh-glossary": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-62987-RemoveCSHGlossary.html#breaking-62987-remove-csh-glossary", + "Changelog\/7.0\/Breaking-62987-RemoveCSHGlossary.html#breaking-62987", "Breaking: #62987 - Remove CSH Glossary" ], "breaking-63056-remove-template-selection-hack": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-63056-TemplateSelectionHack.html#breaking-63056-remove-template-selection-hack", + "Changelog\/7.0\/Breaking-63056-TemplateSelectionHack.html#breaking-63056", "Breaking: #63056 - Remove Template Selection Hack" ], "breaking-63069-removed-compatibility-layer-for-submodules-of-func-and-info-modules": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-63069-RemovedCompatibilityLayerForSubmodulesOfModules.html#breaking-63069-removed-compatibility-layer-for-submodules-of-func-and-info-modules", + "Changelog\/7.0\/Breaking-63069-RemovedCompatibilityLayerForSubmodulesOfModules.html#breaking-63069", "Breaking: #63069 - Removed compatibility layer for submodules of func and info modules" ], "breaking-63110-alt-doc-nodoc-php-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-63110-AltDocNoDoc-Removed.html#breaking-63110-alt-doc-nodoc-php-removed", + "Changelog\/7.0\/Breaking-63110-AltDocNoDoc-Removed.html#breaking-63110", "Breaking: #63110 - alt_doc_nodoc.php removed" ], "breaking-75942-bigdocumenttemplate-class-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Breaking-75942-BigDocumentTemplateClassRemoved.html#breaking-75942-bigdocumenttemplate-class-removed", + "Changelog\/7.0\/Breaking-75942-BigDocumentTemplateClassRemoved.html#breaking-75942", "Breaking: #75942 - BigDocumentTemplate class removed" ], "deprecation-60574-client-related-conditions": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Deprecation-60574-ClientRelatedConditions.html#deprecation-60574-client-related-conditions", + "Changelog\/7.0\/Deprecation-60574-ClientRelatedConditions.html#deprecation-60574", "Deprecation: #60574 - Client Related Conditions" ], "deprecation-61513-use-native-htmlspecialchars-in-extendedtemplateservice": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Deprecation-61513-Remove-HSC-Function-In-Backend-TypoScript-Module.html#deprecation-61513-use-native-htmlspecialchars-in-extendedtemplateservice", + "Changelog\/7.0\/Deprecation-61513-Remove-HSC-Function-In-Backend-TypoScript-Module.html#deprecation-61513", "Deprecation: #61513 - Use native htmlspecialchars in ExtendedTemplateService" ], "deprecation-62363-tsfe-jseventfunccalls-disabled": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Deprecation-62363-TSFE-JSfuncCalls.html#deprecation-62363-tsfe-jseventfunccalls-disabled", + "Changelog\/7.0\/Deprecation-62363-TSFE-JSfuncCalls.html#deprecation-62363", "Deprecation: #62363 - TSFE->JSeventFuncCalls disabled" ], "deprecation-62794-mail-methods-in-generalutility": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Deprecation-62794-DeprecateOldMailMethodsInGeneralUtility.html#deprecation-62794-mail-methods-in-generalutility", + "Changelog\/7.0\/Deprecation-62794-DeprecateOldMailMethodsInGeneralUtility.html#deprecation-62794", "Deprecation: #62794 - Mail methods in GeneralUtility" ], "deprecation-62795-documenttemplate-endpagejs": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Deprecation-62795-DocumentTemplateJavaScript.html#deprecation-62795-documenttemplate-endpagejs", + "Changelog\/7.0\/Deprecation-62795-DocumentTemplateJavaScript.html#deprecation-62795", "Deprecation: #62795 - DocumentTemplate->endPageJS()" ], "deprecation-62800-workspaces-toolbaritem-via-extdirect": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Deprecation-62800-WorkspaceToolbarItem.html#deprecation-62800-workspaces-toolbaritem-via-extdirect", + "Changelog\/7.0\/Deprecation-62800-WorkspaceToolbarItem.html#deprecation-62800", "Deprecation: #62800 - Workspaces ToolbarItem via ExtDirect" ], "deprecation-62854-abstractplugin-pi-list-searchbox": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Deprecation-62854-Deprecate-pi_list_searchBox.html#deprecation-62854-abstractplugin-pi-list-searchbox", + "Changelog\/7.0\/Deprecation-62854-Deprecate-pi_list_searchBox.html#deprecation-62854", "Deprecation: #62854 - Abstractplugin->pi_list_searchBox()" ], "deprecation-62864-backendutility-helptexticon-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Deprecation-62864-HelpTextIcon.html#deprecation-62864-backendutility-helptexticon-deprecated", + "Changelog\/7.0\/Deprecation-62864-HelpTextIcon.html#deprecation-62864", "Deprecation: #62864 - BackendUtility->helpTextIcon deprecated" ], "deprecation-62893-flashmessage-javascript-object-typo3-flashmessages-was-moved": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Deprecation-62893-FlashmessageJavaScriptObjectMoved.html#deprecation-62893-flashmessage-javascript-object-typo3-flashmessages-was-moved", + "Changelog\/7.0\/Deprecation-62893-FlashmessageJavaScriptObjectMoved.html#deprecation-62893", "Deprecation: #62893 - Flashmessage JavaScript object TYPO3.Flashmessages was moved" ], "deprecation-62988-deprecate-unused-non-unified-documenttemplate-code": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Deprecation-62988-DocumentTemplateFunctions.html#deprecation-62988-deprecate-unused-non-unified-documenttemplate-code", + "Changelog\/7.0\/Deprecation-62988-DocumentTemplateFunctions.html#deprecation-62988", "Deprecation: #62988 - Deprecate unused\/non-unified DocumentTemplate code" ], "feature-47919-possibility-to-configure-an-exception-handler-when-rendering-typoscript-content-objects": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Feature-47919-CatchContentRenderingExceptions.html#feature-47919-possibility-to-configure-an-exception-handler-when-rendering-typoscript-content-objects", + "Changelog\/7.0\/Feature-47919-CatchContentRenderingExceptions.html#feature-47919", "Feature: #47919 - Possibility to configure an exception handler when rendering TypoScript content objects" ], "feature-50039-multiple-css-files-in-rich-text-editor": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Feature-50039-MultipleCssFilesInRte.html#feature-50039-multiple-css-files-in-rich-text-editor", + "Changelog\/7.0\/Feature-50039-MultipleCssFilesInRte.html#feature-50039", "Feature: #50039 - Multiple CSS Files in Rich Text Editor" ], "feature-51905-add-dependencies-between-classes-in-the-rich-text-editor": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Feature-51905-AddDependenciesBetweenClassesInRte.html#feature-51905-add-dependencies-between-classes-in-the-rich-text-editor", + "Changelog\/7.0\/Feature-51905-AddDependenciesBetweenClassesInRte.html#feature-51905", "Feature: #51905 - Add dependencies between classes in the Rich Text Editor" ], "feature-54518-provide-tsconfig-to-link-checkers": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Feature-54518-ProvideTsconfigToLinkCheckers.html#feature-54518-provide-tsconfig-to-link-checkers", + "Changelog\/7.0\/Feature-54518-ProvideTsconfigToLinkCheckers.html#feature-54518", "Feature: #54518 - Provide TSconfig to link checkers" ], "feature-54519-report-links-to-disabled-linkhandler-records": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Feature-54519-CheckDisabledLinkhandlerRecords.html#feature-54519-report-links-to-disabled-linkhandler-records", + "Changelog\/7.0\/Feature-54519-CheckDisabledLinkhandlerRecords.html#feature-54519", "Feature: #54519 - Report links to disabled linkhandler records" ], "feature-58122-configure-class-as-non-selectable-in-rich-text-editor": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Feature-58122-ConfigureClassAsNonSelectableInRte.html#feature-58122-configure-class-as-non-selectable-in-rich-text-editor", + "Changelog\/7.0\/Feature-58122-ConfigureClassAsNonSelectableInRte.html#feature-58122", "Feature: #58122 - Configure class as non-selectable in Rich Text Editor" ], "feature-59396-typolinkviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Feature-59396-TypolinkViewHelper.html#feature-59396-typolinkviewhelper", + "Changelog\/7.0\/Feature-59396-TypolinkViewHelper.html#feature-59396", "Feature: #59396 - TypolinkViewHelper" ], "feature-59830-introduce-read-only-column-for-file-mounts": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Feature-59830-IntroduceReadOnlyColumnForFileMounts.html#feature-59830-introduce-read-only-column-for-file-mounts", + "Changelog\/7.0\/Feature-59830-IntroduceReadOnlyColumnForFileMounts.html#feature-59830", "Feature: #59830 - Introduce read-only column for file mounts" ], "feature-60064-logging-framework-introspection-processor": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Feature-60064-LoggingFrameworkIntrospectionProcessor.html#feature-60064-logging-framework-introspection-processor", + "Changelog\/7.0\/Feature-60064-LoggingFrameworkIntrospectionProcessor.html#feature-60064", "Feature: #60064 - Logging Framework Introspection Processor" ], "feature-60123-unit-base-test-case-removes-test-files": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Feature-60123-UnitTestCaseRemovesTestFiles.html#feature-60123-unit-base-test-case-removes-test-files", + "Changelog\/7.0\/Feature-60123-UnitTestCaseRemovesTestFiles.html#feature-60123", "Feature: #60123 - Unit base test case removes test files" ], "feature-60567-show-styles-segment-in-ts-object-browser": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Feature-60567-ShowStylesSegmentInTypoScriptObjectBrowser.html#feature-60567-show-styles-segment-in-ts-object-browser", + "Changelog\/7.0\/Feature-60567-ShowStylesSegmentInTypoScriptObjectBrowser.html#feature-60567", "Feature: #60567 - Show Styles Segment in TS Object Browser" ], "feature-60822-class-annotations-in-extbase-reflection-service": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Feature-60822-AddMethodsToGetClassTagValuesViaReflection.html#feature-60822-class-annotations-in-extbase-reflection-service", + "Changelog\/7.0\/Feature-60822-AddMethodsToGetClassTagValuesViaReflection.html#feature-60822", "Feature: #60822 - Class annotations in extbase reflection service" ], "feature-66185-allow-svg-files-as-extension-icon": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Feature-61185-AllowSvgAsExtensionIcon.html#feature-66185-allow-svg-files-as-extension-icon", + "Changelog\/7.0\/Feature-61185-AllowSvgAsExtensionIcon.html#feature-66185", "Feature: #66185 - Allow Svg Files as Extension icon" ], "feature-61289-signal-for-iconutility-html-tag-manipulation": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Feature-61289-SignalForIconUtilityHtmlTagManipulation.html#feature-61289-signal-for-iconutility-html-tag-manipulation", + "Changelog\/7.0\/Feature-61289-SignalForIconUtilityHtmlTagManipulation.html#feature-61289", "Feature: #61289 - Signal for IconUtility html tag manipulation" ], "feature-61351-add-data-attribute-to-fluid-viewhelpers": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Feature-61351-AddDataAttributeToFluidViewHelpers.html#feature-61351-add-data-attribute-to-fluid-viewhelpers", + "Changelog\/7.0\/Feature-61351-AddDataAttributeToFluidViewHelpers.html#feature-61351", "Feature: #61351 - Add data attribute to Fluid ViewHelpers" ], "feature-61361-template-path-fallback-for-fluid-standaloneview-and-fluidtemplate": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Feature-61361-FallbackTemplatePathsForFluidStandaloneView.html#feature-61361-template-path-fallback-for-fluid-standaloneview-and-fluidtemplate", + "Changelog\/7.0\/Feature-61361-FallbackTemplatePathsForFluidStandaloneView.html#feature-61361", "Feature: #61361 - Template Path Fallback for Fluid StandaloneView and FLUIDTEMPLATE" ], "standaloneview": [ @@ -52813,37 +53017,37 @@ "feature-61489-allow-own-typoscript-condition-implementations": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Feature-61489-AbstractTypoScriptCondition.html#feature-61489-allow-own-typoscript-condition-implementations", + "Changelog\/7.0\/Feature-61489-AbstractTypoScriptCondition.html#feature-61489", "Feature: #61489 - Allow own TypoScript Condition implementations" ], "feature-61529-add-multiple-parameter-to-f-form-checkbox": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Feature-61529-AddMultipleParameterToCheckboxViewHelper.html#feature-61529-add-multiple-parameter-to-f-form-checkbox", + "Changelog\/7.0\/Feature-61529-AddMultipleParameterToCheckboxViewHelper.html#feature-61529", "Feature: #61529 - Add multiple parameter to f:form.checkbox" ], "feature-61577-backend-markup-for-checkboxes-with-labels": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Feature-61577-BackendMarkupForCheckboxesWithLabel.html#feature-61577-backend-markup-for-checkboxes-with-labels", + "Changelog\/7.0\/Feature-61577-BackendMarkupForCheckboxesWithLabel.html#feature-61577", "Feature: #61577 - Backend markup for checkboxes with labels" ], "feature-61668-video-and-audio-playback-in-backend-record-information": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Feature-61668-VideoAndAudioPlayerInBackendRecordInformationWindow.html#feature-61668-video-and-audio-playback-in-backend-record-information", + "Changelog\/7.0\/Feature-61668-VideoAndAudioPlayerInBackendRecordInformationWindow.html#feature-61668", "Feature: #61668 - Video and audio playback in backend record information" ], "feature-61800-registry-for-adding-file-rendering-classes": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Feature-61800-FAL-RendererRegistry.html#feature-61800-registry-for-adding-file-rendering-classes", + "Changelog\/7.0\/Feature-61800-FAL-RendererRegistry.html#feature-61800", "Feature: #61800 - Registry for adding file rendering classes" ], "feature-62147-new-eval-option-in-tca-email": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.0\/Feature-62147-NewEmailEvalInTCA.html#feature-62147-new-eval-option-in-tca-email", + "Changelog\/7.0\/Feature-62147-NewEmailEvalInTCA.html#feature-62147", "Feature: #62147 - New eval option in TCA: email" ], "7-0-changes": [ @@ -52855,25 +53059,25 @@ "breaking-24900-remove-typo3-conf-vars-sys-compat-version-option": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-24900-CompatVersion-Setting-Removed.html#breaking-24900-remove-typo3-conf-vars-sys-compat-version-option", + "Changelog\/7.1\/Breaking-24900-CompatVersion-Setting-Removed.html#breaking-24900", "Breaking: #24900 - Remove $TYPO3_CONF_VARS[SYS][compat_version] option" ], "breaking-44879-typoscript-inline-styles-from-blockquote-tag-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-44879-CSSStyledContentTypoScriptBlockQuoteInlineStylesRemoved.html#breaking-44879-typoscript-inline-styles-from-blockquote-tag-removed", + "Changelog\/7.1\/Breaking-44879-CSSStyledContentTypoScriptBlockQuoteInlineStylesRemoved.html#breaking-44879", "Breaking: #44879 - TypoScript inline styles from blockquote tag removed" ], "breaking-57089-behaviour-of-page-shortcut-to-parent-of-selected-or-current-page": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-57089-ShortcutBehaviour.html#breaking-57089-behaviour-of-page-shortcut-to-parent-of-selected-or-current-page", + "Changelog\/7.1\/Breaking-57089-ShortcutBehaviour.html#breaking-57089", "Breaking: #57089 - Behaviour of page shortcut to \"Parent of selected or current page\"" ], "breaking-61510-improvement-of-indexed-search": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-61510-IndexedSearch.html#breaking-61510-improvement-of-indexed-search", + "Changelog\/7.1\/Breaking-61510-IndexedSearch.html#breaking-61510", "Breaking: #61510 - Improvement of indexed_search" ], "backend": [ @@ -52897,397 +53101,397 @@ "breaking-62415-remove-deprecated-disable-autocreate-field-in-workspaces": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-62415-DisableAutoCreateRemoved.html#breaking-62415-remove-deprecated-disable-autocreate-field-in-workspaces", + "Changelog\/7.1\/Breaking-62415-DisableAutoCreateRemoved.html#breaking-62415", "Breaking: #62415 - Remove deprecated disable_autocreate field in workspaces" ], "breaking-62886-removed-setting-config-meaningfultempfileprefix": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-62886-RemoveMeaningfulTempFilePrefix.html#breaking-62886-removed-setting-config-meaningfultempfileprefix", + "Changelog\/7.1\/Breaking-62886-RemoveMeaningfulTempFilePrefix.html#breaking-62886", "Breaking: #62886 - Removed setting config.meaningfulTempFilePrefix" ], "breaking-62925-extjs-ext-ux-datetimepicker-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-62925-RemoveExtJsDateTimePicker.html#breaking-62925-extjs-ext-ux-datetimepicker-removed", + "Changelog\/7.1\/Breaking-62925-RemoveExtJsDateTimePicker.html#breaking-62925", "Breaking: #62925 - ExtJS Ext.ux.DateTimePicker removed" ], "breaking-63296-deprecated-typo3-files-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-63296-Removed-Files.html#breaking-63296-deprecated-typo3-files-removed", + "Changelog\/7.1\/Breaking-63296-Removed-Files.html#breaking-63296", "Breaking: #63296 - Deprecated typo3\/ files removed" ], "breaking-63310-web-functions-wizards-moved": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-63310-Wizard-Modules-Moved.html#breaking-63310-web-functions-wizards-moved", + "Changelog\/7.1\/Breaking-63310-Wizard-Modules-Moved.html#breaking-63310", "Breaking: #63310 - Web=>Functions=>Wizards moved" ], "breaking-63431-backend-toolbar-refactored": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-63431-BackendToolbarRefactored.html#breaking-63431-backend-toolbar-refactored", + "Changelog\/7.1\/Breaking-63431-BackendToolbarRefactored.html#breaking-63431", "Breaking: #63431 - Backend toolbar refactored" ], "breaking-63437-class-aliases-moved-to-legacy-extension": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-63437-ClassAliasesMovedToLegacyExtension.html#breaking-63437-class-aliases-moved-to-legacy-extension", + "Changelog\/7.1\/Breaking-63437-ClassAliasesMovedToLegacyExtension.html#breaking-63437", "Breaking: #63437 - Class aliases moved to legacy extension" ], "breaking-63464-remove-include-once-inclusions-inside-modulefunctions": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-63464-IncludeOnceArraysRemoved.html#breaking-63464-remove-include-once-inclusions-inside-modulefunctions", + "Changelog\/7.1\/Breaking-63464-IncludeOnceArraysRemoved.html#breaking-63464", "Breaking: #63464 - Remove include_once inclusions inside ModuleFunctions" ], "breaking-63687-web-functions-wizards-moved-to-legacy-extension": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-63687-WebFunctionsWizards-Moved.html#breaking-63687-web-functions-wizards-moved-to-legacy-extension", + "Changelog\/7.1\/Breaking-63687-WebFunctionsWizards-Moved.html#breaking-63687-1668719172", "Breaking: #63687 - Web=>Functions=>Wizards moved to legacy extension" ], "breaking-63780-remove-public-properties-words-and-word-strings-from-referenceindex": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-63780-RemoveWordStringsFromReferenceIndex.html#breaking-63780-remove-public-properties-words-and-word-strings-from-referenceindex", + "Changelog\/7.1\/Breaking-63780-RemoveWordStringsFromReferenceIndex.html#breaking-63780", "Breaking: #63780 - Remove public properties words and word_strings from ReferenceIndex" ], "breaking-63818-removed-static-file-edit-functionality": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-63818-RemovedStaticFileEdit.html#breaking-63818-removed-static-file-edit-functionality", + "Changelog\/7.1\/Breaking-63818-RemovedStaticFileEdit.html#breaking-63818", "Breaking: #63818 - Removed Static file edit functionality" ], "breaking-64059-rewritten-javascript-tree-components": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-64059-Rewritten-JavaScript-Tree-Components.html#breaking-64059-rewritten-javascript-tree-components", + "Changelog\/7.1\/Breaking-64059-Rewritten-JavaScript-Tree-Components.html#breaking-64059", "Breaking: #64059 - Rewritten Javascript Tree Components" ], "breaking-64070-removed-global-variable-webmounts": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-64070-GlobalWebmountsRemoved.html#breaking-64070-removed-global-variable-webmounts", + "Changelog\/7.1\/Breaking-64070-GlobalWebmountsRemoved.html#breaking-64070", "Breaking: #64070 - Removed global variable WEBMOUNTS" ], "breaking-64102-move-t3-table-and-t3-button-to-bootstrap": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-64102-MoveT3TableAndT3ButtonToBootstrap.html#breaking-64102-move-t3-table-and-t3-button-to-bootstrap", + "Changelog\/7.1\/Breaking-64102-MoveT3TableAndT3ButtonToBootstrap.html#breaking-64102", "Breaking: #64102 - Move t3-table and t3-button to bootstrap" ], "breaking-64131-resizable-textarea-option-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-64131-ResizableTextareasOptionDropped.html#breaking-64131-resizable-textarea-option-removed", + "Changelog\/7.1\/Breaking-64131-ResizableTextareasOptionDropped.html#breaking-64131", "Breaking: #64131 - Resizable Textarea option removed" ], "breaking-64143-language-country-flag-files-moved": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-64143-FlagFilesMoved.html#breaking-64143-language-country-flag-files-moved", + "Changelog\/7.1\/Breaking-64143-FlagFilesMoved.html#breaking-64143", "Breaking: #64143 - Language \/ Country Flag files moved" ], "breaking-64190-formengine-checkbox-element-limitation-of-cols-setting": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-64190-FormEngineCheckboxElement.html#breaking-64190-formengine-checkbox-element-limitation-of-cols-setting", + "Changelog\/7.1\/Breaking-64190-FormEngineCheckboxElement.html#breaking-64190", "Breaking: #64190 - FormEngine Checkbox Element limitation of cols setting" ], "breaking-64226-option-typo3-conf-vars-be-accesslistrendermode-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-64226-OptionAccessListRenderModeRemoved.html#breaking-64226-option-typo3-conf-vars-be-accesslistrendermode-removed", + "Changelog\/7.1\/Breaking-64226-OptionAccessListRenderModeRemoved.html#breaking-64226", "Breaking: #64226 - Option $TYPO3_CONF_VARS[BE][accessListRenderMode] removed" ], "breaking-64229-trim-submitted-login-form-data-before-usage": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-64229-TrimSubmittedLoginFormData.html#breaking-64229-trim-submitted-login-form-data-before-usage", + "Changelog\/7.1\/Breaking-64229-TrimSubmittedLoginFormData.html#breaking-64229", "Breaking: #64229 - Trim submitted login-form-data before usage" ], "breaking-64637-compatibility-css-styled-content-typoscript-templates-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-64637-CSSStyledContentLegacyTypoScriptRemoved.html#breaking-64637-compatibility-css-styled-content-typoscript-templates-removed", + "Changelog\/7.1\/Breaking-64637-CSSStyledContentLegacyTypoScriptRemoved.html#breaking-64637", "Breaking: #64637 - Compatibility CSS Styled Content TypoScript templates removed" ], "breaking-63687-outdated-contentobjects-moved-to-legacy-extension": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-64639-RemovedContentObjects.html#breaking-63687-outdated-contentobjects-moved-to-legacy-extension", + "Changelog\/7.1\/Breaking-64639-RemovedContentObjects.html#breaking-63687", "Breaking: #63687 - Outdated ContentObjects moved to legacy extension" ], "breaking-64643-remove-functionality-for-enable-typo3temp-db-tracking": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-64643-RemoveEnableTypo3tempDbTracking.html#breaking-64643-remove-functionality-for-enable-typo3temp-db-tracking", + "Changelog\/7.1\/Breaking-64643-RemoveEnableTypo3tempDbTracking.html#breaking-64643", "Breaking: #64643 - Remove functionality for enable_typo3temp_db_tracking" ], "breaking-64668-content-element-mailform-moved-to-legacy-extension": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-64668-MailformMovedToLegacyExtension.html#breaking-64668-content-element-mailform-moved-to-legacy-extension", + "Changelog\/7.1\/Breaking-64668-MailformMovedToLegacyExtension.html#breaking-64668", "Breaking: #64668 - Content Element mailform moved to legacy extension" ], "breaking-64671-outdated-contentobject-imgtext-moved-to-legacy-extension": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-64671-ContentObjectImgTextMovedToLegacyExtension.html#breaking-64671-outdated-contentobject-imgtext-moved-to-legacy-extension", + "Changelog\/7.1\/Breaking-64671-ContentObjectImgTextMovedToLegacyExtension.html#breaking-64671", "Breaking: #64671 - Outdated ContentObject IMGTEXT moved to legacy extension" ], "breaking-64696-content-element-search-moved-to-legacy-extension": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Breaking-64696-MoveSearchCTypeToLegacyExtension.html#breaking-64696-content-element-search-moved-to-legacy-extension", + "Changelog\/7.1\/Breaking-64696-MoveSearchCTypeToLegacyExtension.html#breaking-64696", "Breaking: #64696 - Content Element \"search\" moved to legacy extension" ], "deprecation-24387-typoscript-option-config-xhtmldoctype-xhtml-2": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Deprecation-24387-Xhtml2.html#deprecation-24387-typoscript-option-config-xhtmldoctype-xhtml-2", + "Changelog\/7.1\/Deprecation-24387-Xhtml2.html#deprecation-24387", "Deprecation: #24387 - TypoScript option config.xhtmlDoctype=xhtml_2" ], "deprecation-25112-deprecate-typoscript-property-andwhere": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Deprecation-25112-andWhere.html#deprecation-25112-deprecate-typoscript-property-andwhere", + "Changelog\/7.1\/Deprecation-25112-andWhere.html#deprecation-25112", "Deprecation: #25112 - Deprecate TypoScript property \"andWhere\"" ], "deprecation-46523-backendutility-implodetsparams": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Deprecation-46523-BackendUtilityImplodeTSParams.html#deprecation-46523-backendutility-implodetsparams", + "Changelog\/7.1\/Deprecation-46523-BackendUtilityImplodeTSParams.html#deprecation-46523", "Deprecation: #46523 - BackendUtility::implodeTSParams()" ], "deprecation-46770-deprecate-localimageprocessor-gettemporaryimagewithtext": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Deprecation-46770-LocalImageProcessorGraphicalFunctions.html#deprecation-46770-deprecate-localimageprocessor-gettemporaryimagewithtext", + "Changelog\/7.1\/Deprecation-46770-LocalImageProcessorGraphicalFunctions.html#deprecation-46770", "Deprecation: #46770 - Deprecate LocalImageProcessor::getTemporaryImageWithText" ], "deprecation-49247-deprecate-typoscript-functions-textstyle-and-tablestyle": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Deprecation-49247-textStyleTableStyleAddParams.html#deprecation-49247-deprecate-typoscript-functions-textstyle-and-tablestyle", + "Changelog\/7.1\/Deprecation-49247-textStyleTableStyleAddParams.html#deprecation-49247", "Deprecation: #49247 - Deprecate TypoScript functions \"textStyle\" and \"tableStyle\"" ], "deprecation-60559-makeloginboximage": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Deprecation-60559-MakeLoginBoxImage.html#deprecation-60559-makeloginboximage", + "Changelog\/7.1\/Deprecation-60559-MakeLoginBoxImage.html#deprecation-60559", "Deprecation: #60559 - makeLoginBoxImage()" ], "deprecation-61605-change-naming-of-typoscript-property-page-includejslibs": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Deprecation-61605-ChangeNamingOfIncludeJSlibs.html#deprecation-61605-change-naming-of-typoscript-property-page-includejslibs", + "Changelog\/7.1\/Deprecation-61605-ChangeNamingOfIncludeJSlibs.html#deprecation-61605", "Deprecation: #61605 - Change naming of TypoScript property page.includeJSlibs" ], "deprecation-62329-deprecate-documenttable-table": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Deprecation-62329-DocumentTemplate-table.html#deprecation-62329-deprecate-documenttable-table", + "Changelog\/7.1\/Deprecation-62329-DocumentTemplate-table.html#deprecation-62329", "Deprecation: #62329 - Deprecate DocumentTable::table()" ], "deprecation-62855-xhtml-cleaning-functionality-moved-to-legacy-extension": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Deprecation-62855-XHTMLCleaningMovedToLegacyExtension.html#deprecation-62855-xhtml-cleaning-functionality-moved-to-legacy-extension", + "Changelog\/7.1\/Deprecation-62855-XHTMLCleaningMovedToLegacyExtension.html#deprecation-62855", "Deprecation: #62855 - \"XHTML cleaning\" functionality moved to legacy extension" ], "deprecation-62864-datahandler-include-filefunctions-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Deprecation-63324-DataHandler-IncludeFileFunctions.html#deprecation-62864-datahandler-include-filefunctions-deprecated", + "Changelog\/7.1\/Deprecation-63324-DataHandler-IncludeFileFunctions.html#deprecation-62864-1668719172", "Deprecation: #62864 - DataHandler->include_filefunctions deprecated" ], "deprecation-63522-deprecate-the-device-typoscript-condition": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Deprecation-63522-ClientRelatedConditionDevice.html#deprecation-63522-deprecate-the-device-typoscript-condition", + "Changelog\/7.1\/Deprecation-63522-ClientRelatedConditionDevice.html#deprecation-63522", "Deprecation: #63522 - Deprecate the \"device\" TypoScript condition" ], "deprecation-64059-non-extjs-page-tree-navigation-frame": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Deprecation-64059-Pagetree-Navigation-Component.html#deprecation-64059-non-extjs-page-tree-navigation-frame", + "Changelog\/7.1\/Deprecation-64059-Pagetree-Navigation-Component.html#deprecation-64059", "Deprecation: #64059 - Non-ExtJS Page Tree Navigation Frame" ], "deprecation-64109-deprecate-global-hook-softrefparser-gl": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Deprecation-64109-Hook-softRefParserGL.html#deprecation-64109-deprecate-global-hook-softrefparser-gl", + "Changelog\/7.1\/Deprecation-64109-Hook-softRefParserGL.html#deprecation-64109", "Deprecation: #64109 - Deprecate global hook softRefParser_GL" ], "deprecation-64134-deprecate-typoscripttemplateobjectbrowsermodulefunctioncontroller-verify-tsobjects": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Deprecation-64134-TypoScriptTemplateObjectBrowserModuleFunctionController-verify_TSobjects.html#deprecation-64134-deprecate-typoscripttemplateobjectbrowsermodulefunctioncontroller-verify-tsobjects", + "Changelog\/7.1\/Deprecation-64134-TypoScriptTemplateObjectBrowserModuleFunctionController-verify_TSobjects.html#deprecation-64134-1668719172", "Deprecation: #64134 - Deprecate TypoScriptTemplateObjectBrowserModuleFunctionController::verify_TSobjects()" ], "deprecation-64147-templateservice-ext-getkeyimage": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Deprecation-64147-ConstantEditorFunctions.html#deprecation-64147-templateservice-ext-getkeyimage", + "Changelog\/7.1\/Deprecation-64147-ConstantEditorFunctions.html#deprecation-64147", "Deprecation: #64147 - TemplateService->ext_getKeyImage" ], "deprecation-64361-composer-class-loading": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Deprecation-64361-ComposerClassLoading.html#deprecation-64361-composer-class-loading", + "Changelog\/7.1\/Deprecation-64361-ComposerClassLoading.html#deprecation-64361", "Deprecation: #64361 - Composer Class Loading" ], "deprecation-64388-direct-contentobject-methods-within-contentobjectrenderer": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Deprecation-64388-ContentObjectMethods.html#deprecation-64388-direct-contentobject-methods-within-contentobjectrenderer", + "Changelog\/7.1\/Deprecation-64388-ContentObjectMethods.html#deprecation-64388", "Deprecation: #64388 - Direct ContentObject methods within ContentObjectRenderer" ], "deprecation-64711-various-methods-within-css-styled-content-controller": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Deprecation-64711-UnusedCssStyledContentMethods.html#deprecation-64711-various-methods-within-css-styled-content-controller", + "Changelog\/7.1\/Deprecation-64711-UnusedCssStyledContentMethods.html#deprecation-64711", "Deprecation: #64711 - Various methods within CSS Styled Content Controller" ], "deprecation-64922-deprecated-entry-points": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Deprecation-64922-DeprecatedEntryPoints.html#deprecation-64922-deprecated-entry-points", + "Changelog\/7.1\/Deprecation-64922-DeprecatedEntryPoints.html#deprecation-64922", "Deprecation: #64922 - Deprecated entry points" ], "feature-15619-access-module-allow-selector-as-unchanged": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-15619-LeaveUnchagedInAccessModule.html#feature-15619-access-module-allow-selector-as-unchanged", + "Changelog\/7.1\/Feature-15619-LeaveUnchagedInAccessModule.html#feature-15619", "Feature: #15619 - Access module: Allow selector as \"unchanged\"" ], "feature-16794-linking-of-indexed-search-result-sections": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-16794-MakeSectionLinkingForIndexedSearchResultsConfigurable.html#feature-16794-linking-of-indexed-search-result-sections", + "Changelog\/7.1\/Feature-16794-MakeSectionLinkingForIndexedSearchResultsConfigurable.html#feature-16794", "Feature: #16794 - Linking of Indexed Search result sections" ], "feature-20767-allow-nested-array-access-on-getdata-of-field": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-20767-getDataByNestedKey.html#feature-20767-allow-nested-array-access-on-getdata-of-field", + "Changelog\/7.1\/Feature-20767-getDataByNestedKey.html#feature-20767", "Feature: #20767 - Allow nested array access on getData of field" ], "feature-22086-add-stdwrap-to-page-headtag-option": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-22086-StdWrapForHeadTag.html#feature-22086-add-stdwrap-to-page-headtag-option", + "Changelog\/7.1\/Feature-22086-StdWrapForHeadTag.html#feature-22086", "Feature: #22086 - Add .stdWrap to page.headTag option" ], "feature-24906-configuration-for-maximum-chars-in-textelement": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-24906-MaxForTextElement.html#feature-24906-configuration-for-maximum-chars-in-textelement", + "Changelog\/7.1\/Feature-24906-MaxForTextElement.html#feature-24906", "Feature: #24906 - Configuration for maximum chars in TextElement" ], "feature-28382-add-async-property-to-javascript-files": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-28382-AddAsyncPropertyToJavaScriptFiles.html#feature-28382-add-async-property-to-javascript-files", + "Changelog\/7.1\/Feature-28382-AddAsyncPropertyToJavaScriptFiles.html#feature-28382", "Feature: #28382 - Add async property to JavaScript files" ], "feature-33491-add-stdwrap-functionality-to-title-tag": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-33491-StdWrapForTitleTag.html#feature-33491-add-stdwrap-functionality-to-title-tag", + "Changelog\/7.1\/Feature-33491-StdWrapForTitleTag.html#feature-33491", "Feature: #33491 - Add stdWrap functionality to tag" ], "feature-34944-paginateviewhelper-handles-non-query-result-objects": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-34944-PaginateHandleNonQueryResultObjects.html#feature-34944-paginateviewhelper-handles-non-query-result-objects", + "Changelog\/7.1\/Feature-34944-PaginateHandleNonQueryResultObjects.html#feature-34944", "Feature: #34944 - PaginateViewHelper handles non-query-result objects" ], "feature-35891-formengine-possibility-to-add-icons-via-pagetsconfig": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-35891-AddTCAItemsWithIconsViaPageTSConfig.html#feature-35891-formengine-possibility-to-add-icons-via-pagetsconfig", + "Changelog\/7.1\/Feature-35891-AddTCAItemsWithIconsViaPageTSConfig.html#feature-35891", "Feature: #35891 - FormEngine: Possibility to add icons via PageTSconfig" ], "feature-46624-hmenu-item-selection-via-additionalwhere": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-46624-AdditionalWhereForMenu.html#feature-46624-hmenu-item-selection-via-additionalwhere", + "Changelog\/7.1\/Feature-46624-AdditionalWhereForMenu.html#feature-46624", "Feature: #46624 - HMENU item selection via additionalWhere" ], "feature-47666-attribute-multiple-for-f-form-upload-viewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-47666-AttributeMulitpleForFormUploadViewhelper.html#feature-47666-attribute-multiple-for-f-form-upload-viewhelper", + "Changelog\/7.1\/Feature-47666-AttributeMulitpleForFormUploadViewhelper.html#feature-47666", "Feature: #47666 - Attribute \"multiple\" for f:form.upload Viewhelper" ], "feature-49060-mysql-comments-reflected-in-schemamigrator": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-49060-MySqlCommentsShownInSchemaMigrator.html#feature-49060-mysql-comments-reflected-in-schemamigrator", + "Changelog\/7.1\/Feature-49060-MySqlCommentsShownInSchemaMigrator.html#feature-49060", "Feature: #49060 - MySql Comments reflected in SchemaMigrator" ], "feature-50780-append-element-browser-mount-points": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-50780-AppendElementBrowserMountPoints.html#feature-50780-append-element-browser-mount-points", + "Changelog\/7.1\/Feature-50780-AppendElementBrowserMountPoints.html#feature-50780", "Feature: #50780 - Append element browser mount points" ], "feature-52131-hook-for-end-of-pagerepository-init": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-52131-HookForPageRepositoryInit.html#feature-52131-hook-for-end-of-pagerepository-init", + "Changelog\/7.1\/Feature-52131-HookForPageRepositoryInit.html#feature-52131", "Feature: #52131 - Hook for end of PageRepository->init()" ], "feature-56236-multiple-http-headers-of-the-same-type-in-frontend-output": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-56236-Multiple-HTTP-Headers-In-Frontend.html#feature-56236-multiple-http-headers-of-the-same-type-in-frontend-output", + "Changelog\/7.1\/Feature-56236-Multiple-HTTP-Headers-In-Frontend.html#feature-56236", "Feature: #56236 - Multiple HTTP headers of the same type in Frontend Output" ], "feature-56529-support-has-functions-in-extbase-objectaccess": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-56529-SupportHasInArrayObject.html#feature-56529-support-has-functions-in-extbase-objectaccess", + "Changelog\/7.1\/Feature-56529-SupportHasInArrayObject.html#feature-56529", "Feature: #56529 - Support \"has*\" Functions in extbase ObjectAccess" ], "feature-46624-additional-hmenu-browse-menus": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-57178-SpecialHmenuExcludeSpecialParameters.html#feature-46624-additional-hmenu-browse-menus", + "Changelog\/7.1\/Feature-57178-SpecialHmenuExcludeSpecialParameters.html#feature-46624-1668719172", "Feature: #46624 - Additional HMENU browse menus" ], "feature-50039-configurable-width-of-the-element-browser": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-58031-ConfigurableWidthOfElementBrowser.html#feature-50039-configurable-width-of-the-element-browser", + "Changelog\/7.1\/Feature-58031-ConfigurableWidthOfElementBrowser.html#feature-50039-1668719172", "Feature: #50039 - Configurable width of the Element Browser" ], "feature-58033-enable-label-override-of-checkbox-and-radio-buttons-by-tsconfig": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-58033-AltLabelsForFormEngineCheckboxAndRadioButtons.html#feature-58033-enable-label-override-of-checkbox-and-radio-buttons-by-tsconfig", + "Changelog\/7.1\/Feature-58033-AltLabelsForFormEngineCheckboxAndRadioButtons.html#feature-58033", "Feature: #58033 - Enable label override of checkbox and radio buttons by TSconfig" ], "feature-58366-add-auto-option-for-config-absrefprefix": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-58366-AutomaticAbsRefPrefix.html#feature-58366-add-auto-option-for-config-absrefprefix", + "Changelog\/7.1\/Feature-58366-AutomaticAbsRefPrefix.html#feature-58366", "Feature: #58366 - Add \"auto\" Option for config.absRefPrefix" ], "feature-58929-pagelayoutview-add-hook-for-tt-content-drawfooter": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-58929-FooterHookInPageLayoutView.html#feature-58929-pagelayoutview-add-hook-for-tt-content-drawfooter", + "Changelog\/7.1\/Feature-58929-FooterHookInPageLayoutView.html#feature-58929", "Feature: #58929 - PageLayoutView: Add hook for tt_content_drawFooter" ], "feature-60019-new-splfileinfo-implementation-with-new-mimetypeguessers-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-60019-SplFileInfo-MimeTypeGuesser-hook.html#feature-60019-new-splfileinfo-implementation-with-new-mimetypeguessers-hook", + "Changelog\/7.1\/Feature-60019-SplFileInfo-MimeTypeGuesser-hook.html#feature-60019", "Feature: #60019 - New SplFileInfo implementation with new mimeTypeGuessers hook" ], "new-hook-mimetypeguessers": [ @@ -53299,43 +53503,43 @@ "feature-61542-add-two-letter-iso-639-1-keys-to-sys-language": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-61542-AddIsoLanguageKeys.html#feature-61542-add-two-letter-iso-639-1-keys-to-sys-language", + "Changelog\/7.1\/Feature-61542-AddIsoLanguageKeys.html#feature-61542", "Feature: #61542 - Add two-letter ISO 639-1 keys to sys_language" ], "feature-61725-hook-for-backendutility-countversionsofrecordsonpage": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-61725-AddHookToBackendUtilityCountVersionsOfRecordsOnPage.html#feature-61725-hook-for-backendutility-countversionsofrecordsonpage", + "Changelog\/7.1\/Feature-61725-AddHookToBackendUtilityCountVersionsOfRecordsOnPage.html#feature-61725", "Feature: #61725 - Hook for BackendUtility::countVersionsOfRecordsOnPage()" ], "feature-62944-userfunc-available-as-display-condition": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-62944-UserFuncAsDisplayCond.html#feature-62944-userfunc-available-as-display-condition", + "Changelog\/7.1\/Feature-62944-UserFuncAsDisplayCond.html#feature-62944", "Feature: #62944 - UserFunc available as Display Condition" ], "feature-62960-signal-for-mailer-initialization": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-62960-SignalForMailerInitialization.html#feature-62960-signal-for-mailer-initialization", + "Changelog\/7.1\/Feature-62960-SignalForMailerInitialization.html#feature-62960", "Feature: #62960 - Signal for mailer initialization" ], "feature-63207-split-buttons-into-two-groups": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-63207-SplitActionButtonsIntoGroups.html#feature-63207-split-buttons-into-two-groups", + "Changelog\/7.1\/Feature-63207-SplitActionButtonsIntoGroups.html#feature-63207", "Feature: #63207 - Split buttons into two groups" ], "feature-61489-allow-own-typoscript-conditions-in-backend-as-well": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-63600-CustomTypoScriptConditionsInBackend.html#feature-61489-allow-own-typoscript-conditions-in-backend-as-well", + "Changelog\/7.1\/Feature-63600-CustomTypoScriptConditionsInBackend.html#feature-61489-1668719172", "Feature: #61489 - Allow own TypoScript Conditions in Backend as well" ], "feature-63729-api-for-twitter-bootstrap-modals": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-63729-ApiForBootstrapModals.html#feature-63729-api-for-twitter-bootstrap-modals", + "Changelog\/7.1\/Feature-63729-ApiForBootstrapModals.html#feature-63729", "Feature: #63729 - API for Twitter Bootstrap modals" ], "api": [ @@ -53365,43 +53569,43 @@ "feature-63913-allow-containerviewhelper-to-load-requirejs-modules": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-63913-AllowRequireJsModulesForContainerViewHelper.html#feature-63913-allow-containerviewhelper-to-load-requirejs-modules", + "Changelog\/7.1\/Feature-63913-AllowRequireJsModulesForContainerViewHelper.html#feature-63913", "Feature: #63913 - Allow ContainerViewHelper to load RequireJS modules" ], "feature-64031-javascript-storage-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-64031-JavaScript-Storage-API.html#feature-64031-javascript-storage-api", + "Changelog\/7.1\/Feature-64031-JavaScript-Storage-API.html#feature-64031", "Feature: #64031 - JavaScript Storage API" ], "feature-64190-inline-rendering-for-formengine-checkbox-element": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-64190-FormEngineCheckboxElement.html#feature-64190-inline-rendering-for-formengine-checkbox-element", + "Changelog\/7.1\/Feature-64190-FormEngineCheckboxElement.html#feature-64190", "Feature: #64190 - Inline rendering for FormEngine Checkbox Element" ], "feature-64257-support-multiple-uid-in-pagerepository-getmenu": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-64257-MultipleUidInPageRepositoryGetMenu.html#feature-64257-support-multiple-uid-in-pagerepository-getmenu", + "Changelog\/7.1\/Feature-64257-MultipleUidInPageRepositoryGetMenu.html#feature-64257", "Feature: #64257 - Support multiple UID in PageRepository::getMenu()" ], "feature-64386-public-content-object-registration": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-64386-ContentObjectRegistration.html#feature-64386-public-content-object-registration", + "Changelog\/7.1\/Feature-64386-ContentObjectRegistration.html#feature-64386", "Feature: #64386 - Public Content Object Registration" ], "feature-64921-needed-changes-for-flexible-configuration-of-submodules": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-64921-FlexibleSubmoduleConfiguration.html#feature-64921-needed-changes-for-flexible-configuration-of-submodules", + "Changelog\/7.1\/Feature-64921-FlexibleSubmoduleConfiguration.html#feature-64921", "Feature: #64921 - Needed changes for flexible configuration of submodules" ], "feature-63729-introduce-gruntjs": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.1\/Feature-65960-IntroduceGruntJS.html#feature-63729-introduce-gruntjs", + "Changelog\/7.1\/Feature-65960-IntroduceGruntJS.html#feature-63729-1668719172", "Feature: #63729 - Introduce GruntJS" ], "initial-setup": [ @@ -53425,241 +53629,241 @@ "breaking-56746-add-count-methods-and-sort-functionality-to-fal-drivers": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Breaking-56746-AddCountMethodsAndSortFunctionalityToFalDrivers.html#breaking-56746-add-count-methods-and-sort-functionality-to-fal-drivers", + "Changelog\/7.2\/Breaking-56746-AddCountMethodsAndSortFunctionalityToFalDrivers.html#breaking-56746", "Breaking: #56746 - Add count methods and sort functionality to FAL drivers" ], "breaking-63784-visibility-and-type-of-datahandler-exclude-array": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Breaking-63784-DataHandlerExcludeArray.html#breaking-63784-visibility-and-type-of-datahandler-exclude-array", + "Changelog\/7.2\/Breaking-63784-DataHandlerExcludeArray.html#breaking-63784", "Breaking: #63784 - Visibility and type of DataHandler->exclude_array" ], "breaking-64719-multimedia-and-media-cobjects-and-content-types-are-moved-to-new-system-extension": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Breaking-64719-MediaContentMovedToSystemExtension.html#breaking-64719-multimedia-and-media-cobjects-and-content-types-are-moved-to-new-system-extension", + "Changelog\/7.2\/Breaking-64719-MediaContentMovedToSystemExtension.html#breaking-64719", "Breaking: #64719 - Multimedia and Media cObjects and Content Types are moved to new system extension" ], "breaking-65432-storage-of-module-uri-in-global-variable-has-been-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Breaking-65432-ModuleUriInGlobalVarRemoved.html#breaking-65432-storage-of-module-uri-in-global-variable-has-been-removed", + "Changelog\/7.2\/Breaking-65432-ModuleUriInGlobalVarRemoved.html#breaking-65432", "Breaking: #65432 - Storage of module URI in global variable has been removed" ], "breaking-65727-don-t-provide-access-to-localpath-of-fal-files": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Breaking-65727-DontProvideAccessToLocalpathOfFalFiles.html#breaking-65727-don-t-provide-access-to-localpath-of-fal-files", + "Changelog\/7.2\/Breaking-65727-DontProvideAccessToLocalpathOfFalFiles.html#breaking-65727", "Breaking: #65727 - Don't provide access to localPath of FAL files" ], "breaking-65778-mediawizard-functionality-is-moved-to-system-extension-mediace": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Breaking-65778-MediaWizardProviderMovedToSystemExtension.html#breaking-65778-mediawizard-functionality-is-moved-to-system-extension-mediace", + "Changelog\/7.2\/Breaking-65778-MediaWizardProviderMovedToSystemExtension.html#breaking-65778", "Breaking: #65778 - MediaWizard functionality is moved to system extension \"mediace\"" ], "breaking-65922-move-unused-tt-content-tca-fields-to-compatibility6": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Breaking-65922-MoveUnusedTt_contentTcaFieldsToCompatibility6.html#breaking-65922-move-unused-tt-content-tca-fields-to-compatibility6", + "Changelog\/7.2\/Breaking-65922-MoveUnusedTt_contentTcaFieldsToCompatibility6.html#breaking-65922", "Breaking: #65922 - Move unused tt_content TCA fields to compatibility6" ], "breaking-65939-backend-login-refactoring": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Breaking-65939-BackendLoginRefactoring.html#breaking-65939-backend-login-refactoring", + "Changelog\/7.2\/Breaking-65939-BackendLoginRefactoring.html#breaking-65939", "Breaking: #65939 - Backend Login Refactoring" ], "breaking-65962-third-party-library-websvg-and-the-according-api-has-been-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Breaking-65962-WebSVGLibraryAndAPIRemoved.html#breaking-65962-third-party-library-websvg-and-the-according-api-has-been-removed", + "Changelog\/7.2\/Breaking-65962-WebSVGLibraryAndAPIRemoved.html#breaking-65962", "Breaking: #65962 - Third-party library \"websvg\" and the according API has been removed" ], "breaking-66001-third-party-libraries-installed-via-composer-are-now-in-vendor": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Breaking-66001-ComposerVendorDirectoryChanged.html#breaking-66001-third-party-libraries-installed-via-composer-are-now-in-vendor", + "Changelog\/7.2\/Breaking-66001-ComposerVendorDirectoryChanged.html#breaking-66001", "Breaking: #66001 - Third-party libraries installed via composer are now in vendor" ], "breaking-66034-drop-content-adapter": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Breaking-66034-DropContentAdapter.html#breaking-66034-drop-content-adapter", + "Changelog\/7.2\/Breaking-66034-DropContentAdapter.html#breaking-66034", "Breaking: #66034 - Drop Content Adapter" ], "breaking-66286-page-tsconfig-options-to-hide-web-info-modules-renamed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Breaking-66286-PageTSconfigOptionsToHideWebInfoModulesRenamed.html#breaking-66286-page-tsconfig-options-to-hide-web-info-modules-renamed", + "Changelog\/7.2\/Breaking-66286-PageTSconfigOptionsToHideWebInfoModulesRenamed.html#breaking-66286", "Breaking: #66286 - Page TSconfig options to hide Web Info modules renamed" ], "breaking-66431-new-login-screen": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Breaking-66431-NewLoginScreen.html#breaking-66431-new-login-screen", + "Changelog\/7.2\/Breaking-66431-NewLoginScreen.html#breaking-66431", "Breaking: #66431 - New Login Screen" ], "deprecation-47712-deprecate-old-locking-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Deprecation-47712-DeprecateOldLockingAPI.html#deprecation-47712-deprecate-old-locking-api", + "Changelog\/7.2\/Deprecation-47712-DeprecateOldLockingAPI.html#deprecation-47712", "Deprecation: #47712 - Deprecate old Locking API" ], "deprecation-51360-deprecate-mod-tx-linkvalidator-namespace-in-scheduler-settings": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Deprecation-51360-LinkValidatorSchedulerSettings.html#deprecation-51360-deprecate-mod-tx-linkvalidator-namespace-in-scheduler-settings", + "Changelog\/7.2\/Deprecation-51360-LinkValidatorSchedulerSettings.html#deprecation-51360", "Deprecation: #51360 - Deprecate mod.tx_linkvalidator namespace in scheduler settings" ], "deprecation-64068-deprecate-thumbs-php-and-thumbnailview": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Deprecation-64068-ThumbnailView.html#deprecation-64068-deprecate-thumbs-php-and-thumbnailview", + "Changelog\/7.2\/Deprecation-64068-ThumbnailView.html#deprecation-64068", "Deprecation: #64068 - Deprecate thumbs.php and ThumbnailView" ], "deprecation-64598-deprecate-pagepositionmap-jsimgfunc": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Deprecation-64598-DeprecatePagepositionmapjsimgfunc.html#deprecation-64598-deprecate-pagepositionmap-jsimgfunc", + "Changelog\/7.2\/Deprecation-64598-DeprecatePagepositionmapjsimgfunc.html#deprecation-64598", "Deprecation: #64598 - Deprecate PagePositionMap::JSimgFunc" ], "deprecation-65111-getdyntabmenu": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Deprecation-65111-getDynTabMenu.html#deprecation-65111-getdyntabmenu", + "Changelog\/7.2\/Deprecation-65111-getDynTabMenu.html#deprecation-65111", "Deprecation: #65111 - getDynTabMenu" ], "deprecation-65283-deprecate-show-item-entry-point": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Deprecation-65283-DeprecateShowItemEntryPoint.html#deprecation-65283-deprecate-show-item-entry-point", + "Changelog\/7.2\/Deprecation-65283-DeprecateShowItemEntryPoint.html#deprecation-65283-1668719172", "Deprecation: #65283 - Deprecate show item entry point" ], "deprecation-65288-deprecate-new-record-entry-point": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Deprecation-65288-DeprecateNewRecordEntryPoint.html#deprecation-65288-deprecate-new-record-entry-point", + "Changelog\/7.2\/Deprecation-65288-DeprecateNewRecordEntryPoint.html#deprecation-65288", "Deprecation: #65288 - Deprecate \"new record\" entry point" ], "deprecation-65289-deprecate-browser-entry-point": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Deprecation-65289-DeprecateBrowserEntryPoint.html#deprecation-65289-deprecate-browser-entry-point", + "Changelog\/7.2\/Deprecation-65289-DeprecateBrowserEntryPoint.html#deprecation-65289", "Deprecation: #65289 - Deprecate browser entry point" ], "deprecation-65290-deprecate-dummy-entry-point": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Deprecation-65290-DeprecateDummyEntrypoint.html#deprecation-65290-deprecate-dummy-entry-point", + "Changelog\/7.2\/Deprecation-65290-DeprecateDummyEntrypoint.html#deprecation-65290", "Deprecation: #65290 - Deprecate dummy entry point" ], "deprecation-65283-deprecate-logout-entry-point": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Deprecation-65291-DeprecateLogoutEntryPoint.html#deprecation-65283-deprecate-logout-entry-point", + "Changelog\/7.2\/Deprecation-65291-DeprecateLogoutEntryPoint.html#deprecation-65283", "Deprecation: #65283 - Deprecate logout entry point" ], "deprecation-65293-deprecate-file-navigation-frame-entry-point": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Deprecation-65293-DeprecateFileNavigationFrame.html#deprecation-65293-deprecate-file-navigation-frame-entry-point", + "Changelog\/7.2\/Deprecation-65293-DeprecateFileNavigationFrame.html#deprecation-65293", "Deprecation: #65293 - Deprecate file navigation frame entry point" ], "deprecation-64134-deprecate-be-user-os": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Deprecation-65343-BackendUserOsProperty.html#deprecation-64134-deprecate-be-user-os", + "Changelog\/7.2\/Deprecation-65343-BackendUserOsProperty.html#deprecation-64134", "Deprecation: #64134 - Deprecate $BE_USER->OS" ], "deprecation-65360-deprecate-wrong-class-name-used-in-postprocesstree-signal-call": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Deprecation-65360-DatabaseTreeDataProviderOldClassNameInSignal.html#deprecation-65360-deprecate-wrong-class-name-used-in-postprocesstree-signal-call", + "Changelog\/7.2\/Deprecation-65360-DatabaseTreeDataProviderOldClassNameInSignal.html#deprecation-65360", "Deprecation: #65360 - Deprecate wrong class name used in PostProcessTree Signal call" ], "deprecation-65381-deprecate-datahandler-property-stripslashes-values": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Deprecation-65381-DataHandlerStripslashesValuesProperty.html#deprecation-65381-deprecate-datahandler-property-stripslashes-values", + "Changelog\/7.2\/Deprecation-65381-DataHandlerStripslashesValuesProperty.html#deprecation-65381", "Deprecation: #65381 - Deprecate DataHandler property \"stripslashes_values\"" ], "deprecation-65422-alias-cobjects-cobj-array-and-casefunc": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Deprecation-65422-cObjectAliasNames.html#deprecation-65422-alias-cobjects-cobj-array-and-casefunc", + "Changelog\/7.2\/Deprecation-65422-cObjectAliasNames.html#deprecation-65422", "Deprecation: #65422 - Alias cObjects COBJ_ARRAY and CASEFUNC" ], "deprecation-65465-deprecate-errorlog-in-referenceindex": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Deprecation-65465-ReferenceIndexErrorLog.html#deprecation-65465-deprecate-errorlog-in-referenceindex", + "Changelog\/7.2\/Deprecation-65465-ReferenceIndexErrorLog.html#deprecation-65465", "Deprecation: #65465 - Deprecate errorLog in ReferenceIndex" ], "deprecation-65913-deprecate-tsfe-checkfileinclude": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Deprecation-65913-checkFileInclude.html#deprecation-65913-deprecate-tsfe-checkfileinclude", + "Changelog\/7.2\/Deprecation-65913-checkFileInclude.html#deprecation-65913", "Deprecation: #65913 - Deprecate $TSFE->checkFileInclude" ], "deprecation-65934-prefix-local-anchors-functionality-moved-to-legacy-extension": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Deprecation-65934-PrefixLocalAnchorsMovedToLegacyExtension.html#deprecation-65934-prefix-local-anchors-functionality-moved-to-legacy-extension", + "Changelog\/7.2\/Deprecation-65934-PrefixLocalAnchorsMovedToLegacyExtension.html#deprecation-65934", "Deprecation: #65934 - \"Prefix Local Anchors\" functionality moved to legacy extension" ], "deprecation-65938-discourage-usage-of-tsfe-anchorprefix": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Deprecation-65938-TSFEAnchorPrefix.html#deprecation-65938-discourage-usage-of-tsfe-anchorprefix", + "Changelog\/7.2\/Deprecation-65938-TSFEAnchorPrefix.html#deprecation-65938", "Deprecation: #65938 - Discourage usage of \"$TSFE->anchorPrefix\"" ], "deprecation-65956-returnhtml-parameter-of-debugutility-debugrows": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Deprecation-65956-DebugUtilityDebugRows.html#deprecation-65956-returnhtml-parameter-of-debugutility-debugrows", + "Changelog\/7.2\/Deprecation-65956-DebugUtilityDebugRows.html#deprecation-65956", "Deprecation: #65956 - $returnHTML parameter of DebugUtility::debugRows()" ], "deprecation-66065-backend-logo-view-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Deprecation-66065-BackendLogoViewDeprecated.html#deprecation-66065-backend-logo-view-deprecated", + "Changelog\/7.2\/Deprecation-66065-BackendLogoViewDeprecated.html#deprecation-66065", "Deprecation: #66065 - Backend Logo View Deprecated" ], "deprecation-66223-backend-parsetime-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Deprecation-66223-Backendparsetime.html#deprecation-66223-backend-parsetime-deprecated", + "Changelog\/7.2\/Deprecation-66223-Backendparsetime.html#deprecation-66223", "Deprecation: #66223 - Backend parseTime deprecated" ], "deprecation-66431-new-login-screen": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Deprecation-66431-NewLoginScreen.html#deprecation-66431-new-login-screen", + "Changelog\/7.2\/Deprecation-66431-NewLoginScreen.html#deprecation-66431", "Deprecation: #66431 - New Login Screen" ], "feature-20555-strip-empty-html-tags-in-htmlparser": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Feature-20555-StripEmptyHtmlTags.html#feature-20555-strip-empty-html-tags-in-htmlparser", + "Changelog\/7.2\/Feature-20555-StripEmptyHtmlTags.html#feature-20555", "Feature: #20555 - Strip empty HTML tags in HtmlParser" ], "feature-32651-add-scheduler-task-to-remove-deleted-records": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Feature-32651-AddSchedulerTaskToRemoveDeletedRecords.html#feature-32651-add-scheduler-task-to-remove-deleted-records", + "Changelog\/7.2\/Feature-32651-AddSchedulerTaskToRemoveDeletedRecords.html#feature-32651", "Feature: #32651 - Add scheduler task to remove deleted records" ], "feature-36743-registry-for-adding-text-extractor-classes": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Feature-36743-FAL-TextExtractorRegistry.html#feature-36743-registry-for-adding-text-extractor-classes", + "Changelog\/7.2\/Feature-36743-FAL-TextExtractorRegistry.html#feature-36743", "Feature: #36743 - Registry for adding text extractor classes" ], "feature-47712-new-locking-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Feature-47712-NewLockingAPI.html#feature-47712-new-locking-api", + "Changelog\/7.2\/Feature-47712-NewLockingAPI.html#feature-47712", "Feature: #47712 - New Locking API" ], "usage-example": [ @@ -53671,79 +53875,79 @@ "feature-50136-add-svg-support": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Feature-50136-AddSVGSupport.html#feature-50136-add-svg-support", + "Changelog\/7.2\/Feature-50136-AddSVGSupport.html#feature-50136", "Feature: #50136 - Add SVG support" ], "feature-50501-extension-manager-disable-automatic-installation": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Feature-50501-DisableAutomaticExtInstallation.html#feature-50501-extension-manager-disable-automatic-installation", + "Changelog\/7.2\/Feature-50501-DisableAutomaticExtInstallation.html#feature-50501", "Feature: #50501 - Extension Manager: Disable automatic installation" ], "feature-59646-add-tsfe-property-requestedid": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Feature-52693-TSFE-RequestedId.html#feature-59646-add-tsfe-property-requestedid", + "Changelog\/7.2\/Feature-52693-TSFE-RequestedId.html#feature-59646", "Feature: #59646 - Add TSFE property $requestedId" ], "feature-58621-formatcaseviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Feature-58621-FormatCaseViewHelper.html#feature-58621-formatcaseviewhelper", + "Changelog\/7.2\/Feature-58621-FormatCaseViewHelper.html#feature-58621", "Feature: #58621 - FormatCaseViewHelper" ], "feature-59646-add-rte-configuration-property-buttons-link-type-properties-target-default": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Feature-59646-AddRteConfigurationPropertyButtonsLinkTypePropertiesTargetDefault.html#feature-59646-add-rte-configuration-property-buttons-link-type-properties-target-default", + "Changelog\/7.2\/Feature-59646-AddRteConfigurationPropertyButtonsLinkTypePropertiesTargetDefault.html#feature-59646-1668719172", "Feature: #59646 - Add RTE configuration property buttons.link.[type].properties.target.default" ], "feature-59712-additional-params-for-htmlparser-userfunc": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Feature-59712-HtmlParserAdditionalUserFuncParams.html#feature-59712-additional-params-for-htmlparser-userfunc", + "Changelog\/7.2\/Feature-59712-HtmlParserAdditionalUserFuncParams.html#feature-59712", "Feature: #59712 - Additional params for HTMLparser userFunc" ], "feature-61463-allow-processed-folders-in-different-storage": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Feature-61463-AllowProcessedFoldersInDifferentStorage.html#feature-61463-allow-processed-folders-in-different-storage", + "Changelog\/7.2\/Feature-61463-AllowProcessedFoldersInDifferentStorage.html#feature-61463", "Feature: #61463 - Allow processed folders in different storage" ], "feature-63040-add-rte-configuration-property-buttons-abbreviation-removefieldsets": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Feature-63040-AddRteConfigurationPropertyButtonsAbbreviationRemoveFieldsets.html#feature-63040-add-rte-configuration-property-buttons-abbreviation-removefieldsets", + "Changelog\/7.2\/Feature-63040-AddRteConfigurationPropertyButtonsAbbreviationRemoveFieldsets.html#feature-63040", "Feature: #63040 - Add RTE configuration property buttons.abbreviation.removeFieldsets" ], "feature-63703-add-option-to-stop-a-running-task-in-the-scheduler": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Feature-63703-AddOptionToStopTask.html#feature-63703-add-option-to-stop-a-running-task-in-the-scheduler", + "Changelog\/7.2\/Feature-63703-AddOptionToStopTask.html#feature-63703", "Feature: #63703 - Add option to stop a running task in the scheduler" ], "feature-64686-add-backend-user-groups-to-backend-user-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Feature-64686-AddBackendUserGroupsToBackendUserModule.html#feature-64686-add-backend-user-groups-to-backend-user-module", + "Changelog\/7.2\/Feature-64686-AddBackendUserGroupsToBackendUserModule.html#feature-64686", "Feature: #64686 - Add backend user groups to backend user module" ], "feature-65584-add-image-cropping": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Feature-65584-AddImageCropping.html#feature-65584-add-image-cropping", + "Changelog\/7.2\/Feature-65584-AddImageCropping.html#feature-65584", "Feature: #65584 - Add image cropping" ], "feature-65585-add-tca-type-imagemanipulation": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Feature-65585-AddTCATypeImage_manipulation.html#feature-65585-add-tca-type-imagemanipulation", + "Changelog\/7.2\/Feature-65585-AddTCATypeImage_manipulation.html#feature-65585", "Feature: #65585 - Add TCA type imageManipulation" ], "feature-65767-system-information-dropdown": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Feature-65767-SystemInformationDropdown.html#feature-65767-system-information-dropdown", + "Changelog\/7.2\/Feature-65767-SystemInformationDropdown.html#feature-65767", "Feature: #65767 - System Information Dropdown" ], "items": [ @@ -53761,37 +53965,37 @@ "feature-65996-show-confirm-message-on-closing-an-edit-form-with-unsaved-changes": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Feature-65996-AddConfirmationOnCloseEditformWithUnsavedChanges.html#feature-65996-show-confirm-message-on-closing-an-edit-form-with-unsaved-changes", + "Changelog\/7.2\/Feature-65996-AddConfirmationOnCloseEditformWithUnsavedChanges.html#feature-65996", "Feature: #65996 - Show confirm message on closing an edit form with unsaved changes" ], "feature-66029-show-remaining-characters-below-text-fields": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Feature-66029-ShowRemainingCharactersBelowTextFields.html#feature-66029-show-remaining-characters-below-text-fields", + "Changelog\/7.2\/Feature-66029-ShowRemainingCharactersBelowTextFields.html#feature-66029", "Feature: #66029 - Show remaining characters below text fields" ], "feature-66042-web-libraries-are-included-via-bower": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Feature-66042-WebLibrariesLoadedViaBower.html#feature-66042-web-libraries-are-included-via-bower", + "Changelog\/7.2\/Feature-66042-WebLibrariesLoadedViaBower.html#feature-66042", "Feature: #66042 - Web Libraries are included via bower" ], "feature-66047-introduce-javascript-notification-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Feature-66047-IntroduceJavascriptNotificationApi.html#feature-66047-introduce-javascript-notification-api", + "Changelog\/7.2\/Feature-66047-IntroduceJavascriptNotificationApi.html#feature-66047", "Feature: #66047 - Introduce JavaScript notification API" ], "feature-66077-introduce-callouts-to-replace-content-alerts": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Feature-66077-IntroduceCalloutsToReplaceContentAlerts.html#feature-66077-introduce-callouts-to-replace-content-alerts", + "Changelog\/7.2\/Feature-66077-IntroduceCalloutsToReplaceContentAlerts.html#feature-66077", "Feature: #66077 - Introduce callouts to replace content alerts" ], "feature-66370-add-flexible-preview-url-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Feature-66370-AddFlexiblePreviewUrlConfiguration.html#feature-66370-add-flexible-preview-url-configuration", + "Changelog\/7.2\/Feature-66370-AddFlexiblePreviewUrlConfiguration.html#feature-66370", "Feature: #66370 - Add flexible Preview URL configuration" ], "predefined-get-parameters": [ @@ -53803,7 +54007,7 @@ "feature-66445-add-file-extension-to-mimetype-mapping": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.2\/Feature-66445-AddFileExtensionToMimeTypeMapping.html#feature-66445-add-file-extension-to-mimetype-mapping", + "Changelog\/7.2\/Feature-66445-AddFileExtensionToMimeTypeMapping.html#feature-66445", "Feature: #66445 - Add file extension to mimeType mapping" ], "7-2-changes": [ @@ -53815,25 +54019,25 @@ "breaking-62983-postprocessmirrorurl-signal-has-moved": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Breaking-62983-PostProcessMirrorUrlSignalHasMoved.html#breaking-62983-postprocessmirrorurl-signal-has-moved", + "Changelog\/7.3\/Breaking-62983-PostProcessMirrorUrlSignalHasMoved.html#breaking-62983", "Breaking: #62983 - postProcessMirrorUrl signal has moved" ], "breaking-63453-changed-rendering-of-flashmessagesviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Breaking-63453-ChangedRenderingOfFlashMessagesViewHelper.html#breaking-63453-changed-rendering-of-flashmessagesviewhelper", + "Changelog\/7.3\/Breaking-63453-ChangedRenderingOfFlashMessagesViewHelper.html#breaking-63453", "Breaking: #63453 - Changed rendering of FlashMessagesViewHelper" ], "breaking-63835-remove-deprecated-parts-in-extbase-persistence-layer": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Breaking-63835-RemoveDeprecatedExtbasePersistenceParts.html#breaking-63835-remove-deprecated-parts-in-extbase-persistence-layer", + "Changelog\/7.3\/Breaking-63835-RemoveDeprecatedExtbasePersistenceParts.html#breaking-63835", "Breaking: #63835 - Remove Deprecated Parts in Extbase Persistence Layer" ], "breaking-63846-formengine-refactoring": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Breaking-63846-FormEngineRefactoring.html#breaking-63846-formengine-refactoring", + "Changelog\/7.3\/Breaking-63846-FormEngineRefactoring.html#breaking-63846", "Breaking: #63846 - FormEngine refactoring" ], "tca-changes": [ @@ -53869,151 +54073,151 @@ "breaking-66429-remove-identitymap-from-persistence": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Breaking-66429-RemoveIdentityMapFromPersistence.html#breaking-66429-remove-identitymap-from-persistence", + "Changelog\/7.3\/Breaking-66429-RemoveIdentityMapFromPersistence.html#breaking-66429", "Breaking: #66429 - Remove IdentityMap from persistence" ], "breaking-66669-backend-logincontroller-refactored": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Breaking-66669-BackendLoginControllerRefactored.html#breaking-66669-backend-logincontroller-refactored", + "Changelog\/7.3\/Breaking-66669-BackendLoginControllerRefactored.html#breaking-66669", "Breaking: #66669 - Backend LoginController refactored" ], "breaking-66707-issuecommand-now-adds-quotes-when-used-in-js-context": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Breaking-66707-IssueCommandNowAddsQuotesWhenUsedInJSContext.html#breaking-66707-issuecommand-now-adds-quotes-when-used-in-js-context", + "Changelog\/7.3\/Breaking-66707-IssueCommandNowAddsQuotesWhenUsedInJSContext.html#breaking-66707", "Breaking: #66707 - issueCommand() now adds quotes when used in JS context" ], "breaking-66754-remove-renderingcontextawareinterface": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Breaking-66754-RemoveRenderingContextAwareInterface.html#breaking-66754-remove-renderingcontextawareinterface", + "Changelog\/7.3\/Breaking-66754-RemoveRenderingContextAwareInterface.html#breaking-66754", "Breaking: #66754 - Remove RenderingContextAwareInterface" ], "breaking-66868-move-usage-of-backendusersettingsdataprovider": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Breaking-66868-MoveUsageOfBackendUserSettingsDataProvider.html#breaking-66868-move-usage-of-backendusersettingsdataprovider", + "Changelog\/7.3\/Breaking-66868-MoveUsageOfBackendUserSettingsDataProvider.html#breaking-66868", "Breaking: #66868 - Move usage of BackendUserSettingsDataProvider" ], "breaking-66906-automatic-png-to-gif-conversion-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Breaking-66906-AutomaticPNGToGIFConversionRemoved.html#breaking-66906-automatic-png-to-gif-conversion-removed", + "Changelog\/7.3\/Breaking-66906-AutomaticPNGToGIFConversionRemoved.html#breaking-66906", "Breaking: #66906 - Automatic PNG to GIF conversion removed" ], "breaking-66991-tca-value-slider-based-on-jquery": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Breaking-66991-TCAValueSliderBasedOnJQuery.html#breaking-66991-tca-value-slider-based-on-jquery", + "Changelog\/7.3\/Breaking-66991-TCAValueSliderBasedOnJQuery.html#breaking-66991", "Breaking: #66991 - TCA value slider based on jQuery" ], "breaking-66997-remove-super-challenged-password-security": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Breaking-66997-RemoveSuper-challengedPasswordSecurity.html#breaking-66997-remove-super-challenged-password-security", + "Changelog\/7.3\/Breaking-66997-RemoveSuper-challengedPasswordSecurity.html#breaking-66997", "Breaking: #66997 - Remove super-\/challenged password security" ], "breaking-67027-removed-flow-compatibility-from-packagemanager": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Breaking-67027-RemovedFlowCompatibilityFromPackageManager.html#breaking-67027-removed-flow-compatibility-from-packagemanager", + "Changelog\/7.3\/Breaking-67027-RemovedFlowCompatibilityFromPackageManager.html#breaking-67027", "Breaking: #67027 - Removed FLOW-compatibility from PackageManager" ], "breaking-67204-databaseconnection-exec-selectgetrows-may-throw-exception": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Breaking-67204-DatabaseConnectionexec_SELECTgetRowsMayThrowException.html#breaking-67204-databaseconnection-exec-selectgetrows-may-throw-exception", + "Changelog\/7.3\/Breaking-67204-DatabaseConnectionexec_SELECTgetRowsMayThrowException.html#breaking-67204", "Breaking: #67204 - DatabaseConnection::exec_SELECTgetRows() may throw exception" ], "breaking-67212-discard-typo3-class-loader": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Breaking-67212-DiscardLegacyClassLoader.html#breaking-67212-discard-typo3-class-loader", + "Changelog\/7.3\/Breaking-67212-DiscardLegacyClassLoader.html#breaking-67212", "Breaking: #67212 - Discard TYPO3 class loader" ], "breaking-67229-formengine-related-classses": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Breaking-67229-FormEngineRelatedClasses.html#breaking-67229-formengine-related-classses", + "Changelog\/7.3\/Breaking-67229-FormEngineRelatedClasses.html#breaking-67229", "Breaking: #67229 - FormEngine related classses" ], "breaking-67402-extbase-abstractdomainobject-initializeobject": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Breaking-67402-ExtbaseAbstractDomainObjectInitializeObject.html#breaking-67402-extbase-abstractdomainobject-initializeobject", + "Changelog\/7.3\/Breaking-67402-ExtbaseAbstractDomainObjectInitializeObject.html#breaking-67402-1668719172", "Breaking: #67402 - Extbase AbstractDomainObject initializeObject" ], "breaking-67402-extbase-abstractdomainobject-wakeup": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Breaking-67402-ExtbaseAbstractDomainObjectWakeUp.html#breaking-67402-extbase-abstractdomainobject-wakeup", + "Changelog\/7.3\/Breaking-67402-ExtbaseAbstractDomainObjectWakeUp.html#breaking-67402", "Breaking: #67402 - Extbase AbstractDomainObject __wakeup()" ], "deprecation-61829-deprecate-config-classfile-dbal-option": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Deprecation-61829-DbalConfigClassFile.html#deprecation-61829-deprecate-config-classfile-dbal-option", + "Changelog\/7.3\/Deprecation-61829-DbalConfigClassFile.html#deprecation-61829", "Deprecation: #61829 - Deprecate config.classFile DBAL option" ], "deprecation-63453-deprecate-rendermode-attribute-of-flashmessagesviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Deprecation-63453-DeprecateRenderModeAttributeOfFlashMessageViewHelper.html#deprecation-63453-deprecate-rendermode-attribute-of-flashmessagesviewhelper", + "Changelog\/7.3\/Deprecation-63453-DeprecateRenderModeAttributeOfFlashMessageViewHelper.html#deprecation-63453", "Deprecation: #63453 - Deprecate renderMode attribute of FlashMessagesViewHelper" ], "deprecation-63735-deprecate-datahandler-checkvalue-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Deprecation-63735-DeprecateDataHandlerCheckValueMethods.html#deprecation-63735-deprecate-datahandler-checkvalue-methods", + "Changelog\/7.3\/Deprecation-63735-DeprecateDataHandlerCheckValueMethods.html#deprecation-63735", "Deprecation: #63735 - Deprecate DataHandler->checkValue_*-methods" ], "deprecation-65344-typo3conf-exttables-php-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Deprecation-65344-ExtTables.html#deprecation-65344-typo3conf-exttables-php-deprecated", + "Changelog\/7.3\/Deprecation-65344-ExtTables.html#deprecation-65344", "Deprecation: #65344 - typo3conf\/extTables.php deprecated" ], "deprecation-66789-options-deprecated-in-cshviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Deprecation-66789-DeprecateOptionsInCshViewHelper.html#deprecation-66789-options-deprecated-in-cshviewhelper", + "Changelog\/7.3\/Deprecation-66789-DeprecateOptionsInCshViewHelper.html#deprecation-66789", "Deprecation: #66789 - options deprecated in CshViewHelper" ], "deprecation-66823-deprecate-extbase-extensionutility-configuremodule-method": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Deprecation-66823-ExtensionUtilityConfigureModule.html#deprecation-66823-deprecate-extbase-extensionutility-configuremodule-method", + "Changelog\/7.3\/Deprecation-66823-ExtensionUtilityConfigureModule.html#deprecation-66823", "Deprecation: #66823 - Deprecate Extbase ExtensionUtility->configureModule method" ], "deprecation-66905-deprecate-uc-classicpageeditmode-and-editregularcontentfromid-option": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Deprecation-66905-ClassicPageModuleAndEditRegularContentFromId.html#deprecation-66905-deprecate-uc-classicpageeditmode-and-editregularcontentfromid-option", + "Changelog\/7.3\/Deprecation-66905-ClassicPageModuleAndEditRegularContentFromId.html#deprecation-66905", "Deprecation: #66905 - Deprecate uc->classicPageEditMode and editRegularContentFromId option" ], "deprecation-66906-functionality-for-png-to-gif-conversion": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Deprecation-66906-FunctionalityPngToGifConversion.html#deprecation-66906-functionality-for-png-to-gif-conversion", + "Changelog\/7.3\/Deprecation-66906-FunctionalityPngToGifConversion.html#deprecation-66906", "Deprecation: #66906 - Functionality for png_to_gif conversion" ], "deprecation-67029-deprecate-page-bgimg-option": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Deprecation-67029-DeprecatePageBgImgOption.html#deprecation-67029-deprecate-page-bgimg-option", + "Changelog\/7.3\/Deprecation-67029-DeprecatePageBgImgOption.html#deprecation-67029", "Deprecation: #67029 - Deprecate page.bgImg option" ], "deprecation-37171-deprecate-t3editor-isenabled": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Deprecation-67171-T3editorIsEnabled.html#deprecation-37171-deprecate-t3editor-isenabled", + "Changelog\/7.3\/Deprecation-67171-T3editorIsEnabled.html#deprecation-37171", "Deprecation: #37171 - Deprecate t3editor->isEnabled()" ], "deprecation-65290-tca-changes": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Deprecation-67229-TcaChanges.html#deprecation-65290-tca-changes", + "Changelog\/7.3\/Deprecation-67229-TcaChanges.html#deprecation-65290-1668719172", "Deprecation: #65290 - TCA changes" ], "simplified-types-showitem-configuration-using-columnsoverrides": [ @@ -54031,49 +54235,49 @@ "deprecation-67297-mysql-dbms-field-type-conversion": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Deprecation-67297-DbalFieldTypeConversion.html#deprecation-67297-mysql-dbms-field-type-conversion", + "Changelog\/7.3\/Deprecation-67297-DbalFieldTypeConversion.html#deprecation-67297", "Deprecation: #67297 - MySQL \/ DBMS field type conversion" ], "deprecation-67402-extbase-abstractdomainobject-wakeup": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Deprecation-67402-ExtbaseAbstractDomainObjectWakeUp.html#deprecation-67402-extbase-abstractdomainobject-wakeup", + "Changelog\/7.3\/Deprecation-67402-ExtbaseAbstractDomainObjectWakeUp.html#deprecation-67402", "Deprecation: #67402 - Extbase AbstractDomainObject __wakeup()" ], "feature-59606-integrate-symfony-console-into-commandcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Feature-59606-IntegrateSymfonyConsoleIntoCommandController.html#feature-59606-integrate-symfony-console-into-commandcontroller", + "Changelog\/7.3\/Feature-59606-IntegrateSymfonyConsoleIntoCommandController.html#feature-59606", "Feature: #59606 - Integrate Symfony\/Console into CommandController" ], "feature-62242-actionmenuitemgroupviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Feature-62242-ActionMenuItemGroupViewHelper.html#feature-62242-actionmenuitemgroupviewhelper", + "Changelog\/7.3\/Feature-62242-ActionMenuItemGroupViewHelper.html#feature-62242", "Feature: #62242 - ActionMenuItemGroupViewHelper" ], "feature-63453-template-support-for-flashmessagesviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Feature-63453-TemplateSupportForFlashMessagesViewHelper.html#feature-63453-template-support-for-flashmessagesviewhelper", + "Changelog\/7.3\/Feature-63453-TemplateSupportForFlashMessagesViewHelper.html#feature-63453", "Feature: #63453 - Template support for FlashMessagesViewHelper" ], "feature-63561-add-typoscript-stdwrap-strtotime": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Feature-63561-AddTypoScriptStdWrapStrtotime.html#feature-63561-add-typoscript-stdwrap-strtotime", + "Changelog\/7.3\/Feature-63561-AddTypoScriptStdWrapStrtotime.html#feature-63561", "Feature: #63561 - Add TypoScript stdWrap strtotime" ], "feature-65250-typoscript-condition-add-gpmerged": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Feature-65250-TypoScriptConditionAddGPmerged.html#feature-65250-typoscript-condition-add-gpmerged", + "Changelog\/7.3\/Feature-65250-TypoScriptConditionAddGPmerged.html#feature-65250", "Feature: #65250 - TypoScript condition add GPmerged" ], "feature-66111-add-templaterootpaths-support-to-cobject-fluidtemplate": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Feature-66111-AddTemplaterootpathsSupportToCobjectFluidtemplate.html#feature-66111-add-templaterootpaths-support-to-cobject-fluidtemplate", + "Changelog\/7.3\/Feature-66111-AddTemplaterootpathsSupportToCobjectFluidtemplate.html#feature-66111", "Feature: #66111 - Add TemplateRootPaths support to cObject FLUIDTEMPLATE" ], "example-1": [ @@ -54091,19 +54295,19 @@ "feature-66173-allow-page-title-edit-by-doubleclick": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Feature-66173-AllowPageTitleEditByDoubleclick.html#feature-66173-allow-page-title-edit-by-doubleclick", + "Changelog\/7.3\/Feature-66173-AllowPageTitleEditByDoubleclick.html#feature-66173", "Feature: #66173 - Allow page title edit by doubleclick" ], "feature-66269-fluid-remove-viewhelper-xmlns-attributes-and-specified-html-tag": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Feature-66269-FluidRemoveViewHelperXmlnsAttributesAndSpecifiedHtmlTag.html#feature-66269-fluid-remove-viewhelper-xmlns-attributes-and-specified-html-tag", + "Changelog\/7.3\/Feature-66269-FluidRemoveViewHelperXmlnsAttributesAndSpecifiedHtmlTag.html#feature-66269", "Feature: #66269 - Fluid: Remove ViewHelper xmlns-attributes and specified html tag" ], "feature-66669-be-login-form-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Feature-66669-BeLoginFormAPI.html#feature-66669-be-login-form-api", + "Changelog\/7.3\/Feature-66669-BeLoginFormAPI.html#feature-66669", "Feature: #66669 - BE login form API" ], "registering-a-login-provider": [ @@ -54127,49 +54331,49 @@ "feature-66681-categoryregistry-add-options-to-set-l10n-mode-and-l10n-display": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Feature-66681-CategoryRegistryAddOptionsToSetL10n_modeAndL10n_display.html#feature-66681-categoryregistry-add-options-to-set-l10n-mode-and-l10n-display", + "Changelog\/7.3\/Feature-66681-CategoryRegistryAddOptionsToSetL10n_modeAndL10n_display.html#feature-66681", "Feature: #66681 - CategoryRegistry: add options to set l10n_mode and l10n_display" ], "feature-66697-add-uppercamelcase-and-lowercamelcase-to-stdwrap-case": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Feature-66697-AddUppercamelcaseAndLowercamelcaseToStdWrap.case.html#feature-66697-add-uppercamelcase-and-lowercamelcase-to-stdwrap-case", + "Changelog\/7.3\/Feature-66697-AddUppercamelcaseAndLowercamelcaseToStdWrap.case.html#feature-66697", "Feature: #66697 - Add uppercamelcase and lowercamelcase to stdWrap.case" ], "feature-66698-add-integrity-property-to-javascript-files": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Feature-66698-AddIntegrityPropertyToJavaScriptFiles.html#feature-66698-add-integrity-property-to-javascript-files", + "Changelog\/7.3\/Feature-66698-AddIntegrityPropertyToJavaScriptFiles.html#feature-66698", "Feature: #66698 - Add integrity property to JavaScript files" ], "feature-66709-add-templaterootpaths-support-to-fluid-view-standaloneview": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Feature-66709-AddTemplateRootPathsSupportToFluidViewStandaloneView.html#feature-66709-add-templaterootpaths-support-to-fluid-view-standaloneview", + "Changelog\/7.3\/Feature-66709-AddTemplateRootPathsSupportToFluidViewStandaloneView.html#feature-66709", "Feature: #66709 - Add TemplateRootPaths support to Fluid\/View\/StandaloneView" ], "feature-66822-allow-sprites-for-backend-modules": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Feature-66822-SpriteIconsInBackendModules.html#feature-66822-allow-sprites-for-backend-modules", + "Changelog\/7.3\/Feature-66822-SpriteIconsInBackendModules.html#feature-66822", "Feature: #66822 - Allow Sprites For Backend Modules" ], "feature-66907-add-data-processing-to-fluidtemplate-content-object": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Feature-66907-AddDataProcessingToFluidTemplateContentObject.html#feature-66907-add-data-processing-to-fluidtemplate-content-object", + "Changelog\/7.3\/Feature-66907-AddDataProcessingToFluidTemplateContentObject.html#feature-66907", "Feature: #66907 - Add Data Processing to FLUIDTEMPLATE content object" ], "feature-67071-processed-files-cleanup-tool-added-in-install-tool": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Feature-67071-ProcessedFilesCleanupToolAddedInInstallTool.html#feature-67071-processed-files-cleanup-tool-added-in-install-tool", + "Changelog\/7.3\/Feature-67071-ProcessedFilesCleanupToolAddedInInstallTool.html#feature-67071", "Feature: #67071 - Processed files cleanup tool added in Install Tool" ], "feature-67229-formengine-nodefactory-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Feature-67229-FormEngineNodeFactoryApi.html#feature-67229-formengine-nodefactory-api", + "Changelog\/7.3\/Feature-67229-FormEngineNodeFactoryApi.html#feature-67229", "Feature: #67229 - FormEngine NodeFactory API" ], "registration-of-new-nodes-and-overwriting-existing-nodes": [ @@ -54193,25 +54397,25 @@ "feature-67319-add-field-copyright-to-ext-filemetadata": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Feature-67319-AddFieldCopyrightToEXTfilemetadata.html#feature-67319-add-field-copyright-to-ext-filemetadata", + "Changelog\/7.3\/Feature-67319-AddFieldCopyrightToEXTfilemetadata.html#feature-67319", "Feature: #67319 - Add field \"copyright\" to EXT:filemetadata" ], "important-66614-checksums-for-processed-files-have-been-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Important-66614-ChecksumForProcessedFilesChanged.html#important-66614-checksums-for-processed-files-have-been-changed", + "Changelog\/7.3\/Important-66614-ChecksumForProcessedFilesChanged.html#important-66614", "Important: #66614 - Checksums for processed files have been changed" ], "important-67248-clean-up-datamapper-convertclassnametotablename": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Important-67248-CleanUpDataMapperconvertClassNameToTableName.html#important-67248-clean-up-datamapper-convertclassnametotablename", + "Changelog\/7.3\/Important-67248-CleanUpDataMapperconvertClassNameToTableName.html#important-67248", "Important: #67248 - Clean up DataMapper::convertClassNameToTableName" ], "important-67401-dependency-injection-is-now-done-before-initializeobject": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.3\/Important-67401-DependencyInjectionIsNowDoneBeforeInitializeObject.html#important-67401-dependency-injection-is-now-done-before-initializeobject", + "Changelog\/7.3\/Important-67401-DependencyInjectionIsNowDoneBeforeInitializeObject.html#important-67401", "Important: #67401 - Dependency Injection is now done before initializeObject()" ], "7-3-changes": [ @@ -54223,13 +54427,13 @@ "breaking-39721-prototype-js-and-scriptaculous-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-39721-PrototypejsAndScriptaculousRemoved.html#breaking-39721-prototype-js-and-scriptaculous-removed", + "Changelog\/7.4\/Breaking-39721-PrototypejsAndScriptaculousRemoved.html#breaking-39721", "Breaking: #39721 - Prototype.js and Scriptaculous removed" ], "breaking-52705-default-log-configuration-is-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-52705-DefaultLogConfigurationIsChanged.html#breaking-52705-default-log-configuration-is-changed", + "Changelog\/7.4\/Breaking-52705-DefaultLogConfigurationIsChanged.html#breaking-52705", "Breaking: #52705 - Default log configuration is changed" ], "filewriter-behavior-has-changed": [ @@ -54247,103 +54451,103 @@ "breaking-55759-html-in-link-titles-not-working-anymore": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-55759-HTMLInLinkTitlesNotWorkingAnymore.html#breaking-55759-html-in-link-titles-not-working-anymore", + "Changelog\/7.4\/Breaking-55759-HTMLInLinkTitlesNotWorkingAnymore.html#breaking-55759", "Breaking: #55759 - HTML in link titles not working anymore" ], "breaking-56133-new-be-user-permission-files-replace": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-56133-NewBeUserPermissionFilesReplace.html#breaking-56133-new-be-user-permission-files-replace", + "Changelog\/7.4\/Breaking-56133-NewBeUserPermissionFilesReplace.html#breaking-56133", "Breaking: #56133 - New BE user permission \"Files: replace\"" ], "breaking-56951-remove-unused-methods-in-pagepositionmap": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-56951-RemoveUnusedMethodsInPagePositionMap.html#breaking-56951-remove-unused-methods-in-pagepositionmap", + "Changelog\/7.4\/Breaking-56951-RemoveUnusedMethodsInPagePositionMap.html#breaking-56951", "Breaking: #56951 - Remove unused methods in PagePositionMap" ], "breaking-63838-changed-opcodecacheutility-being-a-service-class": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-63838-ChangedOpcodeCacheUtilityBeingAServiceClass.html#breaking-63838-changed-opcodecacheutility-being-a-service-class", + "Changelog\/7.4\/Breaking-63838-ChangedOpcodeCacheUtilityBeingAServiceClass.html#breaking-63838", "Breaking: #63838 - Changed OpcodeCacheUtility being a service class" ], "breaking-64200-custom-cobject-cache-typoscript-evaluation": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-64200-CustomCObject.cache.TypoScriptEvaluation.html#breaking-64200-custom-cobject-cache-typoscript-evaluation", + "Changelog\/7.4\/Breaking-64200-CustomCObject.cache.TypoScriptEvaluation.html#breaking-64200", "Breaking: #64200 - Custom [cObject].cache.* TypoScript evaluation" ], "breaking-64714-catch-exceptions-for-inaccessible-storages": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-64714-CatchExceptionsForInaccessibleStorages.html#breaking-64714-catch-exceptions-for-inaccessible-storages", + "Changelog\/7.4\/Breaking-64714-CatchExceptionsForInaccessibleStorages.html#breaking-64714", "Breaking: #64714 - Catch exceptions for inaccessible storages" ], "breaking-65305-driverinterface-has-been-extended": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-65305-AddFunctionsToDriverInterface.html#breaking-65305-driverinterface-has-been-extended", + "Changelog\/7.4\/Breaking-65305-AddFunctionsToDriverInterface.html#breaking-65305", "Breaking: #65305 - DriverInterface has been extended" ], "breaking-66602-check-jumpurl-referer-has-been-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-66602-RemoveRefererCheckWhileHandlingJumpUrl.html#breaking-66602-check-jumpurl-referer-has-been-removed", + "Changelog\/7.4\/Breaking-66602-RemoveRefererCheckWhileHandlingJumpUrl.html#breaking-66602", "Breaking: #66602 - Check jumpUrl referer has been removed" ], "breaking-67545-prefileadd-signal-behaviour-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-67545-PreFileAddSignalBehaviourChanged.html#breaking-67545-prefileadd-signal-behaviour-changed", + "Changelog\/7.4\/Breaking-67545-PreFileAddSignalBehaviourChanged.html#breaking-67545", "Breaking: #67545 - PreFileAdd signal behaviour changed" ], "breaking-67546-cleanup-flash-message-rendering-in-flashmessagequeue": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-67546-CleanupFlashMessageRendering.html#breaking-67546-cleanup-flash-message-rendering-in-flashmessagequeue", + "Changelog\/7.4\/Breaking-67546-CleanupFlashMessageRendering.html#breaking-67546", "Breaking: #67546 - Cleanup Flash message rendering in FlashMessageQueue" ], "breaking-67557-language-file-of-opendocs-was-moved": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-67557-LanguageFileOfOpendocsWasMoved.html#breaking-67557-language-file-of-opendocs-was-moved", + "Changelog\/7.4\/Breaking-67557-LanguageFileOfOpendocsWasMoved.html#breaking-67557", "Breaking: #67557 - Language file of Opendocs was moved" ], "breaking-67565-deprecated-backend-related-methods-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-67565-DeprecatedBackendRelatedMethodsRemoved.html#breaking-67565-deprecated-backend-related-methods-removed", + "Changelog\/7.4\/Breaking-67565-DeprecatedBackendRelatedMethodsRemoved.html#breaking-67565", "Breaking: #67565 - Deprecated backend related methods removed" ], "breaking-67577-rte-enabled-and-flag-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-67577-RteEnabledFlagHandling.html#breaking-67577-rte-enabled-and-flag-handling", + "Changelog\/7.4\/Breaking-67577-RteEnabledFlagHandling.html#breaking-67577", "Breaking: #67577 - rte_enabled and flag handling" ], "breaking-67646-php-library-inclusion-in-frontend-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-67646-LibraryInclusionInFrontend.html#breaking-67646-php-library-inclusion-in-frontend-removed", + "Changelog\/7.4\/Breaking-67646-LibraryInclusionInFrontend.html#breaking-67646", "Breaking: #67646 - PHP library inclusion in frontend removed" ], "breaking-67654-remove-globals-fileicons-functionality": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-67654-RemoveGLOBALSFILEICONSFunctionality.html#breaking-67654-remove-globals-fileicons-functionality", + "Changelog\/7.4\/Breaking-67654-RemoveGLOBALSFILEICONSFunctionality.html#breaking-67654", "Breaking: #67654 - Remove $GLOBALS[FILEICONS] functionality" ], "breaking-67749-force-class-auto-loading-for-various-hooks": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-67749-ForceAutoloadingForVariousHooks.html#breaking-67749-force-class-auto-loading-for-various-hooks", + "Changelog\/7.4\/Breaking-67749-ForceAutoloadingForVariousHooks.html#breaking-67749", "Breaking: #67749 - Force class auto loading for various hooks" ], "breaking-67753-drop-show-secondary-options": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-67753-DropSecondaryOptions.html#breaking-67753-drop-show-secondary-options", + "Changelog\/7.4\/Breaking-67753-DropSecondaryOptions.html#breaking-67753", "Breaking: #67753 - Drop \"Show secondary options\"" ], "pagetsconfig": [ @@ -54361,13 +54565,13 @@ "breaking-67792-class-aliases-of-indexed-search-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-67792-ClassAliasesOfIndexedSearchRemoved.html#breaking-67792-class-aliases-of-indexed-search-removed", + "Changelog\/7.4\/Breaking-67792-ClassAliasesOfIndexedSearchRemoved.html#breaking-67792", "Breaking: #67792 - Class aliases of Indexed Search removed" ], "breaking-67811-rte-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-67811-RteApi.html#breaking-67811-rte-api", + "Changelog\/7.4\/Breaking-67811-RteApi.html#breaking-67811", "Breaking: #67811 - Rte API" ], "main-api-changes": [ @@ -54397,439 +54601,439 @@ "breaking-67815-remove-tceforms-js-because-we-don-t-need-it-anymore": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-67815-RemoveTceformsjsBecauseWeDontNeedItAnymore.html#breaking-67815-remove-tceforms-js-because-we-don-t-need-it-anymore", + "Changelog\/7.4\/Breaking-67815-RemoveTceformsjsBecauseWeDontNeedItAnymore.html#breaking-67815", "Breaking: #67815 - Remove tceforms.js because we don't need it anymore" ], "breaking-67824-typo3-ext-folder-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-67824-Typo3ExtFolderRemoved.html#breaking-67824-typo3-ext-folder-removed", + "Changelog\/7.4\/Breaking-67824-Typo3ExtFolderRemoved.html#breaking-67824", "Breaking: #67824 - typo3\/ext folder removed" ], "breaking-67825-remove-colorpicker-options-dim-and-tablestyle": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-67825-RemoveColorpickerOptionsDimAndTableStyle.html#breaking-67825-remove-colorpicker-options-dim-and-tablestyle", + "Changelog\/7.4\/Breaking-67825-RemoveColorpickerOptionsDimAndTableStyle.html#breaking-67825", "Breaking: #67825 - Remove colorpicker options \"dim\" and \"tableStyle\"" ], "breaking-67890-redesign-fluidtemplatedataprocessorinterface-to-dataprocessorinterface": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-67890-RedesignFluidTemplateDataProcessorInterfaceToDataProcessorInterface.html#breaking-67890-redesign-fluidtemplatedataprocessorinterface-to-dataprocessorinterface", + "Changelog\/7.4\/Breaking-67890-RedesignFluidTemplateDataProcessorInterfaceToDataProcessorInterface.html#breaking-67890", "Breaking: #67890 - Redesign FluidTemplateDataProcessorInterface to DataProcessorInterface" ], "breaking-67932-felogin-template-has-been-changed-for-rsa-encryption": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-67932-FeloginTemplateHasBeenChanged.html#breaking-67932-felogin-template-has-been-changed-for-rsa-encryption", + "Changelog\/7.4\/Breaking-67932-FeloginTemplateHasBeenChanged.html#breaking-67932", "Breaking: #67932 - felogin template has been changed for RSA encryption" ], "breaking-67946-lowlevel-cleaner-scripts-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-67946-LowLevelScriptsRemoved.html#breaking-67946-lowlevel-cleaner-scripts-removed", + "Changelog\/7.4\/Breaking-67946-LowLevelScriptsRemoved.html#breaking-67946", "Breaking: #67946 - LowLevel Cleaner Scripts Removed" ], "breaking-67987-removed-entry-script-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-67987-RemovedEntryScriptHandling.html#breaking-67987-removed-entry-script-handling", + "Changelog\/7.4\/Breaking-67987-RemovedEntryScriptHandling.html#breaking-67987", "Breaking: #67987 - Removed entry script handling" ], "breaking-68001-removed-extjs-core-and-extjs-adapters": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-68001-RemovedExtJSCoreAndExtJSAdapters.html#breaking-68001-removed-extjs-core-and-extjs-adapters", + "Changelog\/7.4\/Breaking-68001-RemovedExtJSCoreAndExtJSAdapters.html#breaking-68001", "Breaking: #68001 - Removed ExtJS Core and ExtJS Adapters" ], "breaking-68010-t3editor-event-callbacks-for-codecompletion-have-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-68010-T3Editor-EventCallbacksForCodecompletionHaveChanged.html#breaking-68010-t3editor-event-callbacks-for-codecompletion-have-changed", + "Changelog\/7.4\/Breaking-68010-T3Editor-EventCallbacksForCodecompletionHaveChanged.html#breaking-68010-1668719172", "Breaking: #68010 - T3Editor - Event callbacks for codecompletion have changed" ], "breaking-68010-t3editor-plugin-registration-for-codecompletion-has-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-68010-T3Editor-PluginRegistrationForCodecompletionHasChanged.html#breaking-68010-t3editor-plugin-registration-for-codecompletion-has-changed", + "Changelog\/7.4\/Breaking-68010-T3Editor-PluginRegistrationForCodecompletionHasChanged.html#breaking-68010", "Breaking: #68010 - T3Editor - Plugin registration for codecompletion has changed" ], "breaking-68020-dropped-disablebigbuttons": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-68020-DroppedDisableBigButtons.html#breaking-68020-dropped-disablebigbuttons", + "Changelog\/7.4\/Breaking-68020-DroppedDisableBigButtons.html#breaking-68020", "Breaking: #68020 - Dropped DisableBigButtons" ], "breaking-68092-tca-remove-wizard-hideparent-and-hiddenfield": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-68092-TcaRemoveWizardHideParent.html#breaking-68092-tca-remove-wizard-hideparent-and-hiddenfield", + "Changelog\/7.4\/Breaking-68092-TcaRemoveWizardHideParent.html#breaking-68092", "Breaking: #68092 - TCA: Remove wizard hideParent and _HIDDENFIELD" ], "breaking-68116-drop-rte-userlinks-functionality": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-68116-DropRTEuserLinksFunctionality.html#breaking-68116-drop-rte-userlinks-functionality", + "Changelog\/7.4\/Breaking-68116-DropRTEuserLinksFunctionality.html#breaking-68116", "Breaking: #68116 - Drop RTE.userLinks functionality" ], "breaking-68131-streamline-error-and-exception-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-68131-StreamlineErrorAndExceptionHandling.html#breaking-68131-streamline-error-and-exception-handling", + "Changelog\/7.4\/Breaking-68131-StreamlineErrorAndExceptionHandling.html#breaking-68131", "Breaking: #68131 - Streamline error and exception handling" ], "breaking-68150-globals-client": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-68150-GLOBALSCLIENT.html#breaking-68150-globals-client", + "Changelog\/7.4\/Breaking-68150-GLOBALSCLIENT.html#breaking-68150", "Breaking: #68150 - $GLOBALS['CLIENT']" ], "breaking-68178-drop-globals-typo3-conf-vars-sys-form-enctype": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-68178-DropFormEnctype.html#breaking-68178-drop-globals-typo3-conf-vars-sys-form-enctype", + "Changelog\/7.4\/Breaking-68178-DropFormEnctype.html#breaking-68178", "Breaking: #68178 - Drop $GLOBALS['TYPO3_CONF_VARS']['SYS']['form_enctype']" ], "breaking-68186-adjusted-and-removed-methods-in-eid-area": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-68186-AdjustedAndRemovedMethodsInEIDArea.html#breaking-68186-adjusted-and-removed-methods-in-eid-area", + "Changelog\/7.4\/Breaking-68186-AdjustedAndRemovedMethodsInEIDArea.html#breaking-68186", "Breaking: #68186 - Adjusted and removed methods in eID area" ], "breaking-68193-ext-indexed-search-drop-removeloginpageswithcontenthash-from-indexer-php": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-68193-DropRemoveLoginpagesWithContentHashFromIndexerphp.html#breaking-68193-ext-indexed-search-drop-removeloginpageswithcontenthash-from-indexer-php", + "Changelog\/7.4\/Breaking-68193-DropRemoveLoginpagesWithContentHashFromIndexerphp.html#breaking-68193", "Breaking: #68193 - ext:indexed_search Drop removeLoginpagesWithContentHash from Indexer.php" ], "breaking-68206-remove-usage-of-typolist-and-typohead-in-rte": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-68206-RemoveUsageOfTypolistAndTypoheadInRTE.html#breaking-68206-remove-usage-of-typolist-and-typohead-in-rte", + "Changelog\/7.4\/Breaking-68206-RemoveUsageOfTypolistAndTypoheadInRTE.html#breaking-68206", "Breaking: #68206 - Remove usage of typolist and typohead in RTE" ], "breaking-68243-move-not-used-frontenddocumenttemplate": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-68243-MoveNotUsedFrontendDocumentTemplate.html#breaking-68243-move-not-used-frontenddocumenttemplate", + "Changelog\/7.4\/Breaking-68243-MoveNotUsedFrontendDocumentTemplate.html#breaking-68243", "Breaking: #68243 - Move not used FrontendDocumentTemplate" ], "breaking-68276-remove-extjs-quicktips-if-possible": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-68276-RemoveExtJSQuicktipsIfPossible.html#breaking-68276-remove-extjs-quicktips-if-possible", + "Changelog\/7.4\/Breaking-68276-RemoveExtJSQuicktipsIfPossible.html#breaking-68276", "Breaking: #68276 - Remove ExtJS Quicktips if possible" ], "breaking-68321-move-language-and-images-in-rtehtmlarea": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Breaking-68321-MoveLanguageAndImagesInRtehtmlarea.html#breaking-68321-move-language-and-images-in-rtehtmlarea", + "Changelog\/7.4\/Breaking-68321-MoveLanguageAndImagesInRtehtmlarea.html#breaking-68321", "Breaking: #68321 - Move language and images in rtehtmlarea" ], "deprecation-50349-reduce-sql-queries-of-page-tree-in-workspaces": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Deprecation-50349-ReduceSQLQueriesOfPageTreeInWorkspaces.html#deprecation-50349-reduce-sql-queries-of-page-tree-in-workspaces", + "Changelog\/7.4\/Deprecation-50349-ReduceSQLQueriesOfPageTreeInWorkspaces.html#deprecation-50349", "Deprecation: #50349 - Reduce SQL queries of page tree in workspaces" ], "deprecation-63603-extendedfileutility-dontcheckforunique-is-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Deprecation-63603-ExtendedFileUtilitydontCheckForUniqueIsDeprecated.html#deprecation-63603-extendedfileutility-dontcheckforunique-is-deprecated", + "Changelog\/7.4\/Deprecation-63603-ExtendedFileUtilitydontCheckForUniqueIsDeprecated.html#deprecation-63603-1668719172", "Deprecation: #63603 - ExtendedFileUtility::$dontCheckForUnique is deprecated" ], "deprecation-63603-filecontroller-and-filelistcontroller-overwriteexistingfiles-changed-to-string-value": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Deprecation-63603-FileControllerAndFileListControllerOverwriteExistingFilesChangedToStringValue.html#deprecation-63603-filecontroller-and-filelistcontroller-overwriteexistingfiles-changed-to-string-value", + "Changelog\/7.4\/Deprecation-63603-FileControllerAndFileListControllerOverwriteExistingFilesChangedToStringValue.html#deprecation-63603", "Deprecation: #63603 - FileController and FileListController overwriteExistingFiles changed to string value" ], "deprecation-63974-deprecate-css-compressor-callback-method": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Deprecation-63974-CssCompressorCallbackAndCompressCssString.html#deprecation-63974-deprecate-css-compressor-callback-method", + "Changelog\/7.4\/Deprecation-63974-CssCompressorCallbackAndCompressCssString.html#deprecation-63974", "Deprecation: #63974 - Deprecate CSS compressor callback method" ], "deprecation-65790-remove-pages-storage-pid-and-logic": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Deprecation-65790-PagesStoragePidDeprecated.html#deprecation-65790-remove-pages-storage-pid-and-logic", + "Changelog\/7.4\/Deprecation-65790-PagesStoragePidDeprecated.html#deprecation-65790", "Deprecation: #65790 - Remove pages.storage_pid and logic" ], "deprecation-66904-disable-option-in-pagerepository-getexturl": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Deprecation-66904-DisablegetExtURL.html#deprecation-66904-disable-option-in-pagerepository-getexturl", + "Changelog\/7.4\/Deprecation-66904-DisablegetExtURL.html#deprecation-66904", "Deprecation: #66904 - $disable Option in PageRepository->getExtURL()" ], "deprecation-67288-deprecate-dbal-databaseconnection-metatype-method": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Deprecation-67288-DeprecateDbalMetaType.html#deprecation-67288-deprecate-dbal-databaseconnection-metatype-method", + "Changelog\/7.4\/Deprecation-67288-DeprecateDbalMetaType.html#deprecation-67288", "Deprecation: #67288 - Deprecate DbalDatabaseConnection::MetaType() method" ], "deprecation-67471-deprecate-init-php": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Deprecation-67471-InitPhp.html#deprecation-67471-deprecate-init-php", + "Changelog\/7.4\/Deprecation-67471-InitPhp.html#deprecation-67471", "Deprecation: #67471 - Deprecate init.php" ], "deprecation-67506-deprecate-iconutility-geticon": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Deprecation-67506-DeprecateIconUtilitygetIcon.html#deprecation-67506-deprecate-iconutility-geticon", + "Changelog\/7.4\/Deprecation-67506-DeprecateIconUtilitygetIcon.html#deprecation-67506", "Deprecation: #67506 - Deprecate IconUtility::getIcon" ], "deprecation-67670-deprecate-custom-singleton-logic-in-generalutility-getuserobj": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Deprecation-67670-DeprecateCustomSingletonLogicInGeneralUtilitygetUserObj.html#deprecation-67670-deprecate-custom-singleton-logic-in-generalutility-getuserobj", + "Changelog\/7.4\/Deprecation-67670-DeprecateCustomSingletonLogicInGeneralUtilitygetUserObj.html#deprecation-67670", "Deprecation: #67670 - Deprecate custom singleton logic in GeneralUtility::getUserObj" ], "deprecation-67737-tca-drop-additional-palette": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Deprecation-67737-TcaDropAdditionalPalette.html#deprecation-67737-tca-drop-additional-palette", + "Changelog\/7.4\/Deprecation-67737-TcaDropAdditionalPalette.html#deprecation-67737", "Deprecation: #67737 - TCA: Drop additional palette" ], "deprecation-67769-deprecate-querygenerator-formatq": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Deprecation-67769-DeprecateQueryGeneratorformatQ.html#deprecation-67769-deprecate-querygenerator-formatq", + "Changelog\/7.4\/Deprecation-67769-DeprecateQueryGeneratorformatQ.html#deprecation-67769", "Deprecation: #67769 - Deprecate QueryGenerator::formatQ()" ], "deprecation-67790-deprecate-querygenerator-jsbottom": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Deprecation-67790-DeprecateQueryGeneratorJSbottom.html#deprecation-67790-deprecate-querygenerator-jsbottom", + "Changelog\/7.4\/Deprecation-67790-DeprecateQueryGeneratorJSbottom.html#deprecation-67790", "Deprecation: #67790 - Deprecate QueryGenerator::JSbottom()" ], "deprecation-67932-deprecated-old-rsaauth-encryption-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Deprecation-67932-DeprecatedOldRsaauthApi.html#deprecation-67932-deprecated-old-rsaauth-encryption-api", + "Changelog\/7.4\/Deprecation-67932-DeprecatedOldRsaauthApi.html#deprecation-67932", "Deprecation: #67932 - Deprecated old rsaauth encryption API" ], "deprecation-67991-removed-ext-cms": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Deprecation-67991-RemovedExtCms.html#deprecation-67991-removed-ext-cms", + "Changelog\/7.4\/Deprecation-67991-RemovedExtCms.html#deprecation-67991", "Deprecation: #67991 - Removed ext:cms" ], "deprecation-68074-deprecate-getpagerenderer-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Deprecation-68074-DeprecateGetPageRenderer.html#deprecation-68074-deprecate-getpagerenderer-methods", + "Changelog\/7.4\/Deprecation-68074-DeprecateGetPageRenderer.html#deprecation-68074", "Deprecation: #68074 - Deprecate getPageRenderer() methods" ], "deprecation-68098-deprecate-generalutility-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Deprecation-68098-GeneralUtilityMethods.html#deprecation-68098-deprecate-generalutility-methods", + "Changelog\/7.4\/Deprecation-68098-GeneralUtilityMethods.html#deprecation-68098", "Deprecation: #68098 - Deprecate GeneralUtility methods" ], "deprecation-68122-deprecate-generalutility-readllfile": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Deprecation-68122-GeneralUtilityReadLLfile.html#deprecation-68122-deprecate-generalutility-readllfile", + "Changelog\/7.4\/Deprecation-68122-GeneralUtilityReadLLfile.html#deprecation-68122", "Deprecation: #68122 - Deprecate GeneralUtility::readLLfile" ], "deprecation-68141-typo3-ajax-php": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Deprecation-68141-Typo3ajaxphp.html#deprecation-68141-typo3-ajax-php", + "Changelog\/7.4\/Deprecation-68141-Typo3ajaxphp.html#deprecation-68141", "Deprecation: #68141 - typo3\/ajax.php" ], "deprecation-68183-typo3-mod-php": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Deprecation-68183-Typo3modphp.html#deprecation-68183-typo3-mod-php", + "Changelog\/7.4\/Deprecation-68183-Typo3modphp.html#deprecation-68183", "Deprecation: #68183 - typo3\/mod.php" ], "feature-20194-configuration-for-displaying-the-save-view-button": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-20194-ConfigurationForDisplayingTheSaveViewButton.html#feature-20194-configuration-for-displaying-the-save-view-button", + "Changelog\/7.4\/Feature-20194-ConfigurationForDisplayingTheSaveViewButton.html#feature-20194", "Feature: #20194 - Configuration for displaying the \"Save & View\" button" ], "feature-22175-support-iec-si-units-in-file-size-formatting": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-22175-SupportIecSiUnitsInFileSizeFormatting.html#feature-22175-support-iec-si-units-in-file-size-formatting", + "Changelog\/7.4\/Feature-22175-SupportIecSiUnitsInFileSizeFormatting.html#feature-22175", "Feature: #22175 - Support IEC\/SI units in file size formatting" ], "feature-33071-add-the-http-header-content-language-when-rendering-a-page": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-33071-AddTheHttpHeaderContent-LanguageWhenRenderingAPage.html#feature-33071-add-the-http-header-content-language-when-rendering-a-page", + "Changelog\/7.4\/Feature-33071-AddTheHttpHeaderContent-LanguageWhenRenderingAPage.html#feature-33071", "Feature: #33071 - Add the http header \"Content-Language\" when rendering a page" ], "feature-34922-allow-ts-file-extension-for-static-typoscript-templates": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-34922-AllowTsFileExtensionForStaticTyposcriptTemplates.html#feature-34922-allow-ts-file-extension-for-static-typoscript-templates", + "Changelog\/7.4\/Feature-34922-AllowTsFileExtensionForStaticTyposcriptTemplates.html#feature-34922", "Feature: #34922 - Allow .ts file extension for static TypoScript templates" ], "feature-43984-add-stdwrap-functionality-to-treatidasreference-typoscript": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-43984-AddStdWrapFunctionalityToTreatIdAsReferenceTypoScript.html#feature-43984-add-stdwrap-functionality-to-treatidasreference-typoscript", + "Changelog\/7.4\/Feature-43984-AddStdWrapFunctionalityToTreatIdAsReferenceTypoScript.html#feature-43984", "Feature: #43984 - Add stdWrap functionality to TreatIdAsReference TypoScript" ], "feature-45725-added-recursive-option-to-folder-based-file-collections": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-45725-AddedRecursiveOptionToFolderBasedFileCollections.html#feature-45725-added-recursive-option-to-folder-based-file-collections", + "Changelog\/7.4\/Feature-45725-AddedRecursiveOptionToFolderBasedFileCollections.html#feature-45725", "Feature: #45725 - Added recursive option to folder based file collections" ], "feature-48947-avatars-for-backend-users": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-48947-AvatarsForBackendUsers.html#feature-48947-avatars-for-backend-users", + "Changelog\/7.4\/Feature-48947-AvatarsForBackendUsers.html#feature-48947", "Feature: #48947 - Avatars for backend users" ], "feature-56133-replace-file-feature-for-fal-file-list": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-56133-ReplaceFileFeatureForFalFileList.html#feature-56133-replace-file-feature-for-fal-file-list", + "Changelog\/7.4\/Feature-56133-ReplaceFileFeatureForFalFileList.html#feature-56133", "Feature: #56133 - Replace file feature for fal file list" ], "feature-56644-hook-for-inlinerecordcontainer-checkaccess": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-56644-AddHookToInlineRecordContainerCheckAccess.html#feature-56644-hook-for-inlinerecordcontainer-checkaccess", + "Changelog\/7.4\/Feature-56644-AddHookToInlineRecordContainerCheckAccess.html#feature-56644", "Feature: #56644 - Hook for InlineRecordContainer::checkAccess()" ], "feature-59231-hook-for-abstractuserauthentication-checkauthentication": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-59231-AddHookToAbstractUserAuthenticationCheckAuthentication.html#feature-59231-hook-for-abstractuserauthentication-checkauthentication", + "Changelog\/7.4\/Feature-59231-AddHookToAbstractUserAuthenticationCheckAuthentication.html#feature-59231", "Feature: #59231 - Hook for AbstractUserAuthentication::checkAuthentication()" ], "feature-59384-xml-parser-options-for-xml2tree": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-59384-XMLParserOptionsForXml2tree.html#feature-59384-xml-parser-options-for-xml2tree", + "Changelog\/7.4\/Feature-59384-XMLParserOptionsForXml2tree.html#feature-59384", "Feature: #59384 - XML parser options for xml2tree()" ], "feature-59570-add-description-field-for-filemounts": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-59570-AddDescriptionFieldForFilemounts.html#feature-59570-add-description-field-for-filemounts", + "Changelog\/7.4\/Feature-59570-AddDescriptionFieldForFilemounts.html#feature-59570", "Feature: #59570 - Add description-field for filemounts" ], "feature-61308-ext-form-allows-placeholder-attribute": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-61308-AllowPlaceholderAttribute.html#feature-61308-ext-form-allows-placeholder-attribute", + "Changelog\/7.4\/Feature-61308-AllowPlaceholderAttribute.html#feature-61308", "Feature: #61308 - ext:form allows placeholder attribute" ], "feature-61903-pagets-dataprovider-for-backend-layouts": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-61903-PageTSDataproviderForBackendLayouts.html#feature-61903-pagets-dataprovider-for-backend-layouts", + "Changelog\/7.4\/Feature-61903-PageTSDataproviderForBackendLayouts.html#feature-61903", "Feature: #61903 - PageTS dataprovider for backend layouts" ], "feature-64200-allow-individual-content-caching": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-64200-AllowIndividualContentCaching.html#feature-64200-allow-individual-content-caching", + "Changelog\/7.4\/Feature-64200-AllowIndividualContentCaching.html#feature-64200", "Feature: #64200 - Allow individual content caching" ], "feature-65550-make-table-display-order-configurable-in-list-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-65550-MakeTableDisplayOrderConfigurableInListModule.html#feature-65550-make-table-display-order-configurable-in-list-module", + "Changelog\/7.4\/Feature-65550-MakeTableDisplayOrderConfigurableInListModule.html#feature-65550", "Feature: #65550 - Make table display order configurable in List module" ], "feature-65698-additional-localization-files-in-backend-workspace-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-65698-AdditionalResourceServiceLocalization.html#feature-65698-additional-localization-files-in-backend-workspace-module", + "Changelog\/7.4\/Feature-65698-AdditionalResourceServiceLocalization.html#feature-65698", "Feature: #65698 - Additional localization files in backend workspace module" ], "feature-66070-configure-anchor-for-pagination-widget": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-66070-ConfigureSectionForPaginationWidget.html#feature-66070-configure-anchor-for-pagination-widget", + "Changelog\/7.4\/Feature-66070-ConfigureSectionForPaginationWidget.html#feature-66070", "Feature: #66070 - Configure anchor for pagination widget" ], "feature-67228-emit-signal-when-an-indexrecord-is-marked-as-missing": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-67228-EmitSignalWhenAnIndexRecordIsMarkedAsMissing.html#feature-67228-emit-signal-when-an-indexrecord-is-marked-as-missing", + "Changelog\/7.4\/Feature-67228-EmitSignalWhenAnIndexRecordIsMarkedAsMissing.html#feature-67228", "Feature: #67228 - Emit Signal when an IndexRecord is marked as missing" ], "feature-67290-dbal-dbms-specific-conversion-between-meta-mysql-field-types": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-67290-DBALDBMSSpecificConversionBetweenMetaMySQLFieldTypes.html#feature-67290-dbal-dbms-specific-conversion-between-meta-mysql-field-types", + "Changelog\/7.4\/Feature-67290-DBALDBMSSpecificConversionBetweenMetaMySQLFieldTypes.html#feature-67290", "Feature: #67290 - DBAL: DBMS specific conversion between Meta\/MySQL field types" ], "feature-67293-dependency-ordering-service": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-67293-DependencyOrderingService.html#feature-67293-dependency-ordering-service", + "Changelog\/7.4\/Feature-67293-DependencyOrderingService.html#feature-67293", "Feature: #67293 - Dependency ordering service" ], "feature-67360-custom-attribute-name-and-multiple-values-for-meta-tags": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-67360-CustomAttributeNameAndMultipleValuesForMetaTags.html#feature-67360-custom-attribute-name-and-multiple-values-for-meta-tags", + "Changelog\/7.4\/Feature-67360-CustomAttributeNameAndMultipleValuesForMetaTags.html#feature-67360", "Feature: #67360 - Custom attribute name and multiple values for meta tags" ], "feature-67545-ajax-call-to-check-whether-file-exists": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-67545-AJAXMethodToCheckIfFileExists.html#feature-67545-ajax-call-to-check-whether-file-exists", + "Changelog\/7.4\/Feature-67545-AJAXMethodToCheckIfFileExists.html#feature-67545", "Feature: #67545 - AJAX call to check whether file exists" ], "feature-67574-display-online-status-in-backend-user-list": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-67574-DisplayOnlineStatusInBackendUserList.html#feature-67574-display-online-status-in-backend-user-list", + "Changelog\/7.4\/Feature-67574-DisplayOnlineStatusInBackendUserList.html#feature-67574", "Feature: #67574 - Display online status in backend user list" ], "feature-67578-add-description-field-for-backend-users": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-67578-AddDescriptionFieldForBeUsers.html#feature-67578-add-description-field-for-backend-users", + "Changelog\/7.4\/Feature-67578-AddDescriptionFieldForBeUsers.html#feature-67578", "Feature: #67578 - Add description-field for backend-users" ], "feature-67603-introduce-tca-ctrl-descriptioncolumn": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-67603-IntroduceTcaDescriptionColumn.html#feature-67603-introduce-tca-ctrl-descriptioncolumn", + "Changelog\/7.4\/Feature-67603-IntroduceTcaDescriptionColumn.html#feature-67603", "Feature: #67603 - Introduce TCA > ctrl > descriptionColumn" ], "feature-67658-introduce-dataprocessors-for-splitting-values": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-67658-IntroduceDataProcessorsForSplittingValues.html#feature-67658-introduce-dataprocessors-for-splitting-values", + "Changelog\/7.4\/Feature-67658-IntroduceDataProcessorsForSplittingValues.html#feature-67658", "Feature: #67658 - Introduce DataProcessors for splitting values" ], "feature-67662-dataprocessor-for-files": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-67662-DataProcessorForFiles.html#feature-67662-dataprocessor-for-files", + "Changelog\/7.4\/Feature-67662-DataProcessorForFiles.html#feature-67662", "Feature: #67662 - DataProcessor for files" ], "feature-67663-introduce-dataprocessor-for-media-galleries": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-67663-IntroduceDataProcessorForMediaGalleries.html#feature-67663-introduce-dataprocessor-for-media-galleries", + "Changelog\/7.4\/Feature-67663-IntroduceDataProcessorForMediaGalleries.html#feature-67663", "Feature: #67663 - Introduce DataProcessor for media galleries" ], "feature-67765-introduce-typolinkcodecservice": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-67765-IntroduceTypoLinkCodecService.html#feature-67765-introduce-typolinkcodecservice", + "Changelog\/7.4\/Feature-67765-IntroduceTypoLinkCodecService.html#feature-67765", "Feature: #67765 - Introduce TypoLinkCodecService" ], "feature-67808-introduce-application-classes-for-entry-points-and-equivalent-requesthandlers": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-67808-IntroduceApplicationClassesForEntryPointsAndEquivalentRequestHandlers.html#feature-67808-introduce-application-classes-for-entry-points-and-equivalent-requesthandlers", + "Changelog\/7.4\/Feature-67808-IntroduceApplicationClassesForEntryPointsAndEquivalentRequestHandlers.html#feature-67808", "Feature: #67808 - Introduce Application classes for entry points and equivalent RequestHandlers" ], "typo3-cms-frontend-http-application": [ @@ -54859,13 +55063,13 @@ "feature-67880-added-count-to-listnum": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-67880-AddedCountToListNum.html#feature-67880-added-count-to-listnum", + "Changelog\/7.4\/Feature-67880-AddedCountToListNum.html#feature-67880-1668719172", "Feature: #67880 - Added count to listNum" ], "feature-67932-new-rsaauth-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-67932-RsaauthApiRewrite.html#feature-67932-new-rsaauth-api", + "Changelog\/7.4\/Feature-67932-RsaauthApiRewrite.html#feature-67932-1668719172", "Feature: #67932 - New rsaauth API" ], "encode": [ @@ -54883,115 +55087,115 @@ "feature-67950-move-ce-table-options-from-flexform-to-tt-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-67950-MoveCETableOptionsFromFlexformToTt_content.html#feature-67950-move-ce-table-options-from-flexform-to-tt-content", + "Changelog\/7.4\/Feature-67950-MoveCETableOptionsFromFlexformToTt_content.html#feature-67950", "Feature: #67950 - Move CE table options from flexform to tt_content" ], "feature-68022-added-base-date-attribute-to-dateviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-68022-AddedBaseDateAttributeToDateViewHelper.html#feature-68022-added-base-date-attribute-to-dateviewhelper", + "Changelog\/7.4\/Feature-68022-AddedBaseDateAttributeToDateViewHelper.html#feature-68022", "Feature: #68022 - Added base date attribute to DateViewHelper" ], "feature-68047-emit-a-signal-for-each-mapped-object": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-68047-EmitASignalForEachMappedObject.html#feature-68047-emit-a-signal-for-each-mapped-object", + "Changelog\/7.4\/Feature-68047-EmitASignalForEachMappedObject.html#feature-68047", "Feature: #68047 - Emit a signal for each mapped object" ], "feature-68094-database-query-dataprocessor": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-68094-DatabaseQueryDataProcessor.html#feature-68094-database-query-dataprocessor", + "Changelog\/7.4\/Feature-68094-DatabaseQueryDataProcessor.html#feature-68094", "Feature: #68094 - Database Query DataProcessor" ], "feature-68184-paths-to-typo3-cms-package-and-document-root-can-be-specified-in-composer-json": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-68184-PathsToTypo3cmsPackageAndDocumentRootCanBeSpecifiedInComposerjson.html#feature-68184-paths-to-typo3-cms-package-and-document-root-can-be-specified-in-composer-json", + "Changelog\/7.4\/Feature-68184-PathsToTypo3cmsPackageAndDocumentRootCanBeSpecifiedInComposerjson.html#feature-68184", "Feature: #68184 - Paths to typo3\/cms package and document root can be specified in composer.json" ], "feature-68186-psr-7-support-for-eid-added": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-68186-PSR-7SupportForEIDAdded.html#feature-68186-psr-7-support-for-eid-added", + "Changelog\/7.4\/Feature-68186-PSR-7SupportForEIDAdded.html#feature-68186", "Feature: #68186 - PSR-7 support for eID added" ], "feature-68191-typoscript-select-option-languagefield-is-active-by-default": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-68191-TypoScriptSelectOptionLanguageFieldIsActiveByDefault.html#feature-68191-typoscript-select-option-languagefield-is-active-by-default", + "Changelog\/7.4\/Feature-68191-TypoScriptSelectOptionLanguageFieldIsActiveByDefault.html#feature-68191", "Feature: #68191 - TypoScript .select option languageField is active by default" ], "feature-68197-show-a-dialog-for-existing-files-on-upload": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-68197-ShowADialogForExistingFilesOnUpload.html#feature-68197-show-a-dialog-for-existing-files-on-upload", + "Changelog\/7.4\/Feature-68197-ShowADialogForExistingFilesOnUpload.html#feature-68197", "Feature: #68197 - Show a dialog for existing files on upload" ], "feature-68218-lock-edit-for-tt-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-68218-LockEditForTt_content.html#feature-68218-lock-edit-for-tt-content", + "Changelog\/7.4\/Feature-68218-LockEditForTt_content.html#feature-68218", "Feature: #68218 - Lock edit for tt_content" ], "feature-68282-make-databaserecordlist-configurable-to-be-editable": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-68282-MakeDatabaseRecordListConfigurableToBeEditable.html#feature-68282-make-databaserecordlist-configurable-to-be-editable", + "Changelog\/7.4\/Feature-68282-MakeDatabaseRecordListConfigurableToBeEditable.html#feature-68282", "Feature: #68282 - Make DatabaseRecordList configurable to be editable" ], "feature-68315-include-a-pagetsconfig-file-in-page-properties-like-ts-static-templates": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-68315-IncludeAPageTSconfigFileInPagePropertiesLikeTSStaticTemplates.html#feature-68315-include-a-pagetsconfig-file-in-page-properties-like-ts-static-templates", + "Changelog\/7.4\/Feature-68315-IncludeAPageTSconfigFileInPagePropertiesLikeTSStaticTemplates.html#feature-68315", "Feature: #68315 - Include a pageTSconfig file in page properties like TS static templates" ], "feature-68395-allow-real-copies-of-content-elements-into-foreign-languages": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-68395-AllowRealCopiesOfContentElementsIntoForeignLanguages.html#feature-68395-allow-real-copies-of-content-elements-into-foreign-languages", + "Changelog\/7.4\/Feature-68395-AllowRealCopiesOfContentElementsIntoForeignLanguages.html#feature-68395", "Feature: #68395 - Allow real copies of content elements into foreign languages" ], "feature-68589-add-cli-command-to-dump-class-loading-information": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-68589-AddCLICommandToDumpClassLoadingInformation.html#feature-68589-add-cli-command-to-dump-class-loading-information", + "Changelog\/7.4\/Feature-68589-AddCLICommandToDumpClassLoadingInformation.html#feature-68589", "Feature: #68589 - Add CLI command to dump class loading information" ], "feature-68600-introduced-resourcestorage-sanitizefilename-signal": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Feature-68600-IntroducedResourceStorageSanitizeFileNameSignal.html#feature-68600-introduced-resourcestorage-sanitizefilename-signal", + "Changelog\/7.4\/Feature-68600-IntroducedResourceStorageSanitizeFileNameSignal.html#feature-68600", "Feature: #68600 - Introduced ResourceStorage SanitizeFileName signal" ], "important-67216-default-minimum-log-level-is-set-to-warning": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Important-67216-DefaultMinimumLoglevelSetToWarning.html#important-67216-default-minimum-log-level-is-set-to-warning", + "Changelog\/7.4\/Important-67216-DefaultMinimumLoglevelSetToWarning.html#important-67216", "Important: #67216 - Default minimum log level is set to warning" ], "important-67445-dbal-support-for-alter-table-add-drop-key-added": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Important-67445-DBALSupportForALTERTABLEADDDROPKEYAdded.html#important-67445-dbal-support-for-alter-table-add-drop-key-added", + "Changelog\/7.4\/Important-67445-DBALSupportForALTERTABLEADDDROPKEYAdded.html#important-67445", "Important: #67445 - DBAL support for ALTER TABLE ADD\/DROP KEY added" ], "important-67852-remove-jsfunc-evalfield-js-from-formengine": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Important-67852-RemoveJsfuncevalfieldjsFromFormEngine.html#important-67852-remove-jsfunc-evalfield-js-from-formengine", + "Changelog\/7.4\/Important-67852-RemoveJsfuncevalfieldjsFromFormEngine.html#important-67852", "Important: #67852 - Remove jsfunc.evalfield.js from FormEngine" ], "important-68290-default-behavior-for-tca-suggest-wizard-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Important-68290-DefaultBehaviorForTCASuggestWizardChanged.html#important-68290-default-behavior-for-tca-suggest-wizard-changed", + "Changelog\/7.4\/Important-68290-DefaultBehaviorForTCASuggestWizardChanged.html#important-68290", "Important: #68290 - Default behavior for TCA suggest wizard changed" ], "important-68600-introduced-resourcestorage-sanitizefilename-signal": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.4\/Important-68600-IntroducedResourceStorageSanitizeFileNameSignal.html#important-68600-introduced-resourcestorage-sanitizefilename-signal", + "Changelog\/7.4\/Important-68600-IntroducedResourceStorageSanitizeFileNameSignal.html#important-68600", "Important: #68600 - Introduced ResourceStorage SanitizeFileName signal" ], "7-4-changes": [ @@ -55003,19 +55207,19 @@ "breaking-24186-htmlparser-fixattrib-class-list-does-not-assign-first-element-when-attribute-value-not-in-list": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-24186-HTMLparser-FixAttribclasslistDoesNotAssignFirstElementWhenAttributeValueNotInList.html#breaking-24186-htmlparser-fixattrib-class-list-does-not-assign-first-element-when-attribute-value-not-in-list", + "Changelog\/7.5\/Breaking-24186-HTMLparser-FixAttribclasslistDoesNotAssignFirstElementWhenAttributeValueNotInList.html#breaking-24186", "Breaking: #24186 - HTMLparser - fixAttrib.['class'].list does not assign first element, when attribute value not in list" ], "breaking-30863-streamlined-parameters-for-adding-inline-language-files": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-30863-StreamlineParameterOfInlineLanguageFiles.html#breaking-30863-streamlined-parameters-for-adding-inline-language-files", + "Changelog\/7.5\/Breaking-30863-StreamlineParameterOfInlineLanguageFiles.html#breaking-30863", "Breaking: #30863 - Streamlined parameters for adding inline language files" ], "breaking-52156-replaced-jumpurl-features-with-hooks": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-52156-ReplaceJumpUrlWithHooks.html#breaking-52156-replaced-jumpurl-features-with-hooks", + "Changelog\/7.5\/Breaking-52156-ReplaceJumpUrlWithHooks.html#breaking-52156", "Breaking: #52156 - Replaced JumpURL features with hooks" ], "jumpurl-handling": [ @@ -55045,283 +55249,283 @@ "breaking-63000-migrate-ext-cshmanual-to-extbase": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-63000-MigrateCshmanualToExtbase.html#breaking-63000-migrate-ext-cshmanual-to-extbase", + "Changelog\/7.5\/Breaking-63000-MigrateCshmanualToExtbase.html#breaking-63000", "Breaking: #63000 - Migrate EXT:cshmanual to Extbase" ], "breaking-65317-typoscriptparser-sortlist-sanitizes-input-on-numerical-sort": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-65317-TypoScriptParserSortListSanitizesInputOnNumericalSort.html#breaking-65317-typoscriptparser-sortlist-sanitizes-input-on-numerical-sort", + "Changelog\/7.5\/Breaking-65317-TypoScriptParserSortListSanitizesInputOnNumericalSort.html#breaking-65317", "Breaking: #65317 - TypoScriptParser sortList sanitizes input on numerical sort" ], "breaking-66190-remove-flash-and-chart-from-extjs": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-66190-RemoveFlashAndChartFromExtJS.html#breaking-66190-remove-flash-and-chart-from-extjs", + "Changelog\/7.5\/Breaking-66190-RemoveFlashAndChartFromExtJS.html#breaking-66190", "Breaking: #66190 - Remove flash and chart from ExtJS" ], "breaking-67098-correct-required-parameter-in-textfieldviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-67098-CorrectRequired-parameterInTextfieldViewHelper.html#breaking-67098-correct-required-parameter-in-textfieldviewhelper", + "Changelog\/7.5\/Breaking-67098-CorrectRequired-parameterInTextfieldViewHelper.html#breaking-67098", "Breaking: #67098 - Correct required-parameter in TextfieldViewHelper" ], "breaking-68354-uniform-extension-directory-structure-of-ext-indexed-search": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-68354-UniformExtensionDirectoryStructureOfExtIndexedSearch.html#breaking-68354-uniform-extension-directory-structure-of-ext-indexed-search", + "Changelog\/7.5\/Breaking-68354-UniformExtensionDirectoryStructureOfExtIndexedSearch.html#breaking-68354", "Breaking: #68354 - Uniform extension directory structure of EXT:indexed_search" ], "breaking-68401-sqlparser-moved-into-ext-dbal": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-68401-SqlParserMovedIntoEXTdbal.html#breaking-68401-sqlparser-moved-into-ext-dbal", + "Changelog\/7.5\/Breaking-68401-SqlParserMovedIntoEXTdbal.html#breaking-68401", "Breaking: #68401 - SqlParser moved into EXT:dbal" ], "breaking-68562-bool-values-need-to-be-cast-to-integer-for-mysql-strict-mode": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-68562-BoolValuesNeedToBeCastToIntegerForMySQLStrictMode.html#breaking-68562-bool-values-need-to-be-cast-to-integer-for-mysql-strict-mode", + "Changelog\/7.5\/Breaking-68562-BoolValuesNeedToBeCastToIntegerForMySQLStrictMode.html#breaking-68562", "Breaking: #68562 - Bool values need to be cast to integer for MySQL strict mode" ], "breaking-68571-removed-method-elementbrowser-getmsgbox": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-68571-RemoveElementBrowser-getMsgBox.html#breaking-68571-removed-method-elementbrowser-getmsgbox", + "Changelog\/7.5\/Breaking-68571-RemoveElementBrowser-getMsgBox.html#breaking-68571", "Breaking: #68571 - Removed method ElementBrowser->getMsgBox" ], "breaking-68812-old-backend-entrypoints-moved-to-deprecation-layer": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-68812-DeprecatedBackendEntrypointsMoved.html#breaking-68812-old-backend-entrypoints-moved-to-deprecation-layer", + "Changelog\/7.5\/Breaking-68812-DeprecatedBackendEntrypointsMoved.html#breaking-68812", "Breaking: #68812 - Old Backend Entrypoints moved to deprecation layer" ], "breaking-68814-remove-of-base-constant-typo3-url-org": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-68814-RemoveOfBaseConstantTYPO3_URL_ORG.html#breaking-68814-remove-of-base-constant-typo3-url-org", + "Changelog\/7.5\/Breaking-68814-RemoveOfBaseConstantTYPO3_URL_ORG.html#breaking-68814", "Breaking: #68814 - Remove of base constant TYPO3_URL_ORG" ], "breaking-69028-tca-type-select-drop-neg-foreign-table": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-69028-DropNegForeignTable.html#breaking-69028-tca-type-select-drop-neg-foreign-table", + "Changelog\/7.5\/Breaking-69028-DropNegForeignTable.html#breaking-69028", "Breaking: #69028 - TCA type select - Drop neg_foreign_table" ], "breaking-69057-deprecate-iconutility-and-move-methods-into-iconfactory": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-69057-DeprecateIconUtilityAndMoveMethodsIntoIconFactory.html#breaking-69057-deprecate-iconutility-and-move-methods-into-iconfactory", + "Changelog\/7.5\/Breaking-69057-DeprecateIconUtilityAndMoveMethodsIntoIconFactory.html#breaking-69057", "Breaking: #69057 - Deprecate IconUtility and move methods into IconFactory" ], "breaking-69083-renamed-identifier-for-filelist-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-69083-RenamedIdentifierForFilenameModule.html#breaking-69083-renamed-identifier-for-filelist-module", + "Changelog\/7.5\/Breaking-69083-RenamedIdentifierForFilenameModule.html#breaking-69083", "Breaking: #69083 - Renamed identifier for filelist module" ], "breaking-69148-backend-module-dispatching-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-69148-BackendModuleDispatchingRemoved.html#breaking-69148-backend-module-dispatching-removed", + "Changelog\/7.5\/Breaking-69148-BackendModuleDispatchingRemoved.html#breaking-69148", "Breaking: #69148 - Backend Module Dispatching removed" ], "breaking-69161-removed-includecsh-setting-from-containerviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-69161-RemoveIncludeCshFromContainerViewHelper.html#breaking-69161-removed-includecsh-setting-from-containerviewhelper", + "Changelog\/7.5\/Breaking-69161-RemoveIncludeCshFromContainerViewHelper.html#breaking-69161", "Breaking: #69161 - Removed includeCsh setting from ContainerViewHelper" ], "breaking-69168-removed-non-tabbed-view-of-content-element-wizard": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-69168-Non-tabbedViewOfContentElementWizardRemoved.html#breaking-69168-removed-non-tabbed-view-of-content-element-wizard", + "Changelog\/7.5\/Breaking-69168-Non-tabbedViewOfContentElementWizardRemoved.html#breaking-69168", "Breaking: #69168 - Removed non-tabbed view of Content Element Wizard" ], "breaking-69224-fix-wrong-usage-of-enumerations-in-informationstatus-mapstatustoint": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-69224-FixWrongUsageOfEnumerationsInInformationStatusmapStatusToInt.html#breaking-69224-fix-wrong-usage-of-enumerations-in-informationstatus-mapstatustoint", + "Changelog\/7.5\/Breaking-69224-FixWrongUsageOfEnumerationsInInformationStatusmapStatusToInt.html#breaking-69224", "Breaking: #69224 - Fix wrong usage of enumerations in InformationStatus::mapStatusToInt()" ], "breaking-69276-elementbrowsercontroller-browser-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-69276-ElementBrowserControllerbrowserRemoved.html#breaking-69276-elementbrowsercontroller-browser-removed", + "Changelog\/7.5\/Breaking-69276-ElementBrowserControllerbrowserRemoved.html#breaking-69276", "Breaking: #69276 - ElementBrowserController::$browser removed" ], "breaking-69291-changed-registration-of-backend-module-icons": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-69291-ChangedRegistrationOfBackendModuleIcons.html#breaking-69291-changed-registration-of-backend-module-icons", + "Changelog\/7.5\/Breaking-69291-ChangedRegistrationOfBackendModuleIcons.html#breaking-69291", "Breaking: #69291 - Changed registration of backend module icons" ], "breaking-69315-elementbrowser-main-protected": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-69315-ElementBrowsermain_Protected.html#breaking-69315-elementbrowser-main-protected", + "Changelog\/7.5\/Breaking-69315-ElementBrowsermain_Protected.html#breaking-69315", "Breaking: #69315 - ElementBrowser::main_* protected" ], "breaking-69401-adopt-ext-form-to-support-the-extbase-fluid-mvc-stack": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-69401-AdoptFormToSupportTheExtbaseFluidMVCStack.html#breaking-69401-adopt-ext-form-to-support-the-extbase-fluid-mvc-stack", + "Changelog\/7.5\/Breaking-69401-AdoptFormToSupportTheExtbaseFluidMVCStack.html#breaking-69401", "Breaking: #69401 - Adopt ext:form to support the Extbase\/ Fluid MVC stack" ], "breaking-69561-replace-sprite-icons-with-iconfactory-in-contextmenu": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-69561-ReplaceSpriteIconsWithIconFactoryInContextMenu.html#breaking-69561-replace-sprite-icons-with-iconfactory-in-contextmenu", + "Changelog\/7.5\/Breaking-69561-ReplaceSpriteIconsWithIconFactoryInContextMenu.html#breaking-69561", "Breaking: #69561 - Replace sprite icons with IconFactory in ContextMenu" ], "breaking-69568-formengine-related-classes": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-69568-FormEngine.html#breaking-69568-formengine-related-classes", + "Changelog\/7.5\/Breaking-69568-FormEngine.html#breaking-69568", "Breaking: #69568 - FormEngine related classes" ], "breaking-69699-tca-ctrl-typeicons-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-69699-TcaCtrlTypeicons.html#breaking-69699-tca-ctrl-typeicons-removed", + "Changelog\/7.5\/Breaking-69699-TcaCtrlTypeicons.html#breaking-69699", "Breaking: #69699 - TCA ctrl typeicons removed" ], "breaking-69795-unused-dtm-tabmenu-code-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-69795-UnusedDTMTabmenuCodeRemoved.html#breaking-69795-unused-dtm-tabmenu-code-removed", + "Changelog\/7.5\/Breaking-69795-UnusedDTMTabmenuCodeRemoved.html#breaking-69795", "Breaking: #69795 - Unused DTM Tabmenu code removed" ], "breaking-69904-remove-setting-diff-path-from-defaultconfiguration": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-69904-RemoveSettingDiff_pathFromDefaultConfiguration.html#breaking-69904-remove-setting-diff-path-from-defaultconfiguration", + "Changelog\/7.5\/Breaking-69904-RemoveSettingDiff_pathFromDefaultConfiguration.html#breaking-69904", "Breaking: #69904 - Remove Setting diff_path from DefaultConfiguration" ], "breaking-69930-remove-option-servertimezone": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Breaking-69930-RemoveOptionServerTimeZone.html#breaking-69930-remove-option-servertimezone", + "Changelog\/7.5\/Breaking-69930-RemoveOptionServerTimeZone.html#breaking-69930", "Breaking: #69930 - Remove option \"serverTimeZone\"" ], "deprecation-55419-streamline-file-conflict-mode-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Deprecation-55419-StreamlineFileConflictModeHandling.html#deprecation-55419-streamline-file-conflict-mode-handling", + "Changelog\/7.5\/Deprecation-55419-StreamlineFileConflictModeHandling.html#deprecation-55419", "Deprecation: #55419 - Streamline file conflict mode handling" ], "deprecation-66588-post-data-in-selectviewhelper-should-have-higher-priority-than-value-value": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Deprecation-66588-POSTDataInSelectviewhelperShouldHaveHigherPriorityThanValueValue.html#deprecation-66588-post-data-in-selectviewhelper-should-have-higher-priority-than-value-value", + "Changelog\/7.5\/Deprecation-66588-POSTDataInSelectviewhelperShouldHaveHigherPriorityThanValueValue.html#deprecation-66588", "Deprecation: #66588 - POST Data in selectviewhelper should have higher priority than \"value\" value" ], "deprecation-68128-generalutility-slash-related-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Deprecation-68128-GeneralUtilitySlash-relatedMethods.html#deprecation-68128-generalutility-slash-related-methods", + "Changelog\/7.5\/Deprecation-68128-GeneralUtilitySlash-relatedMethods.html#deprecation-68128", "Deprecation: #68128 - GeneralUtility slash-related methods" ], "deprecation-68760-deprecate-class-modulesettings": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Deprecation-68760-ModuleSettings.html#deprecation-68760-deprecate-class-modulesettings", + "Changelog\/7.5\/Deprecation-68760-ModuleSettings.html#deprecation-68760", "Deprecation: #68760 - Deprecate class ModuleSettings" ], "deprecation-68804-cli-related-constants-and-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Deprecation-68804-CLI-relatedConstantsAndMethods.html#deprecation-68804-cli-related-constants-and-methods", + "Changelog\/7.5\/Deprecation-68804-CLI-relatedConstantsAndMethods.html#deprecation-68804", "Deprecation: #68804 - CLI-related constants and methods" ], "deprecation-68860-deprecate-selectimage-initeventhandler": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Deprecation-68860-DeprecateSelectImageinitEventHandler.html#deprecation-68860-deprecate-selectimage-initeventhandler", + "Changelog\/7.5\/Deprecation-68860-DeprecateSelectImageinitEventHandler.html#deprecation-68860", "Deprecation: #68860 - Deprecate SelectImage.initEventHandler" ], "deprecation-69028-relationhandler-convertposneg": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Deprecation-69028-RelationHandlerConvertPosNeg.html#deprecation-69028-relationhandler-convertposneg", + "Changelog\/7.5\/Deprecation-69028-RelationHandlerConvertPosNeg.html#deprecation-69028", "Deprecation: #69028 - RelationHandler convertPosNeg()" ], "deprecation-69057-deprecate-iconutility-and-move-methods-into-iconfactory": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Deprecation-69057-DeprecateIconUtilityAndMoveMethodsIntoIconFactory.html#deprecation-69057-deprecate-iconutility-and-move-methods-into-iconfactory", + "Changelog\/7.5\/Deprecation-69057-DeprecateIconUtilityAndMoveMethodsIntoIconFactory.html#deprecation-69057", "Deprecation: #69057 - Deprecate IconUtility and move methods into IconFactory" ], "deprecation-69078-templateservice-temppath": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Deprecation-69078-TemplateService-tempPath.html#deprecation-69078-templateservice-temppath", + "Changelog\/7.5\/Deprecation-69078-TemplateService-tempPath.html#deprecation-69078", "Deprecation: #69078 - TemplateService::$tempPath" ], "deprecation-69262-move-marker-substitution-functionality-to-own-class": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Deprecation-69262-MoveMarkerSubstitutionFunctionalityToOwnClass.html#deprecation-69262-move-marker-substitution-functionality-to-own-class", + "Changelog\/7.5\/Deprecation-69262-MoveMarkerSubstitutionFunctionalityToOwnClass.html#deprecation-69262", "Deprecation: #69262 - Move marker substitution functionality to own class" ], "deprecation-69269-deprecate-backendutility-getpathtype-web-nonweb": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Deprecation-69269-DeprecateBackendUtilitygetPathType_web_nonweb.html#deprecation-69269-deprecate-backendutility-getpathtype-web-nonweb", + "Changelog\/7.5\/Deprecation-69269-DeprecateBackendUtilitygetPathType_web_nonweb.html#deprecation-69269", "Deprecation: #69269 - Deprecate BackendUtility::getPathType_web_nonweb" ], "deprecation-69371-ext-form-element-imagebutton": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Deprecation-69371-DeprecateFormElementImagebutton.html#deprecation-69371-ext-form-element-imagebutton", + "Changelog\/7.5\/Deprecation-69371-DeprecateFormElementImagebutton.html#deprecation-69371", "Deprecation: #69371 - ext:Form element IMAGEBUTTON" ], "deprecation-69401-adopt-ext-form-to-support-the-extbase-fluid-mvc-stack": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Deprecation-69401-AdoptFormToSupportTheExtbaseFluidMVCStack.html#deprecation-69401-adopt-ext-form-to-support-the-extbase-fluid-mvc-stack", + "Changelog\/7.5\/Deprecation-69401-AdoptFormToSupportTheExtbaseFluidMVCStack.html#deprecation-69401", "Deprecation: #69401 - Adopt ext:form to support the Extbase\/ Fluid MVC stack" ], "deprecation-69535-deprecate-typo3-cms-fluid-viewhelpers-be-buttons-iconviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Deprecation-69535-DeprecateTYPO3CMSFluidViewHelpersBeButtonsIconViewHelper.html#deprecation-69535-deprecate-typo3-cms-fluid-viewhelpers-be-buttons-iconviewhelper", + "Changelog\/7.5\/Deprecation-69535-DeprecateTYPO3CMSFluidViewHelpersBeButtonsIconViewHelper.html#deprecation-69535", "Deprecation: #69535 - Deprecate \\TYPO3\\CMS\\Fluid\\ViewHelpers\\Be\\Buttons\\IconViewHelper" ], "deprecation-69561-replace-sprite-icons-with-iconfactory-in-contextmenu": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Deprecation-69561-ReplaceSpriteIconsWithIconFactoryInContextMenu.html#deprecation-69561-replace-sprite-icons-with-iconfactory-in-contextmenu", + "Changelog\/7.5\/Deprecation-69561-ReplaceSpriteIconsWithIconFactoryInContextMenu.html#deprecation-69561", "Deprecation: #69561 - Replace sprite icons with IconFactory in ContextMenu" ], "deprecation-69562-deprecate-helper-methods-for-redundant-csrf-protection": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Deprecation-69562-DeprecateHelperMethodsForRedundantCSRFProtection.html#deprecation-69562-deprecate-helper-methods-for-redundant-csrf-protection", + "Changelog\/7.5\/Deprecation-69562-DeprecateHelperMethodsForRedundantCSRFProtection.html#deprecation-69562", "Deprecation: #69562 - Deprecate helper methods for redundant CSRF protection" ], "deprecation-69568-various-formengine-related-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Deprecation-69568-VariousFormEngineRelatedMethods.html#deprecation-69568-various-formengine-related-methods", + "Changelog\/7.5\/Deprecation-69568-VariousFormEngineRelatedMethods.html#deprecation-69568", "Deprecation: #69568 - Various FormEngine related methods" ], "deprecation-69705-add-unified-refresh-icon": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Deprecation-69705-AddUnifiedRefreshIcon.html#deprecation-69705-add-unified-refresh-icon", + "Changelog\/7.5\/Deprecation-69705-AddUnifiedRefreshIcon.html#deprecation-69705", "Deprecation: #69705 - Add unified refresh icon" ], "deprecation-69736-select-option-iconsinoptiontags-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Deprecation-69736-SelectOptionIconsInOptionTagsRemoved.html#deprecation-69736-select-option-iconsinoptiontags-removed", + "Changelog\/7.5\/Deprecation-69736-SelectOptionIconsInOptionTagsRemoved.html#deprecation-69736", "Deprecation: #69736 - Select option iconsInOptionTags removed" ], "deprecation-69754-deprecate-relative-path-to-extension-directory-and-using-filename-only-in-tca-ctrl-iconfile": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Deprecation-69754-TcaCtrlIconfileUsingRelativePathToExtAndFilenameOnly.html#deprecation-69754-deprecate-relative-path-to-extension-directory-and-using-filename-only-in-tca-ctrl-iconfile", + "Changelog\/7.5\/Deprecation-69754-TcaCtrlIconfileUsingRelativePathToExtAndFilenameOnly.html#deprecation-69754", "Deprecation: #69754 - Deprecate relative path to extension directory and using filename only in TCA ctrl iconfile" ], "relative-paths": [ @@ -55339,97 +55543,97 @@ "deprecation-69938-hide-l10n-siblings-flexformdisplaycond": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Deprecation-69938-HIDE_L10N_SIBLINGSFlexFormdisplayCond.html#deprecation-69938-hide-l10n-siblings-flexformdisplaycond", + "Changelog\/7.5\/Deprecation-69938-HIDE_L10N_SIBLINGSFlexFormdisplayCond.html#deprecation-69938", "Deprecation: #69938 - HIDE_L10N_SIBLINGS FlexFormdisplayCond" ], "feature-16525-add-conditions-to-include-typoscript": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-16525-AddConditionsToINCLUDE_TYPOSCRIPT.html#feature-16525-add-conditions-to-include-typoscript", + "Changelog\/7.5\/Feature-16525-AddConditionsToINCLUDE_TYPOSCRIPT.html#feature-16525", "Feature: #16525 - Add conditions to INCLUDE_TYPOSCRIPT" ], "feature-19494-add-selectmmquery-method-to-databaseconnection": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-19494-AddSELECTmmQueryMethodToDatabaseConnection.html#feature-19494-add-selectmmquery-method-to-databaseconnection", + "Changelog\/7.5\/Feature-19494-AddSELECTmmQueryMethodToDatabaseConnection.html#feature-19494", "Feature: #19494 - Add SELECTmmQuery method to DatabaseConnection" ], "feature-25341-scheduler-task-to-optimize-database-tables": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-25341-SchedulerTaskToOptimizeDatabaseTables.html#feature-25341-scheduler-task-to-optimize-database-tables", + "Changelog\/7.5\/Feature-25341-SchedulerTaskToOptimizeDatabaseTables.html#feature-25341", "Feature: #25341 - Scheduler task to optimize database tables" ], "feature-28243-introduce-tca-option-to-disable-age-display-of-dates-per-field": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-28243-IntroduceTcaOptionToDisableAgeDisplay.html#feature-28243-introduce-tca-option-to-disable-age-display-of-dates-per-field", + "Changelog\/7.5\/Feature-28243-IntroduceTcaOptionToDisableAgeDisplay.html#feature-28243", "Feature: #28243 - Introduce TCA option to disable age display of dates per field" ], "feature-31100-ext-form-integrate-multiline-support-for-textblock-in-form-wizard": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-31100-IntegrateMultilineSupportForTEXTBLOCKInFormWizard.html#feature-31100-ext-form-integrate-multiline-support-for-textblock-in-form-wizard", + "Changelog\/7.5\/Feature-31100-IntegrateMultilineSupportForTEXTBLOCKInFormWizard.html#feature-31100", "Feature: #31100 - ext:form Integrate multiline support for TEXTBLOCK in form wizard" ], "feature-38732-fluid-based-content-elements-introduced": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-38732-Fluid-basedContentElementsIntroduced.html#feature-38732-fluid-based-content-elements-introduced", + "Changelog\/7.5\/Feature-38732-Fluid-basedContentElementsIntroduced.html#feature-38732", "Feature: #38732 - Fluid-based Content Elements Introduced" ], "feature-47812-query-support-for-between-added": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-47812-QuerySupportForBETWEENAdded.html#feature-47812-query-support-for-between-added", + "Changelog\/7.5\/Feature-47812-QuerySupportForBETWEENAdded.html#feature-47812", "Feature: #47812 - Query support for BETWEEN added" ], "feature-52217-signal-for-pre-processing-linkvalidator-records": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-52217-SignalForPreProcessingLinkvalidatorRecords.html#feature-52217-signal-for-pre-processing-linkvalidator-records", + "Changelog\/7.5\/Feature-52217-SignalForPreProcessingLinkvalidatorRecords.html#feature-52217", "Feature: #52217 - Signal for pre processing linkvalidator records" ], "feature-53406-ext-form-add-placeholder-attribute-to-some-textfields-in-wizard": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-53406-AddPlaceholderAttributeToSomeTextfieldsInWizard.html#feature-53406-ext-form-add-placeholder-attribute-to-some-textfields-in-wizard", + "Changelog\/7.5\/Feature-53406-AddPlaceholderAttributeToSomeTextfieldsInWizard.html#feature-53406", "Feature: #53406 - ext:form Add placeholder attribute to some textfields in wizard" ], "feature-56282-language-selector-for-pageview-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-56282-LanguageSelectorForPageviewModule.html#feature-56282-language-selector-for-pageview-module", + "Changelog\/7.5\/Feature-56282-LanguageSelectorForPageviewModule.html#feature-56282", "Feature: #56282 - Language selector for pageview module" ], "feature-56726-trigger-metadata-extraction-after-file-upload": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-56726-TriggerMetadataExtractionAfterFileUpload.html#feature-56726-trigger-metadata-extraction-after-file-upload", + "Changelog\/7.5\/Feature-56726-TriggerMetadataExtractionAfterFileUpload.html#feature-56726", "Feature: #56726 - Trigger metadata extraction after file upload" ], "feature-57632-include-inline-language-label-files-with-typoscript": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-57632-AddInlineLanguageLabelFilesWithTypoScript.html#feature-57632-include-inline-language-label-files-with-typoscript", + "Changelog\/7.5\/Feature-57632-AddInlineLanguageLabelFilesWithTypoScript.html#feature-57632", "Feature: #57632 - Include inline language label files with TypoScript" ], "feature-59144-previewing-workspace-records-using-page-tsconfig": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-59144-PageTSconfigWorkspacePreview.html#feature-59144-previewing-workspace-records-using-page-tsconfig", + "Changelog\/7.5\/Feature-59144-PageTSconfigWorkspacePreview.html#feature-59144", "Feature: #59144 - Previewing workspace records using Page TSconfig" ], "feature-59591-image-quality-definable-per-sourcecollection": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-59591-ImageQualityDefinablePerSourceCollection.html#feature-59591-image-quality-definable-per-sourcecollection", + "Changelog\/7.5\/Feature-59591-ImageQualityDefinablePerSourceCollection.html#feature-59591", "Feature: #59591 - Image quality definable per sourceCollection" ], "feature-61799-improved-handling-of-online-media": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-61799-ImprovedHandlingOfOnlineMedia.html#feature-61799-improved-handling-of-online-media", + "Changelog\/7.5\/Feature-61799-ImprovedHandlingOfOnlineMedia.html#feature-61799", "Feature: #61799 - Improved handling of online media" ], "youtube-and-vimeo-support": [ @@ -55465,79 +55669,79 @@ "feature-61993-css-page-style-is-now-only-included-on-the-affected-page": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-61993-CssPageStyleNowPageSpecific.html#feature-61993-css-page-style-is-now-only-included-on-the-affected-page", + "Changelog\/7.5\/Feature-61993-CssPageStyleNowPageSpecific.html#feature-61993", "Feature: #61993 - _CSS_PAGE_STYLE is now only included on the affected page" ], "feature-63395-html5-video-poster-preview-image": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-63395-Html5VideoPosterPreviewImage.html#feature-63395-html5-video-poster-preview-image", + "Changelog\/7.5\/Feature-63395-Html5VideoPosterPreviewImage.html#feature-63395", "Feature: #63395 - HTML5 video poster preview image" ], "feature-64535-irre-suppress-and-override-usecombination-warning-via-tca-settings": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-64535-IrreSuppressAndOverrideUseCombinationWarningViaTcaSettings.html#feature-64535-irre-suppress-and-override-usecombination-warning-via-tca-settings", + "Changelog\/7.5\/Feature-64535-IrreSuppressAndOverrideUseCombinationWarningViaTcaSettings.html#feature-64535", "Feature: #64535 - IRRE: Suppress and override useCombination warning via TCA settings" ], "feature-64726-added-support-for-multiple-flashmessage-queues": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-64726-UsingArbitraryFlashmessageQueues.html#feature-64726-added-support-for-multiple-flashmessage-queues", + "Changelog\/7.5\/Feature-64726-UsingArbitraryFlashmessageQueues.html#feature-64726", "Feature: #64726 - Added support for multiple FlashMessage queues" ], "feature-58621-unified-backend-routing": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-65493-BackendRouting.html#feature-58621-unified-backend-routing", + "Changelog\/7.5\/Feature-65493-BackendRouting.html#feature-58621-1668719172", "Feature: #58621 - Unified Backend Routing" ], "feature-65791-use-php-configured-sendmail-path-if-mail-transport-sendmail-is-active": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-65791-UsePHPConfiguredSendmailPathIfMAILtransportSendmailIsActive.html#feature-65791-use-php-configured-sendmail-path-if-mail-transport-sendmail-is-active", + "Changelog\/7.5\/Feature-65791-UsePHPConfiguredSendmailPathIfMAILtransportSendmailIsActive.html#feature-65791", "Feature: #65791 - Use PHP configured sendmail path, if [MAIL][transport] = sendmail is active" ], "feature-66366-introduced-mediaviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-66366-IntroducedMediaViewHelper.html#feature-66366-introduced-mediaviewhelper", + "Changelog\/7.5\/Feature-66366-IntroducedMediaViewHelper.html#feature-66366", "Feature: #66366 - Introduced MediaViewHelper" ], "feature-66371-introduce-autoplay-option-for-video-and-audio-files": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-66371-IntroduceAutoplayOptionForVideoAndAudioFiles.html#feature-66371-introduce-autoplay-option-for-video-and-audio-files", + "Changelog\/7.5\/Feature-66371-IntroduceAutoplayOptionForVideoAndAudioFiles.html#feature-66371", "Feature: #66371 - Introduce autoplay option for video and audio files" ], "feature-67056-add-option-to-disable-move-buttons-tca-group-type": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-67056-AddOptionToDisableMoveButtonsTCAGroupType.html#feature-67056-add-option-to-disable-move-buttons-tca-group-type", + "Changelog\/7.5\/Feature-67056-AddOptionToDisableMoveButtonsTCAGroupType.html#feature-67056", "Feature: #67056 - Add option to disable move buttons TCA group type" ], "feature-67875-override-categoryregistry-entries": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-67875-OverrideCategoryRegistryEntry.html#feature-67875-override-categoryregistry-entries", + "Changelog\/7.5\/Feature-67875-OverrideCategoryRegistryEntry.html#feature-67875", "Feature: #67875 - Override CategoryRegistry entries" ], "feature-67880-added-count-to-split": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-67880-AddedCountToSplit.html#feature-67880-added-count-to-split", + "Changelog\/7.5\/Feature-67880-AddedCountToSplit.html#feature-67880", "Feature: #67880 - Added count to split" ], "feature-67932-rendertype-for-rsa-encrypted-input-fields": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-68166-RenderTypeForRsaEncryptedInputFields.html#feature-67932-rendertype-for-rsa-encrypted-input-fields", + "Changelog\/7.5\/Feature-68166-RenderTypeForRsaEncryptedInputFields.html#feature-67932", "Feature: #67932 - RenderType for rsa encrypted input fields" ], "feature-68429-introduced-avatarprovider-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-68429-IntroducedAvatarProviderAPI.html#feature-68429-introduced-avatarprovider-api", + "Changelog\/7.5\/Feature-68429-IntroducedAvatarProviderAPI.html#feature-68429", "Feature: #68429 - Introduced AvatarProvider API" ], "registering-an-avatar-provider": [ @@ -55555,19 +55759,19 @@ "feature-68700-autoload-definition-can-be-provided-in-ext-emconf-php": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-68700-AutoloadDefinitionCanBeProvidedInExt_emconfphp.html#feature-68700-autoload-definition-can-be-provided-in-ext-emconf-php", + "Changelog\/7.5\/Feature-68700-AutoloadDefinitionCanBeProvidedInExt_emconfphp.html#feature-68700", "Feature: #68700 - Autoload definition can be provided in ext_emconf.php" ], "feature-68724-em-get-preconfigured-distribution-shows-only-distributions-that-suite-the-current-typo3-version": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-68724-EMShowsOnlyDistributionsThatSuiteTheCurrentTYPO3Version.html#feature-68724-em-get-preconfigured-distribution-shows-only-distributions-that-suite-the-current-typo3-version", + "Changelog\/7.5\/Feature-68724-EMShowsOnlyDistributionsThatSuiteTheCurrentTYPO3Version.html#feature-68724", "Feature: #68724 - EM: \"Get preconfigured distribution\" shows only distributions that suite the current TYPO3 version" ], "feature-68741-introduce-new-iconfactory-as-base-to-replace-the-icon-skinning-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-68741-IntroduceNewIconFactoryAsBaseForReplaceTheIconSkinningAPI.html#feature-68741-introduce-new-iconfactory-as-base-to-replace-the-icon-skinning-api", + "Changelog\/7.5\/Feature-68741-IntroduceNewIconFactoryAsBaseForReplaceTheIconSkinningAPI.html#feature-68741", "Feature: #68741 - Introduce new IconFactory as base to replace the icon skinning API" ], "iconprovider": [ @@ -55615,61 +55819,61 @@ "feature-68746-add-annotation-for-cli-only-commands": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-68746-AddAnnotationForCLIOnlyCommands.html#feature-68746-add-annotation-for-cli-only-commands", + "Changelog\/7.5\/Feature-68746-AddAnnotationForCLIOnlyCommands.html#feature-68746", "Feature: #68746 - Add annotation for CLI only commands" ], "feature-68756-add-config-base-to-stdwrap": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-68756-AddConfigBaseToStdWrap.html#feature-68756-add-config-base-to-stdwrap", + "Changelog\/7.5\/Feature-68756-AddConfigBaseToStdWrap.html#feature-68756", "Feature: #68756 - Add config \"base\" to stdWrap" ], "feature-68757-provide-untouched-newpassword-in-felogin-password-changed-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-68757-ProvideUntouchedNewPasswordInFeloginPasswordChangedHook.html#feature-68757-provide-untouched-newpassword-in-felogin-password-changed-hook", + "Changelog\/7.5\/Feature-68757-ProvideUntouchedNewPasswordInFeloginPasswordChangedHook.html#feature-68757", "Feature: #68757 - Provide untouched newPassword in felogin password_changed hook" ], "feature-68773-show-a-special-image-for-official-distributions-in-extension-manager": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-68773-ShowASpecialImageForOfficialDistributionsInExtensionManager.html#feature-68773-show-a-special-image-for-official-distributions-in-extension-manager", + "Changelog\/7.5\/Feature-68773-ShowASpecialImageForOfficialDistributionsInExtensionManager.html#feature-68773", "Feature: #68773 - Show a special image for official distributions in Extension Manager" ], "feature-68804-colored-output-for-cli-relevant-error-messages": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-68804-ColoredOutputForCLI-relevantErrorMessages.html#feature-68804-colored-output-for-cli-relevant-error-messages", + "Changelog\/7.5\/Feature-68804-ColoredOutputForCLI-relevantErrorMessages.html#feature-68804", "Feature: #68804 - Colored output for CLI-relevant error messages" ], "feature-68837-closures-for-command-line-scripts": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-68837-ClosuresForCommandLineScripts.html#feature-68837-closures-for-command-line-scripts", + "Changelog\/7.5\/Feature-68837-ClosuresForCommandLineScripts.html#feature-68837", "Feature: #68837 - Closures for Command Line Scripts" ], "feature-69095-introduce-icon-state-for-iconfactory": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-69095-IntroduceIconStateForIconFactory.html#feature-69095-introduce-icon-state-for-iconfactory", + "Changelog\/7.5\/Feature-69095-IntroduceIconStateForIconFactory.html#feature-69095", "Feature: #69095 - Introduce icon state for IconFactory" ], "feature-69119-add-a-basic-search-to-the-filelist-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-69119-AddABasicSearchToTheFilelistModule.html#feature-69119-add-a-basic-search-to-the-filelist-module", + "Changelog\/7.5\/Feature-69119-AddABasicSearchToTheFilelistModule.html#feature-69119", "Feature: #69119 - Add a basic search to the filelist module" ], "feature-69389-add-spinning-feature-for-icon": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-69389-AddSpinningFeatureForIcon.html#feature-69389-add-spinning-feature-for-icon", + "Changelog\/7.5\/Feature-69389-AddSpinningFeatureForIcon.html#feature-69389", "Feature: #69389 - Add spinning feature for icon" ], "feature-69401-adopt-ext-form-to-support-the-extbase-fluid-mvc-stack": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-69401-AdoptFormToSupportTheExtbaseFluidMVCStack.html#feature-69401-adopt-ext-form-to-support-the-extbase-fluid-mvc-stack", + "Changelog\/7.5\/Feature-69401-AdoptFormToSupportTheExtbaseFluidMVCStack.html#feature-69401", "Feature: #69401 - Adopt ext:form to support the Extbase\/ Fluid MVC stack" ], "short-summery": [ @@ -55711,37 +55915,37 @@ "feature-69409-ext-form-allows-value-attribute-for-option-object-in-wizard": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-69409-AllowValueAttributeForOPTIONObjectInWizard.html#feature-69409-ext-form-allows-value-attribute-for-option-object-in-wizard", + "Changelog\/7.5\/Feature-69409-AllowValueAttributeForOPTIONObjectInWizard.html#feature-69409", "Feature: #69409 - ext:form allows value attribute for OPTION object in wizard" ], "feature-69416-plugins-abstractplugin-can-load-custom-language-file": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-69416-MakeAbstractPluginpi_loadLLLoadLabelsFromCustomFile.html#feature-69416-plugins-abstractplugin-can-load-custom-language-file", + "Changelog\/7.5\/Feature-69416-MakeAbstractPluginpi_loadLLLoadLabelsFromCustomFile.html#feature-69416", "Feature: #69416 - Plugins (AbstractPlugin) can load custom language file" ], "feature-69459-show-tt-content-preview-in-page-module-via-fluid": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-69459-ShowTt_contentPreviewInPageModuleViaFluid.html#feature-69459-show-tt-content-preview-in-page-module-via-fluid", + "Changelog\/7.5\/Feature-69459-ShowTt_contentPreviewInPageModuleViaFluid.html#feature-69459", "Feature: #69459 - Show tt_content preview in page module via Fluid" ], "feature-69496-extract-title-from-pdf-when-indexing-in-ext-indexed-search": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-69496-ExtractTitleFromPDFWhenIndexing.html#feature-69496-extract-title-from-pdf-when-indexing-in-ext-indexed-search", + "Changelog\/7.5\/Feature-69496-ExtractTitleFromPDFWhenIndexing.html#feature-69496", "Feature: #69496 - Extract title from PDF when indexing in ext:indexed_search" ], "feature-69512-support-typoscript-files-as-text-file-type": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-69512-SupportTyposcriptFilesAsTextFileType.html#feature-69512-support-typoscript-files-as-text-file-type", + "Changelog\/7.5\/Feature-69512-SupportTyposcriptFilesAsTextFileType.html#feature-69512", "Feature: #69512 - Support *.typoscript files as text file type" ], "feature-69543-introduced-globals-typo3-conf-vars-sys-mediafile-ext": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-69543-IntroducedGLOBALSTYPO3_CONF_VARSSYSmediafile_ext.html#feature-69543-introduced-globals-typo3-conf-vars-sys-mediafile-ext", + "Changelog\/7.5\/Feature-69543-IntroducedGLOBALSTYPO3_CONF_VARSSYSmediafile_ext.html#feature-69543", "Feature: #69543 - Introduced $GLOBALS['TYPO3_CONF_VARS']['SYS']['mediafile_ext']" ], "tca-example": [ @@ -55759,103 +55963,103 @@ "feature-69568-formengine-data-processing": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-69568-FormEngineDataProcessing.html#feature-69568-formengine-data-processing", + "Changelog\/7.5\/Feature-69568-FormEngineDataProcessing.html#feature-69568", "Feature: #69568 - FormEngine data processing" ], "feature-69602-simplify-handling-of-backend-layouts-in-frontend": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-69602-SimplifyHandlingOfBackendLayoutsInFrontend.html#feature-69602-simplify-handling-of-backend-layouts-in-frontend", + "Changelog\/7.5\/Feature-69602-SimplifyHandlingOfBackendLayoutsInFrontend.html#feature-69602", "Feature: #69602 - Simplify handling of backend layouts in frontend" ], "feature-69730-introduce-uniqueid-generator": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-69730-IntroduceUniqueIdGenerator.html#feature-69730-introduce-uniqueid-generator", + "Changelog\/7.5\/Feature-69730-IntroduceUniqueIdGenerator.html#feature-69730", "Feature: #69730 - Introduce uniqueId generator" ], "feature-69855-dispatcher-for-backend-routing-added": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-69855-DispatcherForBackendRoutingAdded.html#feature-69855-dispatcher-for-backend-routing-added", + "Changelog\/7.5\/Feature-69855-DispatcherForBackendRoutingAdded.html#feature-69855", "Feature: #69855 - Dispatcher for Backend Routing added" ], "feature-69918-add-psr-7-based-dispatching-for-backend-modules": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-69918-AddPSR-7-basedDispatchingForBackendModules.html#feature-69918-add-psr-7-based-dispatching-for-backend-modules", + "Changelog\/7.5\/Feature-69918-AddPSR-7-basedDispatchingForBackendModules.html#feature-69918", "Feature: #69918 - Add PSR-7-based dispatching for Backend Modules" ], "feature-70002-make-it-possible-to-register-own-icons-for-file-extensions": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-70002-MakeItPossibleToRegisterOwnIconsForFileExtensions.html#feature-70002-make-it-possible-to-register-own-icons-for-file-extensions", + "Changelog\/7.5\/Feature-70002-MakeItPossibleToRegisterOwnIconsForFileExtensions.html#feature-70002", "Feature: #70002 - Make it possible to register own icons for file extensions" ], "feature-70078-extensions-can-provide-a-class-map-for-class-loading": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-70078-ExtensionsCanProvideAClassMapForClassLoading.html#feature-70078-extensions-can-provide-a-class-map-for-class-loading", + "Changelog\/7.5\/Feature-70078-ExtensionsCanProvideAClassMapForClassLoading.html#feature-70078", "Feature: #70078 - Extensions can provide a class map for class loading" ], "feature-7098-severity-filtering-for-flashmessagequeue": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Feature-7098-SeverityFilteringForFlashMessageQueue.html#feature-7098-severity-filtering-for-flashmessagequeue", + "Changelog\/7.5\/Feature-7098-SeverityFilteringForFlashMessageQueue.html#feature-7098", "Feature: #7098 - Severity-filtering for FlashMessageQueue" ], "important-67954-migrate-ctypes-text-image-and-textpic-to-textmedia": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Important-67954-MigrateCTypesTextImageAndTextpicToTextmedia.html#important-67954-migrate-ctypes-text-image-and-textpic-to-textmedia", + "Changelog\/7.5\/Important-67954-MigrateCTypesTextImageAndTextpicToTextmedia.html#important-67954", "Important: #67954 - Migrate CTypes text, image and textpic to textmedia" ], "important-68128-php-magic-quote-handling-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Important-68128-PHPMagicQuoteHandlingRemoved.html#important-68128-php-magic-quote-handling-removed", + "Changelog\/7.5\/Important-68128-PHPMagicQuoteHandlingRemoved.html#important-68128", "Important: #68128 - PHP Magic Quote Handling removed" ], "important-68758-command-controllers-allowed-in-subfolders": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Important-68758-CommandControllersAllowedInSubfolders.html#important-68758-command-controllers-allowed-in-subfolders", + "Changelog\/7.5\/Important-68758-CommandControllersAllowedInSubfolders.html#important-68758", "Important: #68758 - Command controllers allowed in subfolders" ], "important-68917-updated-jquery-to-2-x": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Important-68917-UpdateJQueryTo2x.html#important-68917-updated-jquery-to-2-x", + "Changelog\/7.5\/Important-68917-UpdateJQueryTo2x.html#important-68917", "Important: #68917 - Updated jQuery to 2.x" ], "important-69084-adding-extbase-objects-with-not-null-columns-has-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Important-69084-AddingExtbaseObjectsWithNOTNULLColumnsHasChanged.html#important-69084-adding-extbase-objects-with-not-null-columns-has-changed", + "Changelog\/7.5\/Important-69084-AddingExtbaseObjectsWithNOTNULLColumnsHasChanged.html#important-69084", "Important: #69084 - Adding Extbase Objects with NOT NULL columns has changed" ], "important-69137-link-wizard-popup-width-and-height-fields-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Important-69137-LinkWizardPopupWidthAndHeightFieldsRemoved.html#important-69137-link-wizard-popup-width-and-height-fields-removed", + "Changelog\/7.5\/Important-69137-LinkWizardPopupWidthAndHeightFieldsRemoved.html#important-69137", "Important: #69137 - Link Wizard popup width and height fields removed" ], "important-69531-remove-spritemanagericonviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Important-69531-RemoveSpriteManagerIconViewHelper.html#important-69531-remove-spritemanagericonviewhelper", + "Changelog\/7.5\/Important-69531-RemoveSpriteManagerIconViewHelper.html#important-69531", "Important: #69531 - Remove SpriteManagerIconViewHelper" ], "important-69846-have-eids-with-psr-7-without-controllerinterface": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Important-69846-HaveEIDsWithPSR-7WithoutControllerInterface.html#important-69846-have-eids-with-psr-7-without-controllerinterface", + "Changelog\/7.5\/Important-69846-HaveEIDsWithPSR-7WithoutControllerInterface.html#important-69846", "Important: #69846 - Have eIDs with PSR-7 without ControllerInterface" ], "important-69909-fal-based-database-fields-moved-to-integer": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.5\/Important-69909-FAL-basedDatabaseFieldsMovedToInteger.html#important-69909-fal-based-database-fields-moved-to-integer", + "Changelog\/7.5\/Important-69909-FAL-basedDatabaseFieldsMovedToInteger.html#important-69909", "Important: #69909 - FAL-based Database Fields moved to integer" ], "7-5-changes": [ @@ -55867,61 +56071,61 @@ "breaking-24449-use-move-placeholders-as-default-in-workspaces": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Breaking-24449-UseMovePlaceholdersAsDefaultInWorkspaces.html#breaking-24449-use-move-placeholders-as-default-in-workspaces", + "Changelog\/7.6\/Breaking-24449-UseMovePlaceholdersAsDefaultInWorkspaces.html#breaking-24449", "Breaking: #24449 - Use move placeholders as default in workspaces" ], "breaking-45899-split-class-importexport-into-classes-import-and-export": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-45899-SplitClassImportExportIntoClassesImportAndExport.html#breaking-45899-split-class-importexport-into-classes-import-and-export", + "Changelog\/8.0\/Breaking-45899-SplitClassImportExportIntoClassesImportAndExport.html#breaking-45899-1668719172", "Breaking: #45899 - Split class ImportExport into classes Import and Export" ], "breaking-51099-streamline-settings-conditions": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-51099-StreamlineSettingsConditions.html#breaking-51099-streamline-settings-conditions", + "Changelog\/8.0\/Breaking-51099-StreamlineSettingsConditions.html#breaking-51099-1668719172", "Breaking: #51099 - Streamline settings\/conditions" ], "breaking-62812-resolve-urls-to-link-to-external-url-pages-directly": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Breaking-62812-ResolveMenuUrlsToLinkToExternalPagesDirectly.html#breaking-62812-resolve-urls-to-link-to-external-url-pages-directly", + "Changelog\/7.6\/Breaking-62812-ResolveMenuUrlsToLinkToExternalPagesDirectly.html#breaking-62812", "Breaking: #62812 - Resolve URLs to \"Link to external URL\"-pages directly" ], "breaking-63406-respect-rootlevel-configuration-in-extbase-queries": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Breaking-63406-RespectRootlevelConfigurationinExtbaseQueries.html#breaking-63406-respect-rootlevel-configuration-in-extbase-queries", + "Changelog\/7.6\/Breaking-63406-RespectRootlevelConfigurationinExtbaseQueries.html#breaking-63406", "Breaking: #63406 - Respect rootLevel configuration in extbase queries" ], "breaking-66369-removed-elementbrowser-related-classes": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Breaking-66369-RemovedElementBrowserRelatedClasses.html#breaking-66369-removed-elementbrowser-related-classes", + "Changelog\/7.6\/Breaking-66369-RemovedElementBrowserRelatedClasses.html#breaking-66369", "Breaking: #66369 - Removed ElementBrowser related classes" ], "breaking-68081-ext-openid-moved-to-ter": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Breaking-68081-ExtopenidMovedToTER.html#breaking-68081-ext-openid-moved-to-ter", + "Changelog\/7.6\/Breaking-68081-ExtopenidMovedToTER.html#breaking-68081", "Breaking: #68081 - Ext:openid moved to TER" ], "breaking-69227-strings-for-like-are-not-properly-escaped": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Breaking-69227-StringsForLikeAreNotProperlyEscaped.html#breaking-69227-strings-for-like-are-not-properly-escaped", + "Changelog\/7.6\/Breaking-69227-StringsForLikeAreNotProperlyEscaped.html#breaking-69227", "Breaking: #69227 - Strings for like are not properly escaped" ], "breaking-69916-hook-ajaxsavecode-of-t3editor-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Breaking-69916-HookAjaxSaveCodeOfT3editorChanged.html#breaking-69916-hook-ajaxsavecode-of-t3editor-changed", + "Changelog\/7.6\/Breaking-69916-HookAjaxSaveCodeOfT3editorChanged.html#breaking-69916-1668719172", "Breaking: #69916 - Hook ajaxSaveCode of t3editor changed" ], "breaking-69916-registered-ajax-handlers-replaced-by-routes": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Breaking-69916-RegisteredAJAXHandlersReplacedByRoutes.html#breaking-69916-registered-ajax-handlers-replaced-by-routes", + "Changelog\/7.6\/Breaking-69916-RegisteredAJAXHandlersReplacedByRoutes.html#breaking-69916-1668719184", "Breaking: #69916 - Registered AJAX handlers replaced by routes" ], "ext-backend": [ @@ -55987,181 +56191,181 @@ "breaking-69916-removed-backendlogin-getrsapublickey-ajax-handler": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Breaking-69916-RemovedBackendLogingetRsaPublicKeyAJAXHandler.html#breaking-69916-removed-backendlogin-getrsapublickey-ajax-handler", + "Changelog\/7.6\/Breaking-69916-RemovedBackendLogingetRsaPublicKeyAJAXHandler.html#breaking-69916", "Breaking: #69916 - Removed BackendLogin::getRsaPublicKey AJAX handler" ], "breaking-70033-tca-icon-options-have-been-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Breaking-70033-TcaIconOptionsForSelectFields.html#breaking-70033-tca-icon-options-have-been-removed", + "Changelog\/7.6\/Breaking-70033-TcaIconOptionsForSelectFields.html#breaking-70033", "Breaking: #70033 - TCA icon options have been removed" ], "breaking-70055-override-new-content-element-wizard-via-page-tsconfig": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Breaking-70055-OverrideNewContentElementWizardViaPageTSconfig.html#breaking-70055-override-new-content-element-wizard-via-page-tsconfig", + "Changelog\/7.6\/Breaking-70055-OverrideNewContentElementWizardViaPageTSconfig.html#breaking-70055", "Breaking: #70055 - Override New Content Element Wizard via page TSConfig" ], "breaking-70132-formengine-custom-functions": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Breaking-70132-FormEngineCustomFunctions.html#breaking-70132-formengine-custom-functions", + "Changelog\/7.6\/Breaking-70132-FormEngineCustomFunctions.html#breaking-70132", "Breaking: #70132 - FormEngine custom functions" ], "breaking-70229-be-lockssl-3-option-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Breaking-70229-BE-lockSSL3OptionRemoved.html#breaking-70229-be-lockssl-3-option-removed", + "Changelog\/7.6\/Breaking-70229-BE-lockSSL3OptionRemoved.html#breaking-70229", "Breaking: #70229 - BE-lockSSL = 3 option removed" ], "breaking-70444-ext-form-form-attributes-are-not-rendered-in-fe": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Breaking-70444-EXTform-FormAttributesAreNotRenderedInFE.html#breaking-70444-ext-form-form-attributes-are-not-rendered-in-fe", + "Changelog\/7.6\/Breaking-70444-EXTform-FormAttributesAreNotRenderedInFE.html#breaking-70444", "Breaking: #70444 - EXT:form - Form attributes are not rendered in FE" ], "breaking-70503-ext-form-remove-breakonerror-option-from-wizard": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Breaking-70503-EXTform-RemoveBreakOnErrorOptionFromWizard.html#breaking-70503-ext-form-remove-breakonerror-option-from-wizard", + "Changelog\/7.6\/Breaking-70503-EXTform-RemoveBreakOnErrorOptionFromWizard.html#breaking-70503", "Breaking: #70503 - EXT:form - Remove breakOnError option from wizard" ], "breaking-70574-form-wizard-save-handling-changed-in-ext-form": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Breaking-70574-FormWizardSaveHandlingChanged.html#breaking-70574-form-wizard-save-handling-changed-in-ext-form", + "Changelog\/7.6\/Breaking-70574-FormWizardSaveHandlingChanged.html#breaking-70574", "Breaking: #70574 - Form Wizard Save Handling Changed in ext:form" ], "breaking-70578-jumpurl-functionality-removed-from-the-typo3-core": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Breaking-70578-JumpURLFunctionalityRemovedFromTheTYPO3Core.html#breaking-70578-jumpurl-functionality-removed-from-the-typo3-core", + "Changelog\/7.6\/Breaking-70578-JumpURLFunctionalityRemovedFromTheTYPO3Core.html#breaking-70578", "Breaking: #70578 - JumpURL functionality removed from the TYPO3 Core" ], "breaking-71110-typo3-specific-upload-limit-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Breaking-71110-TYPO3-specificUploadLimitRemoved.html#breaking-71110-typo3-specific-upload-limit-removed", + "Changelog\/7.6\/Breaking-71110-TYPO3-specificUploadLimitRemoved.html#breaking-71110", "Breaking: #71110 - TYPO3-specific Upload Limit removed" ], "breaking-72117-api-change-in-exceptionhandlerinterface": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Breaking-72117-APIChangeInExceptionHandlerInterface.html#breaking-72117-api-change-in-exceptionhandlerinterface", + "Changelog\/7.6\/Breaking-72117-APIChangeInExceptionHandlerInterface.html#breaking-72117", "Breaking: #72117 - API change in ExceptionHandlerInterface" ], "breaking-77344-ext-form-rename-configuration-for-confirmation-view": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Breaking-77344-EXTform-RenameConfigurationForConfirmationView.html#breaking-77344-ext-form-rename-configuration-for-confirmation-view", + "Changelog\/7.6\/Breaking-77344-EXTform-RenameConfigurationForConfirmationView.html#breaking-77344", "Breaking: #77344 - EXT:form - Rename configuration for confirmation view" ], "deprecation-51482-script-based-modules": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Deprecation-51482-ScriptBasedModules.html#deprecation-51482-script-based-modules", + "Changelog\/7.6\/Deprecation-51482-ScriptBasedModules.html#deprecation-51482", "Deprecation: #51482 - Script-based modules" ], "deprecation-60712-documenttemplate-getdynamictabmenu": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Deprecation-60712-GetDynamicTabMenu.html#deprecation-60712-documenttemplate-getdynamictabmenu", + "Changelog\/7.6\/Deprecation-60712-GetDynamicTabMenu.html#deprecation-60712", "Deprecation: #60712 - DocumentTemplate->getDynamicTabMenu()" ], "deprecation-65728-documenttemplate-issuecommand": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Deprecation-65728-DocumentTemplate-issueCommand.html#deprecation-65728-documenttemplate-issuecommand", + "Changelog\/7.6\/Deprecation-65728-DocumentTemplate-issueCommand.html#deprecation-65728", "Deprecation: #65728 - DocumentTemplate->issueCommand()" ], "deprecation-69369-use-property-text-instead-of-data-in-ext-form": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Deprecation-69369-UsePropertyTextInsteadOfDataForTEXTAREATEXTBLOCKOPTION.html#deprecation-69369-use-property-text-instead-of-data-in-ext-form", + "Changelog\/7.6\/Deprecation-69369-UsePropertyTextInsteadOfDataForTEXTAREATEXTBLOCKOPTION.html#deprecation-69369", "Deprecation: #69369 - Use property text instead of data in ext:form" ], "deprecation-69822-deprecate-tca-settings-of-select-fields": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Deprecation-69822-DeprecateSelectFieldTca.html#deprecation-69822-deprecate-tca-settings-of-select-fields", + "Changelog\/7.6\/Deprecation-69822-DeprecateSelectFieldTca.html#deprecation-69822", "Deprecation: #69822 - Deprecate TCA settings of select fields" ], "deprecation-69877-use-moduletemplate-api-for-ext-filelist": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Deprecation-69877-UseModuleTemplateAPIForExtfilelist.html#deprecation-69877-use-moduletemplate-api-for-ext-filelist", + "Changelog\/7.6\/Deprecation-69877-UseModuleTemplateAPIForExtfilelist.html#deprecation-69877", "Deprecation: #69877 - Use ModuleTemplate API for ext:filelist" ], "deprecation-70052-tca-display-condition-ext-loaded": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Deprecation-70052-ExtLoadedDisplayCondition.html#deprecation-70052-tca-display-condition-ext-loaded", + "Changelog\/7.6\/Deprecation-70052-ExtLoadedDisplayCondition.html#deprecation-70052", "Deprecation: #70052 - TCA Display condition EXT LOADED" ], "deprecation-70138-flex-form-language-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Deprecation-70138-FlexFormLanguageHandling.html#deprecation-70138-flex-form-language-handling", + "Changelog\/7.6\/Deprecation-70138-FlexFormLanguageHandling.html#deprecation-70138", "Deprecation: #70138 - Flex form language handling" ], "deprecation-70477-deprecate-spriteicon-classes": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Deprecation-70477-DeprecateSpriteIconClasses.html#deprecation-70477-deprecate-spriteicon-classes", + "Changelog\/7.6\/Deprecation-70477-DeprecateSpriteIconClasses.html#deprecation-70477", "Deprecation: #70477 - Deprecate SpriteIcon classes" ], "deprecation-70494-documenttemplate-wrapclickmenuonicon": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Deprecation-70494-WrapClickMenuOnIcon.html#deprecation-70494-documenttemplate-wrapclickmenuonicon", + "Changelog\/7.6\/Deprecation-70494-WrapClickMenuOnIcon.html#deprecation-70494", "Deprecation: #70494 - DocumentTemplate->wrapClickMenuOnIcon()" ], "deprecation-70514-dynamicconfigfile-is-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Deprecation-70514-DynamicConfigFile.html#deprecation-70514-dynamicconfigfile-is-deprecated", + "Changelog\/7.6\/Deprecation-70514-DynamicConfigFile.html#deprecation-70514", "Deprecation: #70514 - dynamicConfigFile is deprecated" ], "deprecation-71153-documenttemplate-spacer": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Deprecation-71153-DocumentTemplateSpacer.html#deprecation-71153-documenttemplate-spacer", + "Changelog\/7.6\/Deprecation-71153-DocumentTemplateSpacer.html#deprecation-71153", "Deprecation: #71153 - DocumentTemplate->spacer()" ], "deprecation-71249-deprecate-render-method-of-flashmessage-class": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Deprecation-71249-DeprecateRenderMethodOfFlashMessageClass.html#deprecation-71249-deprecate-render-method-of-flashmessage-class", + "Changelog\/7.6\/Deprecation-71249-DeprecateRenderMethodOfFlashMessageClass.html#deprecation-71249", "Deprecation: #71249 - Deprecate render method of FlashMessage class" ], "feature-20875-make-hardcoded-indexed-search-parameters-configurable-via-ts": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Feature-20875-MakeHardcodedIndexedSearchParametersConfigurableViaTS.html#feature-20875-make-hardcoded-indexed-search-parameters-configurable-via-ts", + "Changelog\/7.6\/Feature-20875-MakeHardcodedIndexedSearchParametersConfigurableViaTS.html#feature-20875", "Feature: #20875 - Make hardcoded indexed_search parameters configurable via TS" ], "feature-23156-indexed-search-make-path-separator-of-search-result-configurable": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Feature-23156-IndexedSearchMakePathSeparatorOfSearchResultConfigurable.html#feature-23156-indexed-search-make-path-separator-of-search-result-configurable", + "Changelog\/7.6\/Feature-23156-IndexedSearchMakePathSeparatorOfSearchResultConfigurable.html#feature-23156", "Feature: #23156 - Indexed search: Make path separator of search result configurable" ], "feature-27057-relations-to-the-same-table-in-extbase": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Feature-27057-RelationsToTheSameTableInExtbase.html#feature-27057-relations-to-the-same-table-in-extbase", + "Changelog\/7.6\/Feature-27057-RelationsToTheSameTableInExtbase.html#feature-27057", "Feature: #27057 - Relations to the same table in Extbase" ], "feature-35245-rework-workspace-notification-settings": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Feature-35245-ReworkWorkspaceNotificationSettings.html#feature-35245-rework-workspace-notification-settings", + "Changelog\/7.6\/Feature-35245-ReworkWorkspaceNotificationSettings.html#feature-35245", "Feature: #35245 - Rework workspace notification settings" ], "feature-44127-introduced-two-new-hooks-for-openid": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Feature-44127-HooksForOpenIdToAutomaticallyCreateUserAccounts.html#feature-44127-introduced-two-new-hooks-for-openid", + "Changelog\/7.6\/Feature-44127-HooksForOpenIdToAutomaticallyCreateUserAccounts.html#feature-44127", "Feature: #44127 - Introduced two new Hooks for OpenID" ], "hooks": [ @@ -56173,25 +56377,25 @@ "feature-47613-indexed-search-make-no-cache-parameter-for-forwardsearchwordsinresultlink-configurable": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Feature-47613-IndexedSearchMakeNo_cacheParameterForForwardSearchWordsInResultLinkConfigurable.html#feature-47613-indexed-search-make-no-cache-parameter-for-forwardsearchwordsinresultlink-configurable", + "Changelog\/7.6\/Feature-47613-IndexedSearchMakeNo_cacheParameterForForwardSearchWordsInResultLinkConfigurable.html#feature-47613", "Feature: #47613 - Indexed Search: make no_cache parameter for forwardSearchWordsInResultLink configurable" ], "feature-56633-form-protection-api-for-frontend-usage": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Feature-56633-FormProtectionAPIForFrontEndUsage.html#feature-56633-form-protection-api-for-frontend-usage", + "Changelog\/7.6\/Feature-56633-FormProtectionAPIForFrontEndUsage.html#feature-56633", "Feature: #56633 - Form protection API for frontend usage" ], "feature-64286-added-absolute-url-option-to-uri-image-and-image-viewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Feature-64286-AddedAbsoluteUrlOptionToUriimageAndImageViewHelper.html#feature-64286-added-absolute-url-option-to-uri-image-and-image-viewhelper", + "Changelog\/7.6\/Feature-64286-AddedAbsoluteUrlOptionToUriimageAndImageViewHelper.html#feature-64286", "Feature: #64286 - Added absolute url option to uri.image and image viewHelper" ], "feature-66369-added-linkbrowser-apis": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Feature-66369-AddedLinkBrowserAPIs.html#feature-66369-added-linkbrowser-apis", + "Changelog\/7.6\/Feature-66369-AddedLinkBrowserAPIs.html#feature-66369-1668719172", "Feature: #66369 - Added LinkBrowser APIs" ], "tab-registration": [ @@ -56209,19 +56413,19 @@ "feature-66369-added-new-element-browser-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Feature-66369-AddedNewElementBrowserAPI.html#feature-66369-added-new-element-browser-api", + "Changelog\/7.6\/Feature-66369-AddedNewElementBrowserAPI.html#feature-66369", "Feature: #66369 - Added new element browser API" ], "feature-68771-add-contentobject-functionality-to-form-mailpostprocessor-and-introduce-replytoemail": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Feature-68771-AddContentObjectFunctionalityToFormMailPostProcessorAndIntroduceReplyToEmail.html#feature-68771-add-contentobject-functionality-to-form-mailpostprocessor-and-introduce-replytoemail", + "Changelog\/7.6\/Feature-68771-AddContentObjectFunctionalityToFormMailPostProcessorAndIntroduceReplyToEmail.html#feature-68771", "Feature: #68771 - Add contentObject functionality to form MailPostProcessor and introduce replyToEmail" ], "feature-68895-introduced-hook-in-backenduserauthentication-getdefaultuploadfolder": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Feature-68895-IntroducedHookInBackendUserAuthenticationgetDefaultUploadFolder.html#feature-68895-introduced-hook-in-backenduserauthentication-getdefaultuploadfolder", + "Changelog\/7.6\/Feature-68895-IntroducedHookInBackendUserAuthenticationgetDefaultUploadFolder.html#feature-68895", "Feature: #68895 - Introduced hook in BackendUserAuthentication::getDefaultUploadFolder" ], "register-own-getdefaultuploadfolder-hook": [ @@ -56239,25 +56443,25 @@ "feature-69120-add-basic-file-search-in-element-browser": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Feature-69120-AddBasicFileSearchInElementBrowser.html#feature-69120-add-basic-file-search-in-element-browser", + "Changelog\/7.6\/Feature-69120-AddBasicFileSearchInElementBrowser.html#feature-69120", "Feature: #69120 - Add basic file search in element browser" ], "feature-69706-add-support-for-alternative-inline-icon-markup": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Feature-69706-AddInlineSupportForSvgIconProvider.html#feature-69706-add-support-for-alternative-inline-icon-markup", + "Changelog\/7.6\/Feature-69706-AddInlineSupportForSvgIconProvider.html#feature-69706", "Feature: #69706 - Add support for alternative (inline) icon markup" ], "feature-69764-introduced-file-icon-detection-by-mime-type": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Feature-69764-IntroducedFileIconDetectionByMimeType.html#feature-69764-introduced-file-icon-detection-by-mime-type", + "Changelog\/7.6\/Feature-69764-IntroducedFileIconDetectionByMimeType.html#feature-69764", "Feature: #69764 - Introduced file icon detection by mime-type" ], "feature-69814-moduletemplate-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Feature-69814-ModuleTemplateAPI.html#feature-69814-moduletemplate-api", + "Changelog\/7.6\/Feature-69814-ModuleTemplateAPI.html#feature-69814", "Feature: #69814 - ModuleTemplate API" ], "challenge": [ @@ -56305,31 +56509,31 @@ "feature-69916-psr-7-based-routing-for-backend-ajax-requests": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Feature-69916-PSR-7-basedRoutingForBackendAJAXRequests.html#feature-69916-psr-7-based-routing-for-backend-ajax-requests", + "Changelog\/7.6\/Feature-69916-PSR-7-basedRoutingForBackendAJAXRequests.html#feature-69916", "Feature: #69916 - PSR-7-based Routing for Backend AJAX Requests" ], "feature-70033-introduced-tca-option-showicontable-for-selectsingle-fields": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Feature-70033-IntroducedTcaOptionShowIconTableForSelectSingleFields.html#feature-70033-introduced-tca-option-showicontable-for-selectsingle-fields", + "Changelog\/7.6\/Feature-70033-IntroducedTcaOptionShowIconTableForSelectSingleFields.html#feature-70033", "Feature: #70033 - Introduced TCA option showIconTable for selectSingle fields" ], "feature-70126-introduce-tca-option-to-add-autocomplete-attribute-to-input-fields": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Feature-70126-IntroduceTcaOptionToAddAutocompleteAttributeToInputFields.html#feature-70126-introduce-tca-option-to-add-autocomplete-attribute-to-input-fields", + "Changelog\/7.6\/Feature-70126-IntroduceTcaOptionToAddAutocompleteAttributeToInputFields.html#feature-70126", "Feature: #70126 - Introduce TCA option to add autocomplete attribute to input fields" ], "feature-70170-viewhelper-to-strip-whitespace-between-html-tags": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Feature-70170-ViewHelperToStripWhitespaceBetweenHTMLTags.html#feature-70170-viewhelper-to-strip-whitespace-between-html-tags", + "Changelog\/7.6\/Feature-70170-ViewHelperToStripWhitespaceBetweenHTMLTags.html#feature-70170", "Feature: #70170 - ViewHelper to strip whitespace between HTML tags" ], "feature-70332-ext-form-add-html4-html5-attributes-to-the-wizard": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Feature-70332-EXTform-AddHTML4HTML5AttributesToTheWizard.html#feature-70332-ext-form-add-html4-html5-attributes-to-the-wizard", + "Changelog\/7.6\/Feature-70332-EXTform-AddHTML4HTML5AttributesToTheWizard.html#feature-70332", "Feature: #70332 - EXT:form - Add HTML4 \/ HTML5 attributes to the wizard" ], "currently-supported-attributes": [ @@ -56413,13 +56617,13 @@ "feature-70531-requirejs-module-for-split-buttons": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Feature-70531-RequireJSModuleForSplitButtons.html#feature-70531-requirejs-module-for-split-buttons", + "Changelog\/7.6\/Feature-70531-RequireJSModuleForSplitButtons.html#feature-70531", "Feature: #70531 - RequireJS module for split buttons" ], "feature-70583-introduced-icon-api-in-javascript": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Feature-70583-IntroducedIconAPIInJavaScript.html#feature-70583-introduced-icon-api-in-javascript", + "Changelog\/7.6\/Feature-70583-IntroducedIconAPIInJavaScript.html#feature-70583", "Feature: #70583 - Introduced Icon API in JavaScript" ], "importing": [ @@ -56437,19 +56641,19 @@ "feature-71196-disallow-localization-mixtures": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Feature-71196-DisallowLocalizationMixtures.html#feature-71196-disallow-localization-mixtures", + "Changelog\/7.6\/Feature-71196-DisallowLocalizationMixtures.html#feature-71196", "Feature: #71196 - Disallow localization mixtures" ], "feature-71251-add-flashmessage-support-in-moduletemplate-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Feature-71251-AddFlashMessageSupportInModuleTemplateAPI.html#feature-71251-add-flashmessage-support-in-moduletemplate-api", + "Changelog\/7.6\/Feature-71251-AddFlashMessageSupportInModuleTemplateAPI.html#feature-71251", "Feature: #71251 - Add FlashMessage support in ModuleTemplate API" ], "feature-72505-introduce-hook-to-override-a-record-overlay": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Feature-72505-IntroduceHookToOverrideARecordOverlay.html#feature-72505-introduce-hook-to-override-a-record-overlay", + "Changelog\/8.0\/Feature-72505-IntroduceHookToOverrideARecordOverlay.html#feature-72505-1668719172", "Feature: #72505 - Introduce hook to override a record overlay" ], "register-the-hook": [ @@ -56461,43 +56665,43 @@ "important-36166-move-access-right-parameters-from-be-to-sys-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Important-36166-MoveAccessRightParametersFromBEToSYSConfiguration.html#important-36166-move-access-right-parameters-from-be-to-sys-configuration", + "Changelog\/7.6\/Important-36166-MoveAccessRightParametersFromBEToSYSConfiguration.html#important-36166", "Important: #36166 - Move access right parameters from BE to SYS configuration" ], "important-53681-change-wording-for-user-settings-reset-configuration-and-clear-temporary-data": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Important-53681-ChangeWordingForUserSettingsResetConfigurationAndClearTemporaryData.html#important-53681-change-wording-for-user-settings-reset-configuration-and-clear-temporary-data", + "Changelog\/7.6\/Important-53681-ChangeWordingForUserSettingsResetConfigurationAndClearTemporaryData.html#important-53681", "Important: #53681 - Change wording for User Settings \"Reset Configuration and Clear Temporary Data\"" ], "important-68079-extension-mediace-moved-to-ter": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Important-68079-ExtensionMediaceMovedToTER.html#important-68079-extension-mediace-moved-to-ter", + "Changelog\/7.6\/Important-68079-ExtensionMediaceMovedToTER.html#important-68079", "Important: #68079 - Extension \"mediace\" moved to TER" ], "important-70956-behavior-of-page-tsconfig-options-keepitems-additems-and-removeitems-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Important-70956-BehaviorOfPageTSConfigOptionsKeepItemsAddItemsAndRemoveItemsChanged.html#important-70956-behavior-of-page-tsconfig-options-keepitems-additems-and-removeitems-changed", + "Changelog\/7.6\/Important-70956-BehaviorOfPageTSConfigOptionsKeepItemsAddItemsAndRemoveItemsChanged.html#important-70956", "Important: #70956 - Behavior of Page TSconfig options keepItems, addItems and removeItems changed" ], "important-71126-allow-to-define-multiple-inlinelocalizesynchronize-commands": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Important-71126-AllowToDefineMultipleInlineLocalizeSynchronizeCommands.html#important-71126-allow-to-define-multiple-inlinelocalizesynchronize-commands", + "Changelog\/7.6\/Important-71126-AllowToDefineMultipleInlineLocalizeSynchronizeCommands.html#important-71126", "Important: #71126 - Allow to define multiple inlineLocalizeSynchronize commands" ], "important-72697-remove-thumbnail-functionality-of-impexp": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Important-72697-RemoveThumbnailFunctionalityOfImpexp.html#important-72697-remove-thumbnail-functionality-of-impexp", + "Changelog\/8.0\/Important-72697-RemoveThumbnailFunctionalityOfImpexp.html#important-72697-1668719172", "Important: #72697 - Remove thumbnail functionality of impexp" ], "important-73565-abstractconditionviewhelper-no-longer-automatically-compilable": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6\/Important-73565-AbstractConditionViewHelperNoLongerAutomaticallyCompilable.html#important-73565-abstractconditionviewhelper-no-longer-automatically-compilable", + "Changelog\/7.6\/Important-73565-AbstractConditionViewHelperNoLongerAutomaticallyCompilable.html#important-73565", "Important: #73565 - AbstractConditionViewHelper no longer automatically compilable" ], "7-6-changes": [ @@ -56509,85 +56713,85 @@ "breaking-72931-searchformcontroller-pi-list-browseresults-has-been-renamed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Breaking-72931-SearchFormControllerpi_list_browseresultsHasBeenRenamed.html#breaking-72931-searchformcontroller-pi-list-browseresults-has-been-renamed", + "Changelog\/8.1\/Breaking-72931-SearchFormControllerpi_list_browseresultsHasBeenRenamed.html#breaking-72931-1668719172", "Breaking: #72931 - SearchFormController::pi_list_browseresults() has been renamed" ], "breaking-73461-import-module-disabled-for-non-admin-users": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-73461-ImportModuleDisabledForNonAdminUsers.html#breaking-73461-import-module-disabled-for-non-admin-users", + "Changelog\/8.3\/Breaking-73461-ImportModuleDisabledForNonAdminUsers.html#breaking-73461-1668719172", "Breaking: #73461 - Import module disabled for non admin users" ], "breaking-84843-use-no-cookie-domain-for-youtube-by-default": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Breaking-84843-UseNo-cookieDomainForYoutubeByDefault.html#breaking-84843-use-no-cookie-domain-for-youtube-by-default", + "Changelog\/9.3\/Breaking-84843-UseNo-cookieDomainForYoutubeByDefault.html#breaking-84843-1668719171", "Breaking: #84843 - Use no-cookie domain for youtube by default" ], "feature-69794-support-pecl-memcached-in-memcachedbackend": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Feature-69794-SupportPecl-memcachedInMemcachedBackend.html#feature-69794-support-pecl-memcached-in-memcachedbackend", + "Changelog\/8.0\/Feature-69794-SupportPecl-memcachedInMemcachedBackend.html#feature-69794-1668719172", "Feature: #69794 - Support pecl-memcached in MemcachedBackend" ], "feature-73461-enable-import-module-for-non-admin-users": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Feature-73461-EnableImportModuleForNonAdminUsers.html#feature-73461-enable-import-module-for-non-admin-users", + "Changelog\/8.3\/Feature-73461-EnableImportModuleForNonAdminUsers.html#feature-73461-1668719172", "Feature: #73461 - Enable import module for non admin users" ], "feature-84053-api-to-anonymize-ip-addresses": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6.x\/Feature-84053-APIToAnonymizeIPAddresses.html#feature-84053-api-to-anonymize-ip-addresses", + "Changelog\/7.6.x\/Feature-84053-APIToAnonymizeIPAddresses.html#feature-84053", "Feature: #84053 - API to anonymize IP addresses" ], "feature-84740-make-indexed-search-ready-for-gdpr": [ "TYPO3 Core Changelog", "main", - "Changelog\/7.6.x\/Feature-84740-MakeIndexed_searchReadyForGDPR.html#feature-84740-make-indexed-search-ready-for-gdpr", + "Changelog\/7.6.x\/Feature-84740-MakeIndexed_searchReadyForGDPR.html#feature-84740", "Feature: #84740 - Make indexed_search ready for GDPR" ], "feature-84781-added-scheduler-task-to-anonymize-ip-addresses-of-tables": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Feature-84781-AddedSchedulerTaskToAnonymizeIPAddressesOfTables.html#feature-84781-added-scheduler-task-to-anonymize-ip-addresses-of-tables", + "Changelog\/8.7.x\/Feature-84781-AddedSchedulerTaskToAnonymizeIPAddressesOfTables.html#feature-84781-1668719172", "Feature: #84781 - Added scheduler task to anonymize IP addresses of tables" ], "important-17904-showaccessrestrictedpages-does-not-work-with-special-menus": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Important-17904-ShowAccessRestrictedPagesDoesNotWorkWithSpecialMenus.html#important-17904-showaccessrestrictedpages-does-not-work-with-special-menus", + "Changelog\/8.5\/Important-17904-ShowAccessRestrictedPagesDoesNotWorkWithSpecialMenus.html#important-17904-1668719172", "Important: #17904 - showAccessRestrictedPages does not work with special menus" ], "important-75400-new-datahandler-command-copytolanguage": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Important-75400-NewDataHandlerCommandCopyToLanguage.html#important-75400-new-datahandler-command-copytolanguage", + "Changelog\/8.6\/Important-75400-NewDataHandlerCommandCopyToLanguage.html#important-75400-1668719172", "Important: #75400 - New DataHandler command 'copyToLanguage'" ], "important-77411-removed-extbase-table-column-cache": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Important-77411-RemovedExtbaseTableColumnCache.html#important-77411-removed-extbase-table-column-cache", + "Changelog\/8.3\/Important-77411-RemovedExtbaseTableColumnCache.html#important-77411-1668719172", "Important: #77411 - Removed extbase table column cache" ], "important-77830-csc-headerlinkrespectsglobalpagetarget": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Important-77830-CSC-HeaderLinkRespectsGlobalPageTarget.html#important-77830-csc-headerlinkrespectsglobalpagetarget", + "Changelog\/8.7.x\/Important-77830-CSC-HeaderLinkRespectsGlobalPageTarget.html#important-77830-1668719172", "Important: #77830 - CSC-HeaderLinkRespectsGlobalPageTarget" ], "important-83768-remove-referrer-check": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Important-83768-RemoveReferrerCheck.html#important-83768-remove-referrer-check", + "Changelog\/8.7.x\/Important-83768-RemoveReferrerCheck.html#important-83768-1668719172", "Important: #83768 - Remove referrer check" ], "important-85385-integrate-phar-stream-wrapper": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Important-85385-IntegratePharStreamWrapper.html#important-85385-integrate-phar-stream-wrapper", + "Changelog\/8.7.x\/Important-85385-IntegratePharStreamWrapper.html#important-85385-1668719172", "Important: #85385 - Integrate Phar Stream Wrapper" ], "7-6-x-changes": [ @@ -56599,259 +56803,259 @@ "breaking-43085-change-gfx-settings-prefix-im-to-generic-processor": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-43085-RenamedGraphicsProcessorSettings.html#breaking-43085-change-gfx-settings-prefix-im-to-generic-processor", + "Changelog\/8.0\/Breaking-43085-RenamedGraphicsProcessorSettings.html#breaking-43085", "Breaking: #43085 - Change GFX settings prefix im_ to generic processor\\_" ], "breaking-45943-remove-unused-images-in-t3skin-icons-gfx-i": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-45943-RemoveUnusedImagesInT3skiniconsgfxi.html#breaking-45943-remove-unused-images-in-t3skin-icons-gfx-i", + "Changelog\/8.0\/Breaking-45943-RemoveUnusedImagesInT3skiniconsgfxi.html#breaking-45943", "Breaking: #45943 - Remove unused Images in \"t3skin\/icons\/gfx\/i\"" ], "breaking-65165-additionalmethodsinfolderinterface": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-65165-AdditionalMethodsInFolderInterface.html#breaking-65165-additionalmethodsinfolderinterface", + "Changelog\/8.0\/Breaking-65165-AdditionalMethodsInFolderInterface.html#breaking-65165", "Breaking: #65165 - AdditionalMethodsInFolderInterface" ], "breaking-68890-remove-dual-use-of-auth-timeout-field-in-abstractuserauthentication": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-68890-RemoveDualuseOfAuthTimeoutField.html#breaking-68890-remove-dual-use-of-auth-timeout-field-in-abstractuserauthentication", + "Changelog\/8.0\/Breaking-68890-RemoveDualuseOfAuthTimeoutField.html#breaking-68890", "Breaking: #68890 - Remove dual-use of auth_timeout_field in AbstractUserAuthentication" ], "breaking-69863-changes-in-viewhelpers-post-standalone-fluid": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-69863-ChangesInViewHelpersPostFluidStandalone.html#breaking-69863-changes-in-viewhelpers-post-standalone-fluid", + "Changelog\/8.0\/Breaking-69863-ChangesInViewHelpersPostFluidStandalone.html#breaking-69863-1668719184", "Breaking: #69863 - Changes in ViewHelpers post Standalone-Fluid" ], "breaking-69863-fluid-escaping-behaviour-changed-from-ent-compat-to-ent-quotes": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-69863-FluidEscapingBehaviourChangedFromENT_COMPATToENT_QUOTES.html#breaking-69863-fluid-escaping-behaviour-changed-from-ent-compat-to-ent-quotes", + "Changelog\/8.0\/Breaking-69863-FluidEscapingBehaviourChangedFromENT_COMPATToENT_QUOTES.html#breaking-69863", "Breaking: #69863 - Fluid escaping behaviour changed from ENT_COMPAT to ENT_QUOTES" ], "breaking-69863-removed-deprecated-code-from-ext-fluid": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-69863-RemovedDeprecatedCodeFromExtfluid.html#breaking-69863-removed-deprecated-code-from-ext-fluid", + "Changelog\/8.0\/Breaking-69863-RemovedDeprecatedCodeFromExtfluid.html#breaking-69863-1668719172", "Breaking: #69863 - Removed deprecated code from EXT:fluid" ], "breaking-71458-fullquotearray-can-t-handle-boolean-values-for-noquote": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-71458-FullQuoteArrayCantHandleBooleanValuesForNoQuote.html#breaking-71458-fullquotearray-can-t-handle-boolean-values-for-noquote", + "Changelog\/8.0\/Breaking-71458-FullQuoteArrayCantHandleBooleanValuesForNoQuote.html#breaking-71458", "Breaking: #71458 - FullQuoteArray can't handle boolean values for $noQuote" ], "breaking-71521-property-userauthentication-removed-from-commandcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-71521-PropertyUserAuthenticationRemovedFromCommandController.html#breaking-71521-property-userauthentication-removed-from-commandcontroller", + "Changelog\/8.0\/Breaking-71521-PropertyUserAuthenticationRemovedFromCommandController.html#breaking-71521", "Breaking: #71521 - Property userAuthentication removed from CommandController" ], "breaking-72022-removed-class-loading-fallback-in-cobject": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72022-RemovedClassLoadingFallbackInCObject.html#breaking-72022-removed-class-loading-fallback-in-cobject", + "Changelog\/8.0\/Breaking-72022-RemovedClassLoadingFallbackInCObject.html#breaking-72022", "Breaking: #72022 - Removed class loading fallback in cObject" ], "breaking-72293-api-change-in-exceptionhandlerinterface": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72293-APIChangeInExceptionHandlerInterface.html#breaking-72293-api-change-in-exceptionhandlerinterface", + "Changelog\/8.0\/Breaking-72293-APIChangeInExceptionHandlerInterface.html#breaking-72293", "Breaking: #72293 - API change in ExceptionHandlerInterface" ], "breaking-72310-ext-form-outsource-labels-and-legends-to-own-partials": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72310-EXTform-OutsourceLabelsAndLegendsToOwnPartials.html#breaking-72310-ext-form-outsource-labels-and-legends-to-own-partials", + "Changelog\/8.0\/Breaking-72310-EXTform-OutsourceLabelsAndLegendsToOwnPartials.html#breaking-72310", "Breaking: #72310 - EXT:form - Outsource labels and legends to own partials" ], "breaking-72334-removed-utf8-conversion-in-ext-recycler": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72334-RemovedUtf8ConversionInEXTrecycler.html#breaking-72334-removed-utf8-conversion-in-ext-recycler", + "Changelog\/8.0\/Breaking-72334-RemovedUtf8ConversionInEXTrecycler.html#breaking-72334", "Breaking: #72334 - Removed utf8 conversion in EXT:recycler" ], "breaking-72338-removed-graphicalfunctions-nativecharset": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72338-RemovedGraphicalFunctions-nativeCharset.html#breaking-72338-removed-graphicalfunctions-nativecharset", + "Changelog\/8.0\/Breaking-72338-RemovedGraphicalFunctions-nativeCharset.html#breaking-72338", "Breaking: #72338 - Removed GraphicalFunctions->nativeCharset" ], "breaking-72342-removed-deprecated-code-from-generalutility": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72342-RemovedDeprecatedCodeFromGeneralUtility.html#breaking-72342-removed-deprecated-code-from-generalutility", + "Changelog\/8.0\/Breaking-72342-RemovedDeprecatedCodeFromGeneralUtility.html#breaking-72342", "Breaking: #72342 - Removed deprecated code from GeneralUtility" ], "breaking-72360-removed-deprecated-entry-point-fallback": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72360-RemovedDeprecatedEntryPointFallback.html#breaking-72360-removed-deprecated-entry-point-fallback", + "Changelog\/8.0\/Breaking-72360-RemovedDeprecatedEntryPointFallback.html#breaking-72360", "Breaking: #72360 - Removed deprecated entry point fallback" ], "breaking-72361-removed-deprecated-content-object-wrappers": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72361-RemovedDeprecatedContentObjectWrappers.html#breaking-72361-removed-deprecated-content-object-wrappers", + "Changelog\/8.0\/Breaking-72361-RemovedDeprecatedContentObjectWrappers.html#breaking-72361", "Breaking: #72361 - Removed deprecated content object wrappers" ], "breaking-72361-removed-deprecated-methods-in-contentobjectrenderer": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72361-RemovedDeprecatedMethodsInContentObjectRenderer.html#breaking-72361-removed-deprecated-methods-in-contentobjectrenderer", + "Changelog\/8.0\/Breaking-72361-RemovedDeprecatedMethodsInContentObjectRenderer.html#breaking-72361-1668719172", "Breaking: #72361 - Removed deprecated methods in ContentObjectRenderer" ], "breaking-72368-typo3-constants-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72368-TYPO3ConstantsRemoved.html#breaking-72368-typo3-constants-removed", + "Changelog\/8.0\/Breaking-72368-TYPO3ConstantsRemoved.html#breaking-72368", "Breaking: #72368 - TYPO3 Constants removed" ], "breaking-72370-removed-deprecated-code-from-extbase": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72370-RemovedDeprecatedCodeFromExtbase.html#breaking-72370-removed-deprecated-code-from-extbase", + "Changelog\/8.0\/Breaking-72370-RemovedDeprecatedCodeFromExtbase.html#breaking-72370", "Breaking: #72370 - Removed deprecated code from extbase" ], "breaking-72372-removed-deprecated-code-from-beuser": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72372-RemovedDeprecatedCodeFromBeuser.html#breaking-72372-removed-deprecated-code-from-beuser", + "Changelog\/8.0\/Breaking-72372-RemovedDeprecatedCodeFromBeuser.html#breaking-72372", "Breaking: #72372 - Removed deprecated code from beuser" ], "breaking-72373-removed-deprecated-code-from-css-styled-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72373-RemovedDeprecatedCodeFromCss_styled_content.html#breaking-72373-removed-deprecated-code-from-css-styled-content", + "Changelog\/8.0\/Breaking-72373-RemovedDeprecatedCodeFromCss_styled_content.html#breaking-72373", "Breaking: #72373 - Removed deprecated code from css_styled_content" ], "breaking-72378-removed-css-styled-content-typoscript-for-6-2": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72378-RemovedCssStyledContentTypoScriptFor62.html#breaking-72378-removed-css-styled-content-typoscript-for-6-2", + "Changelog\/8.0\/Breaking-72378-RemovedCssStyledContentTypoScriptFor62.html#breaking-72378", "Breaking: #72378 - Removed CSS Styled Content TypoScript for 6.2" ], "breaking-72381-removed-deprecated-code-from-ext-dbal": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72381-RemovedDeprecatedCodeFromExtDbal.html#breaking-72381-removed-deprecated-code-from-ext-dbal", + "Changelog\/8.0\/Breaking-72381-RemovedDeprecatedCodeFromExtDbal.html#breaking-72381", "Breaking: #72381 - Removed deprecated code from EXT:dbal" ], "breaking-72384-removed-deprecated-code-from-htmlparser": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72384-RemovedDeprecatedCodeFromHtmlParser.html#breaking-72384-removed-deprecated-code-from-htmlparser", + "Changelog\/8.0\/Breaking-72384-RemovedDeprecatedCodeFromHtmlParser.html#breaking-72384", "Breaking: #72384 - Removed deprecated code from HtmlParser" ], "breaking-72385-removed-deprecated-code-from-datahandler": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72385-RemovedDeprecatedCodeFromDataHandler.html#breaking-72385-removed-deprecated-code-from-datahandler", + "Changelog\/8.0\/Breaking-72385-RemovedDeprecatedCodeFromDataHandler.html#breaking-72385", "Breaking: #72385 - Removed deprecated code from DataHandler" ], "breaking-72390-removed-deprecated-code-from-ext-rtehtmlarea": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72390-RemovedDeprecatedCodeFromEXTrtehtmlarea.html#breaking-72390-removed-deprecated-code-from-ext-rtehtmlarea", + "Changelog\/8.0\/Breaking-72390-RemovedDeprecatedCodeFromEXTrtehtmlarea.html#breaking-72390", "Breaking: #72390 - Removed deprecated code from EXT:rtehtmlarea" ], "breaking-72392-removed-deprecated-code-from-documenttemplate": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72392-RemovedDeprecatedCodeFromDocumentTemplate.html#breaking-72392-removed-deprecated-code-from-documenttemplate", + "Changelog\/8.0\/Breaking-72392-RemovedDeprecatedCodeFromDocumentTemplate.html#breaking-72392", "Breaking: #72392 - Removed deprecated code from DocumentTemplate" ], "breaking-72398-removed-deprecated-code-from-ext-recordlist": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72398-RemovedDeprecatedCodeFromEXTrecordlist.html#breaking-72398-removed-deprecated-code-from-ext-recordlist", + "Changelog\/8.0\/Breaking-72398-RemovedDeprecatedCodeFromEXTrecordlist.html#breaking-72398", "Breaking: #72398 - Removed deprecated code from EXT:recordlist" ], "breaking-72399-removed-deprecated-code-from-backendutility": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72399-RemovedDeprecatedCodeFromBackendUtility.html#breaking-72399-removed-deprecated-code-from-backendutility", + "Changelog\/8.0\/Breaking-72399-RemovedDeprecatedCodeFromBackendUtility.html#breaking-72399", "Breaking: #72399 - Removed deprecated code from BackendUtility" ], "breaking-72400-removed-deprecated-iconutility-and-spritemanager": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72400-RemovedDeprecatedIconUtilityAndSpriteManager.html#breaking-72400-removed-deprecated-iconutility-and-spritemanager", + "Changelog\/8.0\/Breaking-72400-RemovedDeprecatedIconUtilityAndSpriteManager.html#breaking-72400", "Breaking: #72400 - Removed deprecated IconUtility and SpriteManager" ], "breaking-72405-removed-traditional-be-modules-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72405-RemovedTraditionalBEModulesHandling.html#breaking-72405-removed-traditional-be-modules-handling", + "Changelog\/8.0\/Breaking-72405-RemovedTraditionalBEModulesHandling.html#breaking-72405", "Breaking: #72405 - Removed traditional BE modules handling" ], "breaking-72412-removed-deprecated-code-from-language-processing-functions": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72412-RemovedDeprecatedCodeFromLanguageProcessingFunctions.html#breaking-72412-removed-deprecated-code-from-language-processing-functions", + "Changelog\/8.0\/Breaking-72412-RemovedDeprecatedCodeFromLanguageProcessingFunctions.html#breaking-72412", "Breaking: #72412 - Removed deprecated code from language processing functions" ], "breaking-72416-remove-ext-t3skin-stylesheets-sprites": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72416-RemoveEXTt3skinstylesheetssprites.html#breaking-72416-remove-ext-t3skin-stylesheets-sprites", + "Changelog\/8.0\/Breaking-72416-RemoveEXTt3skinstylesheetssprites.html#breaking-72416", "Breaking: #72416 - Remove EXT:t3skin\/stylesheets\/sprites\/" ], "breaking-72417-removed-old-locking-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72417-RemovedOldLockingAPI.html#breaking-72417-removed-old-locking-api", + "Changelog\/8.0\/Breaking-72417-RemovedOldLockingAPI.html#breaking-72417", "Breaking: #72417 - Removed old locking API" ], "breaking-72418-deprecated-backend-related-php-classes": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72418-DeprecatedBackend-relatedPHPClasses.html#breaking-72418-deprecated-backend-related-php-classes", + "Changelog\/8.0\/Breaking-72418-DeprecatedBackend-relatedPHPClasses.html#breaking-72418", "Breaking: #72418 - Deprecated backend-related PHP classes" ], "breaking-72419-remove-deprecated-code-from-backend-controllers": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72419-RemoveDeprecatedCodeFromBackendControllers.html#breaking-72419-remove-deprecated-code-from-backend-controllers", + "Changelog\/8.0\/Breaking-72419-RemoveDeprecatedCodeFromBackendControllers.html#breaking-72419", "Breaking: #72419 - Remove deprecated code from backend controllers" ], "breaking-72421-removed-deprecated-code-from-database-and-query-functions": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72421-RemovedDeprecatedCodeFromDatabaseAndQueryFunctions.html#breaking-72421-removed-deprecated-code-from-database-and-query-functions", + "Changelog\/8.0\/Breaking-72421-RemovedDeprecatedCodeFromDatabaseAndQueryFunctions.html#breaking-72421", "Breaking: #72421 - Removed deprecated code from database and query functions" ], "breaking-72424-removed-deprecated-typoscriptfrontendcontroller-options-and-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72424-RemovedDeprecatedTypoScriptFrontendControllerOptionsAndMethods.html#breaking-72424-removed-deprecated-typoscriptfrontendcontroller-options-and-methods", + "Changelog\/8.0\/Breaking-72424-RemovedDeprecatedTypoScriptFrontendControllerOptionsAndMethods.html#breaking-72424", "Breaking: #72424 - Removed deprecated TypoScriptFrontendController options and methods" ], "breaking-72426-removed-deprecated-code-from-file-and-image-processing-functions": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72426-RemovedDeprecatedCodeFromFileAndImageProcessingFunctions.html#breaking-72426-removed-deprecated-code-from-file-and-image-processing-functions", + "Changelog\/8.0\/Breaking-72426-RemovedDeprecatedCodeFromFileAndImageProcessingFunctions.html#breaking-72426", "Breaking: #72426 - Removed deprecated code from file and image processing functions" ], "breaking-72427-removed-typoscript-related-methods-and-properties": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72427-RemovedTypoScript-relatedMethodsAndProperties.html#breaking-72427-removed-typoscript-related-methods-and-properties", + "Changelog\/8.0\/Breaking-72427-RemovedTypoScript-relatedMethodsAndProperties.html#breaking-72427", "Breaking: #72427 - Removed TypoScript-related methods and properties" ], "breaking-72431-remove-deprecated-code-from-lowlevel-and-utility-functions": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72431-RemovedDeprecatedCodeFromLowlevelAndUtilityFunctions.html#breaking-72431-remove-deprecated-code-from-lowlevel-and-utility-functions", + "Changelog\/8.0\/Breaking-72431-RemovedDeprecatedCodeFromLowlevelAndUtilityFunctions.html#breaking-72431", "Breaking: #72431 - Remove deprecated code from lowlevel and utility functions" ], "breaking-72438-remove-deprecated-code-from-flashmessage": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72438-RemoveDeprecatedCodeFromFlashMessage.html#breaking-72438-remove-deprecated-code-from-flashmessage", + "Changelog\/8.0\/Breaking-72438-RemoveDeprecatedCodeFromFlashMessage.html#breaking-72438", "Breaking: #72438 - Remove deprecated code from FlashMessage" ], "1-flashmessages": [ @@ -56875,379 +57079,379 @@ "breaking-72451-removed-deprecated-code-from-backend-functions": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72451-RemovedDeprecatedCodeFromBackendFunctions.html#breaking-72451-removed-deprecated-code-from-backend-functions", + "Changelog\/8.0\/Breaking-72451-RemovedDeprecatedCodeFromBackendFunctions.html#breaking-72451", "Breaking: #72451 - Removed deprecated code from backend functions" ], "breaking-72462-removed-deprecated-javascript-code": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72462-RemovedDeprecatedJavaScriptCode.html#breaking-72462-removed-deprecated-javascript-code", + "Changelog\/8.0\/Breaking-72462-RemovedDeprecatedJavaScriptCode.html#breaking-72462", "Breaking: #72462 - Removed deprecated JavaScript code" ], "breaking-72464-removed-deprecated-code-from-ext-workspaces": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72464-RemovedDeprecatedCodeFromExtworkspaces.html#breaking-72464-removed-deprecated-code-from-ext-workspaces", + "Changelog\/8.0\/Breaking-72464-RemovedDeprecatedCodeFromExtworkspaces.html#breaking-72464", "Breaking: #72464 - Removed deprecated code from EXT:workspaces" ], "breaking-72473-removed-deprecated-miscellaneous-functions": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72473-RemovedDeprecatedMiscellaneousFunctions.html#breaking-72473-removed-deprecated-miscellaneous-functions", + "Changelog\/8.0\/Breaking-72473-RemovedDeprecatedMiscellaneousFunctions.html#breaking-72473", "Breaking: #72473 - Removed deprecated miscellaneous functions" ], "breaking-72474-requesthandler-only-works-with-routes": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72474-RequestHandlerOnlyWorksWithRoutes.html#breaking-72474-requesthandler-only-works-with-routes", + "Changelog\/8.0\/Breaking-72474-RequestHandlerOnlyWorksWithRoutes.html#breaking-72474", "Breaking: #72474 - RequestHandler only works with Routes" ], "breaking-72476-php-constant-typo3-proceed-if-no-user-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72476-PHPConstantTYPO3_PROCEED_IF_NO_USERRemoved.html#breaking-72476-php-constant-typo3-proceed-if-no-user-removed", + "Changelog\/8.0\/Breaking-72476-PHPConstantTYPO3_PROCEED_IF_NO_USERRemoved.html#breaking-72476", "Breaking: #72476 - PHP Constant TYPO3_PROCEED_IF_NO_USER removed" ], "breaking-72492-removed-xhtml2-support": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72492-RemovedXHTML2Support.html#breaking-72492-removed-xhtml2-support", + "Changelog\/8.0\/Breaking-72492-RemovedXHTML2Support.html#breaking-72492", "Breaking: #72492 - Removed XHTML2 support" ], "breaking-72493-removed-typoscript-property-page-bgimg": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72493-RemovedTypoScriptPropertyPagebgImg.html#breaking-72493-removed-typoscript-property-page-bgimg", + "Changelog\/8.0\/Breaking-72493-RemovedTypoScriptPropertyPagebgImg.html#breaking-72493", "Breaking: #72493 - Removed TypoScript property page.bgImg" ], "breaking-72497-removed-recode-support-for-charset-conversion": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72497-RemovedRecodeSupportForCharsetConversion.html#breaking-72497-removed-recode-support-for-charset-conversion", + "Changelog\/8.0\/Breaking-72497-RemovedRecodeSupportForCharsetConversion.html#breaking-72497", "Breaking: #72497 - Removed recode support for Charset Conversion" ], "breaking-72572-remove-more-deprecated-miscellaneous-functions-and-options": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72572-RemoveMoreDeprecatedMiscellaneousFunctionsAndOptions.html#breaking-72572-remove-more-deprecated-miscellaneous-functions-and-options", + "Changelog\/8.0\/Breaking-72572-RemoveMoreDeprecatedMiscellaneousFunctionsAndOptions.html#breaking-72572", "Breaking: #72572 - Remove more deprecated miscellaneous functions and options" ], "breaking-72602-removed-unzip-functionality": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72602-RemovedUnzipFunctionality.html#breaking-72602-removed-unzip-functionality", + "Changelog\/8.0\/Breaking-72602-RemovedUnzipFunctionality.html#breaking-72602", "Breaking: #72602 - Removed unzip functionality" ], "breaking-72604-remove-option-maxfilenamelength": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72604-RemoveOptionMaxFileNameLength.html#breaking-72604-remove-option-maxfilenamelength", + "Changelog\/8.0\/Breaking-72604-RemoveOptionMaxFileNameLength.html#breaking-72604", "Breaking: #72604 - Remove option maxFileNameLength" ], "breaking-72661-rte-transformation-ts-strip-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72661-RTETransformationTs_stripRemoved.html#breaking-72661-rte-transformation-ts-strip-removed", + "Changelog\/8.0\/Breaking-72661-RTETransformationTs_stripRemoved.html#breaking-72661", "Breaking: #72661 - RTE Transformation ts_strip removed" ], "breaking-72666-rte-remove-relative-path-calculations": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72666-RTERemoveRelativePathCalculations.html#breaking-72666-rte-remove-relative-path-calculations", + "Changelog\/8.0\/Breaking-72666-RTERemoveRelativePathCalculations.html#breaking-72666", "Breaking: #72666 - RTE: Remove relative path calculations" ], "breaking-72667-rte-unused-internal-methods-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72667-RTEUnusedInternalMethodsRemoved.html#breaking-72667-rte-unused-internal-methods-removed", + "Changelog\/8.0\/Breaking-72667-RTEUnusedInternalMethodsRemoved.html#breaking-72667", "Breaking: #72667 - RTE: Unused internal methods removed" ], "breaking-72671-extension-aboutmodules-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72671-ExtensionAboutmodulesRemoved.html#breaking-72671-extension-aboutmodules-removed", + "Changelog\/8.0\/Breaking-72671-ExtensionAboutmodulesRemoved.html#breaking-72671", "Breaking: #72671 - Extension \"aboutmodules\" removed" ], "breaking-72686-removed-rtehtmlparser-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72686-RemovedRteHtmlParserMethods.html#breaking-72686-removed-rtehtmlparser-methods", + "Changelog\/8.0\/Breaking-72686-RemovedRteHtmlParserMethods.html#breaking-72686", "Breaking: #72686 - Removed RteHtmlParser methods" ], "breaking-72701-remove-unused-properties-in-documenttemplate": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72701-RemoveUnusedPropertiesInDocumentTemplate.html#breaking-72701-remove-unused-properties-in-documenttemplate", + "Changelog\/8.0\/Breaking-72701-RemoveUnusedPropertiesInDocumentTemplate.html#breaking-72701", "Breaking: #72701 - Remove unused properties in DocumentTemplate" ], "breaking-72711-remove-property-strict-in-typoscriptparser": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72711-RemovePropertyStrictInTypoScriptParser.html#breaking-72711-remove-property-strict-in-typoscriptparser", + "Changelog\/8.0\/Breaking-72711-RemovePropertyStrictInTypoScriptParser.html#breaking-72711", "Breaking: #72711 - Remove property strict in TypoScriptParser" ], "breaking-72783-removed-rte-transformation-option-preservetables": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72783-RemovedRTETransformationOptionPreserveTables.html#breaking-72783-removed-rte-transformation-option-preservetables", + "Changelog\/8.0\/Breaking-72783-RemovedRTETransformationOptionPreserveTables.html#breaking-72783", "Breaking: #72783 - Removed RTE transformation option preserveTables" ], "breaking-72826-removed-custom-charset-configuration-for-locales": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72826-RemovedCustomCharsetConfigurationForLocales.html#breaking-72826-removed-custom-charset-configuration-for-locales", + "Changelog\/8.0\/Breaking-72826-RemovedCustomCharsetConfigurationForLocales.html#breaking-72826", "Breaking: #72826 - Removed custom charset configuration for locales" ], "breaking-72830-removed-deprecated-rte-transformations-ts-ts-transform": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72830-RemovedDeprecatedRTETransformationsTsTs_transform.html#breaking-72830-removed-deprecated-rte-transformations-ts-ts-transform", + "Changelog\/8.0\/Breaking-72830-RemovedDeprecatedRTETransformationsTsTs_transform.html#breaking-72830", "Breaking: #72830 - Removed deprecated RTE transformations ts & ts_transform" ], "breaking-72837-rte-transformations-allow-div-sections-by-default-and-remove-font-specific-parsing": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72837-RTETransformationsAllowDivSectionsByDefaultAndRemoveFont-specificParsing.html#breaking-72837-rte-transformations-allow-div-sections-by-default-and-remove-font-specific-parsing", + "Changelog\/8.0\/Breaking-72837-RTETransformationsAllowDivSectionsByDefaultAndRemoveFont-specificParsing.html#breaking-72837", "Breaking: #72837 - RTE transformations: Allow div sections by default and remove font-specific parsing" ], "breaking-72853-remove-unused-images-from-core": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72853-RemoveUnusedImagesFromCore.html#breaking-72853-remove-unused-images-from-core", + "Changelog\/8.0\/Breaking-72853-RemoveUnusedImagesFromCore.html#breaking-72853", "Breaking: #72853 - Remove unused Images from core" ], "breaking-72861-ext-form-remove-deprecated-code": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72861-EXTform-RemoveDeprecatedCode.html#breaking-72861-ext-form-remove-deprecated-code", + "Changelog\/8.0\/Breaking-72861-EXTform-RemoveDeprecatedCode.html#breaking-72861", "Breaking: #72861 - EXT:form - Remove deprecated code" ], "breaking-72866-removed-rte-processing-option-to-use-div-tags-instead-of-p-tags": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72866-RemovedRTEProcessingOptionToUseDivTagsInsteadOfPTags.html#breaking-72866-removed-rte-processing-option-to-use-div-tags-instead-of-p-tags", + "Changelog\/8.0\/Breaking-72866-RemovedRTEProcessingOptionToUseDivTagsInsteadOfPTags.html#breaking-72866", "Breaking: #72866 - Removed RTE processing option to use div tags instead of p tags" ], "breaking-72870-removed-rte-transformation-ts-preserve-and-preservetags": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72870-RemovedRTETransformationTs_preserveAndPreserveTags.html#breaking-72870-removed-rte-transformation-ts-preserve-and-preservetags", + "Changelog\/8.0\/Breaking-72870-RemovedRTETransformationTs_preserveAndPreserveTags.html#breaking-72870", "Breaking: #72870 - Removed RTE transformation ts_preserve and preserveTags" ], "breaking-72888-removed-htmlparser-maptags-functionality": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72888-RemovedHtmlParserMapTagsFunctionality.html#breaking-72888-removed-htmlparser-maptags-functionality", + "Changelog\/8.0\/Breaking-72888-RemovedHtmlParserMapTagsFunctionality.html#breaking-72888", "Breaking: #72888 - Removed HtmlParser mapTags functionality" ], "breaking-72889-removed-rtehtmlparser-htmlspecialchars-transformation-options": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72889-RemovedRteHtmlParserHtmlspecialcharsTransformationOptions.html#breaking-72889-removed-rtehtmlparser-htmlspecialchars-transformation-options", + "Changelog\/8.0\/Breaking-72889-RemovedRteHtmlParserHtmlspecialcharsTransformationOptions.html#breaking-72889", "Breaking: #72889 - Removed RteHtmlParser htmlspecialchars() transformation options" ], "breaking-72897-rtehtmlparser-dropped-ts-reglinks-transformation": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-72897-RteHtmlParserDroppedTs_reglinksTransformation.html#breaking-72897-rtehtmlparser-dropped-ts-reglinks-transformation", + "Changelog\/8.0\/Breaking-72897-RteHtmlParserDroppedTs_reglinksTransformation.html#breaking-72897", "Breaking: #72897 - RteHtmlParser: Dropped ts_reglinks transformation" ], "breaking-73044-json-for-clickmenu-in-backend": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-73044-JSONForClickMenuInBackend.html#breaking-73044-json-for-clickmenu-in-backend", + "Changelog\/8.0\/Breaking-73044-JSONForClickMenuInBackend.html#breaking-73044", "Breaking: #73044 - JSON for ClickMenu in Backend" ], "breaking-73046-alias-abstractnode-viewhelpernode-for-backwards-compatibility": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-73046-AliasAbstractNode-ViewHelperNodeForBackwardsCompatibility.html#breaking-73046-alias-abstractnode-viewhelpernode-for-backwards-compatibility", + "Changelog\/8.0\/Breaking-73046-AliasAbstractNode-ViewHelperNodeForBackwardsCompatibility.html#breaking-73046", "Breaking: #73046 - Alias AbstractNode -> ViewHelperNode for backwards compatibility" ], "breaking-73106-convert-thumbnails-only-for-non-image-files": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-73106-ConvertThumbnailsOnlyForNon-imageFiles.html#breaking-73106-convert-thumbnails-only-for-non-image-files", + "Changelog\/8.0\/Breaking-73106-ConvertThumbnailsOnlyForNon-imageFiles.html#breaking-73106", "Breaking: #73106 - Convert thumbnails only for non-image files" ], "breaking-73152-symfony-console-helpers-replaced": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-73152-SymfonyConsoleHelpersReplaced.html#breaking-73152-symfony-console-helpers-replaced", + "Changelog\/8.0\/Breaking-73152-SymfonyConsoleHelpersReplaced.html#breaking-73152", "Breaking: #73152 - Symfony console helpers replaced" ], "breaking-73445-remove-flashmessage-compatibility-js-from-core": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-73445-RemoveFlashmessage_compatibilityjsFromCore.html#breaking-73445-remove-flashmessage-compatibility-js-from-core", + "Changelog\/8.0\/Breaking-73445-RemoveFlashmessage_compatibilityjsFromCore.html#breaking-73445", "Breaking: #73445 - Remove flashmessage_compatibility.js from core" ], "breaking-73504-make-timetracker-a-singleton": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-73504-MakeTimeTrackerASingleton.html#breaking-73504-make-timetracker-a-singleton", + "Changelog\/8.0\/Breaking-73504-MakeTimeTrackerASingleton.html#breaking-73504", "Breaking: #73504 - Make TimeTracker a singleton" ], "breaking-73514-typoscript-property-includelibs-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-73514-TypoScriptPropertyIncludeLibsRemoved.html#breaking-73514-typoscript-property-includelibs-removed", + "Changelog\/8.0\/Breaking-73514-TypoScriptPropertyIncludeLibsRemoved.html#breaking-73514", "Breaking: #73514 - TypoScript property \"includeLibs\" removed" ], "breaking-73516-generalutility-getfileabsfilename-allows-for-typo3-maindir-specific-paths": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-73516-GeneralUtilitygetFileAbsFileNameAllowsForTypo3MaindirSpecificPaths.html#breaking-73516-generalutility-getfileabsfilename-allows-for-typo3-maindir-specific-paths", + "Changelog\/8.0\/Breaking-73516-GeneralUtilitygetFileAbsFileNameAllowsForTypo3MaindirSpecificPaths.html#breaking-73516", "Breaking: #73516 - GeneralUtility::getFileAbsFileName allows for typo3\/ maindir specific paths" ], "breaking-73602-short-url-without-id-id-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-73602-Short-URLWithoutIdIDRemoved.html#breaking-73602-short-url-without-id-id-removed", + "Changelog\/8.0\/Breaking-73602-Short-URLWithoutIdIDRemoved.html#breaking-73602", "Breaking: #73602 - Short-URL without ?id=ID removed" ], "breaking-73611-removed-resourcecompressor-relative-path-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-73611-RemovedResourceCompressorRelativePathMethods.html#breaking-73611-removed-resourcecompressor-relative-path-methods", + "Changelog\/8.0\/Breaking-73611-RemovedResourceCompressorRelativePathMethods.html#breaking-73611", "Breaking: #73611 - Removed ResourceCompressor relative path methods" ], "breaking-73655-php-7-required": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-73655-Php7Required.html#breaking-73655-php-7-required", + "Changelog\/8.0\/Breaking-73655-Php7Required.html#breaking-73655", "Breaking: #73655 - PHP 7 required" ], "breaking-73698-streamline-layout-of-flashmessages": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-73698-StreamlineLayoutOfFlashMessages.html#breaking-73698-streamline-layout-of-flashmessages", + "Changelog\/8.0\/Breaking-73698-StreamlineLayoutOfFlashMessages.html#breaking-73698", "Breaking: #73698 - Streamline layout of FlashMessages" ], "breaking-73711-removed-deprecated-code-from-form-domain-model-element": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-73711-RemovedDeprecatedCodeFromFormDomainModelElement.html#breaking-73711-removed-deprecated-code-from-form-domain-model-element", + "Changelog\/8.0\/Breaking-73711-RemovedDeprecatedCodeFromFormDomainModelElement.html#breaking-73711", "Breaking: #73711 - Removed deprecated code from Form Domain Model Element" ], "breaking-73719-unused-javascript-configuration-options-for-the-backend-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-73719-UnusedJavaScriptConfigurationOptionsForTheBackendRemoved.html#breaking-73719-unused-javascript-configuration-options-for-the-backend-removed", + "Changelog\/8.0\/Breaking-73719-UnusedJavaScriptConfigurationOptionsForTheBackendRemoved.html#breaking-73719", "Breaking: #73719 - Unused JavaScript configuration options for the Backend removed" ], "breaking-73763-removed-backpath-from-pagerenderer": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-73763-RemovedBackPathFromPageRenderer.html#breaking-73763-removed-backpath-from-pagerenderer", + "Changelog\/8.0\/Breaking-73763-RemovedBackPathFromPageRenderer.html#breaking-73763", "Breaking: #73763 - Removed backPath from PageRenderer" ], "breaking-73793-removed-abstractplugin-local-lang-charset": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-73793-RemovedAbstractPlugin-LOCAL_LANG_charset.html#breaking-73793-removed-abstractplugin-local-lang-charset", + "Changelog\/8.0\/Breaking-73793-RemovedAbstractPlugin-LOCAL_LANG_charset.html#breaking-73793", "Breaking: #73793 - Removed AbstractPlugin->LOCAL_LANG_charset" ], "breaking-73794-rendercharset-option-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-73794-RenderCharsetOptionRemoved.html#breaking-73794-rendercharset-option-removed", + "Changelog\/8.0\/Breaking-73794-RenderCharsetOptionRemoved.html#breaking-73794", "Breaking: #73794 - renderCharset option removed" ], "breaking-74029-remove-moduleloader-getrelativepath": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-74029-RemoveModuleLoader-getRelativePath.html#breaking-74029-remove-moduleloader-getrelativepath", + "Changelog\/8.0\/Breaking-74029-RemoveModuleLoader-getRelativePath.html#breaking-74029", "Breaking: #74029 - Remove ModuleLoader->getRelativePath()" ], "breaking-74031-charsetconverter-parameters-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-74031-CharsetConverterParametersRemoved.html#breaking-74031-charsetconverter-parameters-removed", + "Changelog\/8.0\/Breaking-74031-CharsetConverterParametersRemoved.html#breaking-74031", "Breaking: #74031 - CharsetConverter parameters removed" ], "breaking-74124-removed-sys-file-reference-field-downloadname": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-74124-RemovedSys_file_referenceFieldDownloadname.html#breaking-74124-removed-sys-file-reference-field-downloadname", + "Changelog\/8.0\/Breaking-74124-RemovedSys_file_referenceFieldDownloadname.html#breaking-74124", "Breaking: #74124 - Removed sys_file_reference field downloadname" ], "breaking-75150-removed-typoscript-option-includejslibs": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-75150-RemovedTypoScriptOptionIncludeJSlibs.html#breaking-75150-removed-typoscript-option-includejslibs", + "Changelog\/8.0\/Breaking-75150-RemovedTypoScriptOptionIncludeJSlibs.html#breaking-75150", "Breaking: #75150 - Removed TypoScript option includeJSlibs" ], "breaking-76155-viewhelper-namespace-imports-with-xmlns-are-now-singular": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Breaking-76155-ViewHelperNamespaceImportsWithXmlnsAreNowSingular.html#breaking-76155-viewhelper-namespace-imports-with-xmlns-are-now-singular", + "Changelog\/8.0\/Breaking-76155-ViewHelperNamespaceImportsWithXmlnsAreNowSingular.html#breaking-76155", "Breaking: #76155 - ViewHelper Namespace imports with xmlns are now singular" ], "deprecation-68748-deprecate-abstractcontentobject-getcontentobject": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-68748-DeprecateAbstractContentObjectgetContentObject.html#deprecation-68748-deprecate-abstractcontentobject-getcontentobject", + "Changelog\/8.0\/Deprecation-68748-DeprecateAbstractContentObjectgetContentObject.html#deprecation-68748", "Deprecation: #68748 - Deprecate AbstractContentObject::getContentObject()" ], "deprecation-69863-deprecate-gettemplatevariablecontainer-function": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-69863-DeprecateGetTemplateVariableContainerFunction.html#deprecation-69863-deprecate-gettemplatevariablecontainer-function", + "Changelog\/8.0\/Deprecation-69863-DeprecateGetTemplateVariableContainerFunction.html#deprecation-69863", "Deprecation: #69863 - Deprecate getTemplateVariableContainer function" ], "deprecation-71255-extendedfileutility-pusherrormessagestoflashmessagequeue": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-71255-ExtendedFileUtilitypushErrorMessagesToFlashMessageQueue.html#deprecation-71255-extendedfileutility-pusherrormessagestoflashmessagequeue", + "Changelog\/8.0\/Deprecation-71255-ExtendedFileUtilitypushErrorMessagesToFlashMessageQueue.html#deprecation-71255", "Deprecation: #71255 - ExtendedFileUtility::pushErrorMessagesToFlashMessageQueue()" ], "deprecation-71153-several-documenttemplate-methods-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-71260-DocumentTemplateMethods.html#deprecation-71153-several-documenttemplate-methods-deprecated", + "Changelog\/8.0\/Deprecation-71260-DocumentTemplateMethods.html#deprecation-71153-1668719172", "Deprecation: #71153 - Several DocumentTemplate methods deprecated" ], "deprecation-71916-languageservice-makeentities": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-71916-LanguageService-makeEntities.html#deprecation-71916-languageservice-makeentities", + "Changelog\/8.0\/Deprecation-71916-LanguageService-makeEntities.html#deprecation-71916", "Deprecation: #71916 - LanguageService->makeEntities" ], "deprecation-72340-moved-modulelabels-from-languageservice-to-moduleloader": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-72340-MovedModuleLabelsFromLanguageServiceToModuleLoader.html#deprecation-72340-moved-modulelabels-from-languageservice-to-moduleloader", + "Changelog\/8.0\/Deprecation-72340-MovedModuleLabelsFromLanguageServiceToModuleLoader.html#deprecation-72340", "Deprecation: #72340 - Moved moduleLabels from LanguageService to ModuleLoader" ], "deprecation-72496-deprecated-lang-overridell": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-72496-DeprecatedLANG-overrideLL.html#deprecation-72496-deprecated-lang-overridell", + "Changelog\/8.0\/Deprecation-72496-DeprecatedLANG-overrideLL.html#deprecation-72496", "Deprecation: #72496 - Deprecated $LANG->overrideLL" ], "deprecation-72733-deprecate-more-methods-of-documenttemplate": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-72733-DeprecateMoreMethodsOfDocumentTemplate.html#deprecation-72733-deprecate-more-methods-of-documenttemplate", + "Changelog\/8.0\/Deprecation-72733-DeprecateMoreMethodsOfDocumentTemplate.html#deprecation-72733", "Deprecation: #72733 - Deprecate more methods of DocumentTemplate" ], "deprecation-72827-module-icon-configuration-via-labels-tabs-images-tab": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-72827-ModuleIconConfigurationViaLabelstabs_imagestab.html#deprecation-72827-module-icon-configuration-via-labels-tabs-images-tab", + "Changelog\/8.0\/Deprecation-72827-ModuleIconConfigurationViaLabelstabs_imagestab.html#deprecation-72827", "Deprecation: #72827 - Module Icon configuration via [labels][tabs_images][tab]" ], "deprecation-72851-deprecate-some-functions-not-in-use-anymore-in-the-core": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-72851-DeprecateSomeFunctionsNotInUseAnymoreInTheCore.html#deprecation-72851-deprecate-some-functions-not-in-use-anymore-in-the-core", + "Changelog\/8.0\/Deprecation-72851-DeprecateSomeFunctionsNotInUseAnymoreInTheCore.html#deprecation-72851", "Deprecation: #72851 - Deprecate some functions not in use anymore in the core" ], "deprecation-72856-removed-rte-modes-option": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-72856-RemovedRTEModesOption.html#deprecation-72856-removed-rte-modes-option", + "Changelog\/8.0\/Deprecation-72856-RemovedRTEModesOption.html#deprecation-72856", "Deprecation: #72856 - Removed RTE \"modes\" option" ], "flexform": [ @@ -57259,145 +57463,145 @@ "deprecation-73050-deprecated-random-generator-methods-in-generalutility": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-73050-DeprecatedRandomGeneratorMethodsInGeneralUtility.html#deprecation-73050-deprecated-random-generator-methods-in-generalutility", + "Changelog\/8.0\/Deprecation-73050-DeprecatedRandomGeneratorMethodsInGeneralUtility.html#deprecation-73050", "Deprecation: #73050 - Deprecated random generator methods in GeneralUtility" ], "deprecation-73067-deprecate-generalutility-requireonce-and-generalutility-requirefile": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-73067-DeprecateGeneralUtilityrequireOnceAndGeneralUtilityrequireFile.html#deprecation-73067-deprecate-generalutility-requireonce-and-generalutility-requirefile", + "Changelog\/8.0\/Deprecation-73067-DeprecateGeneralUtilityrequireOnceAndGeneralUtilityrequireFile.html#deprecation-73067", "Deprecation: #73067 - Deprecate GeneralUtility::requireOnce and GeneralUtility::requireFile" ], "deprecation-73068-deprecated-default-argument-on-f-case": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-73068-DeprecatedDefaultArgumentOnFcase.html#deprecation-73068-deprecated-default-argument-on-f-case", + "Changelog\/8.0\/Deprecation-73068-DeprecatedDefaultArgumentOnFcase.html#deprecation-73068", "Deprecation: #73068 - Deprecated \"default\" argument on f:case" ], "deprecation-73185-deprecate-nulltimetracker": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-73185-DeprecateNullTimeTracker.html#deprecation-73185-deprecate-nulltimetracker", + "Changelog\/8.0\/Deprecation-73185-DeprecateNullTimeTracker.html#deprecation-73185", "Deprecation: #73185 - Deprecate NullTimeTracker" ], "deprecation-73190-deprecate-backendutility-getlistviewlink": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-73190-DeprecateBackendUtilitygetListViewLink.html#deprecation-73190-deprecate-backendutility-getlistviewlink", + "Changelog\/8.0\/Deprecation-73190-DeprecateBackendUtilitygetListViewLink.html#deprecation-73190", "Deprecation: #73190 - Deprecate BackendUtility::getListViewLink()" ], "deprecation-73352-deprecate-old-school-ajax-requests": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-73352-DeprecateOld-schoolAJAXRequests.html#deprecation-73352-deprecate-old-school-ajax-requests", + "Changelog\/8.0\/Deprecation-73352-DeprecateOld-schoolAJAXRequests.html#deprecation-73352", "Deprecation: #73352 - Deprecate old-school AJAX requests" ], "deprecation-73442-modal-getseverityclass-has-been-moved-to-the-severity-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-73442-ModalGetSeverityClassHasBeenMovedToTheSeverityModule.html#deprecation-73442-modal-getseverityclass-has-been-moved-to-the-severity-module", + "Changelog\/8.0\/Deprecation-73442-ModalGetSeverityClassHasBeenMovedToTheSeverityModule.html#deprecation-73442", "Deprecation: #73442 - Modal.getSeverityClass has been moved to the Severity module" ], "deprecation-73482-lang-csconvobj-and-lang-parserfactory": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-73482-LANG-csConvObjAndLANG-parserFactory.html#deprecation-73482-lang-csconvobj-and-lang-parserfactory", + "Changelog\/8.0\/Deprecation-73482-LANG-csConvObjAndLANG-parserFactory.html#deprecation-73482", "Deprecation: #73482 - $LANG->csConvObj and $LANG->parserFactory" ], "deprecation-73511-browserlanguage-detection-moved-to-locales": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-73511-BrowserLanguageDetectionMovedToLocales.html#deprecation-73511-browserlanguage-detection-moved-to-locales", + "Changelog\/8.0\/Deprecation-73511-BrowserLanguageDetectionMovedToLocales.html#deprecation-73511", "Deprecation: #73511 - BrowserLanguage detection moved to Locales" ], "deprecation-73514-includelibrary-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-73514-IncludeLibraryMethods.html#deprecation-73514-includelibrary-methods", + "Changelog\/8.0\/Deprecation-73514-IncludeLibraryMethods.html#deprecation-73514", "Deprecation: #73514 - IncludeLibrary Methods" ], "deprecation-73516-various-generalutility-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-73516-VariousGeneralUtilityMethods.html#deprecation-73516-various-generalutility-methods", + "Changelog\/8.0\/Deprecation-73516-VariousGeneralUtilityMethods.html#deprecation-73516", "Deprecation: #73516 - Various GeneralUtility methods" ], "deprecation-72585-deprecate-typo3-cms-core-resource-utility-backendutility-getflashmessageformissingfile": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-73585-DeprecateTYPO3CMSCoreResourceUtilityBackendUtilitygetFlashMessageForMissingFile.html#deprecation-72585-deprecate-typo3-cms-core-resource-utility-backendutility-getflashmessageformissingfile", + "Changelog\/8.0\/Deprecation-73585-DeprecateTYPO3CMSCoreResourceUtilityBackendUtilitygetFlashMessageForMissingFile.html#deprecation-72585", "Deprecation: #72585 - Deprecate TYPO3\\CMS\\Core\\Resource\\Utility\\BackendUtility::getFlashMessageForMissingFile" ], "deprecation-73606-deprecate-iconregistry-getdeprecationsettings": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-73606-DeprecateIconRegistrygetDeprecationSettings.html#deprecation-73606-deprecate-iconregistry-getdeprecationsettings", + "Changelog\/8.0\/Deprecation-73606-DeprecateIconRegistrygetDeprecationSettings.html#deprecation-73606", "Deprecation: #73606 - Deprecate IconRegistry::getDeprecationSettings" ], "deprecation-73744-deprecate-clipboard-confirmmsg": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-73744-DeprecateClipboard-confirmMsg.html#deprecation-73744-deprecate-clipboard-confirmmsg", + "Changelog\/8.0\/Deprecation-73744-DeprecateClipboard-confirmMsg.html#deprecation-73744", "Deprecation: #73744 - Deprecate Clipboard->confirmMsg()" ], "deprecation-73794-searchformcontroller-utf8-to-currentcharset-and-tsfe-rendercharset": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-73794-SearchFormController-utf8_to_currentCharsetAndTSFE-renderCharset.html#deprecation-73794-searchformcontroller-utf8-to-currentcharset-and-tsfe-rendercharset", + "Changelog\/8.0\/Deprecation-73794-SearchFormController-utf8_to_currentCharsetAndTSFE-renderCharset.html#deprecation-73794", "Deprecation: #73794 - SearchFormController->utf8_to_currentCharset and TSFE->renderCharset" ], "deprecation-74022-graphicalfunctions-prependabsolutepath": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-74022-GraphicalFunctions-prependAbsolutePath.html#deprecation-74022-graphicalfunctions-prependabsolutepath", + "Changelog\/8.0\/Deprecation-74022-GraphicalFunctions-prependAbsolutePath.html#deprecation-74022", "Deprecation: #74022 - GraphicalFunctions->prependAbsolutePath()" ], "deprecation-74156-templateservice-sortedkeylist-and-templateservice-removequerystring": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Deprecation-74156-TemplateServicesortedKeyListAndTemplateService-removeQueryString.html#deprecation-74156-templateservice-sortedkeylist-and-templateservice-removequerystring", + "Changelog\/8.0\/Deprecation-74156-TemplateServicesortedKeyListAndTemplateService-removeQueryString.html#deprecation-74156", "Deprecation: #74156 - TemplateService::sortedKeyList and TemplateService->removeQueryString" ], "feature-1835-recover-pages-recursively-to-top-of-rootline": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Feature-1835-RecoverPagesRecursivelyToTop.html#feature-1835-recover-pages-recursively-to-top-of-rootline", + "Changelog\/8.0\/Feature-1835-RecoverPagesRecursivelyToTop.html#feature-1835", "Feature: #1835 - Recover pages recursively to top of rootline" ], "feature-19157-add-option-to-exclude-all-hidden-records-in-ext-impexp": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Feature-19157-impexpCouldHaveAnOptionToExcludeAllHiddenRecords.html#feature-19157-add-option-to-exclude-all-hidden-records-in-ext-impexp", + "Changelog\/8.0\/Feature-19157-impexpCouldHaveAnOptionToExcludeAllHiddenRecords.html#feature-19157", "Feature: #19157 - Add option to exclude all hidden records in EXT:impexp" ], "feature-28230-add-support-for-pbkdf2-to-saltedpasswords": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Feature-28230-AddSupportForPBKDF2ToSaltedpasswords.html#feature-28230-add-support-for-pbkdf2-to-saltedpasswords", + "Changelog\/8.0\/Feature-28230-AddSupportForPBKDF2ToSaltedpasswords.html#feature-28230", "Feature: #28230 - Add support for PBKDF2 to saltedpasswords" ], "feature-54887-post-processing-of-the-previewurl": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Feature-54887-Post-processingOfThePreviewUrl.html#feature-54887-post-processing-of-the-previewurl", + "Changelog\/8.0\/Feature-54887-Post-processingOfThePreviewUrl.html#feature-54887", "Feature: #54887 - Post-processing of the previewUrl" ], "feature-67236-added-allowedtags-argument-to-f-format-striptags-viewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Feature-67236-AddedAllowedTagsArgumentToFformatstripTagsViewHelper.html#feature-67236-added-allowedtags-argument-to-f-format-striptags-viewhelper", + "Changelog\/8.0\/Feature-67236-AddedAllowedTagsArgumentToFformatstripTagsViewHelper.html#feature-67236", "Feature: #67236 - Added \"allowedTags\" argument to f:format.stripTags ViewHelper" ], "feature-69394-ext-form-directly-load-form-wizard-as-inline-wizard": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Feature-69394-EXTform-DirectlyLoadFormWizardAsInlineWizard.html#feature-69394-ext-form-directly-load-form-wizard-as-inline-wizard", + "Changelog\/8.0\/Feature-69394-EXTform-DirectlyLoadFormWizardAsInlineWizard.html#feature-69394", "Feature: #69394 - EXT:form - Directly load form wizard as inline wizard" ], "feature-69863-use-new-standalone-fluid-as-composer-dependency": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Feature-69863-UseNewStandaloneFluidAsComposerDependency.html#feature-69863-use-new-standalone-fluid-as-composer-dependency", + "Changelog\/8.0\/Feature-69863-UseNewStandaloneFluidAsComposerDependency.html#feature-69863", "Feature: #69863 - Use new standalone Fluid as composer dependency" ], "renderingcontext": [ @@ -57493,49 +57697,49 @@ "feature-71331-make-indexed-search-extbase-plugin-form-target-pid-configurable": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Feature-71331-MakeIndexedSearchExtbasePluginFormTargetPidConfigurable.html#feature-71331-make-indexed-search-extbase-plugin-form-target-pid-configurable", + "Changelog\/8.0\/Feature-71331-MakeIndexedSearchExtbasePluginFormTargetPidConfigurable.html#feature-71331", "Feature: #71331 - Make indexed_search extbase plugin form target Pid configurable" ], "feature-71876-make-new-content-element-wizard-tab-sort-order-configurable": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Feature-71876-MakeNewContentElementWizardTabSortOrderConfigurable.html#feature-71876-make-new-content-element-wizard-tab-sort-order-configurable", + "Changelog\/8.0\/Feature-71876-MakeNewContentElementWizardTabSortOrderConfigurable.html#feature-71876", "Feature: #71876 - Make new content element wizard tab sort order configurable" ], "feature-72045-htmlparser-stripemptytags-keeptags": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Feature-72045-KeepTagsInHtmlParserWhenStrippingEmptyTags.html#feature-72045-htmlparser-stripemptytags-keeptags", + "Changelog\/8.0\/Feature-72045-KeepTagsInHtmlParserWhenStrippingEmptyTags.html#feature-72045", "Feature: #72045 - HTMLparser.stripEmptyTags.keepTags" ], "feature-72309-ext-form-integration-of-predefined-forms": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Feature-72309-EXTform-AllowIntegrationOfPredefinedForms.html#feature-72309-ext-form-integration-of-predefined-forms", + "Changelog\/8.0\/Feature-72309-EXTform-AllowIntegrationOfPredefinedForms.html#feature-72309", "Feature: #72309 - EXT:form - Integration of Predefined Forms" ], "feature-72337-charset-conversion-autodetection": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Feature-72337-CharsetConversionAutodetection.html#feature-72337-charset-conversion-autodetection", + "Changelog\/8.0\/Feature-72337-CharsetConversionAutodetection.html#feature-72337", "Feature: #72337 - Charset Conversion Autodetection" ], "feature-72904-add-preprocessstorage-signal-to-resourcefactory": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Feature-72904-AddPreProcessStorageSignalToResourceFactory.html#feature-72904-add-preprocessstorage-signal-to-resourcefactory", + "Changelog\/8.0\/Feature-72904-AddPreProcessStorageSignalToResourceFactory.html#feature-72904", "Feature: #72904 - Add preProcessStorage signal to ResourceFactory" ], "feature-73042-introduce-native-support-for-symfony-console": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Feature-73042-IntroduceNativeSupportForSymfonyConsole.html#feature-73042-introduce-native-support-for-symfony-console", + "Changelog\/8.0\/Feature-73042-IntroduceNativeSupportForSymfonyConsole.html#feature-73042", "Feature: #73042 - Introduce native support for Symfony Console" ], "feature-73050-add-a-csprng-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Feature-73050-AddACSPRNGAPI.html#feature-73050-add-a-csprng-api", + "Changelog\/8.0\/Feature-73050-AddACSPRNGAPI.html#feature-73050", "Feature: #73050 - Add a CSPRNG API" ], "api-overview": [ @@ -57547,7 +57751,7 @@ "feature-73429-wizard-component-has-been-added": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Feature-73429-WizardComponentHasBeenAdded.html#feature-73429-wizard-component-has-been-added", + "Changelog\/8.0\/Feature-73429-WizardComponentHasBeenAdded.html#feature-73429", "Feature: #73429 - Wizard component has been added" ], "addslide": [ @@ -57571,67 +57775,67 @@ "feature-73720-trigger-event-after-modal-window-dismissed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Feature-73720-TriggerEventAfterModalWindowDismissed.html#feature-73720-trigger-event-after-modal-window-dismissed", + "Changelog\/8.0\/Feature-73720-TriggerEventAfterModalWindowDismissed.html#feature-73720", "Feature: #73720 - Trigger event after modal window dismissed" ], "feature-73752-allow-accessing-objectstorage-as-array-in-fluid-and-other-places": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Feature-73752-AllowAccessingObjectStorageAsArrayInFluidAndOtherPlaces.html#feature-73752-allow-accessing-objectstorage-as-array-in-fluid-and-other-places", + "Changelog\/8.0\/Feature-73752-AllowAccessingObjectStorageAsArrayInFluidAndOtherPlaces.html#feature-73752", "Feature: #73752 - Allow accessing ObjectStorage as array in Fluid and other places" ], "feature-74038-report-for-checking-database-character-set": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Feature-74038-ReportForCheckingDatabaseCharacterSet.html#feature-74038-report-for-checking-database-character-set", + "Changelog\/8.0\/Feature-74038-ReportForCheckingDatabaseCharacterSet.html#feature-74038", "Feature: #74038 - Report for checking database character set" ], "feature-74109-set-the-alternative-backend-logo-via-extension-manager": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Feature-74109-SetTheAlternativeBackendLogoViaExtensionManager.html#feature-74109-set-the-alternative-backend-logo-via-extension-manager", + "Changelog\/8.0\/Feature-74109-SetTheAlternativeBackendLogoViaExtensionManager.html#feature-74109", "Feature: #74109 - Set the alternative Backend Logo via Extension Manager" ], "feature-74179-page-module-drag-drop-can-do-copies-via-ctrl-key-now": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Feature-74179-PageModuleDragDropCanDoCopiesViaCTRLKeyNow.html#feature-74179-page-module-drag-drop-can-do-copies-via-ctrl-key-now", + "Changelog\/8.0\/Feature-74179-PageModuleDragDropCanDoCopiesViaCTRLKeyNow.html#feature-74179", "Feature: #74179 - Page Module Drag & Drop Can Do Copies Via CTRL Key Now" ], "feature-74319-default-database-character-set-and-update-wizard-for-non-utf-8": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Feature-74319-DefaultDatabaseCharacterSetAndUpdateWizardForNonUtf-8.html#feature-74319-default-database-character-set-and-update-wizard-for-non-utf-8", + "Changelog\/8.0\/Feature-74319-DefaultDatabaseCharacterSetAndUpdateWizardForNonUtf-8.html#feature-74319", "Feature: #74319 - Default database character set and update wizard for non UTF-8" ], "important-22858-filelist-creating-a-new-file-and-opening-it-immediately-for-editing": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Important-22858-FilelistCreatingANewFileAndOpeningItImmediatelyForEditing.html#important-22858-filelist-creating-a-new-file-and-opening-it-immediately-for-editing", + "Changelog\/8.0\/Important-22858-FilelistCreatingANewFileAndOpeningItImmediatelyForEditing.html#important-22858", "Important: #22858 - Filelist: Creating a new file and opening it immediately for editing" ], "important-70849-make-search-levels-in-live-search-and-list-search-consistent": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Important-70849-MakeSearchLevelsConsistent.html#important-70849-make-search-levels-in-live-search-and-list-search-consistent", + "Changelog\/8.0\/Important-70849-MakeSearchLevelsConsistent.html#important-70849", "Important: #70849 - Make search levels in live search and list search consistent" ], "important-71521-internal-changes-in-commandcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Important-71521-InternalChangesInCommandController.html#important-71521-internal-changes-in-commandcontroller", + "Changelog\/8.0\/Important-71521-InternalChangesInCommandController.html#important-71521", "Important: #71521 - Internal changes in CommandController" ], "important-72290-move-install-tool-update-flags-to-system-registry": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Important-72290-MoveInstallToolUpdateFlagsToSystemRegistry.html#important-72290-move-install-tool-update-flags-to-system-registry", + "Changelog\/8.0\/Important-72290-MoveInstallToolUpdateFlagsToSystemRegistry.html#important-72290", "Important: #72290 - Move install tool update flags to system registry" ], "important-72580-publicly-accessible-generated-asset-files-moved-to-typo3temp-assets": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.0\/Important-72580-PubliclyAccessibleGeneratedAssetFilesMovedToTypo3tempassets.html#important-72580-publicly-accessible-generated-asset-files-moved-to-typo3temp-assets", + "Changelog\/8.0\/Important-72580-PubliclyAccessibleGeneratedAssetFilesMovedToTypo3tempassets.html#important-72580", "Important: #72580 - Publicly accessible generated asset files moved to typo3temp\/assets\/" ], "8-0-changes": [ @@ -57643,205 +57847,205 @@ "breaking-66861-do-not-automatically-append-a-to-the-identifier-of-a-folder": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Breaking-66861-DoNotAutomaticallyAppendAToTheIdentifierOfAFolder.html#breaking-66861-do-not-automatically-append-a-to-the-identifier-of-a-folder", + "Changelog\/8.1\/Breaking-66861-DoNotAutomaticallyAppendAToTheIdentifierOfAFolder.html#breaking-66861", "Breaking: #66861 - Do not automatically append a \"\/\" to the identifier of a folder" ], "breaking-70056-http-related-options-and-httprequest-class-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Breaking-70056-CurlAndHttpRequestRemoved.html#breaking-70056-http-related-options-and-httprequest-class-removed", + "Changelog\/8.1\/Breaking-70056-CurlAndHttpRequestRemoved.html#breaking-70056", "Breaking: #70056 - Http-related options and HttpRequest class removed" ], "breaking-75237-removal-of-div-ce-bodytext-might-cause-layout-issues": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Breaking-75237-RemovalOfDivCe-bodytextMightCauseLayoutIssues.html#breaking-75237-removal-of-div-ce-bodytext-might-cause-layout-issues", + "Changelog\/8.1\/Breaking-75237-RemovalOfDivCe-bodytextMightCauseLayoutIssues.html#breaking-75237", "Breaking: #75237 - Removal of div ce-bodytext might cause layout issues" ], "breaking-75323-removed-parameter-entrypointpath-from-main-applications": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Breaking-75323-RemovedParameterEntryPointPathFromMainApplications.html#breaking-75323-removed-parameter-entrypointpath-from-main-applications", + "Changelog\/8.1\/Breaking-75323-RemovedParameterEntryPointPathFromMainApplications.html#breaking-75323", "Breaking: #75323 - Removed parameter entryPointPath from main applications" ], "breaking-75324-referenceindex-cli-command-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Breaking-75324-ReferenceIndexCLICommandChanged.html#breaking-75324-referenceindex-cli-command-changed", + "Changelog\/8.1\/Breaking-75324-ReferenceIndexCLICommandChanged.html#breaking-75324", "Breaking: #75324 - ReferenceIndex CLI command changed" ], "breaking-75349-move-indexed-search-pi-based-plugin-to-compatibility7": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Breaking-75349-MoveIndexedSearchPi-basedPluginToCompatibility7.html#breaking-75349-move-indexed-search-pi-based-plugin-to-compatibility7", + "Changelog\/8.1\/Breaking-75349-MoveIndexedSearchPi-basedPluginToCompatibility7.html#breaking-75349", "Breaking: #75349 - Move Indexed Search pi-based plugin to compatibility7" ], "breaking-75355-flexform-related-options-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Breaking-75355-FlexForm-relatedOptionsRemoved.html#breaking-75355-flexform-related-options-removed", + "Changelog\/8.1\/Breaking-75355-FlexForm-relatedOptionsRemoved.html#breaking-75355", "Breaking: #75355 - FlexForm-related options removed" ], "breaking-75357-typo3-conf-vars-be-lockssl-option-is-boolean": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Breaking-75357-TYPO3_CONF_VARSBElockSSLOptionIsBoolean.html#breaking-75357-typo3-conf-vars-be-lockssl-option-is-boolean", + "Changelog\/8.1\/Breaking-75357-TYPO3_CONF_VARSBElockSSLOptionIsBoolean.html#breaking-75357", "Breaking: #75357 - $TYPO3_CONF_VARS[BE][lockSSL] option is boolean" ], "breaking-75454-localconfiguration-db-config-structure-has-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Breaking-75454-LocalConfigurationDBConfigStructureHasChanged.html#breaking-75454-localconfiguration-db-config-structure-has-changed", + "Changelog\/8.1\/Breaking-75454-LocalConfigurationDBConfigStructureHasChanged.html#breaking-75454", "Breaking: #75454 - LocalConfiguration DB config structure has changed" ], "breaking-75454-typo3-db-constants-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Breaking-75454-TYPO3_dbConstantsRemoved.html#breaking-75454-typo3-db-constants-removed", + "Changelog\/8.1\/Breaking-75454-TYPO3_dbConstantsRemoved.html#breaking-75454-1668719172", "Breaking: #75454 - TYPO3_db Constants removed" ], "breaking-75497-inline-backend-layout-wizard": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Breaking-75497-InlineBackendLayoutWizard.html#breaking-75497-inline-backend-layout-wizard", + "Changelog\/8.1\/Breaking-75497-InlineBackendLayoutWizard.html#breaking-75497", "Breaking: #75497 - inline backend layout wizard" ], "breaking-75708-always-store-p-tags-in-db-from-rte": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Breaking-75708-AlwaysStorePTagsInDBFromRTE.html#breaking-75708-always-store-p-tags-in-db-from-rte", + "Changelog\/8.1\/Breaking-75708-AlwaysStorePTagsInDBFromRTE.html#breaking-75708", "Breaking: #75708 - Always store <p> tags in DB from RTE" ], "breaking-75711-removed-db-related-methods-and-tca-related-options-from-cobj": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Breaking-75711-RemovedDB-relatedMethodsAndTCA-relatedOptionsFromCObj.html#breaking-75711-removed-db-related-methods-and-tca-related-options-from-cobj", + "Changelog\/8.1\/Breaking-75711-RemovedDB-relatedMethodsAndTCA-relatedOptionsFromCObj.html#breaking-75711", "Breaking: #75711 - Removed DB-related methods and TCA-related options from cObj" ], "breaking-75829-removed-handling-of-pre-6-0-files-when-importing": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Breaking-75829-RemovedImportHandlingOfPre60Files.html#breaking-75829-removed-handling-of-pre-6-0-files-when-importing", + "Changelog\/8.1\/Breaking-75829-RemovedImportHandlingOfPre60Files.html#breaking-75829", "Breaking: #75829 - Removed handling of pre 6.0 files when importing" ], "deprecation-73209-deprecated-flex-page-tsconfig": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Deprecation-73209-GlobalFlexPageTsConfig.html#deprecation-73209-deprecated-flex-page-tsconfig", + "Changelog\/8.1\/Deprecation-73209-GlobalFlexPageTsConfig.html#deprecation-73209", "Deprecation: #73209 - Deprecated flex page TSConfig" ], "deprecation-73728-wizard-type-colorbox-is-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Deprecation-73728-WizardTypeColorboxIsDeprecated.html#deprecation-73728-wizard-type-colorbox-is-deprecated", + "Changelog\/8.1\/Deprecation-73728-WizardTypeColorboxIsDeprecated.html#deprecation-73728", "Deprecation: #73728 - Wizard type colorbox is deprecated" ], "deprecation-75327-tsfe-csconvobj-and-tsfe-csconv": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Deprecation-75327-TSFE-csConvObjAndTSFE-csConv.html#deprecation-75327-tsfe-csconvobj-and-tsfe-csconv", + "Changelog\/8.1\/Deprecation-75327-TSFE-csConvObjAndTSFE-csConv.html#deprecation-75327", "Deprecation: #75327 - $TSFE->csConvObj and $TSFE->csConv()" ], "deprecation-75340-methods-related-to-generating-traditional-backend-ajax-urls": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Deprecation-75340-MethodsRelatedToGeneratingTraditionalBackendAJAXURLs.html#deprecation-75340-methods-related-to-generating-traditional-backend-ajax-urls", + "Changelog\/8.1\/Deprecation-75340-MethodsRelatedToGeneratingTraditionalBackendAJAXURLs.html#deprecation-75340", "Deprecation: #75340 - Methods related to generating traditional Backend AJAX URLs" ], "deprecation-75371-array2xml-cs": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Deprecation-75371-Array2xml_cs.html#deprecation-75371-array2xml-cs", + "Changelog\/8.1\/Deprecation-75371-Array2xml_cs.html#deprecation-75371", "Deprecation: #75371 - array2xml_cs" ], "deprecation-75575-translateviewhelper-htmlescape-argument-marked-as-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Deprecation-75575-TranslateViewHelperHtmlEscapeArgumentMarkedAsDeprecated.html#deprecation-75575-translateviewhelper-htmlescape-argument-marked-as-deprecated", + "Changelog\/8.1\/Deprecation-75575-TranslateViewHelperHtmlEscapeArgumentMarkedAsDeprecated.html#deprecation-75575", "Deprecation: #75575 - TranslateViewHelper htmlEscape argument marked as deprecated" ], "deprecation-75621-generalutility-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Deprecation-75621-GeneralUtilityMethods.html#deprecation-75621-generalutility-methods", + "Changelog\/8.1\/Deprecation-75621-GeneralUtilityMethods.html#deprecation-75621", "Deprecation: #75621 - GeneralUtility methods" ], "deprecation-75625-deprecated-cache-clearing-options": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Deprecation-75625-DeprecatedCacheClearingOptions.html#deprecation-75625-deprecated-cache-clearing-options", + "Changelog\/8.1\/Deprecation-75625-DeprecatedCacheClearingOptions.html#deprecation-75625", "Deprecation: #75625 - Deprecated cache clearing options" ], "feature-27471-allow-asterisk-for-hidetables": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Feature-27471-AllowAsteriskForHideTables.html#feature-27471-allow-asterisk-for-hidetables", + "Changelog\/8.1\/Feature-27471-AllowAsteriskForHideTables.html#feature-27471", "Feature: #27471 - Allow asterisk for hideTables" ], "feature-39597-multiple-locale-names-for-typoscript-config-locale-all": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Feature-39597-MultipleLocaleNamesForTypoScriptConfiglocale_all.html#feature-39597-multiple-locale-names-for-typoscript-config-locale-all", + "Changelog\/8.1\/Feature-39597-MultipleLocaleNamesForTypoScriptConfiglocale_all.html#feature-39597", "Feature: #39597 - Multiple locale names for TypoScript config.locale_all" ], "feature-69439-enhance-sql-query-reduction-in-page-tree-in-workspaces": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Feature-69439-EnhanceSQLQueryReductionInPageTreeInWorkspaces.html#feature-69439-enhance-sql-query-reduction-in-page-tree-in-workspaces", + "Changelog\/8.1\/Feature-69439-EnhanceSQLQueryReductionInPageTreeInWorkspaces.html#feature-69439", "Feature: #69439 - Enhance SQL query reduction in page tree in workspaces" ], "feature-70056-added-php-library-guzzle-for-http-requests-within-typo3": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Feature-70056-GuzzleForHttpRequests.html#feature-70056-added-php-library-guzzle-for-http-requests-within-typo3", + "Changelog\/8.1\/Feature-70056-GuzzleForHttpRequests.html#feature-70056", "Feature: #70056 - Added PHP library \"Guzzle\" for HTTP Requests within TYPO3" ], "feature-72923-configure-the-number-of-files-shown-per-page-in-file-list-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Feature-72923-ConfigurableFileListSize.html#feature-72923-configure-the-number-of-files-shown-per-page-in-file-list-module", + "Changelog\/8.1\/Feature-72923-ConfigurableFileListSize.html#feature-72923", "Feature: #72923 - Configure the number of files shown per page in file list module" ], "feature-75386-get-identifier-in-slide-callback": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Feature-75386-GetIdentifierInSlideCallback.html#feature-75386-get-identifier-in-slide-callback", + "Changelog\/8.1\/Feature-75386-GetIdentifierInSlideCallback.html#feature-75386", "Feature: #75386 - Get identifier in slide callback" ], "feature-75454-added-php-library-doctrine-dbal-for-database-connections-within-typo3": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Feature-75454-DoctrineDBALForDatabaseConnections.html#feature-75454-added-php-library-doctrine-dbal-for-database-connections-within-typo3", + "Changelog\/8.1\/Feature-75454-DoctrineDBALForDatabaseConnections.html#feature-75454", "Feature: #75454 - Added PHP library \"Doctrine DBAL\" for Database Connections within TYPO3" ], "feature-75497-inline-backend-layout-wizard": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Feature-75497-InlineBackendLayoutWizard.html#feature-75497-inline-backend-layout-wizard", + "Changelog\/8.1\/Feature-75497-InlineBackendLayoutWizard.html#feature-75497", "Feature: #75497 - inline backend layout wizard" ], "feature-75579-add-markupidentifier-support-to-javascript-iconapi": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Feature-75579-AddMarkupIdentifierSupportToJavaScriptIconAPI.html#feature-75579-add-markupidentifier-support-to-javascript-iconapi", + "Changelog\/8.1\/Feature-75579-AddMarkupIdentifierSupportToJavaScriptIconAPI.html#feature-75579", "Feature: #75579 - Add markupIdentifier support to JavaScript IconAPI" ], "feature-75581-simplify-cache-clearing": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Feature-75581-SimplifyCacheClearing.html#feature-75581-simplify-cache-clearing", + "Changelog\/8.1\/Feature-75581-SimplifyCacheClearing.html#feature-75581", "Feature: #75581 - Simplify cache clearing" ], "feature-75827-add-configuration-options-to-typo3-cms-extbase-property-typeconverter-floatconverter": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Feature-75827-AddConfigurationOptionsToFloatConverter.html#feature-75827-add-configuration-options-to-typo3-cms-extbase-property-typeconverter-floatconverter", + "Changelog\/8.1\/Feature-75827-AddConfigurationOptionsToFloatConverter.html#feature-75827", "Feature: #75827 - Add configuration options to \\TYPO3\\CMS\\Extbase\\Property\\TypeConverter\\FloatConverter" ], "important-73041-packagestates-includes-only-active-packages": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.1\/Important-73041-PackageStatesIncludesOnlyActivePackages.html#important-73041-packagestates-includes-only-active-packages", + "Changelog\/8.1\/Important-73041-PackageStatesIncludesOnlyActivePackages.html#important-73041", "Important: #73041 - PackageStates Includes Only Active Packages" ], "8-1-changes": [ @@ -57853,169 +58057,169 @@ "breaking-75493-evaluate-boolean-stdwrap-properties-correctly": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Breaking-75493-EvaluateBooleanStdWrapPropertiesCorrectly.html#breaking-75493-evaluate-boolean-stdwrap-properties-correctly", + "Changelog\/8.2\/Breaking-75493-EvaluateBooleanStdWrapPropertiesCorrectly.html#breaking-75493", "Breaking: #75493 - Evaluate \"boolean \/stdWrap\" properties correctly" ], "breaking-75645-doctrine-migrate-ext-backend-tree": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Breaking-75645-DoctrineMigrateExtbackendTree.html#breaking-75645-doctrine-migrate-ext-backend-tree", + "Changelog\/8.2\/Breaking-75645-DoctrineMigrateExtbackendTree.html#breaking-75645", "Breaking: #75645 - Doctrine: migrate ext:backend\/Tree" ], "breaking-75710-rte-related-tsconfig-options-skipalign-and-skipclass-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Breaking-75710-RTE-relatedTSconfigOptionsSkipAlignAndSkipClassRemoved.html#breaking-75710-rte-related-tsconfig-options-skipalign-and-skipclass-removed", + "Changelog\/8.2\/Breaking-75710-RTE-relatedTSconfigOptionsSkipAlignAndSkipClassRemoved.html#breaking-75710", "Breaking: #75710 - RTE-related TSconfig options skipAlign and skipClass removed" ], "breaking-75747-ext-form-removed-usedefaultcontentobject-setting": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Breaking-75747-EXTform-RemovedUseDefaultContentObjectSetting.html#breaking-75747-ext-form-removed-usedefaultcontentobject-setting", + "Changelog\/8.2\/Breaking-75747-EXTform-RemovedUseDefaultContentObjectSetting.html#breaking-75747", "Breaking: #75747 - EXT:form - Removed useDefaultContentObject setting" ], "breaking-75760-return-type-of-localizationrepository-getrecordstocopydatabaseresult-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Breaking-75760-ReturnTypeOfGetRecordsToCopyDatabaseResultChanged.html#breaking-75760-return-type-of-localizationrepository-getrecordstocopydatabaseresult-changed", + "Changelog\/8.2\/Breaking-75760-ReturnTypeOfGetRecordsToCopyDatabaseResultChanged.html#breaking-75760", "Breaking: #75760 - Return type of LocalizationRepository::getRecordsToCopyDatabaseResult changed" ], "breaking-76285-popup-configuration-is-moved-to-typo3-settings": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Breaking-76285-PopupConfigurationIsMovedToTYPO3settings.html#breaking-76285-popup-configuration-is-moved-to-typo3-settings", + "Changelog\/8.2\/Breaking-76285-PopupConfigurationIsMovedToTYPO3settings.html#breaking-76285", "Breaking: #76285 - Popup configuration is moved to TYPO3.settings" ], "breaking-76469-doctrine-migrate-ext-impexp": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Breaking-76469-DoctrineMigrateExtImpExp.html#breaking-76469-doctrine-migrate-ext-impexp", + "Changelog\/8.2\/Breaking-76469-DoctrineMigrateExtImpExp.html#breaking-76469", "Breaking: #76469 - Doctrine: migrate ext:ImpExp" ], "breaking-76527-cleanup-contextmenu-classes": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Breaking-76527-CleanupContextMenuClasses.html#breaking-76527-cleanup-contextmenu-classes", + "Changelog\/8.2\/Breaking-76527-CleanupContextMenuClasses.html#breaking-76527", "Breaking: #76527 - Cleanup ContextMenu classes" ], "breaking-76802-drop-xcache-cache-backend": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Breaking-76802-DropXcacheCacheBackend.html#breaking-76802-drop-xcache-cache-backend", + "Changelog\/8.2\/Breaking-76802-DropXcacheCacheBackend.html#breaking-76802", "Breaking: #76802 - Drop xcache cache backend" ], "deprecation-15415-deprecate-removebadhtml": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Deprecation-15415-DeprecateRemoveBadHTML.html#deprecation-15415-deprecate-removebadhtml", + "Changelog\/8.2\/Deprecation-15415-DeprecateRemoveBadHTML.html#deprecation-15415", "Deprecation: #15415 - Deprecate removeBadHTML" ], "deprecation-71917-deprecate-the-argument-hsc-for-getll-getlll-sl-and-pi-getll": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Deprecation-71917-DeprecateTheArgumentHscForGetLLGetLLLAndSL.html#deprecation-71917-deprecate-the-argument-hsc-for-getll-getlll-sl-and-pi-getll", + "Changelog\/8.2\/Deprecation-71917-DeprecateTheArgumentHscForGetLLGetLLLAndSL.html#deprecation-71917", "Deprecation: #71917 - Deprecate the argument 'hsc' for getLL, getLLL, sL and pi_getLL" ], "deprecation-72859-deprecate-methods-of-documenttemplate": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Deprecation-72859-DeprecateMethodsOfDocumentTemplate.html#deprecation-72859-deprecate-methods-of-documenttemplate", + "Changelog\/8.2\/Deprecation-72859-DeprecateMethodsOfDocumentTemplate.html#deprecation-72859", "Deprecation: #72859 - Deprecate methods of DocumentTemplate" ], "deprecation-75209-code-cleanup-for-menuviewhelpertrait": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Deprecation-75209-CodecleanupForMenuViewHelperTrait.html#deprecation-75209-code-cleanup-for-menuviewhelpertrait", + "Changelog\/8.2\/Deprecation-75209-CodecleanupForMenuViewHelperTrait.html#deprecation-75209", "Deprecation: #75209 - Code cleanup for MenuViewHelperTrait" ], "deprecation-75760-deprecate-methods-of-localizationrepository": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Deprecation-75760-DeprecateMethodsOfLocalizationRepository.html#deprecation-75760-deprecate-methods-of-localizationrepository", + "Changelog\/8.2\/Deprecation-75760-DeprecateMethodsOfLocalizationRepository.html#deprecation-75760", "Deprecation: #75760 - Deprecate methods of LocalizationRepository" ], "deprecation-75904-category-model-has-icon-property-but-no-database-field": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Deprecation-75904-CategoryModelHasIconPropertyButNoDatabaseField.html#deprecation-75904-category-model-has-icon-property-but-no-database-field", + "Changelog\/8.2\/Deprecation-75904-CategoryModelHasIconPropertyButNoDatabaseField.html#deprecation-75904", "Deprecation: #75904 - Category Model has icon property but no database field" ], "deprecation-76101-remove-solofieldcontainer": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Deprecation-76101-RemoveSoloFieldContainer.html#deprecation-76101-remove-solofieldcontainer", + "Changelog\/8.2\/Deprecation-76101-RemoveSoloFieldContainer.html#deprecation-76101", "Deprecation: #76101 - remove SoloFieldContainer" ], "deprecation-76104-deprecated-single-slash-comments-in-typoscript": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Deprecation-76104-Deprecated-Single-Slash-Comments-In-TypoScript.html#deprecation-76104-deprecated-single-slash-comments-in-typoscript", + "Changelog\/8.2\/Deprecation-76104-Deprecated-Single-Slash-Comments-In-TypoScript.html#deprecation-76104", "Deprecation: #76104 - Deprecated single slash comments in TypoScript" ], "deprecation-76164-deprecate-removexss": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Deprecation-76164-DeprecateRemoveXSS.html#deprecation-76164-deprecate-removexss", + "Changelog\/8.2\/Deprecation-76164-DeprecateRemoveXSS.html#deprecation-76164", "Deprecation: #76164 - Deprecate RemoveXSS" ], "deprecation-76345-path-prefixes-in-calluserfunction-and-getuserobj": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Deprecation-76345-PathPrefixesInCallUserFunctionAndGetUserObj.html#deprecation-76345-path-prefixes-in-calluserfunction-and-getuserobj", + "Changelog\/8.2\/Deprecation-76345-PathPrefixesInCallUserFunctionAndGetUserObj.html#deprecation-76345", "Deprecation: #76345 - Path prefixes in callUserFunction and getUserObj" ], "deprecation-76370-deprecate-cachefactory": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Deprecation-76370-DeprecateCacheFactory.html#deprecation-76370-deprecate-cachefactory", + "Changelog\/8.2\/Deprecation-76370-DeprecateCacheFactory.html#deprecation-76370", "Deprecation: #76370 - Deprecate CacheFactory" ], "deprecation-76383-deprecate-fonttag": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Deprecation-76383-DeprecateFontTag.html#deprecation-76383-deprecate-fonttag", + "Changelog\/8.2\/Deprecation-76383-DeprecateFontTag.html#deprecation-76383", "Deprecation: #76383 - Deprecate fontTag" ], "feature-18586-configurable-width-height-for-editpanel-in-feedit": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Feature-18586-ConfigurableWidthHeightForEditpanelInFeedit.html#feature-18586-configurable-width-height-for-editpanel-in-feedit", + "Changelog\/8.2\/Feature-18586-ConfigurableWidthHeightForEditpanelInFeedit.html#feature-18586", "Feature: #18586 - Configurable width & height for editpanel in feedit" ], "feature-20446-clear-cache-entry-in-context-menu": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Feature-20446-ClearCacheEntryInContextMenu.html#feature-20446-clear-cache-entry-in-context-menu", + "Changelog\/8.2\/Feature-20446-ClearCacheEntryInContextMenu.html#feature-20446", "Feature: #20446 - Clear cache entry in context menu" ], "feature-76008-property-visibility-to-debuggerutility-var-dump": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Feature-76008-PropertyVisibilityToDebuggerUtilityvar_dump.html#feature-76008-property-visibility-to-debuggerutility-var-dump", + "Changelog\/8.2\/Feature-76008-PropertyVisibilityToDebuggerUtilityvar_dump.html#feature-76008", "Feature: #76008 - Property visibility to DebuggerUtility::var_dump" ], "feature-76072-ogg-flac-and-opus-support": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Feature-76072-OggFlacAndOpusSupport.html#feature-76072-ogg-flac-and-opus-support", + "Changelog\/8.2\/Feature-76072-OggFlacAndOpusSupport.html#feature-76072", "Feature: #76072 - Ogg, flac and opus support" ], "feature-76458-let-debuggerutility-render-closures": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Feature-76458-LetDebuggerUtilityRenderClosures.html#feature-76458-let-debuggerutility-render-closures", + "Changelog\/8.2\/Feature-76458-LetDebuggerUtilityRenderClosures.html#feature-76458", "Feature: #76458 - Let DebuggerUtility render closures" ], "feature-76531-add-iconforrecordviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Feature-76531-AddIconForRecordViewHelper.html#feature-76531-add-iconforrecordviewhelper", + "Changelog\/8.2\/Feature-76531-AddIconForRecordViewHelper.html#feature-76531", "Feature: #76531 - Add IconForRecordViewHelper" ], "feature-76590-introduce-unittests-for-javascript": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Feature-76590-IntroduceUnitTestsForJavaScript.html#feature-76590-introduce-unittests-for-javascript", + "Changelog\/8.2\/Feature-76590-IntroduceUnitTestsForJavaScript.html#feature-76590", "Feature: #76590 - Introduce UnitTests for JavaScript" ], "test-files": [ @@ -58033,7 +58237,7 @@ "important-75747-ext-form-removed-support-for-compatibility6": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.2\/Important-75747-EXTform-RemovedSupportForCompatibility6.html#important-75747-ext-form-removed-support-for-compatibility6", + "Changelog\/8.2\/Important-75747-EXTform-RemovedSupportForCompatibility6.html#important-75747", "Important: #75747 - EXT:form - Removed support for compatibility6" ], "8-2-changes": [ @@ -58045,271 +58249,271 @@ "breaking-74375-fe-users-image-migrated-to-fal": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-74375-Fe_usersimageMigratedToFAL.html#breaking-74375-fe-users-image-migrated-to-fal", + "Changelog\/8.3\/Breaking-74375-Fe_usersimageMigratedToFAL.html#breaking-74375", "Breaking: #74375 - fe_users.image migrated to FAL" ], "breaking-76108-replace-extjs-category-tree-with-d3-and-svg": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-76108-ReplaceExtJSCategoryTreeWithD3AndSVG.html#breaking-76108-replace-extjs-category-tree-with-d3-and-svg", + "Changelog\/8.3\/Breaking-76108-ReplaceExtJSCategoryTreeWithD3AndSVG.html#breaking-76108", "Breaking: #76108 - Replace ExtJS category tree with D3 and SVG" ], "breaking-76259-return-value-of-abstractdatabaserecordlist-makesearchstring-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-76259-ReturnValueOfAbstractDatabaseRecordListmakeSearchStringChanged.html#breaking-76259-return-value-of-abstractdatabaserecordlist-makesearchstring-changed", + "Changelog\/8.3\/Breaking-76259-ReturnValueOfAbstractDatabaseRecordListmakeSearchStringChanged.html#breaking-76259-1668719184", "Breaking: #76259 - Return value of AbstractDatabaseRecordList::makeSearchString changed" ], "breaking-76259-signature-of-getresult-in-pagelayoutview-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-76259-SignatureOfMethodGetResultChangedInPageLayoutView.html#breaking-76259-signature-of-getresult-in-pagelayoutview-changed", + "Changelog\/8.3\/Breaking-76259-SignatureOfMethodGetResultChangedInPageLayoutView.html#breaking-76259-1668719195", "Breaking: #76259 - Signature of getResult() in PageLayoutView changed" ], "breaking-76259-signature-of-settotalitems-in-abstractdatabaserecordlist-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-76259-SignatureOfMethodSetTotalItemsChangedInAbstractDatabaseRecordList.html#breaking-76259-signature-of-settotalitems-in-abstractdatabaserecordlist-changed", + "Changelog\/8.3\/Breaking-76259-SignatureOfMethodSetTotalItemsChangedInAbstractDatabaseRecordList.html#breaking-76259-1668719172", "Breaking: #76259 - Signature of setTotalItems() in AbstractDatabaseRecordList changed" ], "breaking-76259-value-passed-to-hook-gettable-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-76259-ValuePassedToHookGetTableChanged.html#breaking-76259-value-passed-to-hook-gettable-changed", + "Changelog\/8.3\/Breaking-76259-ValuePassedToHookGetTableChanged.html#breaking-76259", "Breaking: #76259 - Value passed to hook getTable changed" ], "breaking-76879-remove-unused-properties-from-pagetreeview": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-76879-RemoveUnusedPropertiesFromPageTreeView.html#breaking-76879-remove-unused-properties-from-pagetreeview", + "Changelog\/8.3\/Breaking-76879-RemoveUnusedPropertiesFromPageTreeView.html#breaking-76879", "Breaking: #76879 - Remove unused properties from PageTreeView" ], "breaking-76879-remove-unused-property-pidselect-from-abstractdatabaserecordlist": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-76879-RemoveUnusedPropertyPidSelectFromAbstractDatabaseRecordList.html#breaking-76879-remove-unused-property-pidselect-from-abstractdatabaserecordlist", + "Changelog\/8.3\/Breaking-76879-RemoveUnusedPropertyPidSelectFromAbstractDatabaseRecordList.html#breaking-76879-1668719172", "Breaking: #76879 - Remove unused property pidSelect from AbstractDatabaseRecordList" ], "breaking-76891-syslog-lowlevel-command": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-76891-SyslogLowlevelCommand.html#breaking-76891-syslog-lowlevel-command", + "Changelog\/8.3\/Breaking-76891-SyslogLowlevelCommand.html#breaking-76891", "Breaking: #76891 - syslog lowlevel command" ], "breaking-77049-remove-unused-properties-from-suggestwizarddefaultreceiver": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77049-RemoveUnusedPropertiesFromSuggestWizardDefaultReceiver.html#breaking-77049-remove-unused-properties-from-suggestwizarddefaultreceiver", + "Changelog\/8.3\/Breaking-77049-RemoveUnusedPropertiesFromSuggestWizardDefaultReceiver.html#breaking-77049", "Breaking: #77049 - Remove unused properties from SuggestWizardDefaultReceiver" ], "breaking-77062-example-image-in-ts-constants-descriptions-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77062-ExampleImageInTSConstantsDescriptionsRemoved.html#breaking-77062-example-image-in-ts-constants-descriptions-removed", + "Changelog\/8.3\/Breaking-77062-ExampleImageInTSConstantsDescriptionsRemoved.html#breaking-77062", "Breaking: #77062 - Example image in TS constants descriptions removed" ], "breaking-77081-removed-tca-tree-options-width-allowrecursivemode-autosizemax": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77081-RemovedTCASelectTreeOptions.html#breaking-77081-removed-tca-tree-options-width-allowrecursivemode-autosizemax", + "Changelog\/8.3\/Breaking-77081-RemovedTCASelectTreeOptions.html#breaking-77081", "Breaking: #77081 - Removed TCA tree options: width, allowRecursiveMode, autoSizeMax" ], "breaking-77137-javascript-api-of-rte-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77137-JavaScriptAPIOfRTEChanged.html#breaking-77137-javascript-api-of-rte-changed", + "Changelog\/8.3\/Breaking-77137-JavaScriptAPIOfRTEChanged.html#breaking-77137-1668719172", "Breaking: #77137 - JavaScript API of RTE changed" ], "breaking-77137-rte-option-colors-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77137-RTEOptionColorsRemoved.html#breaking-77137-rte-option-colors-removed", + "Changelog\/8.3\/Breaking-77137-RTEOptionColorsRemoved.html#breaking-77137", "Breaking: #77137 - RTE option \"colors\" removed" ], "breaking-77156-tsconfig-and-tstemplate-soft-references-functionality-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77156-TSconfigAndTStemplateSoftReferencesFunctionalityRemoved.html#breaking-77156-tsconfig-and-tstemplate-soft-references-functionality-removed", + "Changelog\/8.3\/Breaking-77156-TSconfigAndTStemplateSoftReferencesFunctionalityRemoved.html#breaking-77156", "Breaking: #77156 - TSconfig and TStemplate soft references functionality removed" ], "breaking-77180-dropped-extjs-support-in-frontend-typoscript": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77180-DroppedExtJSSupportInFrontendTypoScript.html#breaking-77180-dropped-extjs-support-in-frontend-typoscript", + "Changelog\/8.3\/Breaking-77180-DroppedExtJSSupportInFrontendTypoScript.html#breaking-77180", "Breaking: #77180 - Dropped ExtJS support in Frontend TypoScript" ], "breaking-77182-removed-basicfileutility-methods-and-properties": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77182-RemovedBasicFileUtilityMethodsAndProperties.html#breaking-77182-removed-basicfileutility-methods-and-properties", + "Changelog\/8.3\/Breaking-77182-RemovedBasicFileUtilityMethodsAndProperties.html#breaking-77182", "Breaking: #77182 - Removed BasicFileUtility methods and properties" ], "breaking-77184-various-tsfe-properties-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77184-VariousTSFEPropertiesRemoved.html#breaking-77184-various-tsfe-properties-removed", + "Changelog\/8.3\/Breaking-77184-VariousTSFEPropertiesRemoved.html#breaking-77184", "Breaking: #77184 - Various TSFE properties removed" ], "breaking-77186-extdirect-eid-entry-point-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77186-ExtDirectEIDEntryPointRemoved.html#breaking-77186-extdirect-eid-entry-point-removed", + "Changelog\/8.3\/Breaking-77186-ExtDirectEIDEntryPointRemoved.html#breaking-77186", "Breaking: #77186 - ExtDirect eID entry point removed" ], "breaking-77209-adapt-default-records-tables": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77209-AdaptDefaultRECORDSTables.html#breaking-77209-adapt-default-records-tables", + "Changelog\/8.3\/Breaking-77209-AdaptDefaultRECORDSTables.html#breaking-77209", "Breaking: #77209 - Adapt default RECORDS tables" ], "breaking-77280-uploads-template-shows-file-title-in-favor-of-file-name": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77280-UploadsTemplateShowsFileTitleInFavorOfFileName.html#breaking-77280-uploads-template-shows-file-title-in-favor-of-file-name", + "Changelog\/8.3\/Breaking-77280-UploadsTemplateShowsFileTitleInFavorOfFileName.html#breaking-77280", "Breaking: #77280 - Uploads template shows file title in favor of file name" ], "breaking-77342-removed-templatefile-override-via-flexform-in-ext-felogin": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77342-RemovedTemplateFileOverrideViaFlexFormInEXTfelogin.html#breaking-77342-removed-templatefile-override-via-flexform-in-ext-felogin", + "Changelog\/8.3\/Breaking-77342-RemovedTemplateFileOverrideViaFlexFormInEXTfelogin.html#breaking-77342", "Breaking: #77342 - Removed templateFile override via FlexForm in EXT:felogin" ], "breaking-77345-ext-form-remove-deprecated-imagebutton-element": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77345-EXTform-RemoveDeprecatedIMAGEBUTTONElement.html#breaking-77345-ext-form-remove-deprecated-imagebutton-element", + "Changelog\/8.3\/Breaking-77345-EXTform-RemoveDeprecatedIMAGEBUTTONElement.html#breaking-77345", "Breaking: #77345 - EXT:form - Remove deprecated IMAGEBUTTON element" ], "breaking-77390-expected-return-type-of-hook-getresultrows-sqlpointer-in-indexed-search-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77390-ReturnTypeOfHookGetResultRows_SQLpointerInIndexSearchChanged.html#breaking-77390-expected-return-type-of-hook-getresultrows-sqlpointer-in-indexed-search-changed", + "Changelog\/8.3\/Breaking-77390-ReturnTypeOfHookGetResultRows_SQLpointerInIndexSearchChanged.html#breaking-77390", "Breaking: #77390 - Expected return type of hook getResultRows_SQLpointer in Indexed Search changed" ], "breaking-77391-datahandler-method-protected": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77391-DataHandlerMethodProtected.html#breaking-77391-datahandler-method-protected", + "Changelog\/8.3\/Breaking-77391-DataHandlerMethodProtected.html#breaking-77391", "Breaking: #77391 - DataHandler method protected" ], "breaking-77416-removed-property-from-databaseintegritycheck": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77416-RemovedPropertyFromDatabaseIntegrityCheck.html#breaking-77416-removed-property-from-databaseintegritycheck", + "Changelog\/8.3\/Breaking-77416-RemovedPropertyFromDatabaseIntegrityCheck.html#breaking-77416", "Breaking: #77416 - Removed property from DatabaseIntegrityCheck" ], "breaking-77453-signature-of-abstractplugin-pi-exec-query-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77453-SignatureOfAbstractPluginpi_exec_queryChanged.html#breaking-77453-signature-of-abstractplugin-pi-exec-query-changed", + "Changelog\/8.3\/Breaking-77453-SignatureOfAbstractPluginpi_exec_queryChanged.html#breaking-77453-1668719172", "Breaking: #77453 - Signature of AbstractPlugin::pi_exec_query changed" ], "breaking-77453-signature-of-abstractplugin-pi-list-makelist-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77453-SignatureOfAbstractPluginpi_list_makelistChanged.html#breaking-77453-signature-of-abstractplugin-pi-list-makelist-changed", + "Changelog\/8.3\/Breaking-77453-SignatureOfAbstractPluginpi_list_makelistChanged.html#breaking-77453", "Breaking: #77453 - Signature of AbstractPlugin::pi_list_makelist changed" ], "breaking-77460-extbase-query-cache-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77460-ExtbaseQueryCacheRemoved.html#breaking-77460-extbase-query-cache-removed", + "Changelog\/8.3\/Breaking-77460-ExtbaseQueryCacheRemoved.html#breaking-77460", "Breaking: #77460 - Extbase query cache removed" ], "breaking-77481-remove-favicon-from-tbe-styles": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77481-RemoveFaviconFromTBE_STYLES.html#breaking-77481-remove-favicon-from-tbe-styles", + "Changelog\/8.3\/Breaking-77481-RemoveFaviconFromTBE_STYLES.html#breaking-77481", "Breaking: #77481 - Remove favicon from TBE_STYLES" ], "breaking-77502-extbase-pre-parsing-of-queries-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77502-ExtbasePreparsingOfQueriesRemoved.html#breaking-77502-extbase-pre-parsing-of-queries-removed", + "Changelog\/8.3\/Breaking-77502-ExtbasePreparsingOfQueriesRemoved.html#breaking-77502", "Breaking: #77502 - Extbase: pre-parsing of queries removed" ], "breaking-77557-signature-of-queryview-getqueryresultcode-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77557-SignatureOfQueryView-getQueryResultCodeChanged.html#breaking-77557-signature-of-queryview-getqueryresultcode-changed", + "Changelog\/8.3\/Breaking-77557-SignatureOfQueryView-getQueryResultCodeChanged.html#breaking-77557", "Breaking: #77557 - Signature of QueryView->getQueryResultCode() changed" ], "breaking-77558-pagelayoutcontroller-removed-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77558-PageLayoutControllerExec_languageQueryDropped.html#breaking-77558-pagelayoutcontroller-removed-methods", + "Changelog\/8.3\/Breaking-77558-PageLayoutControllerExec_languageQueryDropped.html#breaking-77558", "Breaking: #77558 - PageLayoutController removed methods" ], "breaking-77587-removed-livesearch-getquerystring": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77587-RemovedLiveSearch-getQueryString.html#breaking-77587-removed-livesearch-getquerystring", + "Changelog\/8.3\/Breaking-77587-RemovedLiveSearch-getQueryString.html#breaking-77587", "Breaking: #77587 - Removed LiveSearch->getQueryString" ], "breaking-77591-removed-workspaceservice-isoldstyleworkspaceused": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Breaking-77591-RemovedWorkspaceService-isOldStyleWorkspaceUsed.html#breaking-77591-removed-workspaceservice-isoldstyleworkspaceused", + "Changelog\/8.3\/Breaking-77591-RemovedWorkspaceService-isOldStyleWorkspaceUsed.html#breaking-77591", "Breaking: #77591 - Removed WorkspaceService->isOldStyleWorkspaceUsed" ], "deprecation-76259-deprecate-method-makequeryarray-of-abstractdatabaserecordlist": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Deprecation-76259-DeprecateMethodMakeQueryArrayOfAbstractDatabaseRecordList.html#deprecation-76259-deprecate-method-makequeryarray-of-abstractdatabaserecordlist", + "Changelog\/8.3\/Deprecation-76259-DeprecateMethodMakeQueryArrayOfAbstractDatabaseRecordList.html#deprecation-76259", "Deprecation: #76259 - Deprecate method makeQueryArray of AbstractDatabaseRecordList" ], "deprecation-76520-deprecate-method-pages-gettree-of-pagelayoutview": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Deprecation-76520-DeprecateMethodPages_getTreeOfPageLayoutView.html#deprecation-76520-deprecate-method-pages-gettree-of-pagelayoutview", + "Changelog\/8.3\/Deprecation-76520-DeprecateMethodPages_getTreeOfPageLayoutView.html#deprecation-76520", "Deprecation: #76520 - Deprecate method pages_getTree of PageLayoutView" ], "deprecation-76804-deprecate-generalutility-strtoupper-strtolower": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Deprecation-76804-DeprecateGeneralUtilitystrtoupperStrtolower.html#deprecation-76804-deprecate-generalutility-strtoupper-strtolower", + "Changelog\/8.3\/Deprecation-76804-DeprecateGeneralUtilitystrtoupperStrtolower.html#deprecation-76804", "Deprecation: #76804 - Deprecate GeneralUtility::strtoupper & strtolower" ], "deprecation-77164-errorpagemessage-and-abstractstandalonemessage": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Deprecation-77164-ErrorpageMessageAndAbstractStandaloneMessage.html#deprecation-77164-errorpagemessage-and-abstractstandalonemessage", + "Changelog\/8.3\/Deprecation-77164-ErrorpageMessageAndAbstractStandaloneMessage.html#deprecation-77164", "Deprecation: #77164 - ErrorpageMessage and AbstractStandaloneMessage" ], "deprecation-77405-pagerepository-getpathfromrootline": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Deprecation-77405-PageRepository-getPathFromRootline.html#deprecation-77405-pagerepository-getpathfromrootline", + "Changelog\/8.3\/Deprecation-77405-PageRepository-getPathFromRootline.html#deprecation-77405", "Deprecation: #77405 - PageRepository->getPathFromRootline" ], "deprecation-77432-extbase-prepared-statement-query-option": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Deprecation-77432-ExtbasePreparedStatementQueryOption.html#deprecation-77432-extbase-prepared-statement-query-option", + "Changelog\/8.3\/Deprecation-77432-ExtbasePreparedStatementQueryOption.html#deprecation-77432", "Deprecation: #77432 - Extbase: Prepared Statement Query Option" ], "deprecation-77477-templateservice-filecontent": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Deprecation-77477-TemplateService-fileContent.html#deprecation-77477-templateservice-filecontent", + "Changelog\/8.3\/Deprecation-77477-TemplateService-fileContent.html#deprecation-77477", "Deprecation: #77477 - TemplateService->fileContent" ], "deprecation-77502-extbase-pre-parsing-of-queries-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Deprecation-77502-ExtbasePreparsingOfQueriesRemoved.html#deprecation-77502-extbase-pre-parsing-of-queries-removed", + "Changelog\/8.3\/Deprecation-77502-ExtbasePreparsingOfQueriesRemoved.html#deprecation-77502", "Deprecation: #77502 - Extbase: pre-parsing of queries removed" ], "deprecation-77557-method-queryview-tablewrap": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Deprecation-77557-MethodQueryView-tableWrap.html#deprecation-77557-method-queryview-tablewrap", + "Changelog\/8.3\/Deprecation-77557-MethodQueryView-tableWrap.html#deprecation-77557", "Deprecation: #77557 - Method QueryView->tableWrap()" ], "feature-74365-add-linkservice-for-unified-referencing-syntax": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Feature-74365-LinkServiceForUnifiedReferencingSyntax.html#feature-74365-add-linkservice-for-unified-referencing-syntax", + "Changelog\/8.3\/Feature-74365-LinkServiceForUnifiedReferencingSyntax.html#feature-74365", "Feature: #74365 - Add Linkservice for unified referencing syntax" ], "handler-syntax": [ @@ -58351,13 +58555,13 @@ "feature-76107-add-fluid-interceptor-registration": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Feature-76107-AddFluidInterceptorRegistration.html#feature-76107-add-fluid-interceptor-registration", + "Changelog\/8.3\/Feature-76107-AddFluidInterceptorRegistration.html#feature-76107", "Feature: #76107 - Add fluid interceptor registration" ], "feature-76108-replace-extjs-category-tree-with-d3-and-svg": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Feature-76108-ReplaceExtJSCategoryTreeWithD3AndSVG.html#feature-76108-replace-extjs-category-tree-with-d3-and-svg", + "Changelog\/8.3\/Feature-76108-ReplaceExtJSCategoryTreeWithD3AndSVG.html#feature-76108", "Feature: #76108 - Replace ExtJS category tree with D3 and SVG" ], "structure": [ @@ -58381,37 +58585,37 @@ "feature-76209-hook-to-register-custom-result-browsers-in-abstractplugin": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Feature-76209-HookToRegisterCustomResultBrowsersInAbstractPlugin.html#feature-76209-hook-to-register-custom-result-browsers-in-abstractplugin", + "Changelog\/8.3\/Feature-76209-HookToRegisterCustomResultBrowsersInAbstractPlugin.html#feature-76209", "Feature: #76209 - Hook to register custom result browsers in AbstractPlugin" ], "feature-76259-introduce-buildqueryparameterspostprocess-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Feature-76259-IntroduceBuildQueryParametersPostProcessHook.html#feature-76259-introduce-buildqueryparameterspostprocess-hook", + "Changelog\/8.3\/Feature-76259-IntroduceBuildQueryParametersPostProcessHook.html#feature-76259", "Feature: #76259 - Introduce buildQueryParametersPostProcess Hook" ], "feature-77280-render-the-file-title-in-file-links-content-element": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Feature-77280-RenderTheFileTitleInFileLinksContentElement.html#feature-77280-render-the-file-title-in-file-links-content-element", + "Changelog\/8.3\/Feature-77280-RenderTheFileTitleInFileLinksContentElement.html#feature-77280", "Feature: #77280 - Render the file title in \"file links\" content element" ], "feature-77336-allow-passing-an-own-unit-collection-to-bytesviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Feature-77336-AllowPassingAnOwnUnitCollectionToByteViewHelper.html#feature-77336-allow-passing-an-own-unit-collection-to-bytesviewhelper", + "Changelog\/8.3\/Feature-77336-AllowPassingAnOwnUnitCollectionToByteViewHelper.html#feature-77336", "Feature: #77336 - Allow passing an own unit collection to BytesViewHelper" ], "feature-77349-additional-locations-for-extension-icons": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Feature-77349-AdditionalLocationsForExtensionIcons.html#feature-77349-additional-locations-for-extension-icons", + "Changelog\/8.3\/Feature-77349-AdditionalLocationsForExtensionIcons.html#feature-77349", "Feature: #77349 - Additional locations for extension icons" ], "feature-77481-add-possibility-to-define-a-favicon-for-the-backend": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.3\/Feature-77481-AddPossibilityToDefineAFaviconForTheBackend.html#feature-77481-add-possibility-to-define-a-favicon-for-the-backend", + "Changelog\/8.3\/Feature-77481-AddPossibilityToDefineAFaviconForTheBackend.html#feature-77481", "Feature: #77481 - Add possibility to define a favicon for the backend" ], "8-3-changes": [ @@ -58423,241 +58627,241 @@ "breaking-38496-shortcut-redirects-append-all-url-parameters": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Breaking-38496-AddAllParametersToAShortcutPage.html#breaking-38496-shortcut-redirects-append-all-url-parameters", + "Changelog\/8.4\/Breaking-38496-AddAllParametersToAShortcutPage.html#breaking-38496", "Breaking: #38496 - Shortcut redirects append all URL parameters" ], "breaking-52877-remove-extjs-viewport": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Breaking-52877-RemoveExtJSViewport.html#breaking-52877-remove-extjs-viewport", + "Changelog\/8.4\/Breaking-52877-RemoveExtJSViewport.html#breaking-52877", "Breaking: #52877 - Remove ExtJS Viewport" ], "breaking-66995-objectaccess-behaviors-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Breaking-66995-ObjectAccessbehaviorschanged.html#breaking-66995-objectaccess-behaviors-changed", + "Changelog\/8.4\/Breaking-66995-ObjectAccessbehaviorschanged.html#breaking-66995", "Breaking: #66995 - ObjectAccess behaviors changed" ], "breaking-75031-fluidification-of-typoscripttemplateinformationmodulefunctioncontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Breaking-75031-FluidificationOfTypoScriptTemplateInformationModuleFunctionController.html#breaking-75031-fluidification-of-typoscripttemplateinformationmodulefunctioncontroller", + "Changelog\/8.4\/Breaking-75031-FluidificationOfTypoScriptTemplateInformationModuleFunctionController.html#breaking-75031", "Breaking: #75031 - Fluidification of TypoScriptTemplateInformationModuleFunctionController" ], "breaking-75032-fluidification-of-typoscripttemplateconstanteditormodulefunctioncontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Breaking-75032-FluidificationOfTypoScriptTemplateConstantEditorModuleFunctionController.html#breaking-75032-fluidification-of-typoscripttemplateconstanteditormodulefunctioncontroller", + "Changelog\/8.4\/Breaking-75032-FluidificationOfTypoScriptTemplateConstantEditorModuleFunctionController.html#breaking-75032", "Breaking: #75032 - Fluidification of TypoScriptTemplateConstantEditorModuleFunctionController" ], "breaking-77379-doctrine-typo3dbqueryparser": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Breaking-77379-DoctrineTypo3DbQueryParser.html#breaking-77379-doctrine-typo3dbqueryparser", + "Changelog\/8.4\/Breaking-77379-DoctrineTypo3DbQueryParser.html#breaking-77379", "Breaking: #77379 - Doctrine: Typo3DbQueryParser" ], "breaking-77547-behaviour-of-recordcollectionrepository-findbyuid-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Breaking-77547-BehaviourOffindByUidOfRecordCollectionRepositoryChanged.html#breaking-77547-behaviour-of-recordcollectionrepository-findbyuid-changed", + "Changelog\/8.4\/Breaking-77547-BehaviourOffindByUidOfRecordCollectionRepositoryChanged.html#breaking-77547", "Breaking: #77547 - Behaviour of RecordCollectionRepository::findByUid changed" ], "breaking-77592-dropped-tca-option-showifrte-in-type-check": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Breaking-77592-DroppedTCAOptionShowIfRTEInTypecheck.html#breaking-77592-dropped-tca-option-showifrte-in-type-check", + "Changelog\/8.4\/Breaking-77592-DroppedTCAOptionShowIfRTEInTypecheck.html#breaking-77592", "Breaking: #77592 - Dropped TCA option showIfRTE in type=check" ], "breaking-77630-remove-wizard-icons": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Breaking-77630-RemoveWizardIcons.html#breaking-77630-remove-wizard-icons", + "Changelog\/8.4\/Breaking-77630-RemoveWizardIcons.html#breaking-77630", "Breaking: #77630 - Remove wizard icons" ], "breaking-77693-move-icons-from-t3skin": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Breaking-77693-MoveIconsFromT3skin.html#breaking-77693-move-icons-from-t3skin", + "Changelog\/8.4\/Breaking-77693-MoveIconsFromT3skin.html#breaking-77693", "Breaking: #77693 - Move icons from t3skin" ], "breaking-77700-extension-indexed-search-mysql-merged-into-indexed-search": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Breaking-77700-ExtensionIndexed_search_mysqlMergedIntoIndexed_search.html#breaking-77700-extension-indexed-search-mysql-merged-into-indexed-search", + "Changelog\/8.4\/Breaking-77700-ExtensionIndexed_search_mysqlMergedIntoIndexed_search.html#breaking-77700", "Breaking: #77700 - Extension indexed_search_mysql merged into indexed_search" ], "breaking-77728-remove-obsolete-page-tree-and-click-menu-settings": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Breaking-77728-RemoveObsoletePropertiesRelatedToPageTreeView.html#breaking-77728-remove-obsolete-page-tree-and-click-menu-settings", + "Changelog\/8.4\/Breaking-77728-RemoveObsoletePropertiesRelatedToPageTreeView.html#breaking-77728", "Breaking: #77728 - Remove obsolete page tree and click menu settings" ], "breaking-77750-return-value-of-contentobjectrenderer-exec-query-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Breaking-77750-ReturnValueOfexec_QueryOfContentObjectRendererChanged.html#breaking-77750-return-value-of-contentobjectrenderer-exec-query-changed", + "Changelog\/8.4\/Breaking-77750-ReturnValueOfexec_QueryOfContentObjectRendererChanged.html#breaking-77750", "Breaking: #77750 - Return value of ContentObjectRenderer::exec_Query changed" ], "breaking-77762-extensions-dbal-and-adodb-moved-to-ter": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Breaking-77762-ExtensionsDbalAndAdodbMovedToTER.html#breaking-77762-extensions-dbal-and-adodb-moved-to-ter", + "Changelog\/8.4\/Breaking-77762-ExtensionsDbalAndAdodbMovedToTER.html#breaking-77762", "Breaking: #77762 - Extensions dbal and adodb moved to TER" ], "breaking-77765-extjs-notifications-and-dialogs-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Breaking-77765-ExtJSNotificationsAndDialogsRemoved.html#breaking-77765-extjs-notifications-and-dialogs-removed", + "Changelog\/8.4\/Breaking-77765-ExtJSNotificationsAndDialogsRemoved.html#breaking-77765", "Breaking: #77765 - ExtJS notifications and dialogs removed" ], "breaking-77783-removed-unused-extjs-javascript-libraries": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Breaking-77783-RemoveUnusedExtJSLibraries.html#breaking-77783-removed-unused-extjs-javascript-libraries", + "Changelog\/8.4\/Breaking-77783-RemoveUnusedExtJSLibraries.html#breaking-77783", "Breaking: #77783 - Removed unused ExtJS JavaScript libraries" ], "breaking-77814-remove-feature-subsearch-from-indexed-search": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Breaking-77814-RemoveFeatureSubsearchFromIndexedSearch.html#breaking-77814-remove-feature-subsearch-from-indexed-search", + "Changelog\/8.4\/Breaking-77814-RemoveFeatureSubsearchFromIndexedSearch.html#breaking-77814", "Breaking: #77814 - Remove feature subsearch from indexed search" ], "breaking-77826-rtehtmlarea-spellchecker-eid-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Breaking-77826-RTEHtmlAreaSpellcheckerEIDRemoved.html#breaking-77826-rtehtmlarea-spellchecker-eid-removed", + "Changelog\/8.4\/Breaking-77826-RTEHtmlAreaSpellcheckerEIDRemoved.html#breaking-77826", "Breaking: #77826 - RTEHtmlArea Spellchecker eID removed" ], "breaking-77919-changed-datetime-iso8601-to-datetime-atom": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Breaking-77919-ChangedDateTimeISO8601ToDateTimeATOM.html#breaking-77919-changed-datetime-iso8601-to-datetime-atom", + "Changelog\/8.4\/Breaking-77919-ChangedDateTimeISO8601ToDateTimeATOM.html#breaking-77919", "Breaking: #77919 - Changed DateTime::ISO8601 to DateTime::ATOM" ], "breaking-77987-removal-fe-users-rendering-in-page-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Breaking-77987-RemovalFe_usersRenderingInPageModule.html#breaking-77987-removal-fe-users-rendering-in-page-module", + "Changelog\/8.4\/Breaking-77987-RemovalFe_usersRenderingInPageModule.html#breaking-77987", "Breaking: #77987 - Removal fe_users rendering in page module" ], "breaking-78222-extension-autoload-information-is-now-in-typo3conf-autoload": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Breaking-78222-ExtensionAutoloadInformationIsNowInTypo3confautoload.html#breaking-78222-extension-autoload-information-is-now-in-typo3conf-autoload", + "Changelog\/8.4\/Breaking-78222-ExtensionAutoloadInformationIsNowInTypo3confautoload.html#breaking-78222", "Breaking: #78222 - Extension autoload information is now in typo3conf\/autoload" ], "deprecation-75363-deprecate-formresultcompiler-jstop": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Deprecation-75363-DeprecateFormResultCompilerJStop.html#deprecation-75363-deprecate-formresultcompiler-jstop", + "Changelog\/8.4\/Deprecation-75363-DeprecateFormResultCompilerJStop.html#deprecation-75363", "Deprecation: #75363 - Deprecate FormResultCompiler->JStop()" ], "deprecation-75637-deprecate-optional-parameters-of-recyclerutility-getrecordpath": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Deprecation-75637-DeprecateOptionalParametersOfRecyclerUtilitygetRecordPath.html#deprecation-75637-deprecate-optional-parameters-of-recyclerutility-getrecordpath", + "Changelog\/8.4\/Deprecation-75637-DeprecateOptionalParametersOfRecyclerUtilitygetRecordPath.html#deprecation-75637", "Deprecation: #75637 - Deprecate optional parameters of RecyclerUtility::getRecordPath()" ], "deprecation-77763-deprecate-method-clickmenu-db-editpageproperties": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Deprecation-77763-DeprecateClickMenuDB_editPageProperties.html#deprecation-77763-deprecate-method-clickmenu-db-editpageproperties", + "Changelog\/8.4\/Deprecation-77763-DeprecateClickMenuDB_editPageProperties.html#deprecation-77763", "Deprecation: #77763 - Deprecate method ClickMenu::DB_editPageProperties()" ], "deprecation-77826-rtehtmlarea-spellchecker-entrypoint": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Deprecation-77826-RTEHtmlAreaSpellcheckerEntrypoint.html#deprecation-77826-rtehtmlarea-spellchecker-entrypoint", + "Changelog\/8.4\/Deprecation-77826-RTEHtmlAreaSpellcheckerEntrypoint.html#deprecation-77826", "Deprecation: #77826 - RTEHtmlArea Spellchecker entrypoint" ], "deprecation-77839-move-typo3-cms-core-querygenerator-into-ext-lowlevel-and-deprecate-the-old-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Deprecation-77839-MoveTYPO3CMSCoreQueryGeneratorIntoEXTlowlevelAndDeprecateTheOldModule.html#deprecation-77839-move-typo3-cms-core-querygenerator-into-ext-lowlevel-and-deprecate-the-old-module", + "Changelog\/8.4\/Deprecation-77839-MoveTYPO3CMSCoreQueryGeneratorIntoEXTlowlevelAndDeprecateTheOldModule.html#deprecation-77839", "Deprecation: #77839 - Move TYPO3\/CMS\/Core\/QueryGenerator into EXT:lowlevel and deprecate the old module" ], "deprecation-77987-deprecated-record-listing-in-page-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Deprecation-77987-DeprecatedRecordListingInPageModule.html#deprecation-77987-deprecated-record-listing-in-page-module", + "Changelog\/8.4\/Deprecation-77987-DeprecatedRecordListingInPageModule.html#deprecation-77987", "Deprecation: #77987 - Deprecated record listing in page module" ], "deprecation-78096-deprecated-pagelayoutview-getresult-with-mysqli-result-objects": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Deprecation-78096-PageLayoutViewGetResultWithMysqliResultObject.html#deprecation-78096-deprecated-pagelayoutview-getresult-with-mysqli-result-objects", + "Changelog\/8.4\/Deprecation-78096-PageLayoutViewGetResultWithMysqliResultObject.html#deprecation-78096", "Deprecation: #78096 - Deprecated PageLayoutView::getResult with mysqli_result objects" ], "deprecation-78193-extensionmanagementutility-extrelpath": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Deprecation-78193-ExtensionManagementUtilityextRelPath.html#deprecation-78193-extensionmanagementutility-extrelpath", + "Changelog\/8.4\/Deprecation-78193-ExtensionManagementUtilityextRelPath.html#deprecation-78193", "Deprecation: #78193 - ExtensionManagementUtility::extRelPath()" ], "deprecation-78222-late-generation-of-autoload-information-is-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Deprecation-78222-LateGenerationOfAutoloadInformationIsDeprecated.html#deprecation-78222-late-generation-of-autoload-information-is-deprecated", + "Changelog\/8.4\/Deprecation-78222-LateGenerationOfAutoloadInformationIsDeprecated.html#deprecation-78222", "Deprecation: #78222 - Late generation of autoload information is deprecated" ], "deprecation-78224-typo3-db-occurrences": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Deprecation-78224-TYPO3_DBOccurrences.html#deprecation-78224-typo3-db-occurrences", + "Changelog\/8.4\/Deprecation-78224-TYPO3_DBOccurrences.html#deprecation-78224", "Deprecation: #78224 - TYPO3_DB occurrences" ], "feature-17309-access-flexform-value-via-ts": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Feature-17309-AccessFlexformValueViaTS.html#feature-17309-access-flexform-value-via-ts", + "Changelog\/8.4\/Feature-17309-AccessFlexformValueViaTS.html#feature-17309", "Feature: #17309 - Access flexform value via TS" ], "feature-75691-upgrade-analysis-provide-listing-of-documentation-files": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Feature-75691-UpgradeAnalysis-ProvideListingOfDocumentationFiles.html#feature-75691-upgrade-analysis-provide-listing-of-documentation-files", + "Changelog\/8.4\/Feature-75691-UpgradeAnalysis-ProvideListingOfDocumentationFiles.html#feature-75691", "Feature: #75691 - Upgrade Analysis - Provide listing of documentation files" ], "feature-76748-configure-the-availability-of-the-elementbrowser": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Feature-76748-ConfigureTheAvailabilityOfTheElementbrowser.html#feature-76748-configure-the-availability-of-the-elementbrowser", + "Changelog\/8.4\/Feature-76748-ConfigureTheAvailabilityOfTheElementbrowser.html#feature-76748", "Feature: #76748 - Configure the availability of the elementbrowser" ], "feature-77589-ext-syntax-in-pagerenderer-and-compressor": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Feature-77589-EXTSyntaxInPageRendererAndCompressor.html#feature-77589-ext-syntax-in-pagerenderer-and-compressor", + "Changelog\/8.4\/Feature-77589-EXTSyntaxInPageRendererAndCompressor.html#feature-77589", "Feature: #77589 - EXT: syntax in PageRenderer and Compressor" ], "feature-77643-reimplement-sqlschemamigrationservice-using-doctrine-schemamanager": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Feature-77643-ReimplementSqlSchemaMigrationServiceUsingDoctrineSchemaManager.html#feature-77643-reimplement-sqlschemamigrationservice-using-doctrine-schemamanager", + "Changelog\/8.4\/Feature-77643-ReimplementSqlSchemaMigrationServiceUsingDoctrineSchemaManager.html#feature-77643", "Feature: #77643 - Reimplement SqlSchemaMigrationService using Doctrine SchemaManager" ], "feature-77652-make-sys-language-records-sortable": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Feature-77652-MakeSys_languageRecordsSortable.html#feature-77652-make-sys-language-records-sortable", + "Changelog\/8.4\/Feature-77652-MakeSys_languageRecordsSortable.html#feature-77652", "Feature: #77652 - Make sys_language records sortable" ], "feature-77668-hide-table-listing-below-group-element": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Feature-77668-HideTableListingBelowGroupElement.html#feature-77668-hide-table-listing-below-group-element", + "Changelog\/8.4\/Feature-77668-HideTableListingBelowGroupElement.html#feature-77668", "Feature: #77668 - Hide table listing below group element" ], "feature-77799-display-tca-migration-messages-in-install-tool": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Feature-77799-DisplayTCAMigrationMessagesInInstallTool.html#feature-77799-display-tca-migration-messages-in-install-tool", + "Changelog\/8.4\/Feature-77799-DisplayTCAMigrationMessagesInInstallTool.html#feature-77799", "Feature: #77799 - Display TCA migration messages in Install Tool" ], "feature-77900-introduce-typescript-for-the-core": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Feature-77900-IntroduceTypeScriptForTheCore.html#feature-77900-introduce-typescript-for-the-core", + "Changelog\/8.4\/Feature-77900-IntroduceTypeScriptForTheCore.html#feature-77900", "Feature: #77900 - Introduce TypeScript for the core" ], "why-we-use-typescript-in-the-core": [ @@ -58693,7 +58897,7 @@ "feature-78222-dump-class-loading-information-ui-in-install-tool": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.4\/Feature-78222-DumpClassLoadingInformationUIInInstallTool.html#feature-78222-dump-class-loading-information-ui-in-install-tool", + "Changelog\/8.4\/Feature-78222-DumpClassLoadingInformationUIInInstallTool.html#feature-78222", "Feature: #78222 - Dump Class Loading Information UI in Install Tool" ], "8-4-changes": [ @@ -58705,373 +58909,373 @@ "breaking-73016-renaming-of-clipboard-printcontentfromtab-to-getcontentfromtab": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Breaking-73016-RenamingOfClipboard-printContentFromTabToGetContentFromTab.html#breaking-73016-renaming-of-clipboard-printcontentfromtab-to-getcontentfromtab", + "Changelog\/8.5\/Breaking-73016-RenamingOfClipboard-printContentFromTabToGetContentFromTab.html#breaking-73016", "Breaking: #73016 - Renaming of Clipboard->printContentFromTab to getContentFromTab" ], "breaking-78002-enforce-chash-argument-for-extbase-actions": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Breaking-78002-EnforceCHashArgumentForExtbaseActions.html#breaking-78002-enforce-chash-argument-for-extbase-actions", + "Changelog\/8.5\/Breaking-78002-EnforceCHashArgumentForExtbaseActions.html#breaking-78002", "Breaking: #78002 - Enforce cHash argument for Extbase actions" ], "breaking-78191-remove-support-for-transforeigntable-in-tca": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Breaking-78191-RemoveSupportForTransForeignTableInTCA.html#breaking-78191-remove-support-for-transforeigntable-in-tca", + "Changelog\/8.5\/Breaking-78191-RemoveSupportForTransForeignTableInTCA.html#breaking-78191", "Breaking: #78191 - Remove support for transForeignTable in TCA" ], "breaking-78383-pages-tt-content-sys-file-metadata-have-been-removed-from-defaultcategorizedtables": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Breaking-78383-RemoveDefaultCategorizedTables.html#breaking-78383-pages-tt-content-sys-file-metadata-have-been-removed-from-defaultcategorizedtables", + "Changelog\/8.5\/Breaking-78383-RemoveDefaultCategorizedTables.html#breaking-78383", "Breaking: #78383 - pages, tt_content, sys_file_metadata have been removed from defaultCategorizedTables" ], "breaking-78384-frontend-ignores-tca-in-ext-tables-php": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Breaking-78384-FrontendIgnoresTCAInExtTables.html#breaking-78384-frontend-ignores-tca-in-ext-tables-php", + "Changelog\/8.5\/Breaking-78384-FrontendIgnoresTCAInExtTables.html#breaking-78384", "Breaking: #78384 - Frontend ignores TCA in ext_tables.php" ], "breaking-78417-lowlevel-deletedrecordscommand-parameters-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Breaking-78417-LowlevelDeletedRecordsCommandParametersChanged.html#breaking-78417-lowlevel-deletedrecordscommand-parameters-changed", + "Changelog\/8.5\/Breaking-78417-LowlevelDeletedRecordsCommandParametersChanged.html#breaking-78417", "Breaking: #78417 - Lowlevel DeletedRecordsCommand parameters changed" ], "breaking-78439-lowlevel-flexform-cleaning-parameters-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Breaking-78439-LowlevelFlexFormsCleaningCommandParametersChanged.html#breaking-78439-lowlevel-flexform-cleaning-parameters-changed", + "Changelog\/8.5\/Breaking-78439-LowlevelFlexFormsCleaningCommandParametersChanged.html#breaking-78439", "Breaking: #78439 - Lowlevel FlexForm Cleaning parameters changed" ], "breaking-78468-remove-extdirect-from-ext-workspaces": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Breaking-78468-RemoveExtDirectFromEXTworkspaces.html#breaking-78468-remove-extdirect-from-ext-workspaces", + "Changelog\/8.5\/Breaking-78468-RemoveExtDirectFromEXTworkspaces.html#breaking-78468", "Breaking: #78468 - Remove ExtDirect from EXT:workspaces" ], "breaking-78520-lowlevel-orphan-records-cleaning-parameters-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Breaking-78520-LowlevelOrphanRecordsCleaningParametersChanged.html#breaking-78520-lowlevel-orphan-records-cleaning-parameters-changed", + "Changelog\/8.5\/Breaking-78520-LowlevelOrphanRecordsCleaningParametersChanged.html#breaking-78520", "Breaking: #78520 - Lowlevel Orphan Records Cleaning parameters changed" ], "breaking-78521-drop-unused-javascript-from-backend-js": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Breaking-78521-DropUnusedJavaScriptFromBackendjs.html#breaking-78521-drop-unused-javascript-from-backend-js", + "Changelog\/8.5\/Breaking-78521-DropUnusedJavaScriptFromBackendjs.html#breaking-78521", "Breaking: #78521 - Drop unused JavaScript from backend.js" ], "breaking-78522-removed-backend-user-option-debuginwindow": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Breaking-78522-RemoveBackendUserOptionDebugInWindow.html#breaking-78522-removed-backend-user-option-debuginwindow", + "Changelog\/8.5\/Breaking-78522-RemoveBackendUserOptionDebugInWindow.html#breaking-78522", "Breaking: #78522 - Removed backend user option debugInWindow" ], "breaking-78525-removed-unused-configuration-options-for-javascript": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Breaking-78525-RemoveUnusedConfigurationOptionsForJavaScript.html#breaking-78525-removed-unused-configuration-options-for-javascript", + "Changelog\/8.5\/Breaking-78525-RemoveUnusedConfigurationOptionsForJavaScript.html#breaking-78525", "Breaking: #78525 - Removed unused configuration options for JavaScript" ], "breaking-78549-override-new-page-creation-wizard-via-page-tsconfig": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Breaking-78549-OverridePagePositionMapWizardViaPageTSconfig.html#breaking-78549-override-new-page-creation-wizard-via-page-tsconfig", + "Changelog\/8.5\/Breaking-78549-OverridePagePositionMapWizardViaPageTSconfig.html#breaking-78549", "Breaking: #78549 - Override New Page Creation Wizard via page TSconfig" ], "breaking-78552-lowlevel-lostfilescommand-parameters-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Breaking-78552-LowlevelLostFilesCommandParametersChanged.html#breaking-78552-lowlevel-lostfilescommand-parameters-changed", + "Changelog\/8.5\/Breaking-78552-LowlevelLostFilesCommandParametersChanged.html#breaking-78552", "Breaking: #78552 - Lowlevel LostFilesCommand parameters changed" ], "breaking-78577-lowlevel-missingfilescommand-parameters-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Breaking-78577-LowlevelMissingFilesCommandParametersChanged.html#breaking-78577-lowlevel-missingfilescommand-parameters-changed", + "Changelog\/8.5\/Breaking-78577-LowlevelMissingFilesCommandParametersChanged.html#breaking-78577", "Breaking: #78577 - Lowlevel MissingFilesCommand parameters changed" ], "breaking-78581-flexformtools-public-properties-dropped": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Breaking-78581-FlexFormToolsPublicPropertiesDropped.html#breaking-78581-flexformtools-public-properties-dropped", + "Changelog\/8.5\/Breaking-78581-FlexFormToolsPublicPropertiesDropped.html#breaking-78581-1668719184", "Breaking: #78581 - FlexFormTools public properties dropped" ], "breaking-78581-formengine-tcaflexfetch-data-provider-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Breaking-78581-FormEngineTcaFlexFetchDataProviderRemoved.html#breaking-78581-formengine-tcaflexfetch-data-provider-removed", + "Changelog\/8.5\/Breaking-78581-FormEngineTcaFlexFetchDataProviderRemoved.html#breaking-78581", "Breaking: #78581 - FormEngine TcaFlexFetch data provider removed" ], "breaking-78581-hook-getflexformdsclass-no-longer-called": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Breaking-78581-HookGetFlexFormDSClassNoLongerCalled.html#breaking-78581-hook-getflexformdsclass-no-longer-called", + "Changelog\/8.5\/Breaking-78581-HookGetFlexFormDSClassNoLongerCalled.html#breaking-78581-1668719172", "Breaking: #78581 - Hook getFlexFormDSClass no longer called" ], "breaking-78623-lowlevel-missingrelationscommand-parameters-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Breaking-78623-LowlevelMissingRelationsCommandParametersChanged.html#breaking-78623-lowlevel-missingrelationscommand-parameters-changed", + "Changelog\/8.5\/Breaking-78623-LowlevelMissingRelationsCommandParametersChanged.html#breaking-78623", "Breaking: #78623 - Lowlevel MissingRelationsCommand parameters changed" ], "breaking-78627-lowlevel-missingrelationscommand-parameters-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Breaking-78627-LowlevelDoubleFilesCommandParametersChanged.html#breaking-78627-lowlevel-missingrelationscommand-parameters-changed", + "Changelog\/8.5\/Breaking-78627-LowlevelDoubleFilesCommandParametersChanged.html#breaking-78627", "Breaking: #78627 - Lowlevel MissingRelationsCommand parameters changed" ], "breaking-78759-fluidification-of-editfilecontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Breaking-78759-FluidificationOfEditFileController.html#breaking-78759-fluidification-of-editfilecontroller", + "Changelog\/8.5\/Breaking-78759-FluidificationOfEditFileController.html#breaking-78759", "Breaking: #78759 - Fluidification of EditFileController" ], "breaking-78855-remove-obsolete-sys-action-translations": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Breaking-78855-RemoveObsoleteSysActionTranslations.html#breaking-78855-remove-obsolete-sys-action-translations", + "Changelog\/8.5\/Breaking-78855-RemoveObsoleteSysActionTranslations.html#breaking-78855", "Breaking: #78855 - Remove obsolete sys_action translations" ], "breaking-78895-lowlevel-rteimagescommand-parameters-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Breaking-78895-LowlevelRteImagesCommandParametersChanged.html#breaking-78895-lowlevel-rteimagescommand-parameters-changed", + "Changelog\/8.5\/Breaking-78895-LowlevelRteImagesCommandParametersChanged.html#breaking-78895", "Breaking: #78895 - Lowlevel RteImagesCommand parameters changed" ], "deprecation-57385-deprecate-parameter-casesensitive-of-extbase-query-like-comparison": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Deprecation-57385-DeprecateParameterCaseSensitiveOfExtbaseLikeComparison.html#deprecation-57385-deprecate-parameter-casesensitive-of-extbase-query-like-comparison", + "Changelog\/8.5\/Deprecation-57385-DeprecateParameterCaseSensitiveOfExtbaseLikeComparison.html#deprecation-57385", "Deprecation: #57385 - Deprecate parameter $caseSensitive of Extbase Query->like comparison" ], "deprecation-77296-deprecate-public-member-parentmenuarr-in-abstractmenucontentobject": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Deprecation-77296-DeprecatePublicMemberParentMenuArrInAbstractMenuContentObject.html#deprecation-77296-deprecate-public-member-parentmenuarr-in-abstractmenucontentobject", + "Changelog\/8.5\/Deprecation-77296-DeprecatePublicMemberParentMenuArrInAbstractMenuContentObject.html#deprecation-77296", "Deprecation: #77296 - Deprecate public member parentMenuArr in AbstractMenuContentObject" ], "deprecation-77524-deprecated-method-fileresource-of-contentobjectrenderer": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Deprecation-77524-DeprecatedMethodFileResourceOfContentObjectRenderer.html#deprecation-77524-deprecated-method-fileresource-of-contentobjectrenderer", + "Changelog\/8.5\/Deprecation-77524-DeprecatedMethodFileResourceOfContentObjectRenderer.html#deprecation-77524", "Deprecation: #77524 - Deprecated method fileResource of ContentObjectRenderer" ], "deprecation-77732-deprecate-methods-of-extbase-s-arrayutility": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Deprecation-77732-ExtbaseArrayUtility.html#deprecation-77732-deprecate-methods-of-extbase-s-arrayutility", + "Changelog\/8.5\/Deprecation-77732-ExtbaseArrayUtility.html#deprecation-77732", "Deprecation: #77732 - Deprecate methods of Extbase's ArrayUtility" ], "deprecation-78134-deprecate-typoscript-option-config-noscaleup": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Deprecation-78134-DeprecateTyposcriptOptionConfignoScaleUp.html#deprecation-78134-deprecate-typoscript-option-config-noscaleup", + "Changelog\/8.5\/Deprecation-78134-DeprecateTyposcriptOptionConfignoScaleUp.html#deprecation-78134", "Deprecation: #78134 - Deprecate TypoScript option config.noScaleUp" ], "deprecation-78217-frameset-and-frame": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Deprecation-78217-FramesetAndFrame.html#deprecation-78217-frameset-and-frame", + "Changelog\/8.5\/Deprecation-78217-FramesetAndFrame.html#deprecation-78217", "Deprecation: #78217 - frameset and frame" ], "deprecation-78244-deprecate-typo3-db-and-prepared-statement-class": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Deprecation-78244-DeprecateTYPO3_DBAndPreparedStatementClass.html#deprecation-78244-deprecate-typo3-db-and-prepared-statement-class", + "Changelog\/8.5\/Deprecation-78244-DeprecateTYPO3_DBAndPreparedStatementClass.html#deprecation-78244", "Deprecation: #78244 - Deprecate TYPO3_DB and Prepared Statement class" ], "deprecation-78279-deprecate-top-typo3-backend-contentcontainer-iframe": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Deprecation-78279-DeprecateTopTYPO3BackendContentContaineriframe.html#deprecation-78279-deprecate-top-typo3-backend-contentcontainer-iframe", + "Changelog\/8.5\/Deprecation-78279-DeprecateTopTYPO3BackendContentContaineriframe.html#deprecation-78279", "Deprecation: #78279 - Deprecate top.TYPO3.Backend.ContentContainer.iframe" ], "deprecation-78314-abstractfunctionmodule-getbackpath": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Deprecation-78314-AbstractFunctionModule-getBackPath.html#deprecation-78314-abstractfunctionmodule-getbackpath", + "Changelog\/8.5\/Deprecation-78314-AbstractFunctionModule-getBackPath.html#deprecation-78314", "Deprecation: #78314 - AbstractFunctionModule->getBackPath" ], "deprecation-78524-tca-option-versioning-followpages-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Deprecation-78524-TCAOptionVersioning_followPagesRemoved.html#deprecation-78524-tca-option-versioning-followpages-removed", + "Changelog\/8.5\/Deprecation-78524-TCAOptionVersioning_followPagesRemoved.html#deprecation-78524", "Deprecation: #78524 - TCA option versioning_followPages removed" ], "deprecation-78581-flex-form-related-parsing": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Deprecation-78581-FlexFormRelatedParsing.html#deprecation-78581-flex-form-related-parsing", + "Changelog\/8.5\/Deprecation-78581-FlexFormRelatedParsing.html#deprecation-78581", "Deprecation: #78581 - Flex form related parsing" ], "deprecation-78628-tca-tree-pagetsconfig-additems-icon-path": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Deprecation-78628-TcaTreeTreePageTsConfigAddItemsIconPath.html#deprecation-78628-tca-tree-pagetsconfig-additems-icon-path", + "Changelog\/8.5\/Deprecation-78628-TcaTreeTreePageTsConfigAddItemsIconPath.html#deprecation-78628", "Deprecation: #78628 - TCA tree pageTsConfig addItems icon path" ], "deprecation-78647-move-language-files-from-ext-lang-locallang-to-resources-private-language": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Deprecation-78647-MoveLanguageFilesFromEXTlanglocallang_ToResourcesPrivateLanguage.html#deprecation-78647-move-language-files-from-ext-lang-locallang-to-resources-private-language", + "Changelog\/8.5\/Deprecation-78647-MoveLanguageFilesFromEXTlanglocallang_ToResourcesPrivateLanguage.html#deprecation-78647", "Deprecation: #78647 - Move language files from EXT:lang\/locallang_* to Resources\/Private\/Language" ], "deprecation-78668-typoscript-option-config-mainscript": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Deprecation-78668-TypoScriptOptionConfigmainScript.html#deprecation-78668-typoscript-option-config-mainscript", + "Changelog\/8.5\/Deprecation-78668-TypoScriptOptionConfigmainScript.html#deprecation-78668", "Deprecation: #78668 - TypoScript option config.mainScript" ], "deprecation-78670-deprecated-charsetconverter-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Deprecation-78670-DeprecatedCharsetConverterMethods.html#deprecation-78670-deprecated-charsetconverter-methods", + "Changelog\/8.5\/Deprecation-78670-DeprecatedCharsetConverterMethods.html#deprecation-78670", "Deprecation: #78670 - Deprecated CharsetConverter methods" ], "deprecation-78679-crawler-inclusion-via-require-once-in-indexed-search": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Deprecation-78679-CrawlerInclusionViaRequire_onceInIndexedSearch.html#deprecation-78679-crawler-inclusion-via-require-once-in-indexed-search", + "Changelog\/8.5\/Deprecation-78679-CrawlerInclusionViaRequire_onceInIndexedSearch.html#deprecation-78679", "Deprecation: #78679 - Crawler inclusion via require_once in Indexed Search" ], "deprecation-78733-calluserfunction-token-for-singleton-objects": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Deprecation-78733-CallUserFunctionTokenForSingletonObjects.html#deprecation-78733-calluserfunction-token-for-singleton-objects", + "Changelog\/8.5\/Deprecation-78733-CallUserFunctionTokenForSingletonObjects.html#deprecation-78733", "Deprecation: #78733 - CallUserFunction \"&\" token for singleton objects" ], "deprecation-78872-deprecate-method-localizationcontroller-getrecorduidstocopy": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Deprecation-78872-DeprecateMethodGetRecordUidsToCopy.html#deprecation-78872-deprecate-method-localizationcontroller-getrecorduidstocopy", + "Changelog\/8.5\/Deprecation-78872-DeprecateMethodGetRecordUidsToCopy.html#deprecation-78872", "Deprecation: #78872 - Deprecate method LocalizationController::getRecordUidsToCopy" ], "feature-29399-optionviewhelper-and-optgroupviewhelper-for-use-with-selectviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Feature-29399-OptionViewHelperAndOptgroupViewHelperForUseWithSelectViewHelper.html#feature-29399-optionviewhelper-and-optgroupviewhelper-for-use-with-selectviewhelper", + "Changelog\/8.5\/Feature-29399-OptionViewHelperAndOptgroupViewHelperForUseWithSelectViewHelper.html#feature-29399", "Feature: #29399 - OptionViewHelper and OptgroupViewHelper for use with SelectViewHelper" ], "feature-52286-add-option-to-system-status-updates-report-job-to-send-all-tests": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Feature-52286-AddOptionToSystemStatusUpdatesReport-jobToSendAllTests.html#feature-52286-add-option-to-system-status-updates-report-job-to-send-all-tests", + "Changelog\/8.5\/Feature-52286-AddOptionToSystemStatusUpdatesReport-jobToSendAllTests.html#feature-52286", "Feature: #52286 - Add option to \"system status updates\" report-job to send all tests" ], "feature-58637-purge-language-packs-in-language-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Feature-58637-PurgeLanguagePacksInLanguageModule.html#feature-58637-purge-language-packs-in-language-module", + "Changelog\/8.5\/Feature-58637-PurgeLanguagePacksInLanguageModule.html#feature-58637", "Feature: #58637 - Purge language packs in language module" ], "feature-67909-add-hook-to-datahandler-localize-translatetomessage": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Feature-67909-AddHookToDataHandler-Localize-TranslateToMessage.html#feature-67909-add-hook-to-datahandler-localize-translatetomessage", + "Changelog\/8.5\/Feature-67909-AddHookToDataHandler-Localize-TranslateToMessage.html#feature-67909", "Feature: #67909 - Add hook to DataHandler - localize - translateToMessage" ], "feature-73626-numberofresults-should-be-configurable-and-report-overflow": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Feature-73626-NumberOfResultsShouldBeConfigurableAndReportOverflow.html#feature-73626-numberofresults-should-be-configurable-and-report-overflow", + "Changelog\/8.5\/Feature-73626-NumberOfResultsShouldBeConfigurableAndReportOverflow.html#feature-73626", "Feature: #73626 - numberOfResults should be configurable and report overflow" ], "feature-76085-add-fluid-debug-information-to-admin-panel": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Feature-76085-AddFluidDebugInformationToAdminPanel.html#feature-76085-add-fluid-debug-information-to-admin-panel", + "Changelog\/8.5\/Feature-76085-AddFluidDebugInformationToAdminPanel.html#feature-76085", "Feature: #76085 - Add fluid debug information to admin panel" ], "feature-77757-enable-rechecking-whether-an-updatewizard-should-run": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Feature-77757-EnableRecheckingWhetherAnUpdateWizardShouldRun.html#feature-77757-enable-rechecking-whether-an-updatewizard-should-run", + "Changelog\/8.5\/Feature-77757-EnableRecheckingWhetherAnUpdateWizardShouldRun.html#feature-77757", "Feature: #77757 - Enable rechecking whether an UpdateWizard should run" ], "feature-77910-ext-form-introduce-new-form-framework": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Feature-77910-EXTform-IntroduceNewFormFramework.html#feature-77910-ext-form-introduce-new-form-framework", + "Changelog\/8.5\/Feature-77910-EXTform-IntroduceNewFormFramework.html#feature-77910", "Feature: #77910 - EXT:form - introduce new form framework" ], "feature-78002-enforce-chash-argument-for-extbase-actions": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Feature-78002-EnforceCHashArgumentForExtbaseActions.html#feature-78002-enforce-chash-argument-for-extbase-actions", + "Changelog\/8.5\/Feature-78002-EnforceCHashArgumentForExtbaseActions.html#feature-78002", "Feature: #78002 - Enforce cHash argument for Extbase actions" ], "feature-78103-add-missing-information-status-for-addsystemmessage": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Feature-78103-AddMissingInformationStatusForAddSystemMessage.html#feature-78103-add-missing-information-status-for-addsystemmessage", + "Changelog\/8.5\/Feature-78103-AddMissingInformationStatusForAddSystemMessage.html#feature-78103", "Feature: #78103 - Add missing information status for addSystemMessage" ], "feature-78116-extbase-support-for-doctrine-s-native-dbal-statement-and-querybuilder": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Feature-78116-ExtbaseSupportForDoctrinesNativeDBALStatementAndQueryBuilder.html#feature-78116-extbase-support-for-doctrine-s-native-dbal-statement-and-querybuilder", + "Changelog\/8.5\/Feature-78116-ExtbaseSupportForDoctrinesNativeDBALStatementAndQueryBuilder.html#feature-78116", "Feature: #78116 - Extbase support for Doctrine's native DBAL Statement and QueryBuilder" ], "feature-78384-check-ext-tables-tca-changes-in-install-tool": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Feature-78384-CheckExtTablesTCAChangesInInstallTool.html#feature-78384-check-ext-tables-tca-changes-in-install-tool", + "Changelog\/8.5\/Feature-78384-CheckExtTablesTCAChangesInInstallTool.html#feature-78384", "Feature: #78384 - Check ext tables TCA changes in install tool" ], "feature-78415-global-fluid-viewhelper-namespaces-moved-to-typo3-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Feature-78415-GlobalFluidViewHelperNamespacesMovedToTYPO3Configuration.html#feature-78415-global-fluid-viewhelper-namespaces-moved-to-typo3-configuration", + "Changelog\/8.5\/Feature-78415-GlobalFluidViewHelperNamespacesMovedToTYPO3Configuration.html#feature-78415", "Feature: #78415 - Global Fluid ViewHelper namespaces moved to TYPO3 configuration" ], "feature-78523-suggest-wizard-provides-option-to-define-ordering-of-results": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Feature-78523-SuggestWizardProvidesOptionToDefineOrderingOfResults.html#feature-78523-suggest-wizard-provides-option-to-define-ordering-of-results", + "Changelog\/8.5\/Feature-78523-SuggestWizardProvidesOptionToDefineOrderingOfResults.html#feature-78523", "Feature: #78523 - Suggest wizard provides option to define ordering of results" ], "feature-78575-enumeration-constants-don-t-provide-their-names": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Feature-78575-EnumerationConstantsProvideTheirNames.html#feature-78575-enumeration-constants-don-t-provide-their-names", + "Changelog\/8.5\/Feature-78575-EnumerationConstantsProvideTheirNames.html#feature-78575", "Feature: #78575 - Enumeration constants don't provide their names" ], "feature-78672-introduce-fluid-data-processor-for-menus": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Feature-78672-IntroduceFluidDataProcessorForMenus.html#feature-78672-introduce-fluid-data-processor-for-menus", + "Changelog\/8.5\/Feature-78672-IntroduceFluidDataProcessorForMenus.html#feature-78672", "Feature: #78672 - Introduce fluid data processor for menus" ], "feature-78842-let-fluidtemplate-mimic-an-actual-extbase-web-request": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Feature-78842-LetFluidtemplateMimicAnActualExtbaseWebRequest.html#feature-78842-let-fluidtemplate-mimic-an-actual-extbase-web-request", + "Changelog\/8.5\/Feature-78842-LetFluidtemplateMimicAnActualExtbaseWebRequest.html#feature-78842", "Feature: #78842 - Let FLUIDTEMPLATE mimic an actual extbase web request" ], "important-72050-encapslines-does-not-render-duplicate-paragraphs-anymore": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Important-72050-EncapsLinesDoesNotRenderDuplicateParagraphs.html#important-72050-encapslines-does-not-render-duplicate-paragraphs-anymore", + "Changelog\/8.5\/Important-72050-EncapsLinesDoesNotRenderDuplicateParagraphs.html#important-72050", "Important: #72050 - encapsLines does not render duplicate paragraphs anymore" ], "important-75232-spread-typeconverter-priorities": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Important-75232-SpreadTypeConverterPriorities.html#important-75232-spread-typeconverter-priorities", + "Changelog\/8.5\/Important-75232-SpreadTypeConverterPriorities.html#important-75232", "Important: #75232 - Spread TypeConverter priorities" ], "important-77702-custom-render-types-for-date-and-datetime-fields-must-use-iso-8601": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Important-77702-CustomRenderTypesForDateAndDatetimeFieldsMustUseISO-8601.html#important-77702-custom-render-types-for-date-and-datetime-fields-must-use-iso-8601", + "Changelog\/8.5\/Important-77702-CustomRenderTypesForDateAndDatetimeFieldsMustUseISO-8601.html#important-77702", "Important: #77702 - Custom render types for date and datetime fields must use ISO-8601" ], "important-78383-tca-streamline-field-positions-in-tabs-for-recurring-fields": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.5\/Important-78383-TCAStreamlineFieldPositionsInTabsForRecurringFields.html#important-78383-tca-streamline-field-positions-in-tabs-for-recurring-fields", + "Changelog\/8.5\/Important-78383-TCAStreamlineFieldPositionsInTabsForRecurringFields.html#important-78383", "Important: #78383 - TCA: Streamline field positions in tabs for recurring fields" ], "general-first-tab": [ @@ -59125,19 +59329,19 @@ "breaking-70316-abstractuserauthentication-properties-and-methods-dropped-and-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-70316-AbstractUserAuthenticationPropertiesAndMethodsDroppedAndChanged.html#breaking-70316-abstractuserauthentication-properties-and-methods-dropped-and-changed", + "Changelog\/8.6\/Breaking-70316-AbstractUserAuthenticationPropertiesAndMethodsDroppedAndChanged.html#breaking-70316", "Breaking: #70316 - AbstractUserAuthentication properties and methods dropped and changed" ], "breaking-77934-remove-field-select-key-from-content-element-preview": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-77934-RemoveSelectKeyFromContentElementPreview.html#breaking-77934-remove-field-select-key-from-content-element-preview", + "Changelog\/8.6\/Breaking-77934-RemoveSelectKeyFromContentElementPreview.html#breaking-77934", "Breaking: #77934 - Remove field select_key from content element preview" ], "breaking-78192-refactor-click-menu-context-menu": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-78192-RefactorClickMenuContextMenu.html#breaking-78192-refactor-click-menu-context-menu", + "Changelog\/8.6\/Breaking-78192-RefactorClickMenuContextMenu.html#breaking-78192", "Breaking: #78192 - Refactor click menu (context menu)" ], "classes-removed": [ @@ -59185,163 +59389,163 @@ "breaking-78477-flashmessagesviewhelper-no-longer-inherits-from-tagbasedviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-78477-InheritanceOfFlashMessageViewHelper.html#breaking-78477-flashmessagesviewhelper-no-longer-inherits-from-tagbasedviewhelper", + "Changelog\/8.6\/Breaking-78477-InheritanceOfFlashMessageViewHelper.html#breaking-78477", "Breaking: #78477 - FlashMessagesViewHelper no longer inherits from TagBasedViewHelper" ], "breaking-78477-remove-method-flashmessage-getmessageasmarkup": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-78477-RemoveFlashMessageGetMessageAsMarkup.html#breaking-78477-remove-method-flashmessage-getmessageasmarkup", + "Changelog\/8.6\/Breaking-78477-RemoveFlashMessageGetMessageAsMarkup.html#breaking-78477-1668719172", "Breaking: #78477 - Remove method FlashMessage->getMessageAsMarkup()" ], "breaking-78899-remove-extjscode-from-formengine-result-array": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-78899-RemoveExtJsCodeFromFormEngineResultArray.html#breaking-78899-remove-extjscode-from-formengine-result-array", + "Changelog\/8.6\/Breaking-78899-RemoveExtJsCodeFromFormEngineResultArray.html#breaking-78899-1668719172", "Breaking: #78899 - Remove extJSCODE from FormEngine result array" ], "breaking-78899-remove-methods-hook-and-property-in-formengine": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-78899-RemoveMethodsHookAndPropertyInFormEngine.html#breaking-78899-remove-methods-hook-and-property-in-formengine", + "Changelog\/8.6\/Breaking-78899-RemoveMethodsHookAndPropertyInFormEngine.html#breaking-78899", "Breaking: #78899 - Remove methods, hook and property in FormEngine" ], "breaking-78988-remove-optional-fluid-typoscript-template": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-78988-RemoveOptionalFluidTyposcriptTemplate.html#breaking-78988-remove-optional-fluid-typoscript-template", + "Changelog\/8.6\/Breaking-78988-RemoveOptionalFluidTyposcriptTemplate.html#breaking-78988", "Breaking: #78988 - Remove optional Fluid TypoScript template" ], "breaking-79025-extract-testing-framework-for-typo3": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79025-ExtractTestingFrameworkForTYPO3.html#breaking-79025-extract-testing-framework-for-typo3", + "Changelog\/8.6\/Breaking-79025-ExtractTestingFrameworkForTYPO3.html#breaking-79025", "Breaking: #79025 - Extract testing framework for TYPO3" ], "breaking-79100-ext-felogin-remove-default-css": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79100-FeloginRemoveDefaultCss.html#breaking-79100-ext-felogin-remove-default-css", + "Changelog\/8.6\/Breaking-79100-FeloginRemoveDefaultCss.html#breaking-79100", "Breaking: #79100 - ext:felogin: Remove default CSS" ], "breaking-79109-lowlevel-versionscommand-parameters-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79109-LowlevelVersionsCommandParametersChanged.html#breaking-79109-lowlevel-versionscommand-parameters-changed", + "Changelog\/8.6\/Breaking-79109-LowlevelVersionsCommandParametersChanged.html#breaking-79109", "Breaking: #79109 - Lowlevel VersionsCommand parameters changed" ], "breaking-79120-remove-legacy-cli-related-constants-and-variables": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79120-RemovedLegacyCliRelatedConstantsAndVariables.html#breaking-79120-remove-legacy-cli-related-constants-and-variables", + "Changelog\/8.6\/Breaking-79120-RemovedLegacyCliRelatedConstantsAndVariables.html#breaking-79120", "Breaking: #79120 - Remove legacy CLI-related constants and variables" ], "breaking-79196-toolbar-item-event-handling-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79196-ToolbarItemEventHandlingChanged.html#breaking-79196-toolbar-item-event-handling-changed", + "Changelog\/8.6\/Breaking-79196-ToolbarItemEventHandlingChanged.html#breaking-79196", "Breaking: #79196 - Toolbar item event handling changed" ], "breaking-79201-ext-form-split-typoscript-includes": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79201-ExtFormSplitTyposcriptIncludes.html#breaking-79201-ext-form-split-typoscript-includes", + "Changelog\/8.6\/Breaking-79201-ExtFormSplitTyposcriptIncludes.html#breaking-79201", "Breaking: #79201 - EXT:form: Split TypoScript Includes" ], "breaking-79227-removed-extdirect-state-provider": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79227-RemovedExtDirectStateProvider.html#breaking-79227-removed-extdirect-state-provider", + "Changelog\/8.6\/Breaking-79227-RemovedExtDirectStateProvider.html#breaking-79227", "Breaking: #79227 - Removed ExtDirect State Provider" ], "breaking-79228-remove-extjs-pagetree-indicator-functionality": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79228-RemoveExtJSPagetreeIndicatorFunctionality.html#breaking-79228-remove-extjs-pagetree-indicator-functionality", + "Changelog\/8.6\/Breaking-79228-RemoveExtJSPagetreeIndicatorFunctionality.html#breaking-79228", "Breaking: #79228 - Remove ExtJS Pagetree indicator functionality" ], "breaking-79242-remove-l10n-mode-nocopy": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79242-RemoveL10n_modeNoCopy.html#breaking-79242-remove-l10n-mode-nocopy", + "Changelog\/8.6\/Breaking-79242-RemoveL10n_modeNoCopy.html#breaking-79242", "Breaking: #79242 - Remove l10n_mode noCopy" ], "breaking-79243-remove-l10n-mode-mergeifnotblank": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79243-RemoveL10n_modeMergeIfNotBlank.html#breaking-79243-remove-l10n-mode-mergeifnotblank", + "Changelog\/8.6\/Breaking-79243-RemoveL10n_modeMergeIfNotBlank.html#breaking-79243", "Breaking: #79243 - Remove l10n_mode mergeIfNotBlank" ], "breaking-79243-remove-sys-language-softmergeifnotblank": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79243-RemoveSys_language_softMergeIfNotBlank.html#breaking-79243-remove-sys-language-softmergeifnotblank", + "Changelog\/8.6\/Breaking-79243-RemoveSys_language_softMergeIfNotBlank.html#breaking-79243-1668719172", "Breaking: #79243 - Remove sys_language_softMergeIfNotBlank" ], "breaking-79259-ext-t3skin-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79259-RemoveExtt3skin.html#breaking-79259-ext-t3skin-removed", + "Changelog\/8.6\/Breaking-79259-RemoveExtt3skin.html#breaking-79259", "Breaking: #79259 - EXT:t3skin removed" ], "breaking-79263-scheduler-cli-controller-class-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79263-SchedulerCLIControllerClassRemoved.html#breaking-79263-scheduler-cli-controller-class-removed", + "Changelog\/8.6\/Breaking-79263-SchedulerCLIControllerClassRemoved.html#breaking-79263", "Breaking: #79263 - Scheduler CLI Controller class removed" ], "breaking-79270-removed-rte-processing-option-disableunifylinebreaks": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79270-RemovedRTEProcessingOptionDisableUnifyLineBreaks.html#breaking-79270-removed-rte-processing-option-disableunifylinebreaks", + "Changelog\/8.6\/Breaking-79270-RemovedRTEProcessingOptionDisableUnifyLineBreaks.html#breaking-79270", "Breaking: #79270 - Removed RTE processing option disableUnifyLineBreaks" ], "breaking-79273-removed-rtehtmlparser-proc-options": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79273-RemovedRteHtmlParserProcOptions.html#breaking-79273-removed-rtehtmlparser-proc-options", + "Changelog\/8.6\/Breaking-79273-RemovedRteHtmlParserProcOptions.html#breaking-79273", "Breaking: #79273 - Removed RteHtmlParser proc options" ], "breaking-79300-removed-rte-proc-transformboldanditalictags-option": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79300-RemovedRTEProctransformBoldAndItalicTagsOption.html#breaking-79300-removed-rte-proc-transformboldanditalictags-option", + "Changelog\/8.6\/Breaking-79300-RemovedRTEProctransformBoldAndItalicTagsOption.html#breaking-79300", "Breaking: #79300 - Removed RTE proc.transformBoldAndItalicTags option" ], "breaking-79302-moved-pages-url-scheme-to-compatibility7-extension": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79302-MovedPagesurlSchemeToCompatibility7Extension.html#breaking-79302-moved-pages-url-scheme-to-compatibility7-extension", + "Changelog\/8.6\/Breaking-79302-MovedPagesurlSchemeToCompatibility7Extension.html#breaking-79302", "Breaking: #79302 - Moved pages.url_scheme to compatibility7 extension" ], "breaking-79327-the-vericode-vc-parameter-is-not-evaluated-any-more": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79327-TheVeriCode-VCParameterIsNotEvaluatedAnyMore.html#breaking-79327-the-vericode-vc-parameter-is-not-evaluated-any-more", + "Changelog\/8.6\/Breaking-79327-TheVeriCode-VCParameterIsNotEvaluatedAnyMore.html#breaking-79327", "Breaking: #79327 - The veriCode - vC parameter is not evaluated any more" ], "breaking-79364-move-page-module-function-quickedit-to-compatibility7": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79364-MovePageModuleFunctionQuickEditToCompatibility7.html#breaking-79364-move-page-module-function-quickedit-to-compatibility7", + "Changelog\/8.6\/Breaking-79364-MovePageModuleFunctionQuickEditToCompatibility7.html#breaking-79364", "Breaking: #79364 - Move page module function QuickEdit to compatibility7" ], "breaking-79464-ext-form-refactor-fluid-rendering": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79464-ExtFormRefactorFluidRendering.html#breaking-79464-ext-form-refactor-fluid-rendering", + "Changelog\/8.6\/Breaking-79464-ExtFormRefactorFluidRendering.html#breaking-79464", "Breaking: #79464 - EXT:form - Refactor fluid rendering" ], "breaking-79513-removed-session-locking-based-on-useragent": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79513-RemovedSessionLockingBasedOnUseragent.html#breaking-79513-removed-session-locking-based-on-useragent", + "Changelog\/8.6\/Breaking-79513-RemovedSessionLockingBasedOnUseragent.html#breaking-79513", "Breaking: #79513 - Removed session locking based on useragent" ], "breaking-79622-css-styled-content-and-typoscript": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79622-CSSStyledContentAndTypoScript.html#breaking-79622-css-styled-content-and-typoscript", + "Changelog\/8.6\/Breaking-79622-CSSStyledContentAndTypoScript.html#breaking-79622-1668719202", "Breaking: #79622 - CSS Styled Content and TypoScript" ], "image-compression": [ @@ -59371,13 +59575,13 @@ "breaking-79622-css-styled-content-bullet-content-element-adjustments": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79622-CSSStyledContentBulletContentElementAdjustments.html#breaking-79622-css-styled-content-bullet-content-element-adjustments", + "Changelog\/8.6\/Breaking-79622-CSSStyledContentBulletContentElementAdjustments.html#breaking-79622-1668719195", "Breaking: #79622 - CSS Styled Content Bullet Content Element Adjustments" ], "breaking-79622-css-styled-content-table-content-element-adjustments": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79622-CSSStyledContentTableContentElementAdjustments.html#breaking-79622-css-styled-content-table-content-element-adjustments", + "Changelog\/8.6\/Breaking-79622-CSSStyledContentTableContentElementAdjustments.html#breaking-79622-1668719233", "Breaking: #79622 - CSS Styled Content table content element adjustments" ], "table-summary": [ @@ -59419,31 +59623,31 @@ "breaking-79622-dedicated-content-elements-for-menus": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79622-DedicatedContentElementsForMenus.html#breaking-79622-dedicated-content-elements-for-menus", + "Changelog\/8.6\/Breaking-79622-DedicatedContentElementsForMenus.html#breaking-79622-1668719270", "Breaking: #79622 - Dedicated content elements for menus" ], "breaking-79622-default-content-element-changed-for-fluid-styled-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79622-DefaultContentElementChangedForFluidStyledContent.html#breaking-79622-default-content-element-changed-for-fluid-styled-content", + "Changelog\/8.6\/Breaking-79622-DefaultContentElementChangedForFluidStyledContent.html#breaking-79622-1668719209", "Breaking: #79622 - Default content element changed for Fluid Styled Content" ], "breaking-79622-default-layouts-for-fluid-styled-content-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79622-DefaultLayoutsForFluidStyledContentChanged.html#breaking-79622-default-layouts-for-fluid-styled-content-changed", + "Changelog\/8.6\/Breaking-79622-DefaultLayoutsForFluidStyledContentChanged.html#breaking-79622-1668719247", "Breaking: #79622 - Default layouts for Fluid Styled Content changed" ], "breaking-79622-dropping-thumbnail-configuration-for-tt-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79622-DroppingThumbnailConfigurationForTt_content.html#breaking-79622-dropping-thumbnail-configuration-for-tt-content", + "Changelog\/8.6\/Breaking-79622-DroppingThumbnailConfigurationForTt_content.html#breaking-79622", "Breaking: #79622 - Dropping thumbnail configuration for tt_content" ], "breaking-79622-removal-of-fluid-styled-content-menu-viewhelpers": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79622-RemovalOfFluidStyledContentMenuViewHelpers.html#breaking-79622-removal-of-fluid-styled-content-menu-viewhelpers", + "Changelog\/8.6\/Breaking-79622-RemovalOfFluidStyledContentMenuViewHelpers.html#breaking-79622-1668719381", "Breaking: #79622 - Removal of Fluid Styled Content Menu ViewHelpers" ], "example-directory": [ @@ -59455,7 +59659,7 @@ "breaking-79622-section-frame-for-css-styled-content-replaced-with-frame-class": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79622-SectionFrameForCSSStyledContentReplacedWithFrameClass.html#breaking-79622-section-frame-for-css-styled-content-replaced-with-frame-class", + "Changelog\/8.6\/Breaking-79622-SectionFrameForCSSStyledContentReplacedWithFrameClass.html#breaking-79622-1668719172", "Breaking: #79622 - Section Frame for CSS Styled Content replaced with Frame Class" ], "compatibility-table": [ @@ -59491,7 +59695,7 @@ "breaking-79622-spacebefore-and-spaceafter-adjustments-for-css-styled-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79622-SpaceBeforeAndSpaceAfterAdjustmentsForCSSStyledContent.html#breaking-79622-spacebefore-and-spaceafter-adjustments-for-css-styled-content", + "Changelog\/8.6\/Breaking-79622-SpaceBeforeAndSpaceAfterAdjustmentsForCSSStyledContent.html#breaking-79622-1668719355", "Breaking: #79622 - SpaceBefore and SpaceAfter adjustments for CSS Styled Content" ], "old-typoscript-rendering": [ @@ -59521,7 +59725,7 @@ "breaking-79622-streamlining-structure-of-css-styled-content-and-fluid-styled-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79622-StreamliningStructureOfCSSStyledContentAndFluidStyledContent.html#breaking-79622-streamlining-structure-of-css-styled-content-and-fluid-styled-content", + "Changelog\/8.6\/Breaking-79622-StreamliningStructureOfCSSStyledContentAndFluidStyledContent.html#breaking-79622-1668719184", "Breaking: #79622 - Streamlining structure of CSS Styled Content and Fluid Styled Content" ], "file-structure-of-css-styled-content": [ @@ -59545,7 +59749,7 @@ "breaking-79622-typoscript-standard-header-has-been-removed-from-fluid-styled-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Breaking-79622-TypoScriptStandardHeaderHasBeenRemovedFromFluidStyledContent.html#breaking-79622-typoscript-standard-header-has-been-removed-from-fluid-styled-content", + "Changelog\/8.6\/Breaking-79622-TypoScriptStandardHeaderHasBeenRemovedFromFluidStyledContent.html#breaking-79622-1668719372", "Breaking: #79622 - TypoScript Standard Header has been removed from Fluid Styled Content" ], "typoscript-configuration": [ @@ -59599,85 +59803,85 @@ "deprecation-70316-frontend-basket-with-recs": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Deprecation-70316-FrontendBasketWithRecs.html#deprecation-70316-frontend-basket-with-recs", + "Changelog\/8.6\/Deprecation-70316-FrontendBasketWithRecs.html#deprecation-70316", "Deprecation: #70316 - Frontend basket with recs" ], "deprecation-77934-deprecate-tt-content-field-select-key": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Deprecation-77934-DeprecateTt_contentFieldSelect_key.html#deprecation-77934-deprecate-tt-content-field-select-key", + "Changelog\/8.6\/Deprecation-77934-DeprecateTt_contentFieldSelect_key.html#deprecation-77934", "Deprecation: #77934 - Deprecate tt_content field select_key" ], "deprecation-78225-legacy-preparedstatements-within-extbase": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Deprecation-78225-LegacyPreparedStatementsWithinExtbase.html#deprecation-78225-legacy-preparedstatements-within-extbase", + "Changelog\/8.6\/Deprecation-78225-LegacyPreparedStatementsWithinExtbase.html#deprecation-78225", "Deprecation: #78225 - Legacy PreparedStatements within Extbase" ], "deprecation-78477-refactoring-of-flashmessage-rendering": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Deprecation-78477-RefactoringOfFlashMessageRendering.html#deprecation-78477-refactoring-of-flashmessage-rendering", + "Changelog\/8.6\/Deprecation-78477-RefactoringOfFlashMessageRendering.html#deprecation-78477", "Deprecation: #78477 - Refactoring of FlashMessage rendering" ], "deprecation-78899-formengine-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Deprecation-78899-FormEngineMethods.html#deprecation-78899-formengine-methods", + "Changelog\/8.6\/Deprecation-78899-FormEngineMethods.html#deprecation-78899-1668719172", "Deprecation: #78899 - FormEngine Methods" ], "deprecation-78899-tca-ctrl-field-requestupdate-dropped": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Deprecation-78899-TCACtrlFieldRequestUpdateDropped.html#deprecation-78899-tca-ctrl-field-requestupdate-dropped", + "Changelog\/8.6\/Deprecation-78899-TCACtrlFieldRequestUpdateDropped.html#deprecation-78899", "Deprecation: #78899 - TCA ctrl field requestUpdate dropped" ], "deprecation-79258-methods-getrecordlocalization-and-getpreviouslocalizedrecorduid-in-localizationrepository": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Deprecation-79258-MethodsInLocalizationRepository.html#deprecation-79258-methods-getrecordlocalization-and-getpreviouslocalizedrecorduid-in-localizationrepository", + "Changelog\/8.6\/Deprecation-79258-MethodsInLocalizationRepository.html#deprecation-79258", "Deprecation: #79258 - Methods getRecordLocalization() and getPreviousLocalizedRecordUid() in LocalizationRepository" ], "deprecation-79265-commandlinecontroller-and-cleaner-command": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Deprecation-79265-CommandLineControllerAndCleanerCommand.html#deprecation-79265-commandlinecontroller-and-cleaner-command", + "Changelog\/8.6\/Deprecation-79265-CommandLineControllerAndCleanerCommand.html#deprecation-79265", "Deprecation: #79265 - CommandLineController and Cleaner Command" ], "deprecation-79316-deprecate-arrayutility-inarray": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Deprecation-79316-DeprecateArrayUtilityinArray.html#deprecation-79316-deprecate-arrayutility-inarray", + "Changelog\/8.6\/Deprecation-79316-DeprecateArrayUtilityinArray.html#deprecation-79316", "Deprecation: #79316 - Deprecate ArrayUtility::inArray()" ], "deprecation-79327-deprecate-abstractuserauthentication-vericode-method": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Deprecation-79327-DeprecateAbstractUserAuthenticationveriCodeMethod.html#deprecation-79327-deprecate-abstractuserauthentication-vericode-method", + "Changelog\/8.6\/Deprecation-79327-DeprecateAbstractUserAuthenticationveriCodeMethod.html#deprecation-79327", "Deprecation: #79327 - Deprecate AbstractUserAuthentication::veriCode method" ], "deprecation-79341-methods-related-to-richtext-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Deprecation-79341-MethodsRelatedToRichtextConfiguration.html#deprecation-79341-methods-related-to-richtext-configuration", + "Changelog\/8.6\/Deprecation-79341-MethodsRelatedToRichtextConfiguration.html#deprecation-79341-1668719172", "Deprecation: #79341 - Methods related to richtext configuration" ], "deprecation-79341-tca-richtext-configuration-in-defaultextras-dropped": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Deprecation-79341-TCARichtextConfigurationInDefaultExtrasDropped.html#deprecation-79341-tca-richtext-configuration-in-defaultextras-dropped", + "Changelog\/8.6\/Deprecation-79341-TCARichtextConfigurationInDefaultExtrasDropped.html#deprecation-79341", "Deprecation: #79341 - TCA richtext configuration in defaultExtras dropped" ], "deprecation-79364-deprecate-members-in-pagelayoutcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Deprecation-79364-DeprecateMembersInPageLayoutController.html#deprecation-79364-deprecate-members-in-pagelayoutcontroller", + "Changelog\/8.6\/Deprecation-79364-DeprecateMembersInPageLayoutController.html#deprecation-79364", "Deprecation: #79364 - Deprecate members in PageLayoutController" ], "deprecation-79440-tca-changes": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Deprecation-79440-TcaChanges.html#deprecation-79440-tca-changes", + "Changelog\/8.6\/Deprecation-79440-TcaChanges.html#deprecation-79440", "Deprecation: #79440 - TCA Changes" ], "wizard-list": [ @@ -59773,91 +59977,91 @@ "deprecation-79441-deprecate-visibility-internal-caching-arrays": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Deprecation-79441-ChangeVisibilityInternalCacheDatahandler.html#deprecation-79441-deprecate-visibility-internal-caching-arrays", + "Changelog\/8.6\/Deprecation-79441-ChangeVisibilityInternalCacheDatahandler.html#deprecation-79441", "Deprecation: #79441 - Deprecate visibility internal caching arrays" ], "deprecation-79560-deprecate-clientutility-getdevicetype": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Deprecation-79560-DeprecateClientUtilitygetDeviceType.html#deprecation-79560-deprecate-clientutility-getdevicetype", + "Changelog\/8.6\/Deprecation-79560-DeprecateClientUtilitygetDeviceType.html#deprecation-79560", "Deprecation: #79560 - Deprecate ClientUtility::getDeviceType" ], "deprecation-79622-deprecation-of-css-styled-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Deprecation-79622-DeprecationOfCSSStyledContent.html#deprecation-79622-deprecation-of-css-styled-content", + "Changelog\/8.6\/Deprecation-79622-DeprecationOfCSSStyledContent.html#deprecation-79622", "Deprecation: #79622 - Deprecation of CSS Styled Content" ], "deprecation-79658-pagerepository-shouldfieldbeoverlaid": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Deprecation-79658-PageRepositoryShouldFieldBeOverlaid.html#deprecation-79658-pagerepository-shouldfieldbeoverlaid", + "Changelog\/8.6\/Deprecation-79658-PageRepositoryShouldFieldBeOverlaid.html#deprecation-79658", "Deprecation: #79658 - PageRepository shouldFieldBeOverlaid()" ], "feature-12211-usability-scheduler-provide-page-browser-to-choose-start-page": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-12211-UsabilitySchedulerProvidePageBrowserToChooseStartPage.html#feature-12211-usability-scheduler-provide-page-browser-to-choose-start-page", + "Changelog\/8.6\/Feature-12211-UsabilitySchedulerProvidePageBrowserToChooseStartPage.html#feature-12211", "Feature: #12211 - Usability: Scheduler provide page browser to choose start page" ], "feature-28171-improved-link-field-in-formengine": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-28171-ImprovedLinkFieldInFormEngine.html#feature-28171-improved-link-field-in-formengine", + "Changelog\/8.6\/Feature-28171-ImprovedLinkFieldInFormEngine.html#feature-28171", "Feature: #28171 - Improved link field in FormEngine" ], "feature-45537-run-manually-executed-tasks-on-next-cron-run": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-45537-RunManuallyExecutedTasksOnNextCron-run.html#feature-45537-run-manually-executed-tasks-on-next-cron-run", + "Changelog\/8.6\/Feature-45537-RunManuallyExecutedTasksOnNextCron-run.html#feature-45537", "Feature: #45537 - Run manually executed tasks on next cron-run" ], "feature-47006-extend-the-widget-identifier-with-custom-string": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-47006-ExtendTheWidgetIdentifierWithCustomString.html#feature-47006-extend-the-widget-identifier-with-custom-string", + "Changelog\/8.6\/Feature-47006-ExtendTheWidgetIdentifierWithCustomString.html#feature-47006", "Feature: #47006 - Extend the widget identifier with custom string" ], "feature-47135-paste-icons-available-at-pasting-position-and-use-modal-now": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-47135-PasteIconsAvailableAtPastingPositionAndUseModalNow.html#feature-47135-paste-icons-available-at-pasting-position-and-use-modal-now", + "Changelog\/8.6\/Feature-47135-PasteIconsAvailableAtPastingPositionAndUseModalNow.html#feature-47135", "Feature: #47135 - Paste icons available at pasting position and use modal now" ], "feature-67243-implement-folding-of-scheduler-task-groups": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-67243-ImplementFoldingOfSchedulerTaskGroups.html#feature-67243-implement-folding-of-scheduler-task-groups", + "Changelog\/8.6\/Feature-67243-ImplementFoldingOfSchedulerTaskGroups.html#feature-67243", "Feature: #67243 - Implement folding of scheduler task groups" ], "feature-69572-page-module-notice-content-is-also-shown-on": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-69572-PageModuleNoticeContentIsAlsoShownOn.html#feature-69572-page-module-notice-content-is-also-shown-on", + "Changelog\/8.6\/Feature-69572-PageModuleNoticeContentIsAlsoShownOn.html#feature-69572", "Feature: #69572 - Page module Notice \"Content is also shown on:\"" ], "feature-70316-introduce-session-storage-framework": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-70316-IntroduceSessionStorageFramework.html#feature-70316-introduce-session-storage-framework", + "Changelog\/8.6\/Feature-70316-IntroduceSessionStorageFramework.html#feature-70316", "Feature: #70316 - Introduce Session Storage Framework" ], "feature-72749-cli-support-for-t3d-import": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-72749-CLISupportForT3DImport.html#feature-72749-cli-support-for-t3d-import", + "Changelog\/8.6\/Feature-72749-CLISupportForT3DImport.html#feature-72749", "Feature: #72749 - CLI support for T3D import" ], "feature-75880-implement-multiple-cropping-variants-in-image-manipulation-tool": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-75880-ImplementMultipleCroppingVariantsInImageManipulationTool.html#feature-75880-implement-multiple-cropping-variants-in-image-manipulation-tool", + "Changelog\/8.6\/Feature-75880-ImplementMultipleCroppingVariantsInImageManipulationTool.html#feature-75880", "Feature: #75880 - Implement multiple cropping variants in image manipulation tool" ], "feature-78169-introduce-translation-source-field-for-tt-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-78169-IntroduceTranslationSourceFieldForTt_content.html#feature-78169-introduce-translation-source-field-for-tt-content", + "Changelog\/8.6\/Feature-78169-IntroduceTranslationSourceFieldForTt_content.html#feature-78169", "Feature: #78169 - Introduce \"Translation Source\" field for tt_content" ], "difference-between-translationsource-and-other-existing-fields": [ @@ -59869,7 +60073,7 @@ "feature-78192-refactor-click-menu-context-menu": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-78192-RefactorClickMenuContextMenu.html#feature-78192-refactor-click-menu-context-menu", + "Changelog\/8.6\/Feature-78192-RefactorClickMenuContextMenu.html#feature-78192", "Feature: #78192 - Refactor click menu (context menu)" ], "context-menu-rendering-flow": [ @@ -59881,67 +60085,67 @@ "feature-78477-refactoring-of-flashmessage-rendering": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-78477-RefactoringOfFlashMessageRendering.html#feature-78477-refactoring-of-flashmessage-rendering", + "Changelog\/8.6\/Feature-78477-RefactoringOfFlashMessageRendering.html#feature-78477", "Feature: #78477 - Refactoring of FlashMessage rendering" ], "feature-78899-tca-maxitems-optional": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-78899-TCAMaxitemsOptional.html#feature-78899-tca-maxitems-optional", + "Changelog\/8.6\/Feature-78899-TCAMaxitemsOptional.html#feature-78899", "Feature: #78899 - TCA maxitems optional" ], "feature-79121-implement-hook-in-typolink-for-modification-of-page-params": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79121-ImplementHookInTypolinkForModificationOfPageParams.html#feature-79121-implement-hook-in-typolink-for-modification-of-page-params", + "Changelog\/8.6\/Feature-79121-ImplementHookInTypolinkForModificationOfPageParams.html#feature-79121", "Feature: #79121 - Implement hook in typolink for modification of page params" ], "feature-79124-allow-overwriting-of-template-paths-in-backendtemplateview": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79124-AllowOverwritingOfTemplatePathsInBackendTemplateView.html#feature-79124-allow-overwriting-of-template-paths-in-backendtemplateview", + "Changelog\/8.6\/Feature-79124-AllowOverwritingOfTemplatePathsInBackendTemplateView.html#feature-79124", "Feature: #79124 - Allow overwriting of template paths in BackendTemplateView" ], "feature-79140-add-hook-to-add-custom-typoscript-templates": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79140-AddHookToAddCustomTypoScriptTemplates.html#feature-79140-add-hook-to-add-custom-typoscript-templates", + "Changelog\/8.6\/Feature-79140-AddHookToAddCustomTypoScriptTemplates.html#feature-79140", "Feature: #79140 - Add hook to add custom TypoScript templates" ], "feature-79196-allow-reload-of-topbar": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79196-AllowReloadOfTopbar.html#feature-79196-allow-reload-of-topbar", + "Changelog\/8.6\/Feature-79196-AllowReloadOfTopbar.html#feature-79196", "Feature: #79196 - Allow reload of topbar" ], "feature-79216-add-yaml-configuration-for-ckeditor-rte": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79216-AddYAMLConfigurationForCKEditorRTE.html#feature-79216-add-yaml-configuration-for-ckeditor-rte", + "Changelog\/8.6\/Feature-79216-AddYAMLConfigurationForCKEditorRTE.html#feature-79216", "Feature: #79216 - Add YAML configuration for CKEditor RTE" ], "feature-79225-plugin-preview-with-fluid": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79225-PluginPreviewWithFluid.html#feature-79225-plugin-preview-with-fluid", + "Changelog\/8.6\/Feature-79225-PluginPreviewWithFluid.html#feature-79225", "Feature: #79225 - Plugin preview with Fluid" ], "feature-79235-add-button-to-delete-similar-errors-from-sys-log": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79235-AddButtonToDeleteSimilarErrorsFromSys_log.html#feature-79235-add-button-to-delete-similar-errors-from-sys-log", + "Changelog\/8.6\/Feature-79235-AddButtonToDeleteSimilarErrorsFromSys_log.html#feature-79235", "Feature: #79235 - Add button to delete similar errors from sys_log" ], "feature-79240-single-cli-user-for-cli-commands": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79240-SingleCliUserForCliCommands.html#feature-79240-single-cli-user-for-cli-commands", + "Changelog\/8.6\/Feature-79240-SingleCliUserForCliCommands.html#feature-79240", "Feature: #79240 - Single cli user for cli commands" ], "feature-79250-ext-form-extend-the-extension-location-functionality": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79250-ExtFormExtendExtensionLocationFunctionality.html#feature-79250-ext-form-extend-the-extension-location-functionality", + "Changelog\/8.6\/Feature-79250-ExtFormExtendExtensionLocationFunctionality.html#feature-79250", "Feature: #79250 - EXT:form extend the extension location functionality" ], "summary": [ @@ -59953,91 +60157,91 @@ "feature-79262-add-possibility-to-create-trim-expression-with-doctrine-dbal": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79262-AddPossibilityToCreateTRIMExpressionWithDoctrineDBAL.html#feature-79262-add-possibility-to-create-trim-expression-with-doctrine-dbal", + "Changelog\/8.6\/Feature-79262-AddPossibilityToCreateTRIMExpressionWithDoctrineDBAL.html#feature-79262", "Feature: #79262 - Add possibility to create TRIM expression with Doctrine DBAL" ], "feature-79263-scheduler-cli-available-as-symfony-command": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79263-SchedulerCLIAvailableAsSymfonyCommand.html#feature-79263-scheduler-cli-available-as-symfony-command", + "Changelog\/8.6\/Feature-79263-SchedulerCLIAvailableAsSymfonyCommand.html#feature-79263", "Feature: #79263 - Scheduler CLI available as Symfony Command" ], "feature-79337-add-usecachehash-parameter-to-f-link-typolink-and-f-uri-typolink": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79337-AddUseCacheHashParameterToFlinktypolinkAndFuritypolink.html#feature-79337-add-usecachehash-parameter-to-f-link-typolink-and-f-uri-typolink", + "Changelog\/8.6\/Feature-79337-AddUseCacheHashParameterToFlinktypolinkAndFuritypolink.html#feature-79337", "Feature: #79337 - Add useCacheHash parameter to f:link.typolink and f:uri.typolink" ], "feature-79341-tca-richtext-configuration-in-config-section": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79341-TCARichtextConfigurationInConfigSection.html#feature-79341-tca-richtext-configuration-in-config-section", + "Changelog\/8.6\/Feature-79341-TCARichtextConfigurationInConfigSection.html#feature-79341", "Feature: #79341 - TCA richtext configuration in config section" ], "feature-79387-add-signal-to-exclude-tables-from-referenceindex": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79387-AddSignalToExcludeTablesFromReferenceIndex.html#feature-79387-add-signal-to-exclude-tables-from-referenceindex", + "Changelog\/8.6\/Feature-79387-AddSignalToExcludeTablesFromReferenceIndex.html#feature-79387", "Feature: #79387 - Add signal to exclude tables from ReferenceIndex" ], "feature-79402-new-fluid-viewhelper-f-variable-added": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79402-VariableViewHelperForFluid.html#feature-79402-new-fluid-viewhelper-f-variable-added", + "Changelog\/8.6\/Feature-79402-VariableViewHelperForFluid.html#feature-79402", "Feature: #79402 - New Fluid ViewHelper f:variable added" ], "feature-73409-auto-render-assets-sections-in-fluid-template-with-controller": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79409-AutorenderAssetSectionsInFluidTemplateWithController.html#feature-73409-auto-render-assets-sections-in-fluid-template-with-controller", + "Changelog\/8.6\/Feature-79409-AutorenderAssetSectionsInFluidTemplateWithController.html#feature-73409", "Feature: #73409 - Auto-render Assets sections in Fluid template with controller" ], "feature-79413-auto-render-assets-sections-in-fluidtemplate-content-object": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79413-AutorenderAssetSectionsInFluidTemplateContentObject.html#feature-79413-auto-render-assets-sections-in-fluidtemplate-content-object", + "Changelog\/8.6\/Feature-79413-AutorenderAssetSectionsInFluidTemplateContentObject.html#feature-79413", "Feature: #79413 - Auto-render Assets sections in FLUIDTEMPLATE content object" ], "feature-79420-hide-files-from-list-of-documentation": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79420-HideFilesFromListOfDocumentation.html#feature-79420-hide-files-from-list-of-documentation", + "Changelog\/8.6\/Feature-79420-HideFilesFromListOfDocumentation.html#feature-79420", "Feature: #79420 - Hide files from list of documentation" ], "feature-79438-add-configuration-option-to-disable-validation-of-stored-records": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79438-OptionToDisableValidationOfStoredRecords.html#feature-79438-add-configuration-option-to-disable-validation-of-stored-records", + "Changelog\/8.6\/Feature-79438-OptionToDisableValidationOfStoredRecords.html#feature-79438", "Feature: #79438 - Add configuration option to disable validation of stored records" ], "feature-79440-formengine-element-expansion": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79440-FormEngineElementExpansion.html#feature-79440-formengine-element-expansion", + "Changelog\/8.6\/Feature-79440-FormEngineElementExpansion.html#feature-79440", "Feature: #79440 - FormEngine Element Expansion" ], "feature-79442-ext-form-add-element-selector-for-text-editors": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79442-EXTform-AddElementSelectorForTextEditors.html#feature-79442-ext-form-add-element-selector-for-text-editors", + "Changelog\/8.6\/Feature-79442-EXTform-AddElementSelectorForTextEditors.html#feature-79442", "Feature: #79442 - EXT:form - add element selector for text editors" ], "feature-79467-ext-form-add-form-settings-button-to-module-header": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79467-EXTform-AddFormSettingsButtonToModuleHeader.html#feature-79467-ext-form-add-form-settings-button-to-module-header", + "Changelog\/8.6\/Feature-79467-EXTform-AddFormSettingsButtonToModuleHeader.html#feature-79467", "Feature: #79467 - EXT:form - add form settings button to module header" ], "feature-79521-show-list-of-failed-input-elements-in-formengine": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79521-ShowListOfFailedInputElementsInFormEngine.html#feature-79521-show-list-of-failed-input-elements-in-formengine", + "Changelog\/8.6\/Feature-79521-ShowListOfFailedInputElementsInFormEngine.html#feature-79521", "Feature: #79521 - Show list of failed input elements in FormEngine" ], "feature-79530-ext-form-extend-savetodatabase-finisher": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79530-EXTform-ExtendSaveToDatabaseFinisher.html#feature-79530-ext-form-extend-savetodatabase-finisher", + "Changelog\/8.6\/Feature-79530-EXTform-ExtendSaveToDatabaseFinisher.html#feature-79530", "Feature: #79530 - EXT:form - Extend SaveToDatabase finisher" ], "perform-multiple-database-operations": [ @@ -60067,13 +60271,13 @@ "feature-79531-ext-form-add-multiselect-inspector-editor": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79531-EXTform-AddInspectorMultiselectEditors.html#feature-79531-ext-form-add-multiselect-inspector-editor", + "Changelog\/8.6\/Feature-79531-EXTform-AddInspectorMultiselectEditors.html#feature-79531", "Feature: #79531 - EXT:form - Add multiselect inspector editor" ], "feature-79622-header-position-support-for-fluid-styled-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79622-HeaderPositionSupportForFluidStyledContent.html#feature-79622-header-position-support-for-fluid-styled-content", + "Changelog\/8.6\/Feature-79622-HeaderPositionSupportForFluidStyledContent.html#feature-79622", "Feature: #79622 - Header Position support for Fluid Styled Content" ], "predefined-values-for-header-alignment-and-resulting-css-classes": [ @@ -60097,7 +60301,7 @@ "feature-79622-introducing-frame-class-for-fluid-styled-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79622-IntroducingFrameClassForFluidStyledContent.html#feature-79622-introducing-frame-class-for-fluid-styled-content", + "Changelog\/8.6\/Feature-79622-IntroducingFrameClassForFluidStyledContent.html#feature-79622-1668719172", "Feature: #79622 - Introducing Frame Class for Fluid Styled Content" ], "implementation-in-fluid-styled-content": [ @@ -60115,7 +60319,7 @@ "feature-79622-introducing-table-class-for-fluid-styled-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79622-IntroducingTableClassForFluidStyledContent.html#feature-79622-introducing-table-class-for-fluid-styled-content", + "Changelog\/8.6\/Feature-79622-IntroducingTableClassForFluidStyledContent.html#feature-79622-1668719233", "Feature: #79622 - Introducing Table Class for Fluid Styled Content" ], "explanation-of-keys-and-effects-of-table-classes": [ @@ -60133,13 +60337,13 @@ "feature-79622-new-content-elements-for-fluid-styled-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79622-NewContentElementsForFluidStyledContent.html#feature-79622-new-content-elements-for-fluid-styled-content", + "Changelog\/8.6\/Feature-79622-NewContentElementsForFluidStyledContent.html#feature-79622-1668719209", "Feature: #79622 - New Content Elements for Fluid Styled Content" ], "feature-79622-new-default-layout-for-fluid-styled-content-1": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79622-NewDefaultLayoutForFluidStyledContent.html#feature-79622-new-default-layout-for-fluid-styled-content-1", + "Changelog\/8.6\/Feature-79622-NewDefaultLayoutForFluidStyledContent.html#feature-79622-new-default-layout-for-fluid-styled-content", "Feature: #79622 - New default layout for Fluid Styled Content" ], "dropin": [ @@ -60157,7 +60361,7 @@ "feature-79622-spacebefore-and-spaceafterclass-for-css-styled-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79622-SpaceBeforeAndSpaceAfterClassForCssStyledContent.html#feature-79622-spacebefore-and-spaceafterclass-for-css-styled-content", + "Changelog\/8.6\/Feature-79622-SpaceBeforeAndSpaceAfterClassForCssStyledContent.html#feature-79622-1668719202", "Feature: #79622 - SpaceBefore- and SpaceAfterClass for CSS Styled Content" ], "example-for-before-classes": [ @@ -60175,49 +60379,49 @@ "feature-79622-spacebefore-and-spaceafterclass-for-fluid-styled-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79622-SpaceBeforeAndSpaceAfterClassForFluidStyledContent.html#feature-79622-spacebefore-and-spaceafterclass-for-fluid-styled-content", + "Changelog\/8.6\/Feature-79622-SpaceBeforeAndSpaceAfterClassForFluidStyledContent.html#feature-79622-1668719195", "Feature: #79622 - SpaceBefore- and SpaceAfterClass for Fluid Styled Content" ], "feature-79622-textmedia-support-for-css-styled-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79622-TextmediaSupportForCSSStyledContent.html#feature-79622-textmedia-support-for-css-styled-content", + "Changelog\/8.6\/Feature-79622-TextmediaSupportForCSSStyledContent.html#feature-79622-1668719184", "Feature: #79622 - Textmedia support for CSS Styled Content" ], "feature-79626-integrate-record-link-handler": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79626-IntegrateRecordLinkHandler.html#feature-79626-integrate-record-link-handler", + "Changelog\/8.6\/Feature-79626-IntegrateRecordLinkHandler.html#feature-79626", "Feature: #79626 - Integrate record link handler" ], "feature-79658-synchronized-field-values-in-localized-records": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Feature-79658-SynchronizedFieldValuesInLocalizedRecords.html#feature-79658-synchronized-field-values-in-localized-records", + "Changelog\/8.6\/Feature-79658-SynchronizedFieldValuesInLocalizedRecords.html#feature-79658", "Feature: #79658 - Synchronized field values in localized records" ], "important-78899-displaycond-strict-parsing": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Important-78899-DisplayCondStrictParsing.html#important-78899-displaycond-strict-parsing", + "Changelog\/8.6\/Important-78899-DisplayCondStrictParsing.html#important-78899", "Important: #78899 - displayCond strict parsing" ], "important-79005-included-missing-support-for-persistent-connection-in-redis-cache-backend": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Important-79005-ConnectPersistentToRedisFromCacheBackend.html#important-79005-included-missing-support-for-persistent-connection-in-redis-cache-backend", + "Changelog\/8.6\/Important-79005-ConnectPersistentToRedisFromCacheBackend.html#important-79005", "Important: #79005 - Included missing support for persistent connection in Redis cache backend" ], "important-79119-removed-pagerepository-versioningpreview-where-hid-del-property": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Important-79119-RemovedPageRepository-versioningPreview_where_hid_delProperty.html#important-79119-removed-pagerepository-versioningpreview-where-hid-del-property", + "Changelog\/8.6\/Important-79119-RemovedPageRepository-versioningPreview_where_hid_delProperty.html#important-79119", "Important: #79119 - Removed PageRepository->versioningPreview_where_hid_del property" ], "important-79221-use-instead-of-typo3-jquery": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.6\/Important-79221-UseGlobalsDollarInsteadOfTYPO3jQuery.html#important-79221-use-instead-of-typo3-jquery", + "Changelog\/8.6\/Important-79221-UseGlobalsDollarInsteadOfTYPO3jQuery.html#important-79221", "Important: #79221 - Use $ instead of TYPO3.jQuery" ], "8-6-changes": [ @@ -60229,31 +60433,31 @@ "breaking-79615-querybuilder-getqueriedtables-result-format-change": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Breaking-79615-QueryBuilderGetQueriedTablesResultFormatChange.html#breaking-79615-querybuilder-getqueriedtables-result-format-change", + "Changelog\/8.7\/Breaking-79615-QueryBuilderGetQueriedTablesResultFormatChange.html#breaking-79615", "Breaking: #79615 - QueryBuilder getQueriedTables result format change" ], "breaking-80050-remove-option-chashincludepageid-from-chash-calculation": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Breaking-80050-RemovedOptionCHashIncludePageIdFromCHashCalculation.html#breaking-80050-remove-option-chashincludepageid-from-chash-calculation", + "Changelog\/8.7\/Breaking-80050-RemovedOptionCHashIncludePageIdFromCHashCalculation.html#breaking-80050", "Breaking: #80050 - Remove option cHashIncludePageId from cHash calculation" ], "breaking-80149-remove-globals-typo3-conf-vars-fe-pageoverlayfields": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Breaking-80149-RemoveGLOBALSTYPO3_CONF_VARSFEpageOverlayFields.html#breaking-80149-remove-globals-typo3-conf-vars-fe-pageoverlayfields", + "Changelog\/8.7\/Breaking-80149-RemoveGLOBALSTYPO3_CONF_VARSFEpageOverlayFields.html#breaking-80149", "Breaking: #80149 - Remove $GLOBALS['TYPO3_CONF_VARS']['FE']['pageOverlayFields']" ], "breaking-80171-remove-lib-parsefunc-rte-inline-styles-from-parsed-blockquote-tag": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Breaking-80171-RemoveLibparseFunc_RTEInlineStylesFromParsedBlockquoteTag.html#breaking-80171-remove-lib-parsefunc-rte-inline-styles-from-parsed-blockquote-tag", + "Changelog\/8.7\/Breaking-80171-RemoveLibparseFunc_RTEInlineStylesFromParsedBlockquoteTag.html#breaking-80171", "Breaking: #80171 - Remove lib.parseFunc_RTE inline styles from parsed blockquote tag" ], "breaking-80374-default-content-element-configuration-for-frontend-login-adapts-fluid-styled-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Breaking-80374-DefaultContentElementConfigurationForFrontendLoginAdaptsFluidStyledContent.html#breaking-80374-default-content-element-configuration-for-frontend-login-adapts-fluid-styled-content", + "Changelog\/8.7\/Breaking-80374-DefaultContentElementConfigurationForFrontendLoginAdaptsFluidStyledContent.html#breaking-80374", "Breaking: #80374 - Default content element configuration for frontend login adapts fluid styled content" ], "rendering-for-css-styled-content": [ @@ -60271,7 +60475,7 @@ "breaking-80412-new-shared-content-element-typoscript-library-object-for-fluid-styled-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Breaking-80412-NewSharedContentElementTyposcriptLibraryObjectForFluidStyledContent.html#breaking-80412-new-shared-content-element-typoscript-library-object-for-fluid-styled-content", + "Changelog\/8.7\/Breaking-80412-NewSharedContentElementTyposcriptLibraryObjectForFluidStyledContent.html#breaking-80412", "Breaking: #80412 - New shared content element TypoScript library object for Fluid Styled Content" ], "generated-code-before-change": [ @@ -60289,277 +60493,277 @@ "breaking-80628-extension-rtehmlarea-moved-to-ter": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Breaking-80628-ExtensionRtehmlareaMovedToTER.html#breaking-80628-extension-rtehmlarea-moved-to-ter", + "Changelog\/8.7\/Breaking-80628-ExtensionRtehmlareaMovedToTER.html#breaking-80628", "Breaking: #80628 - Extension rtehmlarea moved to TER" ], "deprecation-78650-templateservice-splitconfarray": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-78650-TemplateService-splitConfArray.html#deprecation-78650-templateservice-splitconfarray", + "Changelog\/8.7\/Deprecation-78650-TemplateService-splitConfArray.html#deprecation-78650", "Deprecation: #78650 - TemplateService->splitConfArray" ], "deprecation-79122-deprecate-method-getrecordsbyfield": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-79122-DeprecateBackendUtilitygetRecordsByField.html#deprecation-79122-deprecate-method-getrecordsbyfield", + "Changelog\/8.7\/Deprecation-79122-DeprecateBackendUtilitygetRecordsByField.html#deprecation-79122", "Deprecation: #79122 - Deprecate method getRecordsByField" ], "deprecation-79580-deprecate-methods-in-datahandler-related-to-page-delete-access": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-79580-MethodsInDataHandlerRelatedToPageDeleteAccess.html#deprecation-79580-deprecate-methods-in-datahandler-related-to-page-delete-access", + "Changelog\/8.7\/Deprecation-79580-MethodsInDataHandlerRelatedToPageDeleteAccess.html#deprecation-79580", "Deprecation: #79580 - Deprecate methods in DataHandler related to page delete access" ], "deprecation-79591-extbase-command-controllers-admin-role-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-79591-ExtbaseCommandControllersAdminRoleMethods.html#deprecation-79591-extbase-command-controllers-admin-role-methods", + "Changelog\/8.7\/Deprecation-79591-ExtbaseCommandControllersAdminRoleMethods.html#deprecation-79591", "Deprecation: #79591 - Extbase command controllers admin role methods" ], "deprecation-79770-deprecate-inline-localizationmode": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-79770-DeprecateInlineLocalizationMode.html#deprecation-79770-deprecate-inline-localizationmode", + "Changelog\/8.7\/Deprecation-79770-DeprecateInlineLocalizationMode.html#deprecation-79770", "Deprecation: #79770 - Deprecate inline localizationMode" ], "deprecation-79858-tsfe-related-properties-and-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-79858-TSFE-relatedPropertiesAndMethods.html#deprecation-79858-tsfe-related-properties-and-methods", + "Changelog\/8.7\/Deprecation-79858-TSFE-relatedPropertiesAndMethods.html#deprecation-79858", "Deprecation: #79858 - TSFE-related properties and methods" ], "deprecation-79972-deprecated-fluid-overrides": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-79972-DeprecatedFluidOverrides.html#deprecation-79972-deprecated-fluid-overrides", + "Changelog\/8.7\/Deprecation-79972-DeprecatedFluidOverrides.html#deprecation-79972", "Deprecation: #79972 - Deprecated Fluid Overrides" ], "deprecation-80000-inlineoverridechildtca": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80000-InlineOverrideChildTca.html#deprecation-80000-inlineoverridechildtca", + "Changelog\/8.7\/Deprecation-80000-InlineOverrideChildTca.html#deprecation-80000", "Deprecation: #80000 - InlineOverrideChildTca" ], "deprecation-80027-remove-tca-config-max-on-inputdatetime-fields": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80027-RemoveTCAConfigMaxOnInputDateTimeFields.html#deprecation-80027-remove-tca-config-max-on-inputdatetime-fields", + "Changelog\/8.7\/Deprecation-80027-RemoveTCAConfigMaxOnInputDateTimeFields.html#deprecation-80027", "Deprecation: #80027 - Remove TCA config 'max' on inputDateTime fields" ], "deprecation-80047-deprecate-jquery-and-extjs-for-be-viewhelpers": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80047-DeprecateJQueryAndExtJSForBEViewhelpers.html#deprecation-80047-deprecate-jquery-and-extjs-for-be-viewhelpers", + "Changelog\/8.7\/Deprecation-80047-DeprecateJQueryAndExtJSForBEViewhelpers.html#deprecation-80047", "Deprecation: #80047 - Deprecate jQuery and extJS for BE viewhelpers" ], "deprecation-80048-mark-extjs-related-api-calls-as-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80048-MarkExtJSRelatedAPICallsAsDeprecated.html#deprecation-80048-mark-extjs-related-api-calls-as-deprecated", + "Changelog\/8.7\/Deprecation-80048-MarkExtJSRelatedAPICallsAsDeprecated.html#deprecation-80048", "Deprecation: #80048 - Mark ExtJS related API calls as deprecated" ], "deprecation-80053-extbase-cli-console-output-different-method-signature-for-infinite-attempts": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80053-ExtbaseCLIConsoleOutputDifferentMethodSignatureForInfiniteAttempts.html#deprecation-80053-extbase-cli-console-output-different-method-signature-for-infinite-attempts", + "Changelog\/8.7\/Deprecation-80053-ExtbaseCLIConsoleOutputDifferentMethodSignatureForInfiniteAttempts.html#deprecation-80053", "Deprecation: #80053 - Extbase CLI Console Output different method signature for infinite attempts" ], "deprecation-80076-typoscript-option-page-insertclassesfromrte": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80076-TypoScriptOptionPageinsertClassesFromRTE.html#deprecation-80076-typoscript-option-page-insertclassesfromrte", + "Changelog\/8.7\/Deprecation-80076-TypoScriptOptionPageinsertClassesFromRTE.html#deprecation-80076", "Deprecation: #80076 - TypoScript option page.insertClassesFromRTE" ], "deprecation-80079-deprecated-method-bootstrap-loadextensiontables": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80079-DeprecatedBootstraploadExtensionTables.html#deprecation-80079-deprecated-method-bootstrap-loadextensiontables", + "Changelog\/8.7\/Deprecation-80079-DeprecatedBootstraploadExtensionTables.html#deprecation-80079", "Deprecation: #80079 - Deprecated method Bootstrap::loadExtensionTables" ], "deprecation-80317-deprecate-backendutility-getrecordraw": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80317-DeprecateBackendUtilityGetRecordRaw.html#deprecation-80317-deprecate-backendutility-getrecordraw", + "Changelog\/8.7\/Deprecation-80317-DeprecateBackendUtilityGetRecordRaw.html#deprecation-80317", "Deprecation: #80317 - Deprecate BackendUtility::getRecordRaw()" ], "deprecation-80440-ext-lowlevel-arraybrowser-wrapvalue": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80440-EXTlowlevelArrayBrowser-wrapValue.html#deprecation-80440-ext-lowlevel-arraybrowser-wrapvalue", + "Changelog\/8.7\/Deprecation-80440-EXTlowlevelArrayBrowser-wrapValue.html#deprecation-80440", "Deprecation: #80440 - EXT:lowlevel ArrayBrowser->wrapValue" ], "deprecation-80444-typoscriptfrontendcontroller-beloginlinkiplist": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80444-TypoScriptFrontendController-BeLoginLinkIPList.html#deprecation-80444-typoscriptfrontendcontroller-beloginlinkiplist", + "Changelog\/8.7\/Deprecation-80444-TypoScriptFrontendController-BeLoginLinkIPList.html#deprecation-80444", "Deprecation: #80444 - TypoScriptFrontendController-> beLoginLinkIPList" ], "deprecation-80445-deprecate-printcontent-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80445-DeprecatePrintContentMethods.html#deprecation-80445-deprecate-printcontent-methods", + "Changelog\/8.7\/Deprecation-80445-DeprecatePrintContentMethods.html#deprecation-80445", "Deprecation: #80445 - Deprecate printContent methods" ], "deprecation-80449-generalutility-freetypedpicomp": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80449-GeneralUtilityfreetypeDpiComp.html#deprecation-80449-generalutility-freetypedpicomp", + "Changelog\/8.7\/Deprecation-80449-GeneralUtilityfreetypeDpiComp.html#deprecation-80449", "Deprecation: #80449 - GeneralUtility::freetypeDpiComp" ], "deprecation-80451-deprecate-generalutility-csvvalues": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80451-DeprecateGeneralUtilitycsvValues.html#deprecation-80451-deprecate-generalutility-csvvalues", + "Changelog\/8.7\/Deprecation-80451-DeprecateGeneralUtilitycsvValues.html#deprecation-80451", "Deprecation: #80451 - Deprecate GeneralUtility::csvValues" ], "deprecation-80468-command-line-interface-clikeys-and-cli-dispatch-phpsh": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80468-CommandLineInterfaceCliKeysAndCli_dispatchphpsh.html#deprecation-80468-command-line-interface-clikeys-and-cli-dispatch-phpsh", + "Changelog\/8.7\/Deprecation-80468-CommandLineInterfaceCliKeysAndCli_dispatchphpsh.html#deprecation-80468", "Deprecation: #80468 - Command Line Interface: cliKeys and cli_dispatch.phpsh" ], "deprecation-80485-method-parameter-of-tsfe-whichworkspace-to-return-the-workspace-title": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80485-MethodParameterOfTSFE-whichWorkspaceToReturnTheWorkspaceTitle.html#deprecation-80485-method-parameter-of-tsfe-whichworkspace-to-return-the-workspace-title", + "Changelog\/8.7\/Deprecation-80485-MethodParameterOfTSFE-whichWorkspaceToReturnTheWorkspaceTitle.html#deprecation-80485", "Deprecation: #80485 - Method parameter of TSFE->whichWorkspace to return the workspace title" ], "deprecation-80486-setting-charset-via-localizationparserinterface-getparseddata": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80486-SettingCharsetViaLocalizationParserInterface-getParsedData.html#deprecation-80486-setting-charset-via-localizationparserinterface-getparseddata", + "Changelog\/8.7\/Deprecation-80486-SettingCharsetViaLocalizationParserInterface-getParsedData.html#deprecation-80486", "Deprecation: #80486 - Setting charset via LocalizationParserInterface->getParsedData()" ], "deprecation-80491-backendcontroller-inclusion-hooks": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80491-BackendControllerInclusionHooks.html#deprecation-80491-backendcontroller-inclusion-hooks", + "Changelog\/8.7\/Deprecation-80491-BackendControllerInclusionHooks.html#deprecation-80491", "Deprecation: #80491 - BackendController inclusion hooks" ], "deprecation-80510-contentobjectrenderer-urlqmark": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80510-ContentObjectRenderer-URLqMark.html#deprecation-80510-contentobjectrenderer-urlqmark", + "Changelog\/8.7\/Deprecation-80510-ContentObjectRenderer-URLqMark.html#deprecation-80510", "Deprecation: #80510 - ContentObjectRenderer->URLqMark" ], "deprecation-80511-abstractfunctionmodule-inclocallang-and-thispath": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80511-AbstractFunctionModule-incLocalLangAndThisPath.html#deprecation-80511-abstractfunctionmodule-inclocallang-and-thispath", + "Changelog\/8.7\/Deprecation-80511-AbstractFunctionModule-incLocalLangAndThisPath.html#deprecation-80511", "Deprecation: #80511 - AbstractFunctionModule->incLocalLang and $thisPath" ], "deprecation-80512-documenttemplate-extjscode-property": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80512-DocumentTemplate-extJScodeProperty.html#deprecation-80512-documenttemplate-extjscode-property", + "Changelog\/8.7\/Deprecation-80512-DocumentTemplate-extJScodeProperty.html#deprecation-80512", "Deprecation: #80512 - DocumentTemplate->extJScode property" ], "deprecation-80513-datahandler-various-methods-and-method-arguments": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80513-DataHandlerVariousMethodsAndMethodArguments.html#deprecation-80513-datahandler-various-methods-and-method-arguments", + "Changelog\/8.7\/Deprecation-80513-DataHandlerVariousMethodsAndMethodArguments.html#deprecation-80513", "Deprecation: #80513 - DataHandler: Various methods and method arguments" ], "deprecation-80514-graphicalfunctions-temppath-and-createtempsubdir": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80514-GraphicalFunctions-tempPathAndCreateTempSubDir.html#deprecation-80514-graphicalfunctions-temppath-and-createtempsubdir", + "Changelog\/8.7\/Deprecation-80514-GraphicalFunctions-tempPathAndCreateTempSubDir.html#deprecation-80514", "Deprecation: #80514 - GraphicalFunctions->tempPath and createTempSubDir()" ], "deprecation-80516-typoscript-config-setjs-mouseover-and-config-setjs-openpic": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80516-TypoScriptConfigsetJS_mouseOverAndConfigsetJS_openPic.html#deprecation-80516-typoscript-config-setjs-mouseover-and-config-setjs-openpic", + "Changelog\/8.7\/Deprecation-80516-TypoScriptConfigsetJS_mouseOverAndConfigsetJS_openPic.html#deprecation-80516", "Deprecation: #80516 - TypoScript config.setJS_mouseOver and config.setJS_openPic" ], "deprecation-80524-pagerepository-gethash-and-pagerepository-storehash": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80524-PageRepositorygetHashAndPageRepositorystoreHash.html#deprecation-80524-pagerepository-gethash-and-pagerepository-storehash", + "Changelog\/8.7\/Deprecation-80524-PageRepositorygetHashAndPageRepositorystoreHash.html#deprecation-80524", "Deprecation: #80524 - PageRepository::getHash and PageRepository::storeHash" ], "deprecation-80527-marker-related-methods-in-contentobjectrenderer": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80527-Marker-relatedMethodsInContentObjectRenderer.html#deprecation-80527-marker-related-methods-in-contentobjectrenderer", + "Changelog\/8.7\/Deprecation-80527-Marker-relatedMethodsInContentObjectRenderer.html#deprecation-80527", "Deprecation: #80527 - Marker-related methods in ContentObjectRenderer" ], "deprecation-80532-gifbuilder-related-methods-in-contentobjectrenderer": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80532-GifBuilder-relatedMethodsInContentObjectRenderer.html#deprecation-80532-gifbuilder-related-methods-in-contentobjectrenderer", + "Changelog\/8.7\/Deprecation-80532-GifBuilder-relatedMethodsInContentObjectRenderer.html#deprecation-80532", "Deprecation: #80532 - GifBuilder-related methods in ContentObjectRenderer" ], "deprecation-80579-modal-center-has-been-marked-as-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80579-ModalCenter.html#deprecation-80579-modal-center-has-been-marked-as-deprecated", + "Changelog\/8.7\/Deprecation-80579-ModalCenter.html#deprecation-80579", "Deprecation: #80579 - Modal.center has been marked as deprecated" ], "deprecation-80583-typo3-conf-vars-extensionadded": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80583-TYPO3_CONF_VARS_extensionAdded.html#deprecation-80583-typo3-conf-vars-extensionadded", + "Changelog\/8.7\/Deprecation-80583-TYPO3_CONF_VARS_extensionAdded.html#deprecation-80583", "Deprecation: #80583 - TYPO3_CONF_VARS_extensionAdded" ], "deprecation-80601-change-duplicate-icon-identifiers-to-actions-close": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80601-ChangeActions-document-closeToActions-close.html#deprecation-80601-change-duplicate-icon-identifiers-to-actions-close", + "Changelog\/8.7\/Deprecation-80601-ChangeActions-document-closeToActions-close.html#deprecation-80601", "Deprecation: #80601 - Change duplicate icon identifiers to actions-close" ], "deprecation-80603-change-duplicate-icon-identifiers-to-actions-add": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80603-ChangeDuplicateIconIdentifiersToActions-add.html#deprecation-80603-change-duplicate-icon-identifiers-to-actions-add", + "Changelog\/8.7\/Deprecation-80603-ChangeDuplicateIconIdentifiersToActions-add.html#deprecation-80603", "Deprecation: #80603 - Change duplicate icon identifiers to actions-add" ], "deprecation-80614-tca-itemliststyle-and-selectedliststyle": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Deprecation-80614-TCAItemListStyleAndSelectedListStyle.html#deprecation-80614-tca-itemliststyle-and-selectedliststyle", + "Changelog\/8.7\/Deprecation-80614-TCAItemListStyleAndSelectedListStyle.html#deprecation-80614", "Deprecation: #80614 - TCA itemListStyle and selectedListStyle" ], "feature-79343-allow-overriding-path-site-via-environment-variable": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Feature-79343-AllowOverridingPATH_siteViaEnvironmentVariable.html#feature-79343-allow-overriding-path-site-via-environment-variable", + "Changelog\/8.7\/Feature-79343-AllowOverridingPATH_siteViaEnvironmentVariable.html#feature-79343", "Feature: #79343 - Allow overriding PATH_site via environment variable" ], "feature-79812-allow-overriding-cropvariants-for-image-manipulation": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Feature-79812-AllowOverridingCropVariantsForImageManipulation.html#feature-79812-allow-overriding-cropvariants-for-image-manipulation", + "Changelog\/8.7\/Feature-79812-AllowOverridingCropVariantsForImageManipulation.html#feature-79812", "Feature: #79812 - Allow overriding cropVariants for Image Manipulation" ], "feature-79883-add-cropvariant-support-to-typoscript-rendering-of-images": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Feature-79883-AddCropVariantSupportToTyposcriptRenderingOfImages.html#feature-79883-add-cropvariant-support-to-typoscript-rendering-of-images", + "Changelog\/8.7\/Feature-79883-AddCropVariantSupportToTyposcriptRenderingOfImages.html#feature-79883", "Feature: #79883 - Add cropVariant support to TypoScript rendering of images" ], "feature-80126-maximum-field-length-not-set-as-attribute-maxlength": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Feature-80126-ExtFormSetMaximumFieldLengthAsAttribute.html#feature-80126-maximum-field-length-not-set-as-attribute-maxlength", + "Changelog\/8.7\/Feature-80126-ExtFormSetMaximumFieldLengthAsAttribute.html#feature-80126", "Feature: #80126 maximum field length not set as attribute \"maxlength\"" ], "feature-80154-retrieve-session-data-in-ts": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Feature-80154-RetrieveSessionDataInTS.html#feature-80154-retrieve-session-data-in-ts", + "Changelog\/8.7\/Feature-80154-RetrieveSessionDataInTS.html#feature-80154", "Feature: #80154 - Retrieve session data in TS" ], "feature-80196-ext-form-support-multiple-form-elements-per-row": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Feature-80196-ExtFormSupportMultipleFormElementsPerRow.html#feature-80196-ext-form-support-multiple-form-elements-per-row", + "Changelog\/8.7\/Feature-80196-ExtFormSupportMultipleFormElementsPerRow.html#feature-80196", "Feature: #80196 - EXT:form - support multiple form elements per row" ], "feature-80374-add-generic-fluid-template-for-already-rendered-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Feature-80374-AddGenericFluidTemplateForAlreadyRenderedContent.html#feature-80374-add-generic-fluid-template-for-already-rendered-content", + "Changelog\/8.7\/Feature-80374-AddGenericFluidTemplateForAlreadyRenderedContent.html#feature-80374-1668719171", "Feature: #80374 - Add generic fluid template for already rendered content" ], "template": [ @@ -60571,7 +60775,7 @@ "feature-80374-frontend-login-configuration-now-available-through-typoscript-constants": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Feature-80374-FrontendLoginConfigurationNowAvailableThroughTypoScriptConstants.html#feature-80374-frontend-login-configuration-now-available-through-typoscript-constants", + "Changelog\/8.7\/Feature-80374-FrontendLoginConfigurationNowAvailableThroughTypoScriptConstants.html#feature-80374", "Feature: #80374 - Frontend Login configuration now available through TypoScript constants" ], "storage": [ @@ -60601,13 +60805,13 @@ "feature-80452-extbase-cli-commands-available-via-new-cli-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Feature-80452-ExtbaseCLICommandsAvailableViaNewCLIAPI.html#feature-80452-extbase-cli-commands-available-via-new-cli-api", + "Changelog\/8.7\/Feature-80452-ExtbaseCLICommandsAvailableViaNewCLIAPI.html#feature-80452", "Feature: #80452 - Extbase CLI commands available via new CLI API" ], "feature-80579-improved-javascript-modal-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Feature-80579-ImprovedJavaScriptModalAPI.html#feature-80579-improved-javascript-modal-api", + "Changelog\/8.7\/Feature-80579-ImprovedJavaScriptModalAPI.html#feature-80579", "Feature: #80579 - Improved JavaScript Modal API" ], "advanced-api": [ @@ -60673,55 +60877,55 @@ "feature-80619-extend-link-generation-within-typolink": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Feature-80619-ExtendLinkGenerationWithinTypolink.html#feature-80619-extend-link-generation-within-typolink", + "Changelog\/8.7\/Feature-80619-ExtendLinkGenerationWithinTypolink.html#feature-80619", "Feature: #80619 - Extend Link Generation within TypoLink" ], "important-71095-add-language-debug-mode-to-all-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Important-71095-AddLanguageDebugModeToAllConfiguration.html#important-71095-add-language-debug-mode-to-all-configuration", + "Changelog\/8.7\/Important-71095-AddLanguageDebugModeToAllConfiguration.html#important-71095", "Important: #71095 - Add language debug mode to All Configuration" ], "important-78650-typoscriptservice-class-moved-from-extbase-to-core": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Important-78650-TypoScriptServiceClassMovedFromExtbaseToCore.html#important-78650-typoscriptservice-class-moved-from-extbase-to-core", + "Changelog\/8.7\/Important-78650-TypoScriptServiceClassMovedFromExtbaseToCore.html#important-78650", "Important: #78650 - TypoScriptService class moved from Extbase to Core" ], "important-79847-fluid-bugs-fixed-and-features-added-fluid-2-3-1": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Important-79847-FluidBugsFixedAndFeaturesAdded.html#important-79847-fluid-bugs-fixed-and-features-added-fluid-2-3-1", + "Changelog\/8.7\/Important-79847-FluidBugsFixedAndFeaturesAdded.html#important-79847", "Important: #79847 - Fluid bugs fixed and features added (Fluid 2.3.1)" ], "important-79942-version-selector-view-moved-to-compatibility7": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Important-79942-VersionSelectorViewMovedToCompatibility7.html#important-79942-version-selector-view-moved-to-compatibility7", + "Changelog\/8.7\/Important-79942-VersionSelectorViewMovedToCompatibility7.html#important-79942", "Important: #79942 - Version selector view moved to compatibility7" ], "important-80236-ext-form-configuration-for-form-vh-attributes": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Important-80236-ExtFormConfigurationForFormVHAttributes.html#important-80236-ext-form-configuration-for-form-vh-attributes", + "Changelog\/8.7\/Important-80236-ExtFormConfigurationForFormVHAttributes.html#important-80236", "Important: #80236 - EXT:form Configuration for form VH attributes" ], "important-80241-ext-form-simplify-translation-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Important-80241-ExtFormSimplifyTranslationHandling.html#important-80241-ext-form-simplify-translation-handling", + "Changelog\/8.7\/Important-80241-ExtFormSimplifyTranslationHandling.html#important-80241", "Important: #80241 - EXT:form simplify translation handling" ], "important-80266-moved-config-sys-language-softexclude-to-compatibility7": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Important-80266-MovedConfigsysLanguageSoftExcludeToCompatibility7.html#important-80266-moved-config-sys-language-softexclude-to-compatibility7", + "Changelog\/8.7\/Important-80266-MovedConfigsysLanguageSoftExcludeToCompatibility7.html#important-80266", "Important: #80266 - Moved config.sys_language_softExclude to compatibility7" ], "important-80301-ext-form-cleanup-callback-migration": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Important-80301-ExtFormCleanupAndCallbackMigration.html#important-80301-ext-form-cleanup-callback-migration", + "Changelog\/8.7\/Important-80301-ExtFormCleanupAndCallbackMigration.html#important-80301", "Important: #80301 - EXT:form - Cleanup \/ callback migration" ], "the-callback-onbuildingfinished-is-deprecated-and-will-be-removed-in-typo3-v9": [ @@ -60793,7 +60997,7 @@ "important-80391-css-styled-content-will-not-reset-typoscript-constants": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Important-80391-NoConstantsResetInCssStyledContent.html#important-80391-css-styled-content-will-not-reset-typoscript-constants", + "Changelog\/8.7\/Important-80391-NoConstantsResetInCssStyledContent.html#important-80391", "Important: #80391 - Css Styled Content will not reset TypoScript Constants" ], "removed-code": [ @@ -60805,31 +61009,31 @@ "important-80444-config-beloginlinkiplist-moved-to-compatibility7": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Important-80444-ConfigbeLoginLinkIPListMovedToCompatibility7.html#important-80444-config-beloginlinkiplist-moved-to-compatibility7", + "Changelog\/8.7\/Important-80444-ConfigbeLoginLinkIPListMovedToCompatibility7.html#important-80444", "Important: #80444 - config.beLoginLinkIPList moved to compatibility7" ], "important-80450-monitorutilitymovedtocompatibility": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Important-80450-MonitorUtilityMovedToCompatibility.html#important-80450-monitorutilitymovedtocompatibility", + "Changelog\/8.7\/Important-80450-MonitorUtilityMovedToCompatibility.html#important-80450", "Important: #80450 - MonitorUtilityMovedToCompatibility" ], "important-80506-dbal-compatible-field-quoting-in-typoscript": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Important-80506-DbalCompatibleFieldQuotingInTypoScript.html#important-80506-dbal-compatible-field-quoting-in-typoscript", + "Changelog\/8.7\/Important-80506-DbalCompatibleFieldQuotingInTypoScript.html#important-80506", "Important: #80506 - Dbal compatible field quoting in TypoScript" ], "important-80553-simplify-important-actions-in-install-tool": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Important-80553-SimplifyImportantActionsInInstallTool.html#important-80553-simplify-important-actions-in-install-tool", + "Changelog\/8.7\/Important-80553-SimplifyImportantActionsInInstallTool.html#important-80553", "Important: #80553 - Simplify important actions in Install Tool" ], "important-80606-testing-framework-removal-use-composer-package-instead": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7\/Important-80606-TestingFrameworkRemovalUseComposerPackageInstead.html#important-80606-testing-framework-removal-use-composer-package-instead", + "Changelog\/8.7\/Important-80606-TestingFrameworkRemovalUseComposerPackageInstead.html#important-80606", "Important: #80606 - Testing Framework Removal \/ Use composer package instead" ], "8-7-changes": [ @@ -60841,37 +61045,37 @@ "breaking-82093-ext-form-partials-field-field-html-has-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Breaking-82093-ExtFormFieldPartialChanged.html#breaking-82093-ext-form-partials-field-field-html-has-changed", + "Changelog\/8.7.x\/Breaking-82093-ExtFormFieldPartialChanged.html#breaking-82093", "Breaking: #82093 - EXT:form Partials\/Field\/Field.html has changed" ], "deprecation-83403-ext-form-deprecate-translation-for-options-as-string": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Deprecation-83403-ExtFormTranslationForOptionsPropertiesAsString.html#deprecation-83403-ext-form-deprecate-translation-for-options-as-string", + "Changelog\/8.7.x\/Deprecation-83403-ExtFormTranslationForOptionsPropertiesAsString.html#deprecation-83403", "Deprecation: #83403 - EXT:form - deprecate translation for \"options\" as string" ], "deprecation-84449-translateelementerrorviewhelper-arguments": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Deprecation-84449-TranslateElementErrorViewHelperArguments.html#deprecation-84449-translateelementerrorviewhelper-arguments", + "Changelog\/8.7.x\/Deprecation-84449-TranslateElementErrorViewHelperArguments.html#deprecation-84449", "Deprecation: #84449 - TranslateElementErrorViewHelper arguments" ], "feature-78161-introduce-typoscript-file-extension": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Feature-78161-IntroduceTypoScriptFileExtension.html#feature-78161-introduce-typoscript-file-extension", + "Changelog\/8.7.x\/Feature-78161-IntroduceTypoScriptFileExtension.html#feature-78161", "Feature: #78161 - Introduce .typoscript file extension" ], "feature-81654-adding-novalidate-attribute-to-fluid-form-viewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Feature-81654-AddingNovalidateAttributeToFluidFormViewHelper.html#feature-81654-adding-novalidate-attribute-to-fluid-form-viewhelper", + "Changelog\/8.7.x\/Feature-81654-AddingNovalidateAttributeToFluidFormViewHelper.html#feature-81654", "Feature: #81654 - Adding novalidate Attribute to Fluid Form ViewHelper" ], "feature-83405-add-confirmationfinisher-template": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Feature-83405-AddConfirmationFinisherTemplate.html#feature-83405-add-confirmationfinisher-template", + "Changelog\/8.7.x\/Feature-83405-AddConfirmationFinisherTemplate.html#feature-83405", "Feature: #83405 - add ConfirmationFinisher template" ], "1-template-variables": [ @@ -60895,97 +61099,97 @@ "feature-84244-allow-adding-additional-query-restrictions": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Feature-84244-AllowAddingAdditionalQueryrestrictions.html#feature-84244-allow-adding-additional-query-restrictions", + "Changelog\/8.7.x\/Feature-84244-AllowAddingAdditionalQueryrestrictions.html#feature-84244", "Feature: #84244 - Allow adding additional query restrictions" ], "feature-84537-make-chash-configurable-in-fluid-widget-links": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Feature-84537-MakeCHashConfigurableInFluidWidgetLinks.html#feature-84537-make-chash-configurable-in-fluid-widget-links", + "Changelog\/8.7.x\/Feature-84537-MakeCHashConfigurableInFluidWidgetLinks.html#feature-84537", "Feature: #84537 - Make cHash configurable in Fluid Widget Links" ], "feature-90351-configure-typo3-shipped-cookies-with-samesite-flag": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Feature-90351-ConfigureTYPO3-shippedCookiesWithSameSiteFlag.html#feature-90351-configure-typo3-shipped-cookies-with-samesite-flag", + "Changelog\/8.7.x\/Feature-90351-ConfigureTYPO3-shippedCookiesWithSameSiteFlag.html#feature-90351", "Feature: #90351 - Configure TYPO3-shipped cookies with SameSite flag" ], "important-23178-new-typo3-conf-vars-option-fe-pagenotfound-handling-accessdeniedheader": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Important-23178-NewTYPO3_CONF_VARSOptionFEpageNotFound_handling_accessdeniedheader.html#important-23178-new-typo3-conf-vars-option-fe-pagenotfound-handling-accessdeniedheader", + "Changelog\/9.0\/Important-23178-NewTYPO3_CONF_VARSOptionFEpageNotFound_handling_accessdeniedheader.html#important-23178", "Important: #23178 - New TYPO3_CONF_VARS option FE|pageNotFound_handling_accessdeniedheader" ], "important-75591-partials-honeypot-html-has-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Important-75591-PartialsHoneypothtmlHasChanged.html#important-75591-partials-honeypot-html-has-changed", + "Changelog\/8.7.x\/Important-75591-PartialsHoneypothtmlHasChanged.html#important-75591", "Important: #75591 - Partials\/Honeypot.html has changed" ], "important-78336-generate-preview-links-with-a-chash": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Important-78336-GeneratePreviewLinksWithAChash.html#important-78336-generate-preview-links-with-a-chash", + "Changelog\/8.7.x\/Important-78336-GeneratePreviewLinksWithAChash.html#important-78336", "Important: #78336 - Generate preview links with a chash" ], "important-79647-added-hook-for-resolving-custom-link-types": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Important-79647-AddedHookForResolvingCustomLinkTypes.html#important-79647-added-hook-for-resolving-custom-link-types", + "Changelog\/8.7.x\/Important-79647-AddedHookForResolvingCustomLinkTypes.html#important-79647", "Important: #79647 - Added Hook for resolving custom link types" ], "important-81751-dbal-compatible-quoting-in-tca": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Important-81751-DbalCompatibleQuotingInTca.html#important-81751-dbal-compatible-quoting-in-tca", + "Changelog\/8.7.x\/Important-81751-DbalCompatibleQuotingInTca.html#important-81751", "Important: #81751 - DBAL compatible quoting in TCA" ], "important-82763-fluid-config-for-expressionnodetype-and-templatepreprocessor-made-global": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Important-82763-GlobalFluidExpressionNodeTypeAndTemplatePreProcessorConfiguration.html#important-82763-fluid-config-for-expressionnodetype-and-templatepreprocessor-made-global", + "Changelog\/8.7.x\/Important-82763-GlobalFluidExpressionNodeTypeAndTemplatePreProcessorConfiguration.html#important-82763", "Important: #82763 - Fluid config for ExpressionNodeType and TemplatePreProcessor made global" ], "important-82794-added-config-sys-language-mode-content-fallback-3-2-pagenotfound": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Important-82794-AddedSysLanguageModeFallbackStop.html#important-82794-added-config-sys-language-mode-content-fallback-3-2-pagenotfound", + "Changelog\/8.7.x\/Important-82794-AddedSysLanguageModeFallbackStop.html#important-82794", "Important: #82794 - Added config.sys_language_mode = content_fallback;3,2,pageNotFound" ], "important-83971-browser-notification-api-only-works-on-ssl-encrypted-connections": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Important-83971-ConsoleShowDeprecationWarningInChrome.html#important-83971-browser-notification-api-only-works-on-ssl-encrypted-connections", + "Changelog\/8.7.x\/Important-83971-ConsoleShowDeprecationWarningInChrome.html#important-83971", "Important: #83971 - Browser Notification API only works on SSL encrypted connections" ], "important-84144-rootlineutility-is-enriching-only-properly-selected-relational-database-fields": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Important-84144-RootlineUtilityIsEnrichingOnlyProperlySelectedRelationalDatabaseFields.html#important-84144-rootlineutility-is-enriching-only-properly-selected-relational-database-fields", + "Changelog\/8.7.x\/Important-84144-RootlineUtilityIsEnrichingOnlyProperlySelectedRelationalDatabaseFields.html#important-84144", "Important: #84144 - RootlineUtility is enriching only properly selected relational database fields" ], "important-84844-add-fieldname-to-datahandler-localize-translatetomessage-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Important-84844-AddFieldnameToDataHandler-Localize-TranslateToMessageHook.html#important-84844-add-fieldname-to-datahandler-localize-translatetomessage-hook", + "Changelog\/8.7.x\/Important-84844-AddFieldnameToDataHandler-Localize-TranslateToMessageHook.html#important-84844", "Important: #84844 - Add fieldname to DataHandler - localize - translateToMessage hook" ], "important-84910-deny-direct-fal-commands-for-form-definitions": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Important-84910-DenyDirectFALCommandsForFormDefinitions.html#important-84910-deny-direct-fal-commands-for-form-definitions", + "Changelog\/8.7.x\/Important-84910-DenyDirectFALCommandsForFormDefinitions.html#important-84910", "Important: #84910 - Deny direct FAL commands for form definitions" ], "important-85044-filter-disallowed-properties-in-form-editor": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Important-85044-FilterDisallowedPropertiesInFormEditor.html#important-85044-filter-disallowed-properties-in-form-editor", + "Changelog\/8.7.x\/Important-85044-FilterDisallowedPropertiesInFormEditor.html#important-85044", "Important: #85044 - Filter disallowed properties in form editor" ], "important-85361-ext-rte-ckeditor-re-add-the-soft-hyphen-button": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Important-85361-EXTrte_ckeditor-Re-addTheSoftHyphenButton.html#important-85361-ext-rte-ckeditor-re-add-the-soft-hyphen-button", + "Changelog\/8.7.x\/Important-85361-EXTrte_ckeditor-Re-addTheSoftHyphenButton.html#important-85361", "Important: #85361 - EXT:rte_ckeditor - re-add the soft hyphen button" ], "how-to-activate-the-functionality-in-a-custom-rte-preset": [ @@ -61003,19 +61207,19 @@ "important-85689-replaced-default-value-with-placeholder-in-external-url-link-handler": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Important-85689-ReplacedDefaultValueWithPlaceholderInExternalUrlLinkHandler.html#important-85689-replaced-default-value-with-placeholder-in-external-url-link-handler", + "Changelog\/8.7.x\/Important-85689-ReplacedDefaultValueWithPlaceholderInExternalUrlLinkHandler.html#important-85689", "Important: #85689 - Replaced default value with placeholder in external url link handler" ], "important-87298-security-destroy-sessions-on-password-change": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Important-87298-DestroySessionsOnPasswordChange.html#important-87298-security-destroy-sessions-on-password-change", + "Changelog\/8.7.x\/Important-87298-DestroySessionsOnPasswordChange.html#important-87298", "Important: #87298 - [SECURITY] Destroy sessions on password change" ], "important-88302-prevent-overriding-ckeditor-config-from-plugins": [ "TYPO3 Core Changelog", "main", - "Changelog\/8.7.x\/Important-88302-PreventOverridingCKEditorConfigFromPlugins.html#important-88302-prevent-overriding-ckeditor-config-from-plugins", + "Changelog\/8.7.x\/Important-88302-PreventOverridingCKEditorConfigFromPlugins.html#important-88302", "Important: #88302 - Prevent overriding CKEditor config from plugins" ], "8-7-x-changes": [ @@ -61033,19 +61237,19 @@ "breaking-37180-extdirectdebug-and-globals-error-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-37180-RemovedExtDirectDebugAndGLOBALSerror.html#breaking-37180-extdirectdebug-and-globals-error-removed", + "Changelog\/9.0\/Breaking-37180-RemovedExtDirectDebugAndGLOBALSerror.html#breaking-37180", "Breaking: #37180 - ExtDirectDebug and $GLOBALS['error'] removed" ], "breaking-52694-generalutility-devlog-not-called-anymore": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-52694-GeneralUtilitydevLogNotCalledAnymore.html#breaking-52694-generalutility-devlog-not-called-anymore", + "Changelog\/9.0\/Breaking-52694-GeneralUtilitydevLogNotCalledAnymore.html#breaking-52694", "Breaking: #52694 - GeneralUtility::devLog() not called anymore" ], "breaking-55298-decoupled-sys-history-functionality": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-55298-DecoupledHistoryFunctionality.html#breaking-55298-decoupled-sys-history-functionality", + "Changelog\/9.0\/Breaking-55298-DecoupledHistoryFunctionality.html#breaking-55298", "Breaking: #55298 - Decoupled sys_history functionality" ], "database-related-changes": [ @@ -61069,217 +61273,217 @@ "breaking-57594-optimize-reflectionservice-cache-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-57594-OptimizeReflectionServiceCacheHandling.html#breaking-57594-optimize-reflectionservice-cache-handling", + "Changelog\/9.0\/Breaking-57594-OptimizeReflectionServiceCacheHandling.html#breaking-57594", "Breaking: #57594 - Optimize ReflectionService Cache handling" ], "breaking-71306-dropped-protocol-field-from-page-type-link-to-external-url": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-71306-DroppedProtocolFieldFromPageTypeLinkToExternalURL.html#breaking-71306-dropped-protocol-field-from-page-type-link-to-external-url", + "Changelog\/9.0\/Breaking-71306-DroppedProtocolFieldFromPageTypeLinkToExternalURL.html#breaking-71306", "Breaking: #71306 - Dropped \"Protocol\" field from page type \"Link to external URL\"" ], "breaking-74533-throw-exception-if-user-function-does-not-exist": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-74533-ThrowExceptionIfUserFunctionDoesNotExist.html#breaking-74533-throw-exception-if-user-function-does-not-exist", + "Changelog\/9.0\/Breaking-74533-ThrowExceptionIfUserFunctionDoesNotExist.html#breaking-74533", "Breaking: #74533 - Throw exception if user function does not exist" ], "breaking-79777-ext-scheduler-deleted-column-for-tasks-added": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-79777-AddedDeletedColumnForSchedulerTasks.html#breaking-79777-ext-scheduler-deleted-column-for-tasks-added", + "Changelog\/9.0\/Breaking-79777-AddedDeletedColumnForSchedulerTasks.html#breaking-79777", "Breaking: #79777 - EXT:scheduler - Deleted column for tasks added" ], "breaking-80700-deprecated-functionality-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-80700-DeprecatedFunctionalityRemoved.html#breaking-80700-deprecated-functionality-removed", + "Changelog\/9.0\/Breaking-80700-DeprecatedFunctionalityRemoved.html#breaking-80700", "Breaking: #80700 - Deprecated functionality removed" ], "breaking-80876-remove-system-extension-css-styled-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-80876-RemoveSystemExtensionCss_styled_content.html#breaking-80876-remove-system-extension-css-styled-content", + "Changelog\/9.0\/Breaking-80876-RemoveSystemExtensionCss_styled_content.html#breaking-80876", "Breaking: #80876 - Remove system extension css_styled_content" ], "breaking-80929-typo3-db-moved-to-extension": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-80929-TYPO3_DBMovedToExtension.html#breaking-80929-typo3-db-moved-to-extension", + "Changelog\/9.0\/Breaking-80929-TYPO3_DBMovedToExtension.html#breaking-80929", "Breaking: #80929 - TYPO3_DB moved to extension" ], "breaking-81171-edit-ability-of-typoscript-template-in-ext-tstemplate-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-81171-EditAbilityOfTypoScriptTemplateInEXTtstemplateRemoved.html#breaking-81171-edit-ability-of-typoscript-template-in-ext-tstemplate-removed", + "Changelog\/9.0\/Breaking-81171-EditAbilityOfTypoScriptTemplateInEXTtstemplateRemoved.html#breaking-81171", "Breaking: #81171 - Edit ability of TypoScript template in EXT:tstemplate removed" ], "breaking-81225-merged-ext-context-help-to-ext-backend": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-81225-MergedEXTcontext_helpToEXTbackend.html#breaking-81225-merged-ext-context-help-to-ext-backend", + "Changelog\/9.0\/Breaking-81225-MergedEXTcontext_helpToEXTbackend.html#breaking-81225", "Breaking: #81225 - Merged EXT:context_help to EXT:backend" ], "breaking-81460-deprecate-getbytag-on-cache-frontends": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-81460-DeprecateGetByTagOnCacheFrontends.html#breaking-81460-deprecate-getbytag-on-cache-frontends", + "Changelog\/9.0\/Breaking-81460-DeprecateGetByTagOnCacheFrontends.html#breaking-81460", "Breaking: #81460 - Deprecate getByTag() on cache frontends" ], "breaking-81534-database-field-be-groups-hide-in-lists-dropped": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-81534-DatabaseFieldBe_groupshide_in_listsDropped.html#breaking-81534-database-field-be-groups-hide-in-lists-dropped", + "Changelog\/9.0\/Breaking-81534-DatabaseFieldBe_groupshide_in_listsDropped.html#breaking-81534", "Breaking: #81534 - Database field be_groups:hide_in_lists dropped" ], "breaking-81536-move-serviceslistreport-from-sv-to-reports": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-81536-MoveOfServicesListReportFromSvToReports.html#breaking-81536-move-serviceslistreport-from-sv-to-reports", + "Changelog\/9.0\/Breaking-81536-MoveOfServicesListReportFromSvToReports.html#changelog-MoveOfServicesListReportFromSvToReports", "Breaking: #81536 - Move ServicesListReport From Sv to Reports" ], "breaking-81735-get-rid-of-sysext-sv": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-81735-GetRidOfSysextsv.html#breaking-81735-get-rid-of-sysext-sv", + "Changelog\/9.0\/Breaking-81735-GetRidOfSysextsv.html#changelog-Breaking-81735-GetRidOfSysextsv", "Breaking: #81735 - Get rid of sysext:sv" ], "breaking-81763-hook-parameters-of-typo3-file-edit-php-preoutputprocessinghook-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-81763-HookParametersOfTypo3file_editphppreOutputProcessingHookChanged.html#breaking-81763-hook-parameters-of-typo3-file-edit-php-preoutputprocessinghook-changed", + "Changelog\/9.0\/Breaking-81763-HookParametersOfTypo3file_editphppreOutputProcessingHookChanged.html#breaking-81763", "Breaking: #81763 - Hook parameters of ['typo3\/file_edit.php']['preOutputProcessingHook'] changed" ], "breaking-81775-suffix-form-identifier-with-the-content-element-uid": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-81775-ExtFormSuffixFormIdentifierWithContentElementUid.html#breaking-81775-suffix-form-identifier-with-the-content-element-uid", + "Changelog\/9.0\/Breaking-81775-ExtFormSuffixFormIdentifierWithContentElementUid.html#breaking-81775", "Breaking: #81775 - suffix form identifier with the content element uid" ], "breaking-81787-drop-ext-func": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-81787-DropEXTfunc.html#breaking-81787-drop-ext-func", + "Changelog\/9.0\/Breaking-81787-DropEXTfunc.html#breaking-81787", "Breaking: #81787 - Drop EXT:func" ], "breaking-81847-remove-jsmenu": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-81847-RemoveJSMENU.html#breaking-81847-remove-jsmenu", + "Changelog\/9.0\/Breaking-81847-RemoveJSMENU.html#breaking-81847", "Breaking: #81847 - Remove JSMENU" ], "breaking-81901-changed-behavior-of-auto-completion-appearance": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-81901-ChangedBehaviorOfAutocompletionAppearance.html#breaking-81901-changed-behavior-of-auto-completion-appearance", + "Changelog\/9.0\/Breaking-81901-ChangedBehaviorOfAutocompletionAppearance.html#breaking-81901", "Breaking: #81901 - Changed behavior of auto-completion appearance" ], "breaking-81901-removed-explanation-of-typoscript-options": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-81901-RemovedExplanationOfTypoScriptOptions.html#breaking-81901-removed-explanation-of-typoscript-options", + "Changelog\/9.0\/Breaking-81901-RemovedExplanationOfTypoScriptOptions.html#breaking-81901-1668719172", "Breaking: #81901 - Removed explanation of TypoScript options" ], "breaking-82433-install-tool-entry-point-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-81951-InstallToolEntryPointRemoved.html#breaking-82433-install-tool-entry-point-removed", + "Changelog\/9.0\/Breaking-81951-InstallToolEntryPointRemoved.html#breaking-82433", "Breaking: #82433 - Install Tool entry point removed" ], "breaking-81973-formenginevalidation-parsedate-remove-fixed-year-2038": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-81973-FormEngineValidationparseDateRemoveFixYear2038.html#breaking-81973-formenginevalidation-parsedate-remove-fixed-year-2038", + "Changelog\/9.0\/Breaking-81973-FormEngineValidationparseDateRemoveFixYear2038.html#breaking-81973", "Breaking: #81973 - FormEngineValidation.parseDate remove fixed year 2038" ], "breaking-82148-download-sql-dump-dropped-in-em": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82148-DownloadSQLDumpDroppedInEM.html#breaking-82148-download-sql-dump-dropped-in-em", + "Changelog\/9.0\/Breaking-82148-DownloadSQLDumpDroppedInEM.html#breaking-82148", "Breaking: #82148 - Download SQL dump dropped in EM" ], "breaking-82162-global-error-constants-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82162-GlobalErrorConstantsRemoved.html#breaking-82162-global-error-constants-removed", + "Changelog\/9.0\/Breaking-82162-GlobalErrorConstantsRemoved.html#breaking-82162", "Breaking: #82162 - Global error constants removed" ], "breaking-82210-ext-form-translation-for-options-properties-as-string": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82210-ExtFormTranslationForOptionsProperties.html#breaking-82210-ext-form-translation-for-options-properties-as-string", + "Changelog\/9.0\/Breaking-82210-ExtFormTranslationForOptionsProperties.html#breaking-82210", "Breaking: #82210 - EXT:form - translation for \"options\" properties as string" ], "breaking-82252-override-typoscript-configuration-formdefinitionoverrides-by-flexforms": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82252-OverrideTyposcriptConfigurationFormDefinitionOverridesByFlexforms.html#breaking-82252-override-typoscript-configuration-formdefinitionoverrides-by-flexforms", + "Changelog\/9.0\/Breaking-82252-OverrideTyposcriptConfigurationFormDefinitionOverridesByFlexforms.html#breaking-82252", "Breaking: #82252 - Override TypoScript configuration formDefinitionOverrides by FlexForms" ], "breaking-82296-removed-constant-typo3-user-agent": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82296-UserAgentConstantRemoved.html#breaking-82296-removed-constant-typo3-user-agent", + "Changelog\/9.0\/Breaking-82296-UserAgentConstantRemoved.html#breaking-82296", "Breaking: #82296 - Removed constant TYPO3_user_agent" ], "breaking-82334-abstractrecordlist": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82334-AbstractRecordList.html#breaking-82334-abstractrecordlist", + "Changelog\/9.0\/Breaking-82334-AbstractRecordList.html#breaking-82334", "Breaking: #82334 - AbstractRecordList" ], "breaking-82368-signal-afterextensionconfigurationwrite-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82368-SignalAfterExtensionConfigurationWriteRemoved.html#breaking-82368-signal-afterextensionconfigurationwrite-removed", + "Changelog\/9.0\/Breaking-82368-SignalAfterExtensionConfigurationWriteRemoved.html#breaking-82368", "Breaking: #82368 - Signal 'afterExtensionConfigurationWrite' removed" ], "breaking-82377-option-to-allow-uploading-system-extensions-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82377-OptionToAllowUploadingSystemExtensionsRemoved.html#breaking-82377-option-to-allow-uploading-system-extensions-removed", + "Changelog\/9.0\/Breaking-82377-OptionToAllowUploadingSystemExtensionsRemoved.html#breaking-82377", "Breaking: #82377 - Option to allow uploading system extensions removed" ], "breaking-82378-remove-namespaced-jquery": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82378-RemoveNamespacedJQuery.html#breaking-82378-remove-namespaced-jquery", + "Changelog\/9.0\/Breaking-82378-RemoveNamespacedJQuery.html#breaking-82378", "Breaking: #82378 - Remove namespaced jQuery" ], "breaking-82398-remove-special-constant-tsconstanteditor": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82398-RemoveSpecialConstantTSConstantEditor.html#breaking-82398-remove-special-constant-tsconstanteditor", + "Changelog\/9.0\/Breaking-82398-RemoveSpecialConstantTSConstantEditor.html#breaking-82398", "Breaking: #82398 - Remove special constant \"TSConstantEditor\"" ], "breaking-82406-routing-backend-modules-run-through-regular-dispatcher": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82406-RoutingBackendModulesRunThroughRegularDispatcher.html#breaking-82406-routing-backend-modules-run-through-regular-dispatcher", + "Changelog\/9.0\/Breaking-82406-RoutingBackendModulesRunThroughRegularDispatcher.html#breaking-82406", "Breaking: #82406 - Routing: Backend Modules run through regular dispatcher" ], "breaking-82414-cms-viewhelper-base-classes-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82414-RemoveCMSBaseViewHelperClasses.html#breaking-82414-cms-viewhelper-base-classes-removed", + "Changelog\/9.0\/Breaking-82414-RemoveCMSBaseViewHelperClasses.html#breaking-82414", "Breaking: #82414 - CMS ViewHelper base classes removed" ], "breaking-82421-dropped-old-db-related-configuration-options": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82421-DroppedOldDBRelatedConfigurationOptions.html#breaking-82421-dropped-old-db-related-configuration-options", + "Changelog\/9.0\/Breaking-82421-DroppedOldDBRelatedConfigurationOptions.html#breaking-82421", "Breaking: #82421 - Dropped old DB related configuration options" ], "breaking-82425-remove-old-typoscript-constants-editor-option-mod-ts-editable-constants": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82425-RemoveOldTyposcriptConstantsEditorOptionMOD_TSEDITABLE_CONSTANTS.html#breaking-82425-remove-old-typoscript-constants-editor-option-mod-ts-editable-constants", + "Changelog\/9.0\/Breaking-82425-RemoveOldTyposcriptConstantsEditorOptionMOD_TSEDITABLE_CONSTANTS.html#breaking-82425", "Breaking: #82425 - Remove old typoscript constants editor option \"###MOD_TS:EDITABLE_CONSTANTS###\"" ], "breaking-82426-extjs-and-extdirect-removal": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82426-ExtJSAndExtDirectRemoval.html#breaking-82426-extjs-and-extdirect-removal", + "Changelog\/9.0\/Breaking-82426-ExtJSAndExtDirectRemoval.html#breaking-82426", "Breaking: #82426 - ExtJS and ExtDirect removal" ], "removed-classes": [ @@ -61303,379 +61507,379 @@ "breaking-82430-replaced-generalutility-syslog-with-logging-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82430-ReplacedGeneralUtilitysysLogWithLoggingAPI.html#breaking-82430-replaced-generalutility-syslog-with-logging-api", + "Changelog\/9.0\/Breaking-82430-ReplacedGeneralUtilitysysLogWithLoggingAPI.html#breaking-82430", "Breaking: #82430 - Replaced GeneralUtility::sysLog with Logging API" ], "breaking-82445-pages-and-page-translations": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82445-PagesAndPageTranslations.html#breaking-82445-pages-and-page-translations", + "Changelog\/9.0\/Breaking-82445-PagesAndPageTranslations.html#breaking-82445", "Breaking: #82445 - Pages and page translations" ], "breaking-82505-merged-ext-info-pagetsconfig-to-ext-info": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82505-MergedEXTinfo_pagetsconfigToEXTinfo.html#breaking-82505-merged-ext-info-pagetsconfig-to-ext-info", + "Changelog\/9.0\/Breaking-82505-MergedEXTinfo_pagetsconfigToEXTinfo.html#breaking-82505", "Breaking: #82505 - Merged EXT:info_pagetsconfig to EXT:info" ], "breaking-82506-remove-backenduserrepository-injection-in-notecontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82506-RemoveBackendUserRepositoryInjectionInNoteController.html#breaking-82506-remove-backenduserrepository-injection-in-notecontroller", + "Changelog\/9.0\/Breaking-82506-RemoveBackendUserRepositoryInjectionInNoteController.html#breaking-82506", "Breaking: #82506 - Remove BackendUserRepository injection in NoteController" ], "breaking-82572-rdct-functionality-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82572-RDCTFunctionalityRemoved.html#breaking-82572-rdct-functionality-removed", + "Changelog\/9.0\/Breaking-82572-RDCTFunctionalityRemoved.html#breaking-82572", "Breaking: #82572 - RDCT functionality removed" ], "breaking-82629-removed-tce-db-options-prerr-and-upt": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82629-TceDbOptionsPrErrAndUPTRemoved.html#breaking-82629-removed-tce-db-options-prerr-and-upt", + "Changelog\/9.0\/Breaking-82629-TceDbOptionsPrErrAndUPTRemoved.html#breaking-82629", "Breaking: #82629 - Removed tce_db options \"prErr\" and \"uPT\"" ], "breaking-82639-logging-activated-for-authentication-and-service-classes": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82639-LoggingActivatedForAuthenticationAndServiceClasses.html#breaking-82639-logging-activated-for-authentication-and-service-classes", + "Changelog\/9.0\/Breaking-82639-LoggingActivatedForAuthenticationAndServiceClasses.html#breaking-82639", "Breaking: #82639 - Logging activated for authentication and Service classes" ], "breaking-82640-re-arranging-global-debug-functions": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82640-Re-arrangingGlobalDebugFunctions.html#breaking-82640-re-arranging-global-debug-functions", + "Changelog\/9.0\/Breaking-82640-Re-arrangingGlobalDebugFunctions.html#breaking-82640", "Breaking: #82640 - Re-arranging global debug functions" ], "breaking-82680-removed-option-to-generate-pngs-limited-to-64-colors": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82680-RemovedOptionToGeneratePNGsLimitedTo64Colors.html#breaking-82680-removed-option-to-generate-pngs-limited-to-64-colors", + "Changelog\/9.0\/Breaking-82680-RemovedOptionToGeneratePNGsLimitedTo64Colors.html#breaking-82680", "Breaking: #82680 - Removed option to generate PNGs limited to 64 colors" ], "breaking-82689-backend-abstractwizardcontroller-not-extends-abstractmodule": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82689-BackendAbstractWizardControllerNotExtendsAbstractModule.html#breaking-82689-backend-abstractwizardcontroller-not-extends-abstractmodule", + "Changelog\/9.0\/Breaking-82689-BackendAbstractWizardControllerNotExtendsAbstractModule.html#breaking-82689", "Breaking: #82689 - Backend AbstractWizardController not extends AbstractModule" ], "breaking-82701-always-consider-publishing-references-in-workspaces": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82701-AlwaysConsiderPublishingReferencesInWorkspaces.html#breaking-82701-always-consider-publishing-references-in-workspaces", + "Changelog\/9.0\/Breaking-82701-AlwaysConsiderPublishingReferencesInWorkspaces.html#breaking-82701", "Breaking: #82701 - Always consider publishing references in workspaces" ], "breaking-82709-tca-option-localizechildrenatparentlocalization-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82709-TCAOptionLocalizeChildrenAtParentLocalizationRemoved.html#breaking-82709-tca-option-localizechildrenatparentlocalization-removed", + "Changelog\/9.0\/Breaking-82709-TCAOptionLocalizeChildrenAtParentLocalizationRemoved.html#breaking-82709", "Breaking: #82709 - TCA option \"localizeChildrenAtParentLocalization\" removed" ], "breaking-82768-configuration-options-for-image-manipulation-php-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82768-ConfigurationOptionsForImageManipulationPHPAPI.html#breaking-82768-configuration-options-for-image-manipulation-php-api", + "Changelog\/9.0\/Breaking-82768-ConfigurationOptionsForImageManipulationPHPAPI.html#breaking-82768", "Breaking: #82768 - Configuration Options for Image Manipulation PHP API" ], "breaking-82803-global-configuration-option-content-doktypes-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82803-GlobalConfigurationOptionContent_doktypesRemoved.html#breaking-82803-global-configuration-option-content-doktypes-removed", + "Changelog\/9.0\/Breaking-82803-GlobalConfigurationOptionContent_doktypesRemoved.html#breaking-82803", "Breaking: #82803 - Global configuration option \"content_doktypes\" removed" ], "breaking-82832-use-at-daemon-dropped-from-scheduler": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82832-UseAtDaemonDroppedFromScheduler.html#breaking-82832-use-at-daemon-dropped-from-scheduler", + "Changelog\/9.0\/Breaking-82832-UseAtDaemonDroppedFromScheduler.html#breaking-82832", "Breaking: #82832 - Use at daemon dropped from scheduler" ], "breaking-82852-exception-is-thrown-on-invalid-charset": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82852-ExceptionIsThrownOnInvalidCharset.html#breaking-82852-exception-is-thrown-on-invalid-charset", + "Changelog\/9.0\/Breaking-82852-ExceptionIsThrownOnInvalidCharset.html#breaking-82852", "Breaking: #82852 - Exception is thrown on invalid charset" ], "breaking-82878-removed-field-no-cache-in-database-table-pages": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82878-RemovedFieldNoCacheInDatabaseTablePages.html#breaking-82878-removed-field-no-cache-in-database-table-pages", + "Changelog\/9.0\/Breaking-82878-RemovedFieldNoCacheInDatabaseTablePages.html#breaking-82878", "Breaking: #82878 - Removed field \"no_cache\" in database table \"pages\"" ], "breaking-82893-remove-global-variable-parsetime-start": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82893-RemoveGlobalVariablePARSETIME_START.html#breaking-82893-remove-global-variable-parsetime-start", + "Changelog\/9.0\/Breaking-82893-RemoveGlobalVariablePARSETIME_START.html#breaking-82893", "Breaking: #82893 - Remove global variable PARSETIME_START" ], "breaking-82896-system-extension-version-migrated-into-workspaces": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82896-SystemExtensionVersionMigratedIntoWorkspaces.html#breaking-82896-system-extension-version-migrated-into-workspaces", + "Changelog\/9.0\/Breaking-82896-SystemExtensionVersionMigratedIntoWorkspaces.html#breaking-82896", "Breaking: #82896 - System extension \"version\" migrated into \"workspaces\"" ], "breaking-82899-more-restricting-checks-for-api-methods-in-extensionmanagementutility": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82899-MoreRestrictingChecksForAPIMethodsInExtensionManagementUtility.html#breaking-82899-more-restricting-checks-for-api-methods-in-extensionmanagementutility", + "Changelog\/9.0\/Breaking-82899-MoreRestrictingChecksForAPIMethodsInExtensionManagementUtility.html#breaking-82899", "Breaking: #82899 - More restricting checks for API methods in ExtensionManagementUtility" ], "breaking-82914-remove-typoscript-option-page-bodytagmargins": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82914-RemoveTypoScriptOptionPagebodyTagMargins.html#breaking-82914-remove-typoscript-option-page-bodytagmargins", + "Changelog\/9.0\/Breaking-82914-RemoveTypoScriptOptionPagebodyTagMargins.html#breaking-82914", "Breaking: #82914 - Remove TypoScript option page.bodyTagMargins" ], "breaking-82915-remove-typoscript-option-page-stylesheet": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82915-RemoveTypoScriptOptionPagestylesheet.html#breaking-82915-remove-typoscript-option-page-stylesheet", + "Changelog\/9.0\/Breaking-82915-RemoveTypoScriptOptionPagestylesheet.html#breaking-82915", "Breaking: #82915 - Remove TypoScript option page.stylesheet" ], "breaking-82919-removed-pagetree-related-tsconfig-settings": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82919-RemovedPageTreeRelatesTsConfigSettings.html#breaking-82919-removed-pagetree-related-tsconfig-settings", + "Changelog\/9.0\/Breaking-82919-RemovedPageTreeRelatesTsConfigSettings.html#breaking-82919", "Breaking: #82919 - Removed pagetree-related TSconfig settings" ], "breaking-82926-removed-database-field-sys-domain-forced": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82926-RemovedDatabaseFieldSysDomainForcedFlag.html#breaking-82926-removed-database-field-sys-domain-forced", + "Changelog\/9.0\/Breaking-82926-RemovedDatabaseFieldSysDomainForcedFlag.html#breaking-82926", "Breaking: #82926 - Removed database field sys_domain.forced" ], "breaking-82991-record-list-localization-view-is-always-enabled": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-82991-RecordListLocalizationViewIsAlwaysEnabled.html#breaking-82991-record-list-localization-view-is-always-enabled", + "Changelog\/9.0\/Breaking-82991-RecordListLocalizationViewIsAlwaysEnabled.html#breaking-82991", "Breaking: #82991 - Record list \"Localization View\" is always enabled" ], "breaking-83081-removed-configuration-option-be-fileextensions-webspace": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-83081-RemovedConfigurationOptionBeFileExtensionsWebspace.html#breaking-83081-removed-configuration-option-be-fileextensions-webspace", + "Changelog\/9.0\/Breaking-83081-RemovedConfigurationOptionBeFileExtensionsWebspace.html#breaking-83081", "Breaking: #83081 - Removed configuration option BE\/fileExtensions\/webspace" ], "breaking-83122-removed-stdwrap-option-tcaselectitem": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-83122-RemovedStdWrapOptionTCAselectItem.html#breaking-83122-removed-stdwrap-option-tcaselectitem", + "Changelog\/9.0\/Breaking-83122-RemovedStdWrapOptionTCAselectItem.html#breaking-83122", "Breaking: #83122 - Removed stdWrap option TCAselectItem" ], "breaking-83124-remove-stdwrap-options-space-spacebefore-spaceafter": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-83124-RemoveStdWrapOptionsSpaceSpaceBeforeSpaceAfter.html#breaking-83124-remove-stdwrap-options-space-spacebefore-spaceafter", + "Changelog\/9.0\/Breaking-83124-RemoveStdWrapOptionsSpaceSpaceBeforeSpaceAfter.html#breaking-83124", "Breaking: #83124 - Remove stdWrap options space, spaceBefore, spaceAfter" ], "breaking-83153-migrated-backend-layout-icon-to-fal": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-83153-MigratedBackendLayoutIconToFileAbstractionLayer.html#breaking-83153-migrated-backend-layout-icon-to-fal", + "Changelog\/9.0\/Breaking-83153-MigratedBackendLayoutIconToFileAbstractionLayer.html#breaking-83153", "Breaking: #83153 - Migrated backend_layout.icon to FAL" ], "breaking-83160-removed-sorting-column-from-table-sys-file-reference": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-83160-RemovedSortingColumnFromTableSysFileReference.html#breaking-83160-removed-sorting-column-from-table-sys-file-reference", + "Changelog\/9.0\/Breaking-83160-RemovedSortingColumnFromTableSysFileReference.html#breaking-83160", "Breaking: #83160 - Removed 'sorting' column from table 'sys_file_reference'" ], "breaking-83161-remove-typo3-lll-usages-in-typo3-core": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-83161-RemoveTYPO3LLLUsagesInTYPO3Core.html#breaking-83161-remove-typo3-lll-usages-in-typo3-core", + "Changelog\/9.0\/Breaking-83161-RemoveTYPO3LLLUsagesInTYPO3Core.html#breaking-83161", "Breaking: #83161 - Remove TYPO3.LLL usages in TYPO3 core" ], "breaking-83241-extbase-removed-custom-functionality-for-datamapper-getplainvalue": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-83241-ExtbaseRemovedCustomFunctionalityForDataMapper-getPlainValue.html#breaking-83241-extbase-removed-custom-functionality-for-datamapper-getplainvalue", + "Changelog\/9.0\/Breaking-83241-ExtbaseRemovedCustomFunctionalityForDataMapper-getPlainValue.html#breaking-83241", "Breaking: #83241 - Extbase: Removed custom functionality for DataMapper->getPlainValue" ], "breaking-83243-removed-cache-phpcode-cache-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-83243-RemovedCache_phpcodeCacheConfiguration.html#breaking-83243-removed-cache-phpcode-cache-configuration", + "Changelog\/9.0\/Breaking-83243-RemovedCache_phpcodeCacheConfiguration.html#breaking-83243", "Breaking: #83243 - Removed cache_phpcode cache configuration" ], "breaking-83244-fluid-widget-links-do-not-add-cachehash-parameter-by-default-anymore": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-83244-FluidWidgetLinksDoNotAddCacheHashParameterByDefaultAnymore.html#breaking-83244-fluid-widget-links-do-not-add-cachehash-parameter-by-default-anymore", + "Changelog\/9.0\/Breaking-83244-FluidWidgetLinksDoNotAddCacheHashParameterByDefaultAnymore.html#breaking-83244", "Breaking: #83244 - Fluid Widget Links do not add cacheHash parameter by default anymore" ], "breaking-83256-removed-lockfilepath-functionality": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-83256-RemovedLockFilePathFunctionality.html#breaking-83256-removed-lockfilepath-functionality", + "Changelog\/9.0\/Breaking-83256-RemovedLockFilePathFunctionality.html#breaking-83256", "Breaking: #83256 - Removed lockFilePath functionality" ], "breaking-83265-dropped-support-for-setting-typenum-via-id-get-parameter-in-frontend": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-83265-DroppedSupportForSettingTypeNumViaIdGETParameterInFrontend.html#breaking-83265-dropped-support-for-setting-typenum-via-id-get-parameter-in-frontend", + "Changelog\/9.0\/Breaking-83265-DroppedSupportForSettingTypeNumViaIdGETParameterInFrontend.html#breaking-83265", "Breaking: #83265 - Dropped support for setting \"typeNum\" via id GET Parameter in Frontend" ], "breaking-83284-removed-ext-backend-resources-private-templates-close-html": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-83284-RemovedExtBackendPrivateTemplatesCloseHtml.html#breaking-83284-removed-ext-backend-resources-private-templates-close-html", + "Changelog\/9.0\/Breaking-83284-RemovedExtBackendPrivateTemplatesCloseHtml.html#breaking-83284", "Breaking: #83284 - Removed EXT:backend\/Resources\/Private\/Templates\/Close.html" ], "breaking-83289-core-version-9-0-needs-php-7-2-0": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-83289-CoreVersion90NeedsPHP720.html#breaking-83289-core-version-9-0-needs-php-7-2-0", + "Changelog\/9.0\/Breaking-83289-CoreVersion90NeedsPHP720.html#breaking-83289", "Breaking: #83289 - Core version 9.0 needs PHP 7.2.0" ], "breaking-83294-salted-passwords-custom-saltings-must-use-the-saltinterface": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-83294-SaltedPasswordsCustomSaltingsMustUseTheSaltInterface.html#breaking-83294-salted-passwords-custom-saltings-must-use-the-saltinterface", + "Changelog\/9.0\/Breaking-83294-SaltedPasswordsCustomSaltingsMustUseTheSaltInterface.html#breaking-83294", "Breaking: #83294 - Salted Passwords: Custom saltings must use the SaltInterface" ], "breaking-83302-composer-restricts-installation-of-typo3-cms": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Breaking-83302-ComposerRestrictsInstallationOfTypo3cms.html#breaking-83302-composer-restricts-installation-of-typo3-cms", + "Changelog\/9.0\/Breaking-83302-ComposerRestrictsInstallationOfTypo3cms.html#breaking-83302", "Breaking: #83302 - Composer restricts installation of typo3\/cms" ], "deprecation-52694-deprecated-generalutility-devlog": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-52694-DeprecatedGeneralUtilitydevLog.html#deprecation-52694-deprecated-generalutility-devlog", + "Changelog\/9.0\/Deprecation-52694-DeprecatedGeneralUtilitydevLog.html#deprecation-52694", "Deprecation: #52694 - Deprecated GeneralUtility::devLog()" ], "deprecation-54152-deprecate-arguments-of-backendutility-getpagestsconfig": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-54152-DeprecateArgumentsOfBackendUtilityGetPagesTSconfig.html#deprecation-54152-deprecate-arguments-of-backendutility-getpagestsconfig", + "Changelog\/9.0\/Deprecation-54152-DeprecateArgumentsOfBackendUtilityGetPagesTSconfig.html#deprecation-54152", "Deprecation: #54152 - Deprecate arguments of BackendUtility::getPagesTSconfig" ], "deprecation-57594-optimize-extbase-reflectionservice-cache-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-57594-OptimizeReflectionServiceCacheHandling.html#deprecation-57594-optimize-extbase-reflectionservice-cache-handling", + "Changelog\/9.0\/Deprecation-57594-OptimizeReflectionServiceCacheHandling.html#deprecation-57594", "Deprecation: #57594 - Optimize extbase ReflectionService Cache handling" ], "deprecation-70526-location-of-formattopagetypemapping-option": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-70526-LocationOfFormatToPageTypeMappingOption.html#deprecation-70526-location-of-formattopagetypemapping-option", + "Changelog\/9.0\/Deprecation-70526-LocationOfFormatToPageTypeMappingOption.html#deprecation-70526", "Deprecation: #70526 - Location of formatToPageTypeMapping option" ], "deprecation-78410-deprecate-popover-member-instance-in-typo3-global-object": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-78410-DeprecatePopoverMemberInstanceInTYPO3GlobalObject.html#deprecation-78410-deprecate-popover-member-instance-in-typo3-global-object", + "Changelog\/9.0\/Deprecation-78410-DeprecatePopoverMemberInstanceInTYPO3GlobalObject.html#deprecation-78410", "Deprecation: #78410 - Deprecate popover member instance in TYPO3 global object." ], "deprecation-80993-generalutility-getuserobj": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-80993-GeneralUtilitygetUserObj.html#deprecation-80993-generalutility-getuserobj", + "Changelog\/9.0\/Deprecation-80993-GeneralUtilitygetUserObj.html#deprecation-80993", "Deprecation: #80993 - GeneralUtility::getUserObj" ], "deprecation-81201-eidutility-inittca": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-81201-EidUtilityinitTCA.html#deprecation-81201-eidutility-inittca", + "Changelog\/9.0\/Deprecation-81201-EidUtilityinitTCA.html#deprecation-81201", "Deprecation: #81201 - EidUtility::initTCA" ], "deprecation-81213-render-method-arguments-on-viewhelpers-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-81213-RenderMethodArgumentOnViewHelpersDeprecated.html#deprecation-81213-render-method-arguments-on-viewhelpers-deprecated", + "Changelog\/9.0\/Deprecation-81213-RenderMethodArgumentOnViewHelpersDeprecated.html#deprecation-81213", "Deprecation: #81213 - Render method arguments on ViewHelpers deprecated" ], "deprecation-81217-tsfe-related-language-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-81217-TSFE-relatedLanguageMethods.html#deprecation-81217-tsfe-related-language-methods", + "Changelog\/9.0\/Deprecation-81217-TSFE-relatedLanguageMethods.html#deprecation-81217", "Deprecation: #81217 - TSFE-related language methods" ], "deprecation-81218-nowsol-argument-in-pagerepository-getrawrecord": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-81218-NoWSOLArgumentInPageRepository-getRawRecord.html#deprecation-81218-nowsol-argument-in-pagerepository-getrawrecord", + "Changelog\/9.0\/Deprecation-81218-NoWSOLArgumentInPageRepository-getRawRecord.html#deprecation-81218", "Deprecation: #81218 - noWSOL argument in PageRepository->getRawRecord" ], "deprecation-81318-public-properties-of-pagerepository": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-81318-PublicPropertiesOfPageRepository.html#deprecation-81318-public-properties-of-pagerepository", + "Changelog\/9.0\/Deprecation-81318-PublicPropertiesOfPageRepository.html#deprecation-81318", "Deprecation: #81318 - Public properties of PageRepository" ], "deprecation-81460-deprecate-getbytag-on-cache-frontends": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-81460-DeprecateGetByTagOnCacheFrontends.html#deprecation-81460-deprecate-getbytag-on-cache-frontends", + "Changelog\/9.0\/Deprecation-81460-DeprecateGetByTagOnCacheFrontends.html#deprecation-81460", "Deprecation: #81460 - Deprecate getByTag() on cache frontends" ], "deprecation-81464-add-api-for-meta-tag-management": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-81464-AddAPIForMetaTagManagement.html#deprecation-81464-add-api-for-meta-tag-management", + "Changelog\/9.0\/Deprecation-81464-AddAPIForMetaTagManagement.html#deprecation-81464", "Deprecation: #81464 - Add API for meta tag management" ], "deprecation-81534-backendutility-getlistgroupnames-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-81534-BackendUtilitygetListGroupNamesDeprecated.html#deprecation-81534-backendutility-getlistgroupnames-deprecated", + "Changelog\/9.0\/Deprecation-81534-BackendUtilitygetListGroupNamesDeprecated.html#deprecation-81534", "Deprecation: #81534 - BackendUtility::getListGroupNames() deprecated" ], "deprecation-81540-deprecate-documenttemplate-formwidth": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-81540-DeprecateDocumentTemplateformWidth.html#deprecation-81540-deprecate-documenttemplate-formwidth", + "Changelog\/9.0\/Deprecation-81540-DeprecateDocumentTemplateformWidth.html#deprecation-81540", "Deprecation: #81540 - Deprecate DocumentTemplate::formWidth" ], "deprecation-81600-unused-extbase-exceptions": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-81600-UnusedExtbaseExceptions.html#deprecation-81600-unused-extbase-exceptions", + "Changelog\/9.0\/Deprecation-81600-UnusedExtbaseExceptions.html#deprecation-81600", "Deprecation: #81600 - Unused Extbase Exceptions" ], "deprecation-81651-argument-parameters-in-list-module-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-81651-ArgumentParametersInListModuleHook.html#deprecation-81651-argument-parameters-in-list-module-hook", + "Changelog\/9.0\/Deprecation-81651-ArgumentParametersInListModuleHook.html#deprecation-81651", "Deprecation: #81651 - Argument parameters in list module hook" ], "deprecation-81763-deprecated-language-label-for-file-rename": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-81763-DeprecatedLanguageLabelForFileRename.html#deprecation-81763-deprecated-language-label-for-file-rename", + "Changelog\/9.0\/Deprecation-81763-DeprecatedLanguageLabelForFileRename.html#deprecation-81763", "Deprecation: #81763 - Deprecated language label for file rename" ], "deprecation-81951-install-tool-entry-point-moved": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-81951-InstallToolEntryPointMoved.html#deprecation-81951-install-tool-entry-point-moved", + "Changelog\/9.0\/Deprecation-81951-InstallToolEntryPointMoved.html#deprecation-81951", "Deprecation: #81951 - Install Tool entry point moved" ], "deprecation-82110-deprecate-option-value-and-noscript-in-svg-content-object": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-82110-DeprecateValueAndNoscriptOptionsInSVGContentObject.html#deprecation-82110-deprecate-option-value-and-noscript-in-svg-content-object", + "Changelog\/9.0\/Deprecation-82110-DeprecateValueAndNoscriptOptionsInSVGContentObject.html#deprecation-82110", "Deprecation: #82110 - Deprecate option \"value\" and \"noscript\" in SVG content object" ], "deprecation-82254-deprecate-globals-typo3-conf-vars-ext-extconf": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-82254-DeprecateGLOBALSTYPO3_CONF_VARSEXTextConf.html#deprecation-82254-deprecate-globals-typo3-conf-vars-ext-extconf", + "Changelog\/9.0\/Deprecation-82254-DeprecateGLOBALSTYPO3_CONF_VARSEXTextConf.html#deprecation-82254", "Deprecation: #82254 - Deprecate $GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf']" ], "deprecation-82315-deprecate-bin-typo3-lang-language-update": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-82315-DeprecateBinTypo3LanguageUpdate.html#deprecation-82315-deprecate-bin-typo3-lang-language-update", + "Changelog\/9.0\/Deprecation-82315-DeprecateBinTypo3LanguageUpdate.html#deprecation-82315", "Deprecation: #82315 - Deprecate bin\/typo3 lang:language:update" ], "deprecation-82426-typo3-pagetree-navigation-component-name": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-82426-Typo3-pagetreeNavigationComponentName.html#deprecation-82426-typo3-pagetree-navigation-component-name", + "Changelog\/9.0\/Deprecation-82426-Typo3-pagetreeNavigationComponentName.html#deprecation-82426", "Deprecation: #82426 - typo3-pagetree navigation component name" ], "old-configuration": [ @@ -61693,241 +61897,241 @@ "deprecation-82430-generalutility-syslog": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-82430-GeneralUtilitysysLog.html#deprecation-82430-generalutility-syslog", + "Changelog\/9.0\/Deprecation-82430-GeneralUtilitysysLog.html#deprecation-82430", "Deprecation: #82430 - GeneralUtility::sysLog" ], "deprecation-82438-deprecation-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-82438-DeprecationMethods.html#deprecation-82438-deprecation-methods", + "Changelog\/9.0\/Deprecation-82438-DeprecationMethods.html#deprecation-82438", "Deprecation: #82438 - Deprecation methods" ], "deprecation-82445-page-translation-related-functionality": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-82445-PageTranslationRelatedFunctionality.html#deprecation-82445-page-translation-related-functionality", + "Changelog\/9.0\/Deprecation-82445-PageTranslationRelatedFunctionality.html#deprecation-82445", "Deprecation: #82445 - Page translation related functionality" ], "deprecation-82603-deprecate-storage-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-82603-DeprecateStorageModule.html#deprecation-82603-deprecate-storage-module", + "Changelog\/9.0\/Deprecation-82603-DeprecateStorageModule.html#deprecation-82603", "Deprecation: #82603 - Deprecate Storage module" ], "deprecation-82609-deprecate-typo3-utility": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-82609-DeprecateTYPO3Utility.html#deprecation-82609-deprecate-typo3-utility", + "Changelog\/9.0\/Deprecation-82609-DeprecateTYPO3Utility.html#deprecation-82609", "Deprecation: #82609 - Deprecate TYPO3.Utility" ], "deprecation-82702-second-argument-of-generalutility-mkdir-deep": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-82702-SecondArgumentOfGeneralUtilitymkdir_deep.html#deprecation-82702-second-argument-of-generalutility-mkdir-deep", + "Changelog\/9.0\/Deprecation-82702-SecondArgumentOfGeneralUtilitymkdir_deep.html#deprecation-82702", "Deprecation: #82702 - Second argument of GeneralUtility::mkdir_deep()" ], "deprecation-82725-deprecate-configurationform": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-82725-DeprecateConfigurationForm.html#deprecation-82725-deprecate-configurationform", + "Changelog\/9.0\/Deprecation-82725-DeprecateConfigurationForm.html#deprecation-82725", "Deprecation: #82725 - Deprecate ConfigurationForm" ], "deprecation-82744-rename-ext-lowlevel-view-to-lowlevel-controller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-82744-RenameExtlowlevelViewToLowlevelController.html#deprecation-82744-rename-ext-lowlevel-view-to-lowlevel-controller", + "Changelog\/9.0\/Deprecation-82744-RenameExtlowlevelViewToLowlevelController.html#deprecation-82744", "Deprecation: #82744 - Rename ext:lowlevel\/View to lowlevel\/Controller" ], "deprecation-82805-renamed-ajaxloginhandler-php-class": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-82805-RenamedAjaxLoginHandlerPHPClass.html#deprecation-82805-renamed-ajaxloginhandler-php-class", + "Changelog\/9.0\/Deprecation-82805-RenamedAjaxLoginHandlerPHPClass.html#deprecation-82805", "Deprecation: #82805 - Renamed AjaxLoginHandler PHP class" ], "deprecation-82869-replace-inject-with-typo3-cms-extbase-annotation-inject": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-82869-ReplaceInjectWithTYPO3CMSExtbaseAnnotationInject.html#deprecation-82869-replace-inject-with-typo3-cms-extbase-annotation-inject", + "Changelog\/9.0\/Deprecation-82869-ReplaceInjectWithTYPO3CMSExtbaseAnnotationInject.html#deprecation-82869", "Deprecation: #82869 - Replace @inject with @TYPO3\\CMS\\Extbase\\Annotation\\Inject" ], "deprecation-82899-extensionmanagementutility-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-82899-ExtensionManagementUtilityMethods.html#deprecation-82899-extensionmanagementutility-methods", + "Changelog\/9.0\/Deprecation-82899-ExtensionManagementUtilityMethods.html#deprecation-82899", "Deprecation: #82899 - ExtensionManagementUtility methods" ], "deprecation-82902-custom-backend-module-registration-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-82902-CustomBackendModuleRegistrationMethods.html#deprecation-82902-custom-backend-module-registration-methods", + "Changelog\/9.0\/Deprecation-82902-CustomBackendModuleRegistrationMethods.html#deprecation-82902", "Deprecation: #82902 - Custom Backend Module registration methods" ], "deprecation-82903-deprecate-clientutility": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-82903-DeprecateClientUtility.html#deprecation-82903-deprecate-clientutility", + "Changelog\/9.0\/Deprecation-82903-DeprecateClientUtility.html#deprecation-82903", "Deprecation: #82903 - Deprecate ClientUtility" ], "deprecation-82909-typoscript-option-config-typolinkcheckrootline": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-82909-TypoScriptOptionConfigtypolinkCheckRootline.html#deprecation-82909-typoscript-option-config-typolinkcheckrootline", + "Changelog\/9.0\/Deprecation-82909-TypoScriptOptionConfigtypolinkCheckRootline.html#deprecation-82909", "Deprecation: #82909 - TypoScript option config.typolinkCheckRootline" ], "deprecation-82926-domain-related-api-method-in-tsfe": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-82926-DomainRelatedApiMethodInTSFE.html#deprecation-82926-domain-related-api-method-in-tsfe", + "Changelog\/9.0\/Deprecation-82926-DomainRelatedApiMethodInTSFE.html#deprecation-82926", "Deprecation: #82926 - Domain-related API method in TSFE" ], "deprecation-82975-deprecate-usage-of-inject-with-non-public-properties": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-82975-DeprecateUsageOfInjectWithNonPublicProperties.html#deprecation-82975-deprecate-usage-of-inject-with-non-public-properties", + "Changelog\/9.0\/Deprecation-82975-DeprecateUsageOfInjectWithNonPublicProperties.html#deprecation-82975", "Deprecation: #82975 - Deprecate usage of @inject with non-public properties" ], "deprecation-83078-replace-lazy-with-typo3-cms-extbase-annotation-orm-lazy": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-83078-ReplaceLazyWithTYPO3CMSExtbaseAnnotationORMLazy.html#deprecation-83078-replace-lazy-with-typo3-cms-extbase-annotation-orm-lazy", + "Changelog\/9.0\/Deprecation-83078-ReplaceLazyWithTYPO3CMSExtbaseAnnotationORMLazy.html#deprecation-83078", "Deprecation: #83078 - Replace @lazy with @TYPO3\\CMS\\Extbase\\Annotation\\ORM\\Lazy" ], "deprecation-83083-generalutility-llxmlautofilename": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-83083-GeneralUtilityllXmlAutoFileName.html#deprecation-83083-generalutility-llxmlautofilename", + "Changelog\/9.0\/Deprecation-83083-GeneralUtilityllXmlAutoFileName.html#deprecation-83083", "Deprecation: #83083 - GeneralUtility::llXmlAutoFileName()" ], "deprecation-83092-replace-transient-with-typo3-cms-extbase-annotation-orm-transient": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-83092-ReplaceTransientWithTYPO3CMSExtbaseAnnotationORMTransient.html#deprecation-83092-replace-transient-with-typo3-cms-extbase-annotation-orm-transient", + "Changelog\/9.0\/Deprecation-83092-ReplaceTransientWithTYPO3CMSExtbaseAnnotationORMTransient.html#deprecation-83092", "Deprecation: #83092 - Replace @transient with @TYPO3\\CMS\\Extbase\\Annotation\\ORM\\Transient" ], "deprecation-83093-replace-cascade-with-typo3-cms-extbase-annotation-orm-cascade": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-83093-ReplaceCascadeWithTYPO3CMSExtbaseAnnotationORMCascade.html#deprecation-83093-replace-cascade-with-typo3-cms-extbase-annotation-orm-cascade", + "Changelog\/9.0\/Deprecation-83093-ReplaceCascadeWithTYPO3CMSExtbaseAnnotationORMCascade.html#deprecation-83093", "Deprecation: #83093 - Replace @cascade with @TYPO3\\CMS\\Extbase\\Annotation\\ORM\\Cascade" ], "deprecation-83094-replace-ignorevalidation-with-typo3-cms-extbase-annotation-ignorevalidation": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-83094-ReplaceIgnorevalidationWithTYPO3CMSExtbaseAnnotationIgnoreValidation.html#deprecation-83094-replace-ignorevalidation-with-typo3-cms-extbase-annotation-ignorevalidation", + "Changelog\/9.0\/Deprecation-83094-ReplaceIgnorevalidationWithTYPO3CMSExtbaseAnnotationIgnoreValidation.html#deprecation-83094", "Deprecation: #83094 - Replace @ignorevalidation with @TYPO3\\CMS\\Extbase\\Annotation\\IgnoreValidation" ], "deprecation-83116-caching-framework-wrapper-methods-in-backendutility": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-83116-CachingFrameworkWrapperMethodsInBackendUtility.html#deprecation-83116-caching-framework-wrapper-methods-in-backendutility", + "Changelog\/9.0\/Deprecation-83116-CachingFrameworkWrapperMethodsInBackendUtility.html#deprecation-83116", "Deprecation: #83116 - Caching framework wrapper methods in BackendUtility" ], "deprecation-83118-deleteclause-methods-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-83118-DeleteClauseMethods.html#deprecation-83118-deleteclause-methods-deprecated", + "Changelog\/9.0\/Deprecation-83118-DeleteClauseMethods.html#deprecation-83118", "Deprecation: #83118 - DeleteClause methods deprecated" ], "deprecation-83121-logging-method-datahandler-newlog2": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-83121-LoggingMethodDataHandler-newlog2.html#deprecation-83121-logging-method-datahandler-newlog2", + "Changelog\/9.0\/Deprecation-83121-LoggingMethodDataHandler-newlog2.html#deprecation-83121", "Deprecation: #83121 - Logging method DataHandler->newlog2()" ], "deprecation-83252-link-tag-syntax-processsing": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-83252-Link-tagSyntaxProcesssing.html#deprecation-83252-link-tag-syntax-processsing", + "Changelog\/9.0\/Deprecation-83252-Link-tagSyntaxProcesssing.html#deprecation-83252", "Deprecation: #83252 - link-tag syntax processsing" ], "deprecation-83254-moved-page-generation-methods-into-tsfe": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-83254-MovedPageGenerationMethodsIntoTSFE.html#deprecation-83254-moved-page-generation-methods-into-tsfe", + "Changelog\/9.0\/Deprecation-83254-MovedPageGenerationMethodsIntoTSFE.html#deprecation-83254", "Deprecation: #83254 - Moved page generation methods into TSFE" ], "deprecation-83273-public-properties-of-templateservice": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Deprecation-83273-PublicPropertiesOfTemplateService.html#deprecation-83273-public-properties-of-templateservice", + "Changelog\/9.0\/Deprecation-83273-PublicPropertiesOfTemplateService.html#deprecation-83273", "Deprecation: #83273 - Public properties of TemplateService" ], "feature-22439-allow-nested-get-params-in-config-linkvars": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-22439-AllowNestedGET-paramsInConfiglinkVars.html#feature-22439-allow-nested-get-params-in-config-linkvars", + "Changelog\/9.0\/Feature-22439-AllowNestedGET-paramsInConfiglinkVars.html#feature-22439", "Feature: #22439 - Allow nested GET-params in config.linkVars" ], "feature-40729-title-attribute-for-un-substituted-constants-in-ts-object-browser": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-40729-TitleAttributeForUnsubstitutedConstantsInTSObjectBrowser.html#feature-40729-title-attribute-for-un-substituted-constants-in-ts-object-browser", + "Changelog\/9.0\/Feature-40729-TitleAttributeForUnsubstitutedConstantsInTSObjectBrowser.html#feature-40729", "Feature: #40729 - Title attribute for (un)substituted constants in TS object browser" ], "feature-45535-sorting-for-scheduler-list": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-45535-SortingForScheduler-list.html#feature-45535-sorting-for-scheduler-list", + "Changelog\/9.0\/Feature-45535-SortingForScheduler-list.html#feature-45535", "Feature: #45535 - Sorting for scheduler-list" ], "feature-57594-optimize-reflectionservice-cache-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-57594-OptimizeReflectionServiceCacheHandling.html#feature-57594-optimize-reflectionservice-cache-handling", + "Changelog\/9.0\/Feature-57594-OptimizeReflectionServiceCacheHandling.html#feature-57594", "Feature: #57594 - Optimize ReflectionService Cache handling" ], "feature-65403-add-file-links-sorting-by-date-and-sorting-direction": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-63509-FileLinksSortingByDateAndSortingDirection.html#feature-65403-add-file-links-sorting-by-date-and-sorting-direction", + "Changelog\/9.0\/Feature-63509-FileLinksSortingByDateAndSortingDirection.html#feature-65403", "Feature: #65403 - Add file links sorting by date and sorting direction" ], "feature-67884-display-unused-ces": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-67884-DisplayUnusedCEs.html#feature-67884-display-unused-ces", + "Changelog\/9.0\/Feature-67884-DisplayUnusedCEs.html#feature-67884", "Feature: #67884 - Display 'unused' CEs" ], "feature-69340-show-backend-user-who-deleted-record": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-69340-ShowBackendUserWhoDeletedRecord.html#feature-69340-show-backend-user-who-deleted-record", + "Changelog\/9.0\/Feature-69340-ShowBackendUserWhoDeletedRecord.html#feature-69340", "Feature: #69340 - Show backend user who deleted record" ], "feature-73357-make-thumbnail-size-in-file-browser-configurable": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-73357-MakeThumbnailSizeInFileBrowserConfigurable.html#feature-73357-make-thumbnail-size-in-file-browser-configurable", + "Changelog\/9.0\/Feature-73357-MakeThumbnailSizeInFileBrowserConfigurable.html#feature-73357", "Feature: #73357 - Make thumbnail size in file browser configurable" ], "feature-75161-create-uri-link-to-backend-modules-viewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-75161-CreateUrilinkToBackendModulesViewhelper.html#feature-75161-create-uri-link-to-backend-modules-viewhelper", + "Changelog\/9.0\/Feature-75161-CreateUrilinkToBackendModulesViewhelper.html#feature-75161", "Feature: #75161 - Create uri\/link to backend modules viewhelper" ], "feature-75676-load-new-content-element-wizard-via-modal-instead-of-new-page": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-75676-LoadNewContentElementWizardViaModalInsteadOfNewPage.html#feature-75676-load-new-content-element-wizard-via-modal-instead-of-new-page", + "Changelog\/9.0\/Feature-75676-LoadNewContentElementWizardViaModalInsteadOfNewPage.html#feature-75676", "Feature: #75676 - Load new content element wizard via modal instead of new page" ], "feature-76459-add-crossorigin-property-to-javascript-files": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-76459-AddCrossoriginPropertyToJavaScriptFiles.html#feature-76459-add-crossorigin-property-to-javascript-files", + "Changelog\/9.0\/Feature-76459-AddCrossoriginPropertyToJavaScriptFiles.html#feature-76459", "Feature: #76459 - Add crossorigin property to JavaScript files" ], "feature-76910-pagelayoutview-allow-to-disable-copy-translate-buttons": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-76910-PageLayoutViewAllowToDisableCopyTranslateButtons.html#feature-76910-pagelayoutview-allow-to-disable-copy-translate-buttons", + "Changelog\/9.0\/Feature-76910-PageLayoutViewAllowToDisableCopyTranslateButtons.html#feature-76910", "Feature: #76910 - PageLayoutView - Allow to disable copy- \/ translate- buttons" ], "feature-77268-introduce-javascript-trigger-request-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-77268-IntroduceJavaScriptTriggerRequestAPI.html#feature-77268-introduce-javascript-trigger-request-api", + "Changelog\/9.0\/Feature-77268-IntroduceJavaScriptTriggerRequestAPI.html#feature-77268", "Feature: #77268 - Introduce JavaScript trigger request API" ], "registering-component": [ @@ -61957,7 +62161,7 @@ "feature-77576-introduce-device-presets-and-redesign-the-view-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-77576-IntroduceDevicePresetsAndRedesignTheViewModule.html#feature-77576-introduce-device-presets-and-redesign-the-view-module", + "Changelog\/9.0\/Feature-77576-IntroduceDevicePresetsAndRedesignTheViewModule.html#feature-77576", "Feature: #77576 - Introduce device presets and redesign the view module" ], "register-device-presets-via-pagetsconfig": [ @@ -61969,25 +62173,25 @@ "feature-78695-set-the-session-timeout-for-frontend-users": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-78695-SetTheSessionTimeoutForFrontendUsers.html#feature-78695-set-the-session-timeout-for-frontend-users", + "Changelog\/9.0\/Feature-78695-SetTheSessionTimeoutForFrontendUsers.html#feature-78695", "Feature: #78695 - Set the session timeout for frontend users" ], "feature-79462-introduce-scheduler-task-to-execute-console-command": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-79462-IntroduceSchedulerTaskToExecuteConsoleCommand.html#feature-79462-introduce-scheduler-task-to-execute-console-command", + "Changelog\/9.0\/Feature-79462-IntroduceSchedulerTaskToExecuteConsoleCommand.html#feature-79462", "Feature: #79462 - Introduce scheduler task to execute console command" ], "feature-79777-ext-scheduler-deleted-column-for-tasks-added": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-79777-AddedDeletedColumnForSchedulerTasks.html#feature-79777-ext-scheduler-deleted-column-for-tasks-added", + "Changelog\/9.0\/Feature-79777-AddedDeletedColumnForSchedulerTasks.html#feature-79777", "Feature: #79777 - EXT:scheduler - Deleted column for tasks added" ], "feature-80186-add-html5-elements-and-improve-the-form-editor": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-80186-ExtFormAddHtml5Elements.html#feature-80186-add-html5-elements-and-improve-the-form-editor", + "Changelog\/9.0\/Feature-80186-ExtFormAddHtml5Elements.html#feature-80186", "Feature: #80186 - Add HTML5 elements and improve the form editor" ], "the-form-editor-contains-new-selectable-form-elements": [ @@ -62035,67 +62239,67 @@ "feature-80187-add-the-confirmation-finisher-to-the-form-editor": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-80187-ExtFormAddConfirmationFinisherToTheFormEditor.html#feature-80187-add-the-confirmation-finisher-to-the-form-editor", + "Changelog\/9.0\/Feature-80187-ExtFormAddConfirmationFinisherToTheFormEditor.html#feature-80187", "Feature: #80187 - Add the \"Confirmation\" finisher to the form editor" ], "feature-80342-extbase-validator-for-urls": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-80342-ExtbaseValidatorForURLs.html#feature-80342-extbase-validator-for-urls", + "Changelog\/9.0\/Feature-80342-ExtbaseValidatorForURLs.html#feature-80342", "Feature: #80342 - Extbase validator for URLs" ], "feature-80542-support-defer-attribute-for-javascript-includes-in-typoscript": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-80542-TypoScriptJavaScriptDeferAttribute.html#feature-80542-support-defer-attribute-for-javascript-includes-in-typoscript", + "Changelog\/9.0\/Feature-80542-TypoScriptJavaScriptDeferAttribute.html#feature-80542", "Feature: #80542 - Support defer attribute for JavaScript includes in TypoScript" ], "feature-80557-add-support-for-native-sql-time-column-type": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-80557-AddSupportForNativeSQLTimeColumnType.html#feature-80557-add-support-for-native-sql-time-column-type", + "Changelog\/9.0\/Feature-80557-AddSupportForNativeSQLTimeColumnType.html#feature-80557", "Feature: #80557 - Add support for native SQL time column type" ], "feature-80581-render-list-of-recently-users-that-were-switched-to": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-80581-RenderListOfRecentlyUsersThatWereSwitchedTo.html#feature-80581-render-list-of-recently-users-that-were-switched-to", + "Changelog\/9.0\/Feature-80581-RenderListOfRecentlyUsersThatWereSwitchedTo.html#feature-80581", "Feature: #80581 - Render list of recently users that were switched to" ], "feature-80866-allow-exclusion-of-records-in-localization-wizard": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-80866-AllowExclusionOfRecordsInLocalizationWizard.html#feature-80866-allow-exclusion-of-records-in-localization-wizard", + "Changelog\/9.0\/Feature-80866-AllowExclusionOfRecordsInLocalizationWizard.html#feature-80866", "Feature: #80866 - Allow exclusion of records in localization wizard" ], "feature-81223-includecss-inline-property": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-81223-IncludeCSSinlineProperty.html#feature-81223-includecss-inline-property", + "Changelog\/9.0\/Feature-81223-IncludeCSSinlineProperty.html#feature-81223", "Feature: #81223 - includeCSS.inline property" ], "feature-81330-trait-to-migrate-public-access-to-protected-by-deprecation": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-81330-TraitToMigratePublicAccessToProtectedByDeprecation.html#feature-81330-trait-to-migrate-public-access-to-protected-by-deprecation", + "Changelog\/9.0\/Feature-81330-TraitToMigratePublicAccessToProtectedByDeprecation.html#feature-81330", "Feature: #81330 - Trait to migrate public access to protected by deprecation" ], "feature-81363-ext-form-support-form-element-translation-arguments": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-81363-AcceptFormElementTranslationArguments.html#feature-81363-ext-form-support-form-element-translation-arguments", + "Changelog\/9.0\/Feature-81363-AcceptFormElementTranslationArguments.html#feature-81363", "Feature: #81363 - EXT:form - support form element translation arguments" ], "feature-81409-configurable-route-parameters": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-81409-Configurable-Route-Parameters.html#feature-81409-configurable-route-parameters", + "Changelog\/9.0\/Feature-81409-Configurable-Route-Parameters.html#feature-81409", "Feature: #81409 - Configurable Route Parameters" ], "feature-81464-add-api-for-meta-tag-management": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Feature-81464-AddAPIForMetaTagManagement.html#feature-81464-add-api-for-meta-tag-management", + "Changelog\/9.3\/Feature-81464-AddAPIForMetaTagManagement.html#feature-81464", "Feature: #81464 - Add API for meta tag management" ], "setting-meta-tags": [ @@ -62119,37 +62323,37 @@ "feature-81601-add-possibility-to-write-tests-in-typescript": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-81601-AddPossibilityToWriteTestsInTypeScript.html#feature-81601-add-possibility-to-write-tests-in-typescript", + "Changelog\/9.0\/Feature-81601-AddPossibilityToWriteTestsInTypeScript.html#feature-81601", "Feature: #81601 - Add possibility to write tests in typeScript" ], "feature-81651-query-builder-object-as-argument-in-list-module-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-81651-QueryBuilderObjectAsArgumentInListModuleHook.html#feature-81651-query-builder-object-as-argument-in-list-module-hook", + "Changelog\/9.0\/Feature-81651-QueryBuilderObjectAsArgumentInListModuleHook.html#feature-81651", "Feature: #81651 - Query builder object as argument in list module hook" ], "feature-81656-select-view-helper-supports-required-argument": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-81656-SelectViewHelperSupportsRequiredArgument.html#feature-81656-select-view-helper-supports-required-argument", + "Changelog\/9.0\/Feature-81656-SelectViewHelperSupportsRequiredArgument.html#feature-81656", "Feature: #81656 - Select view helper supports required argument" ], "feature-81741-render-additional-and-data-attributes-in-media-renderer-for-mediaviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-81741-AudioVideoYouTubeVimeoAdditionalAttributes.html#feature-81741-render-additional-and-data-attributes-in-media-renderer-for-mediaviewhelper", + "Changelog\/9.0\/Feature-81741-AudioVideoYouTubeVimeoAdditionalAttributes.html#feature-81741", "Feature: #81741 - Render additional and data-* attributes in media renderer for MediaViewHelper" ], "feature-81775-suffix-form-identifier-with-the-content-element-uid": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-81775-ExtFormSuffixFormIdentifierWithContentElementUid.html#feature-81775-suffix-form-identifier-with-the-content-element-uid", + "Changelog\/9.0\/Feature-81775-ExtFormSuffixFormIdentifierWithContentElementUid.html#feature-81775", "Feature: #81775 - suffix form identifier with the content element uid" ], "feature-81901-extend-t3editor": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-81901-ExtendT3editor.html#feature-81901-extend-t3editor", + "Changelog\/9.0\/Feature-81901-ExtendT3editor.html#feature-81901", "Feature: #81901 - Extend T3editor" ], "prerequisites": [ @@ -62173,13 +62377,13 @@ "feature-82014-extension-scanner": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-82014-ExtensionScanner.html#feature-82014-extension-scanner", + "Changelog\/9.0\/Feature-82014-ExtensionScanner.html#feature-82014", "Feature: #82014 - Extension scanner" ], "feature-82070-exclude-doktypes-in-path-of-search-result-indexed-search": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-82070-ExcludeDoktypesInSearchResult.html#feature-82070-exclude-doktypes-in-path-of-search-result-indexed-search", + "Changelog\/9.0\/Feature-82070-ExcludeDoktypesInSearchResult.html#feature-82070", "Feature: #82070 - Exclude doktypes in path of search result (indexed_search)" ], "exclude-single-doktype": [ @@ -62197,187 +62401,187 @@ "feature-82091-allow-inline-rendering-in-svg-content-object": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-82091-AllowInlineRenderingInSVGContentObject.html#feature-82091-allow-inline-rendering-in-svg-content-object", + "Changelog\/9.0\/Feature-82091-AllowInlineRenderingInSVGContentObject.html#feature-82091", "Feature: #82091 - Allow inline rendering in SVG content object" ], "feature-82108-support-ext-syntax-as-source-in-svg-content-object": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-82108-SupportEXTSyntaxAsSourceInSVGContentObject.html#feature-82108-support-ext-syntax-as-source-in-svg-content-object", + "Changelog\/9.0\/Feature-82108-SupportEXTSyntaxAsSourceInSVGContentObject.html#feature-82108", "Feature: #82108 - Support EXT: syntax as source in SVG content object" ], "feature-82177-add-file-size-validator": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-82177-ExtFormAddFileSizeValidator.html#feature-82177-add-file-size-validator", + "Changelog\/9.0\/Feature-82177-ExtFormAddFileSizeValidator.html#feature-82177", "Feature: #82177 - add file size validator" ], "feature-82213-new-hook-to-determine-if-content-record-is-used-unused": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-82213-NewHookToDetermineIfContentRecordIsUsedUnused.html#feature-82213-new-hook-to-determine-if-content-record-is-used-unused", + "Changelog\/9.0\/Feature-82213-NewHookToDetermineIfContentRecordIsUsedUnused.html#feature-82213", "Feature: #82213 - New hook to determine if content record is used\/unused" ], "feature-82254-store-extension-configuration-as-plain-array": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-82254-StoreExtensionConfigurationAsPlainArray.html#feature-82254-store-extension-configuration-as-plain-array", + "Changelog\/9.0\/Feature-82254-StoreExtensionConfigurationAsPlainArray.html#feature-82254", "Feature: #82254 - Store extension configuration as plain array" ], "feature-82260-separation-of-search-result-path-into-title-uri-linktag": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-82260-SeparationOfSearchResultPathIntoTitleUriLink.html#feature-82260-separation-of-search-result-path-into-title-uri-linktag", + "Changelog\/9.0\/Feature-82260-SeparationOfSearchResultPathIntoTitleUriLink.html#feature-82260", "Feature: #82260 - Separation of search result path into title,uri,linkTag" ], "feature-82266-backend-users-system-maintainers": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-82266-BackendUsersSystemMaintainers.html#feature-82266-backend-users-system-maintainers", + "Changelog\/9.0\/Feature-82266-BackendUsersSystemMaintainers.html#feature-82266", "Feature: #82266 - Backend Users System Maintainers" ], "feature-82303-add-configurable-footnote-to-login-screen": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-82303-AddConfigurableFootnoteToLoginScreen.html#feature-82303-add-configurable-footnote-to-login-screen", + "Changelog\/9.0\/Feature-82303-AddConfigurableFootnoteToLoginScreen.html#feature-82303", "Feature: #82303 - Add configurable footnote to login screen" ], "feature-82354-add-possibility-to-get-a-label-in-a-specific-language": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-82354-AddPossibilityToGetALabelInASpecificLanguage.html#feature-82354-add-possibility-to-get-a-label-in-a-specific-language", + "Changelog\/9.0\/Feature-82354-AddPossibilityToGetALabelInASpecificLanguage.html#feature-82354", "Feature: #82354 - Add possibility to get a label in a specific language" ], "feature-82419-send-frontend-debug-information-as-http-response-header": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-82419-SendFrontendDebugInformationAsHTTPResponseHeader.html#feature-82419-send-frontend-debug-information-as-http-response-header", + "Changelog\/9.0\/Feature-82419-SendFrontendDebugInformationAsHTTPResponseHeader.html#feature-82419", "Feature: #82419 - Send Frontend Debug Information as HTTP Response Header" ], "feature-82426-new-navigation-module-registration-e-g-page-tree": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-82426-NewNavigationModuleRegistrationEgPageTree.html#feature-82426-new-navigation-module-registration-e-g-page-tree", + "Changelog\/9.0\/Feature-82426-NewNavigationModuleRegistrationEgPageTree.html#feature-82426", "Feature: #82426 - New navigation module registration (e.g. Page tree)" ], "feature-82441-inject-logger-when-creating-objects": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-82441-InjectLoggerWhenCreatingObjects.html#feature-82441-inject-logger-when-creating-objects", + "Changelog\/9.0\/Feature-82441-InjectLoggerWhenCreatingObjects.html#feature-82441", "Feature: #82441 - Inject logger when creating objects" ], "feature-82488-possibility-to-modify-the-display-results-before-fluidview-assignment": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-82488-HookToModifyResultsBeforeAssignToView.html#feature-82488-possibility-to-modify-the-display-results-before-fluidview-assignment", + "Changelog\/9.0\/Feature-82488-HookToModifyResultsBeforeAssignToView.html#feature-82488", "Feature: #82488 - Possibility to modify the display results before FluidView assignment" ], "feature-82812-new-syntax-for-importing-typoscript-files": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-82812-NewSyntaxForImportingTypoScriptFiles.html#feature-82812-new-syntax-for-importing-typoscript-files", + "Changelog\/9.0\/Feature-82812-NewSyntaxForImportingTypoScriptFiles.html#feature-82812", "Feature: #82812 - New syntax for importing TypoScript files" ], "feature-82826-tca-allow-label-in-palettes-array": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-82826-TCAAllowLabelInPalettesArray.html#feature-82826-tca-allow-label-in-palettes-array", + "Changelog\/9.0\/Feature-82826-TCAAllowLabelInPalettesArray.html#feature-82826", "Feature: #82826 - TCA Allow label in palettes array" ], "feature-82869-replace-inject-with-typo3-cms-extbase-annotation-inject": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-82869-ReplaceInjectWithTYPO3CMSExtbaseAnnotationInject.html#feature-82869-replace-inject-with-typo3-cms-extbase-annotation-inject", + "Changelog\/9.0\/Feature-82869-ReplaceInjectWithTYPO3CMSExtbaseAnnotationInject.html#feature-82869", "Feature: #82869 - Replace @inject with @TYPO3\\CMS\\Extbase\\Annotation\\Inject" ], "feature-82999-add-a-hook-to-hide-credentials-in-the-configuration-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-82999-AddAHookToHideCredentialsInTheConfigurationModule.html#feature-82999-add-a-hook-to-hide-credentials-in-the-configuration-module", + "Changelog\/9.0\/Feature-82999-AddAHookToHideCredentialsInTheConfigurationModule.html#feature-82999", "Feature: #82999 - Add a hook to hide credentials in the Configuration module" ], "feature-83016-listing-of-page-translations-in-list-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-83016-ListingOfPageTranslationsInListModule.html#feature-83016-listing-of-page-translations-in-list-module", + "Changelog\/9.0\/Feature-83016-ListingOfPageTranslationsInListModule.html#feature-83016", "Feature: #83016 - Listing of page translations in list module" ], "feature-83038-introduce-yarn-as-dependency-manager-for-node-modules": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-83038-IntroduceYarnAsDependencyManagerForNodeModules.html#feature-83038-introduce-yarn-as-dependency-manager-for-node-modules", + "Changelog\/9.0\/Feature-83038-IntroduceYarnAsDependencyManagerForNodeModules.html#feature-83038", "Feature: #83038 - Introduce Yarn as dependency manager for node modules" ], "feature-83078-replace-lazy-with-typo3-cms-extbase-annotation-orm-lazy": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-83078-ReplaceLazyWithTYPO3CMSExtbaseAnnotationORMLazy.html#feature-83078-replace-lazy-with-typo3-cms-extbase-annotation-orm-lazy", + "Changelog\/9.0\/Feature-83078-ReplaceLazyWithTYPO3CMSExtbaseAnnotationORMLazy.html#feature-83078", "Feature: #83078 - Replace @lazy with @TYPO3\\CMS\\Extbase\\Annotation\\ORM\\Lazy" ], "feature-83092-replace-transient-with-typo3-cms-extbase-annotation-orm-transient": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-83092-ReplaceTransientWithTYPO3CMSExtbaseAnnotationORMTransient.html#feature-83092-replace-transient-with-typo3-cms-extbase-annotation-orm-transient", + "Changelog\/9.0\/Feature-83092-ReplaceTransientWithTYPO3CMSExtbaseAnnotationORMTransient.html#feature-83092", "Feature: #83092 - Replace @transient with @TYPO3\\CMS\\Extbase\\Annotation\\ORM\\Transient" ], "feature-83093-replace-cascade-with-typo3-cms-extbase-annotation-orm-cascade": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-83093-ReplaceCascadeWithTYPO3CMSExtbaseAnnotationORMCascade.html#feature-83093-replace-cascade-with-typo3-cms-extbase-annotation-orm-cascade", + "Changelog\/9.0\/Feature-83093-ReplaceCascadeWithTYPO3CMSExtbaseAnnotationORMCascade.html#feature-83093", "Feature: #83093 - Replace @cascade with @TYPO3\\CMS\\Extbase\\Annotation\\ORM\\Cascade" ], "feature-83094-replace-ignorevalidation-with-typo3-cms-extbase-annotation-ignorevalidation": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Feature-83094-ReplaceIgnorevalidationWithTYPO3CMSExtbaseAnnotationIgnoreValidation.html#feature-83094-replace-ignorevalidation-with-typo3-cms-extbase-annotation-ignorevalidation", + "Changelog\/9.0\/Feature-83094-ReplaceIgnorevalidationWithTYPO3CMSExtbaseAnnotationIgnoreValidation.html#feature-83094", "Feature: #83094 - Replace @ignorevalidation with @TYPO3\\CMS\\Extbase\\Annotation\\IgnoreValidation" ], "important-76084-move-install-tool-modules-into-backend-module-menu": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Important-76084-MoveInstallToolModulesIntoBackendModuleMenu.html#important-76084-move-install-tool-modules-into-backend-module-menu", + "Changelog\/9.0\/Important-76084-MoveInstallToolModulesIntoBackendModuleMenu.html#important-76084", "Important: #76084 - Move install tool modules into backend module menu" ], "important-79610-change-signature-and-return-value-for-doesrecordexist-pagelookup": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Important-79610-ChangeSignatureAndReturnValueFordoesRecordExist_pageLookUp.html#important-79610-change-signature-and-return-value-for-doesrecordexist-pagelookup", + "Changelog\/9.0\/Important-79610-ChangeSignatureAndReturnValueFordoesRecordExist_pageLookUp.html#important-79610", "Important: #79610 - Change Signature And Return Value For doesRecordExist_pageLookUp" ], "important-80246-memcachedbackend-marked-transient": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Important-80246-MemcachedBackendMarkedTransient.html#important-80246-memcachedbackend-marked-transient", + "Changelog\/9.0\/Important-80246-MemcachedBackendMarkedTransient.html#important-80246", "Important: #80246 - MemcachedBackend marked transient" ], "important-81023-drop-ext-typo3db-legacy": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Important-81023-DropTypo3db_legacy.html#important-81023-drop-ext-typo3db-legacy", + "Changelog\/9.0\/Important-81023-DropTypo3db_legacy.html#important-81023", "Important: #81023 - Drop EXT:typo3db_legacy" ], "important-81109-simplify-default-backend-layout": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Important-81109-SimplifyDefaultBackendLayout.html#important-81109-simplify-default-backend-layout", + "Changelog\/9.0\/Important-81109-SimplifyDefaultBackendLayout.html#important-81109", "Important: #81109 - Simplify default backend layout" ], "important-81196-languageservice-moved-to-core-extension": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Important-81196-LanguageServiceMovedToCoreExtension.html#important-81196-languageservice-moved-to-core-extension", + "Changelog\/9.0\/Important-81196-LanguageServiceMovedToCoreExtension.html#important-81196", "Important: #81196 - LanguageService moved to core extension" ], "important-81201-tca-populated-available-at-any-request": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Important-81201-TCAPopulatedAvailableAtAnyRequest.html#important-81201-tca-populated-available-at-any-request", + "Changelog\/9.0\/Important-81201-TCAPopulatedAvailableAtAnyRequest.html#important-81201", "Important: #81201 - TCA populated available at any request" ], "feature-81330-dealing-with-properties-that-become-protected": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Important-81330-DealingWithPropertiesThatAreMigratedToProtected.html#feature-81330-dealing-with-properties-that-become-protected", + "Changelog\/9.0\/Important-81330-DealingWithPropertiesThatAreMigratedToProtected.html#feature-81330-1668719172", "Feature: #81330 - Dealing with properties that become protected" ], "intro": [ @@ -62425,67 +62629,67 @@ "important-81474-combine-modules-about-about-modules": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Important-81474-CombineModulesAboutAboutModules.html#important-81474-combine-modules-about-about-modules", + "Changelog\/9.0\/Important-81474-CombineModulesAboutAboutModules.html#important-81474", "Important: #81474 - Combine modules \"about\" & \"about modules\"" ], "important-81568-migrate-chash-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Important-81568-MigrateChashConfiguration.html#important-81568-migrate-chash-configuration", + "Changelog\/9.0\/Important-81568-MigrateChashConfiguration.html#important-81568", "Important: #81568 - Migrate cHash configuration" ], "important-81574-merged-ext-cshmanual-into-ext-backend": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Important-81574-MergedSystemExtensionCshmanualIntoBackend.html#important-81574-merged-ext-cshmanual-into-ext-backend", + "Changelog\/9.0\/Important-81574-MergedSystemExtensionCshmanualIntoBackend.html#important-81574", "Important: #81574 - Merged EXT:cshmanual into EXT:backend" ], "important-81768-create-pages-and-sort-pages-in-context-menu": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Important-81768-CreatePagesAndSortPagesInContextMenu.html#important-81768-create-pages-and-sort-pages-in-context-menu", + "Changelog\/9.0\/Important-81768-CreatePagesAndSortPagesInContextMenu.html#important-81768", "Important: #81768 - Create pages and sort pages in context menu" ], "important-81868-optimize-autoloader-is-no-longer-forced-in-composer-json": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Important-81868-OptimizeAutoloaderIsNoLongerForcedInComposerjson.html#important-81868-optimize-autoloader-is-no-longer-forced-in-composer-json", + "Changelog\/9.0\/Important-81868-OptimizeAutoloaderIsNoLongerForcedInComposerjson.html#important-81868", "Important: #81868 - \"Optimize autoloader\" is no longer forced in composer.json" ], "important-81899-backend-ajax-routes-use-route-ajax-instead-of-ajaxid-parameter": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Important-81899-BackendAJAXRoutesUseRouteajaxInsteadOfAjaxIdParameter.html#important-81899-backend-ajax-routes-use-route-ajax-instead-of-ajaxid-parameter", + "Changelog\/9.0\/Important-81899-BackendAJAXRoutesUseRouteajaxInsteadOfAjaxIdParameter.html#important-81899", "Important: #81899 - Backend AJAX routes use \"&route=\/ajax\/\" instead of \"ajaxId\" parameter" ], "important-82229-fluid-implementation-of-cmsvariableprovider-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Important-82229-FluidImplementationOfCmsVariableProviderRemoved.html#important-82229-fluid-implementation-of-cmsvariableprovider-removed", + "Changelog\/9.0\/Important-82229-FluidImplementationOfCmsVariableProviderRemoved.html#important-82229", "Important: #82229 - Fluid implementation of CmsVariableProvider removed" ], "important-82230-updates-to-the-fluid-template-engine-library": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Important-82230-FluidUpdates.html#important-82230-updates-to-the-fluid-template-engine-library", + "Changelog\/9.0\/Important-82230-FluidUpdates.html#important-82230", "Important: #82230 - Updates to the Fluid template engine library" ], "important-82328-ext-form-use-own-folder-for-form-definitions": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Important-82328-EXTform-UseOwnFolderForFormDefinitions.html#important-82328-ext-form-use-own-folder-for-form-definitions", + "Changelog\/9.0\/Important-82328-EXTform-UseOwnFolderForFormDefinitions.html#important-82328", "Important: #82328 - EXT:form - use own folder for form definitions" ], "important-82445-migrate-pages-language-overlay-into-pages": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Important-82445-MigratePagesLanguageOverlayIntoPages.html#important-82445-migrate-pages-language-overlay-into-pages", + "Changelog\/9.0\/Important-82445-MigratePagesLanguageOverlayIntoPages.html#important-82445", "Important: #82445 - Migrate pages_language_overlay into pages" ], "important-82692-guidelines-for-ext-localconf-php-and-ext-tables-php": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.0\/Important-82692-GuidelinesForExtensionFiles.html#important-82692-guidelines-for-ext-localconf-php-and-ext-tables-php", + "Changelog\/9.0\/Important-82692-GuidelinesForExtensionFiles.html#important-82692", "Important: #82692 - Guidelines for ext_localconf.php and ext_tables.php" ], "9-0-changes": [ @@ -62497,97 +62701,97 @@ "breaking-83638-redirect-functionality-moved-from-sys-domain-to-redirects-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.1\/Breaking-83638-RedirectFunctionalityMovedFromSys_domainToRedirectsModule.html#breaking-83638-redirect-functionality-moved-from-sys-domain-to-redirects-module", + "Changelog\/9.1\/Breaking-83638-RedirectFunctionalityMovedFromSys_domainToRedirectsModule.html#breaking-83638", "Breaking: #83638 - Redirect functionality moved from sys_domain to redirects module" ], "deprecation-81852-deprecated-usage-of-ext-rsaauth": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.1\/Deprecation-81852-DeprecatedUsageOfEXTrsaauth.html#deprecation-81852-deprecated-usage-of-ext-rsaauth", + "Changelog\/9.1\/Deprecation-81852-DeprecatedUsageOfEXTrsaauth.html#deprecation-81852", "Deprecation: #81852 - Deprecated Usage of EXT:rsaauth" ], "deprecation-83503-deprecate-unneeded-rawvalidator": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.1\/Deprecation-83503-DeprecateUnneededRawValidator.html#deprecation-83503-deprecate-unneeded-rawvalidator", + "Changelog\/9.1\/Deprecation-83503-DeprecateUnneededRawValidator.html#deprecation-83503", "Deprecation: #83503 - Deprecate unneeded RawValidator" ], "deprecation-83511-deprecate-abstractvalidatortestcase": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.1\/Deprecation-83511-DeprecateAbstractValidatorTestcase.html#deprecation-83511-deprecate-abstractvalidatortestcase", + "Changelog\/9.1\/Deprecation-83511-DeprecateAbstractValidatorTestcase.html#deprecation-83511", "Deprecation: #83511 - Deprecate AbstractValidatorTestcase" ], "deprecation-83592-impexp-removed-maximum-number-of-records-restriction": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.1\/Deprecation-83592-ImpexpRemovedMaximumNumberOfRecordsRestriction.html#deprecation-83592-impexp-removed-maximum-number-of-records-restriction", + "Changelog\/9.1\/Deprecation-83592-ImpexpRemovedMaximumNumberOfRecordsRestriction.html#deprecation-83592", "Deprecation: #83592 - impexp: Removed \"Maximum number of records\" restriction" ], "deprecation-83596-impexp-removed-max-file-size-restriction": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.1\/Deprecation-83596-ImpexpRemovedMaxFileSizeRestriction.html#deprecation-83596-impexp-removed-max-file-size-restriction", + "Changelog\/9.1\/Deprecation-83596-ImpexpRemovedMaxFileSizeRestriction.html#deprecation-83596", "Deprecation: #83596 - impexp: Removed \"Max file size\" restriction" ], "deprecation-83606-impexp-size-handling-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.1\/Deprecation-83606-ImpexpSizeHandlingRemoved.html#deprecation-83606-impexp-size-handling-removed", + "Changelog\/9.1\/Deprecation-83606-ImpexpSizeHandlingRemoved.html#deprecation-83606", "Deprecation: #83606 - impexp: Size handling removed" ], "feature-61170-add-additional-hook-for-record-list": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.1\/Feature-61170-AddAdditionalHookForRecordList.html#feature-61170-add-additional-hook-for-record-list", + "Changelog\/9.1\/Feature-61170-AddAdditionalHookForRecordList.html#feature-61170", "Feature: #61170 - Add additional hook for record list" ], "feature-83350-add-recursive-filtering-of-arrays": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.1\/Feature-83350-AddRecursiveArrayFiltering.html#feature-83350-add-recursive-filtering-of-arrays", + "Changelog\/9.1\/Feature-83350-AddRecursiveArrayFiltering.html#feature-83350", "Feature: #83350 - Add recursive filtering of arrays" ], "feature-83429-feature-toggles": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.1\/Feature-83429-FeatureToggles.html#feature-83429-feature-toggles", + "Changelog\/9.1\/Feature-83429-FeatureToggles.html#feature-83429", "Feature: #83429 - Feature Toggles" ], "feature-83449-make-list-of-fields-configurable-in-pagetree-overview-in-info-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.1\/Feature-83449-MakeListOfFieldsConfigurableInPagetreeOverviewInInfoModule.html#feature-83449-make-list-of-fields-configurable-in-pagetree-overview-in-info-module", + "Changelog\/9.1\/Feature-83449-MakeListOfFieldsConfigurableInPagetreeOverviewInInfoModule.html#feature-83449", "Feature: #83449 - Make list of fields configurable in Pagetree overview in Info module" ], "feature-83461-show-fieldname-next-to-title-in-debug-mode": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.1\/Feature-83461-ShowFieldnameNextToTitleInDebugMode.html#feature-83461-show-fieldname-next-to-title-in-debug-mode", + "Changelog\/9.1\/Feature-83461-ShowFieldnameNextToTitleInDebugMode.html#feature-83461", "Feature: #83461 - Show fieldname next to title in debug mode" ], "feature-83529-execute-hooks-on-backend-user-login": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.1\/Feature-83529-ExecuteHooksOnBackendUserLogin.html#feature-83529-execute-hooks-on-backend-user-login", + "Changelog\/9.1\/Feature-83529-ExecuteHooksOnBackendUserLogin.html#feature-83529", "Feature: #83529 - Execute hooks on backend user login" ], "feature-83631-system-extension-redirects-has-been-added": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.1\/Feature-83631-SystemExtensionRedirectsHasBeenAdded.html#feature-83631-system-extension-redirects-has-been-added", + "Changelog\/9.1\/Feature-83631-SystemExtensionRedirectsHasBeenAdded.html#feature-83631", "Feature: #83631 - System Extension \"redirects\" has been added" ], "feature-83637-added-new-main-module-site-management": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.1\/Feature-83637-AddedNewMainModuleSiteManagement.html#feature-83637-added-new-main-module-site-management", + "Changelog\/9.1\/Feature-83637-AddedNewMainModuleSiteManagement.html#feature-83637", "Feature: #83637 - Added new main module \"Site Management\"" ], "feature-83677-globally-disable-enable-redirect-hit-statistics": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.1\/Feature-83677-GloballyDisableenableRedirectHitStatistics.html#feature-83677-globally-disable-enable-redirect-hit-statistics", + "Changelog\/9.1\/Feature-83677-GloballyDisableenableRedirectHitStatistics.html#feature-83677", "Feature: #83677 - Globally disable\/enable redirect hit statistics" ], "9-1-changes": [ @@ -62599,373 +62803,373 @@ "breaking-75834-reorder-processing-of-tca-select-items": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Breaking-75834-ReorderProcessingOfTcaSelectItems.html#breaking-75834-reorder-processing-of-tca-select-items", + "Changelog\/9.2\/Breaking-75834-ReorderProcessingOfTcaSelectItems.html#breaking-75834", "Breaking: #75834 - Reorder processing of TCA Select items" ], "breaking-83475-aggregate-validator-information-in-class-schema": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Breaking-83475-AggregateValidatorInformationInClassSchema.html#breaking-83475-aggregate-validator-information-in-class-schema", + "Changelog\/9.2\/Breaking-83475-AggregateValidatorInformationInClassSchema.html#breaking-83475", "Breaking: #83475 - Aggregate validator information in class schema" ], "breaking-83889-e-notice-free-unit-testing": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Breaking-83889-E_NOTICEFreeUnitTesting.html#breaking-83889-e-notice-free-unit-testing", + "Changelog\/9.2\/Breaking-83889-E_NOTICEFreeUnitTesting.html#breaking-83889", "Breaking: #83889 - E_NOTICE free unit testing" ], "breaking-84055-migrate-sys-notes-away-from-extbase": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Breaking-84055-MigrateSys_notesAwayFromExtbase.html#breaking-84055-migrate-sys-notes-away-from-extbase", + "Changelog\/9.2\/Breaking-84055-MigrateSys_notesAwayFromExtbase.html#breaking-84055", "Breaking: #84055 - Migrate sys_notes away from extbase" ], "breaking-84131-removed-classes-of-language-extension": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Breaking-84131-RemovedClassesOfLanguageExtension.html#breaking-84131-removed-classes-of-language-extension", + "Changelog\/9.2\/Breaking-84131-RemovedClassesOfLanguageExtension.html#breaking-84131", "Breaking: #84131 - Removed classes of language extension" ], "breaking-84148-requirejs-module-for-language-handling-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Breaking-84148-RequireJSModuleForLanguageHandlingRemoved.html#breaking-84148-requirejs-module-for-language-handling-removed", + "Changelog\/9.2\/Breaking-84148-RequireJSModuleForLanguageHandlingRemoved.html#breaking-84148", "Breaking: #84148 - RequireJS module for language handling removed" ], "breaking-87081-language-update-scheduler-task-doesn-t-work-after-upgrading-to-typo3-v9-2": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Breaking-87081-LanguageUpdateSchedulerTaskDoesNotWorkAfterTYPO3Upgrade.html#breaking-87081-language-update-scheduler-task-doesn-t-work-after-upgrading-to-typo3-v9-2", + "Changelog\/9.2\/Breaking-87081-LanguageUpdateSchedulerTaskDoesNotWorkAfterTYPO3Upgrade.html#breaking-87081", "Breaking: #87081 - Language update (scheduler) task doesn't work after upgrading to TYPO3 >= v9.2" ], "deprecation-81434-string-cache-frontend-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-81434-StringCacheFrontendDeprecated.html#deprecation-81434-string-cache-frontend-deprecated", + "Changelog\/9.2\/Deprecation-81434-StringCacheFrontendDeprecated.html#deprecation-81434", "Deprecation: #81434 - String Cache Frontend Deprecated" ], "deprecation-83475-aggregate-validator-information-in-class-schema": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-83475-AggregateValidatorInformationInClassSchema-2.html#deprecation-83475-aggregate-validator-information-in-class-schema", + "Changelog\/9.2\/Deprecation-83475-AggregateValidatorInformationInClassSchema-2.html#deprecation-83475-1668719171", "Deprecation: #83475 - Aggregate validator information in class schema" ], "deprecation-83506-deprecated-usage-of-tsfe-fe-user-sesdata-in-ts-conditions": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-83506-DeprecateFeUserSesDataCondition.html#deprecation-83506-deprecated-usage-of-tsfe-fe-user-sesdata-in-ts-conditions", + "Changelog\/9.2\/Deprecation-83506-DeprecateFeUserSesDataCondition.html#deprecation-83506", "Deprecation: #83506 - Deprecated usage of TSFE:fe_user|sesData in TS conditions" ], "deprecation-83740-cleanup-of-abstractrecordlist-breaks-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-83740-CleanupOfAbstractRecordListBreaksHook.html#deprecation-83740-cleanup-of-abstractrecordlist-breaks-hook", + "Changelog\/9.2\/Deprecation-83740-CleanupOfAbstractRecordListBreaksHook.html#deprecation-83740", "Deprecation: #83740 - Cleanup of AbstractRecordList breaks hook" ], "deprecation-83803-deprecate-eidrequesthandler": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-83803-DeprecateEidRequestHandler.html#deprecation-83803-deprecate-eidrequesthandler", + "Changelog\/9.2\/Deprecation-83803-DeprecateEidRequestHandler.html#deprecation-83803", "Deprecation: #83803 - Deprecate EidRequestHandler" ], "deprecation-83806-deprecate-page-javascriptlibs-and-page-javascriptlibs-jquery": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-83806-DeprecatePagejavascriptLibsAndPagejavascriptLibsjQuery.html#deprecation-83806-deprecate-page-javascriptlibs-and-page-javascriptlibs-jquery", + "Changelog\/9.2\/Deprecation-83806-DeprecatePagejavascriptLibsAndPagejavascriptLibsjQuery.html#deprecation-83806", "Deprecation: #83806 - Deprecate page.javascriptLibs and page.javascriptLibs.jQuery" ], "deprecation-83844-deprecated-usage-of-top-launchview": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-83844-DeprecatedUsageOfToplaunchView.html#deprecation-83844-deprecated-usage-of-top-launchview", + "Changelog\/9.2\/Deprecation-83844-DeprecatedUsageOfToplaunchView.html#deprecation-83844", "Deprecation: #83844 - Deprecated usage of top.launchView" ], "deprecation-83853-backend-ajaxrequesthandler": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-83853-BackendAjaxRequestHandler.html#deprecation-83853-backend-ajaxrequesthandler", + "Changelog\/9.2\/Deprecation-83853-BackendAjaxRequestHandler.html#deprecation-83853", "Deprecation: #83853 - Backend AjaxRequestHandler" ], "deprecation-83883-page-not-found-and-error-handling-in-frontend": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-83883-PageNotFoundAndErrorHandlingInFrontend.html#deprecation-83883-page-not-found-and-error-handling-in-frontend", + "Changelog\/9.2\/Deprecation-83883-PageNotFoundAndErrorHandlingInFrontend.html#deprecation-83883", "Deprecation: #83883 - Page Not Found And Error handling in Frontend" ], "deprecation-83904-array-handling-in-abstracttreeview": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-83904-ArrayHandlingInAbstractTreeView.html#deprecation-83904-array-handling-in-abstracttreeview", + "Changelog\/9.2\/Deprecation-83904-ArrayHandlingInAbstractTreeView.html#deprecation-83904", "Deprecation: #83904 - Array handling in AbstractTreeView" ], "deprecation-83905-typoscriptfrontendcontroller-page-cache-reg1": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-83905-TypoScriptFrontendController-page_cache_reg1.html#deprecation-83905-typoscriptfrontendcontroller-page-cache-reg1", + "Changelog\/9.2\/Deprecation-83905-TypoScriptFrontendController-page_cache_reg1.html#deprecation-83905", "Deprecation: #83905 - TypoScriptFrontendController->page_cache_reg1" ], "deprecation-83942-deprecated-filefacade-geticon": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-83942-DeprecatedFileFacadegetIcon.html#deprecation-83942-deprecated-filefacade-geticon", + "Changelog\/9.2\/Deprecation-83942-DeprecatedFileFacadegetIcon.html#deprecation-83942", "Deprecation: #83942 - Deprecated FileFacade::getIcon" ], "deprecation-83964-ext-form-streamline-usage-of-icons": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-83964-ExtForm-StreamlineUsageOfIcons.html#deprecation-83964-ext-form-streamline-usage-of-icons", + "Changelog\/9.2\/Deprecation-83964-ExtForm-StreamlineUsageOfIcons.html#deprecation-83964", "Deprecation: #83964 - EXT:form - streamline usage of icons" ], "deprecation-84045-adminpanel-hook-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84045-AdminPanelHookDeprecated.html#deprecation-84045-adminpanel-hook-deprecated", + "Changelog\/9.2\/Deprecation-84045-AdminPanelHookDeprecated.html#deprecation-84045", "Deprecation: #84045 - AdminPanel Hook deprecated" ], "deprecation-84109-deprecate-dependencyresolver": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84109-DeprecateDependencyResolver.html#deprecation-84109-deprecate-dependencyresolver", + "Changelog\/9.2\/Deprecation-84109-DeprecateDependencyResolver.html#deprecation-84109", "Deprecation: #84109 - Deprecate DependencyResolver" ], "deprecation-84118-various-public-methods-of-adminpanelview-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84118-VariousPublicMethodsOfAdminPanelViewDeprecated.html#deprecation-84118-various-public-methods-of-adminpanelview-deprecated", + "Changelog\/9.2\/Deprecation-84118-VariousPublicMethodsOfAdminPanelViewDeprecated.html#deprecation-84118", "Deprecation: #84118 - Various public methods of AdminPanelView deprecated" ], "deprecation-84145-deprecate-ext-islinkable": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84145-DeprecateExt_isLinkable.html#deprecation-84145-deprecate-ext-islinkable", + "Changelog\/9.2\/Deprecation-84145-DeprecateExt_isLinkable.html#deprecation-84145", "Deprecation: #84145 - Deprecate ext_isLinkable" ], "deprecation-84171-adding-generalutility-geturl-requestheaders-as-non-associative-array-are-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84171-AddingGeneralUtilitygetUrlRequestHeadersAsNon-associativeArrayAreDeprecated.html#deprecation-84171-adding-generalutility-geturl-requestheaders-as-non-associative-array-are-deprecated", + "Changelog\/9.2\/Deprecation-84171-AddingGeneralUtilitygetUrlRequestHeadersAsNon-associativeArrayAreDeprecated.html#deprecation-84171", "Deprecation: #84171 - Adding GeneralUtility::getUrl RequestHeaders as non-associative array are deprecated" ], "deprecation-84195-protected-methods-and-properties-in-editdocumentcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84195-ProtectedMethodsAndPropertiesInEditDocumentController.html#deprecation-84195-protected-methods-and-properties-in-editdocumentcontroller", + "Changelog\/9.2\/Deprecation-84195-ProtectedMethodsAndPropertiesInEditDocumentController.html#deprecation-84195", "Deprecation: #84195 - Protected methods and properties in EditDocumentController" ], "deprecation-84222-usage-of-gridcontainer-form-element": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84222-ExtForm-GridContainer.html#deprecation-84222-usage-of-gridcontainer-form-element", + "Changelog\/9.2\/Deprecation-84222-ExtForm-GridContainer.html#deprecation-84222", "Deprecation: #84222- Usage of GridContainer form element" ], "deprecation-84273-protected-methods-and-properties-in-filesystemnavigationframecontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84273-ProtectedMethodsAndPropertiesInFileSystemNavigationFrameController.html#deprecation-84273-protected-methods-and-properties-in-filesystemnavigationframecontroller", + "Changelog\/9.2\/Deprecation-84273-ProtectedMethodsAndPropertiesInFileSystemNavigationFrameController.html#deprecation-84273", "Deprecation: #84273 - Protected methods and properties in FileSystemNavigationFrameController" ], "deprecation-84274-protected-methods-and-properties-in-logincontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84274-ProtectedMethodsAndPropertiesInLoginController.html#deprecation-84274-protected-methods-and-properties-in-logincontroller", + "Changelog\/9.2\/Deprecation-84274-ProtectedMethodsAndPropertiesInLoginController.html#deprecation-84274", "Deprecation: #84274 - Protected methods and properties in LoginController" ], "deprecation-84275-protected-methods-and-properties-in-logoutcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84275-ProtectedMethodInLogoutController.html#deprecation-84275-protected-methods-and-properties-in-logoutcontroller", + "Changelog\/9.2\/Deprecation-84275-ProtectedMethodInLogoutController.html#deprecation-84275", "Deprecation: #84275 - Protected methods and properties in LogoutController" ], "deprecation-84284-protected-methods-and-properties-in-contentelement-elementinformationcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84284-ProtectedMethodsAndPropertiesInContentElementElementInformationController.html#deprecation-84284-protected-methods-and-properties-in-contentelement-elementinformationcontroller", + "Changelog\/9.2\/Deprecation-84284-ProtectedMethodsAndPropertiesInContentElementElementInformationController.html#deprecation-84284", "Deprecation: #84284 - Protected methods and properties in ContentElement\/ElementInformationController" ], "deprecation-84285-protected-methods-and-properties-in-moveelementcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84285-ProtectedMethodsAndPropertiesInMoveElementController.html#deprecation-84285-protected-methods-and-properties-in-moveelementcontroller", + "Changelog\/9.2\/Deprecation-84285-ProtectedMethodsAndPropertiesInMoveElementController.html#deprecation-84285", "Deprecation: #84285 - Protected methods and properties in MoveElementController" ], "deprecation-84289-use-serverrequestinterface-in-file-createfoldercontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84289-UseServerRequestInterfaceInFileCreateFolderController.html#deprecation-84289-use-serverrequestinterface-in-file-createfoldercontroller", + "Changelog\/9.2\/Deprecation-84289-UseServerRequestInterfaceInFileCreateFolderController.html#deprecation-84289", "Deprecation: #84289 - Use ServerRequestInterface in File\/CreateFolderController" ], "deprecation-84295-use-serverrequestinterface-in-file-editfilecontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84295-UseServerRequestInterfaceInFileEditFileController.html#deprecation-84295-use-serverrequestinterface-in-file-editfilecontroller", + "Changelog\/9.2\/Deprecation-84295-UseServerRequestInterfaceInFileEditFileController.html#deprecation-84295", "Deprecation: #84295 - Use ServerRequestInterface in File\/EditFileController" ], "deprecation-84307-protected-methods-and-properties-in-newcontentelementcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84307-ProtectedMethodsAndPropertiesInNewContentElementController.html#deprecation-84307-protected-methods-and-properties-in-newcontentelementcontroller", + "Changelog\/9.2\/Deprecation-84307-ProtectedMethodsAndPropertiesInNewContentElementController.html#deprecation-84307", "Deprecation: #84307 - Protected methods and properties in NewContentElementController" ], "deprecation-84321-protected-methods-and-properties-in-addcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84321-ProtectedMethodsAndPropertiesInAddController.html#deprecation-84321-protected-methods-and-properties-in-addcontroller", + "Changelog\/9.2\/Deprecation-84321-ProtectedMethodsAndPropertiesInAddController.html#deprecation-84321", "Deprecation: #84321 - Protected methods and properties in AddController" ], "deprecation-84324-use-serverrequestinterface-in-file-filecontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84324-UseServerRequestInterfaceInFileFileController.html#deprecation-84324-use-serverrequestinterface-in-file-filecontroller", + "Changelog\/9.2\/Deprecation-84324-UseServerRequestInterfaceInFileFileController.html#deprecation-84324", "Deprecation: #84324 - Use ServerRequestInterface in File\/FileController" ], "deprecation-84326-protected-methods-and-properties-in-fileuploadcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84326-ProtectedMethodsAndPropertiesInFileUploadController.html#deprecation-84326-protected-methods-and-properties-in-fileuploadcontroller", + "Changelog\/9.2\/Deprecation-84326-ProtectedMethodsAndPropertiesInFileUploadController.html#deprecation-84326", "Deprecation: #84326 - Protected methods and properties in FileUploadController" ], "deprecation-84327-deprecated-public-methods-and-properties-in-wizard-editcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84327-DeprecatedPublicMethodsAndPropertiesInWizardEditController.html#deprecation-84327-deprecated-public-methods-and-properties-in-wizard-editcontroller", + "Changelog\/9.2\/Deprecation-84327-DeprecatedPublicMethodsAndPropertiesInWizardEditController.html#deprecation-84327", "Deprecation: #84327 - Deprecated public methods and properties in Wizard\/EditController" ], "deprecation-84332-protected-methods-and-properties-in-renamefilecontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84332-ProtectedMethodsAndPropertiesInRenameFileController.html#deprecation-84332-protected-methods-and-properties-in-renamefilecontroller", + "Changelog\/9.2\/Deprecation-84332-ProtectedMethodsAndPropertiesInRenameFileController.html#deprecation-84332", "Deprecation: #84332 - Protected methods and properties in RenameFileController" ], "deprecation-84334-protected-methods-and-properties-in-replacefilecontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84334-ProtectedMethodsAndPropertiesInReplaceFileController.html#deprecation-84334-protected-methods-and-properties-in-replacefilecontroller", + "Changelog\/9.2\/Deprecation-84334-ProtectedMethodsAndPropertiesInReplaceFileController.html#deprecation-84334", "Deprecation: #84334 - Protected methods and properties in ReplaceFileController" ], "deprecation-84337-protected-methods-and-properties-in-listcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84337-ProtectedMethodsAndPropertiesInListController.html#deprecation-84337-protected-methods-and-properties-in-listcontroller", + "Changelog\/9.2\/Deprecation-84337-ProtectedMethodsAndPropertiesInListController.html#deprecation-84337", "Deprecation: #84337 - Protected methods and properties in ListController" ], "deprecation-84338-protected-methods-and-properties-in-tablecontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84338-ProtectedMethodsAndPropertiesInTableController.html#deprecation-84338-protected-methods-and-properties-in-tablecontroller", + "Changelog\/9.2\/Deprecation-84338-ProtectedMethodsAndPropertiesInTableController.html#deprecation-84338", "Deprecation: #84338 - Protected methods and properties in TableController" ], "deprecation-84341-protected-methods-and-properties-in-newrecordcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84341-ProtectedMethodsAndPropertiesInNewRecordController.html#deprecation-84341-protected-methods-and-properties-in-newrecordcontroller", + "Changelog\/9.2\/Deprecation-84341-ProtectedMethodsAndPropertiesInNewRecordController.html#deprecation-84341", "Deprecation: #84341 - Protected methods and properties in NewRecordController" ], "deprecation-84369-protected-methods-and-properties-in-usersettingscontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84369-ProtectedMethodsAndPropertiesInUserSettingsController.html#deprecation-84369-protected-methods-and-properties-in-usersettingscontroller", + "Changelog\/9.2\/Deprecation-84369-ProtectedMethodsAndPropertiesInUserSettingsController.html#deprecation-84369", "Deprecation: #84369 - Protected methods and properties in UserSettingsController" ], "deprecation-84374-protected-methods-and-properties-in-simpledatahandlercontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84374-ProtectedMethodsAndPropertiesInSimpleDataHandlerController.html#deprecation-84374-protected-methods-and-properties-in-simpledatahandlercontroller", + "Changelog\/9.2\/Deprecation-84374-ProtectedMethodsAndPropertiesInSimpleDataHandlerController.html#deprecation-84374", "Deprecation: #84374 - Protected methods and properties in SimpleDataHandlerController" ], "deprecation-84399-class-recordlist-renamed-to-recordlistcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84399-ClassRecordListRenamedToRecordListController.html#deprecation-84399-class-recordlist-renamed-to-recordlistcontroller", + "Changelog\/9.2\/Deprecation-84399-ClassRecordListRenamedToRecordListController.html#deprecation-84399", "Deprecation: #84399 - Class RecordList renamed to RecordListController" ], "deprecation-84407-ajax-request-methods-in-rsaencryptionencoder": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84407-AJAXRequestMethodsInRsaEncryptionEncoder.html#deprecation-84407-ajax-request-methods-in-rsaencryptionencoder", + "Changelog\/9.2\/Deprecation-84407-AJAXRequestMethodsInRsaEncryptionEncoder.html#deprecation-84407", "Deprecation: #84407 - AJAX request methods in RsaEncryptionEncoder" ], "deprecation-84407-rsa-public-key-generation-without-content-type-application-json": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84407-RSAPublicKeyGenerationWithoutContentTypeApplicationJson.html#deprecation-84407-rsa-public-key-generation-without-content-type-application-json", + "Changelog\/9.2\/Deprecation-84407-RSAPublicKeyGenerationWithoutContentTypeApplicationJson.html#deprecation-84407-1668719171", "Deprecation: #84407 - RSA public key generation without \"Content-Type: application\/json\"" ], "deprecation-84409-imagemanipulationwizard-renamed-to-imagemanipulationcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84409-ImageManipulationWizardRenamedToImageManipulationController.html#deprecation-84409-imagemanipulationwizard-renamed-to-imagemanipulationcontroller", + "Changelog\/9.2\/Deprecation-84409-ImageManipulationWizardRenamedToImageManipulationController.html#deprecation-84409", "Deprecation: #84409 - ImageManipulationWizard renamed to ImageManipulationController" ], "deprecation-84410-codecompletion-renamed-to-codecompletioncontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84410-CodeCompletionRenamedToCodeCompletionController.html#deprecation-84410-codecompletion-renamed-to-codecompletioncontroller", + "Changelog\/9.2\/Deprecation-84410-CodeCompletionRenamedToCodeCompletionController.html#deprecation-84410", "Deprecation: #84410 - CodeCompletion renamed to CodeCompletionController" ], "deprecation-84411-typoscriptreferenceloader-renamed-to-typoscriptreferencecontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84411-TypoScriptReferenceLoaderRenamedToTypoScriptReferenceController.html#deprecation-84411-typoscriptreferenceloader-renamed-to-typoscriptreferencecontroller", + "Changelog\/9.2\/Deprecation-84411-TypoScriptReferenceLoaderRenamedToTypoScriptReferenceController.html#deprecation-84411", "Deprecation: #84411 - TypoScriptReferenceLoader renamed to TypoScriptReferenceController" ], "deprecation-84463-pagetsconfig-option-mod-web-list-newwizards-dropped": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84463-PageTsConfigOptionModweb_listnewWizardsDropped.html#deprecation-84463-pagetsconfig-option-mod-web-list-newwizards-dropped", + "Changelog\/9.2\/Deprecation-84463-PageTsConfigOptionModweb_listnewWizardsDropped.html#deprecation-84463", "Deprecation: #84463 - PageTsConfig option mod.web_list.newWizards dropped" ], "deprecation-84530-default-values-from-globals-deprecated-in-formengine": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84530-DefaultValuesFromGlobalsDeprecatedInFormEngine.html#deprecation-84530-default-values-from-globals-deprecated-in-formengine", + "Changelog\/9.2\/Deprecation-84530-DefaultValuesFromGlobalsDeprecatedInFormEngine.html#deprecation-84530", "Deprecation: #84530 - Default values from globals deprecated in FormEngine" ], "deprecation-84549-deprecate-methods-in-coreversionservice": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84549-DeprecateMethodsInCoreVersionService.html#deprecation-84549-deprecate-methods-in-coreversionservice", + "Changelog\/9.2\/Deprecation-84549-DeprecateMethodsInCoreVersionService.html#deprecation-84549", "Deprecation: #84549 - Deprecate methods in CoreVersionService" ], "deprecation-84637-templateservice-linkdata-functionality-moved-in-pagelinkbuilder": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84637-TemplateService-linkDataFunctionalityMovedInPageLinkBuilder.html#deprecation-84637-templateservice-linkdata-functionality-moved-in-pagelinkbuilder", + "Changelog\/9.2\/Deprecation-84637-TemplateService-linkDataFunctionalityMovedInPageLinkBuilder.html#deprecation-84637", "Deprecation: #84637 - TemplateService->linkData() functionality moved in PageLinkBuilder" ], "deprecation-84641-deprecated-adminpanel-related-methods-and-properties-in-frontendbackenduserauthentication": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Deprecation-84641-DeprecatedAdminPanelRelatedMethods.html#deprecation-84641-deprecated-adminpanel-related-methods-and-properties-in-frontendbackenduserauthentication", + "Changelog\/9.2\/Deprecation-84641-DeprecatedAdminPanelRelatedMethods.html#deprecation-84641", "Deprecation: #84641 - Deprecated AdminPanel related methods and properties in FrontendBackendUserAuthentication" ], "feature-48013-add-support-for-progressive-images": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-48013-AddSupportForProgressiveImages.html#feature-48013-add-support-for-progressive-images", + "Changelog\/9.2\/Feature-48013-AddSupportForProgressiveImages.html#feature-48013", "Feature: #48013 - Add support for progressive images" ], "feature-61981-search-all-fields-in-suggest-wizard": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-61981-SearchAllFieldsInSuggestWizard.html#feature-61981-search-all-fields-in-suggest-wizard", + "Changelog\/9.2\/Feature-61981-SearchAllFieldsInSuggestWizard.html#feature-61981", "Feature: #61981 - Search all fields in Suggest Wizard" ], "feature-69187-ext-scheduler-create-task-group-from-add-edit-task-form": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-69187-EXTSchedulerCreateTaskGroupFromAddeditTaskForm.html#feature-69187-ext-scheduler-create-task-group-from-add-edit-task-form", + "Changelog\/9.2\/Feature-69187-EXTSchedulerCreateTaskGroupFromAddeditTaskForm.html#feature-69187", "Feature: #69187 - EXT:Scheduler: Create task group from add\/edit task form" ], "feature-71911-add-constraint-hook-in-databaserecordlist-makesearchstring": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-71911-AddConstraintHookInDatabaseRecordListMakeSearchString.html#feature-71911-add-constraint-hook-in-databaserecordlist-makesearchstring", + "Changelog\/9.2\/Feature-71911-AddConstraintHookInDatabaseRecordListMakeSearchString.html#feature-71911", "Feature: #71911 - Add constraint hook in DatabaseRecordList->makeSearchString" ], "feature-76349-integrate-swift-mailer-s-spool-transport-into-typo3": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-76349-IntegrateSwiftMailersSpoolTransportIntoTYPO3.html#feature-76349-integrate-swift-mailer-s-spool-transport-into-typo3", + "Changelog\/9.2\/Feature-76349-IntegrateSwiftMailersSpoolTransportIntoTYPO3.html#feature-76349", "Feature: #76349 - Integrate Swift Mailer's spool transport into TYPO3" ], "spool-using-memory": [ @@ -62983,49 +63187,49 @@ "feature-77685-create-a-save-and-open-copy-button-when-saving-a-content-element": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-77685-CreateASaveAndOpenCopyButtonWhenSavingAContentElement.html#feature-77685-create-a-save-and-open-copy-button-when-saving-a-content-element", + "Changelog\/9.2\/Feature-77685-CreateASaveAndOpenCopyButtonWhenSavingAContentElement.html#feature-77685", "Feature: #77685 - Create a save and open copy button when saving a content element" ], "feature-78332-allow-setting-a-default-replyto-email-address-for-notification-mails": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-78332-AllowSettingADefaultReplyTo-email-addressForNotification-mails.html#feature-78332-allow-setting-a-default-replyto-email-address-for-notification-mails", + "Changelog\/9.2\/Feature-78332-AllowSettingADefaultReplyTo-email-addressForNotification-mails.html#feature-78332", "Feature: #78332 - Allow setting a default replyTo-email-address for notification-mails" ], "feature-80124-ext-form-allow-setting-of-validation-messages-in-form-editor": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-80124-EXTform-AllowSettingOfValidationMessagesInFormEditor.html#feature-80124-ext-form-allow-setting-of-validation-messages-in-form-editor", + "Changelog\/9.2\/Feature-80124-EXTform-AllowSettingOfValidationMessagesInFormEditor.html#feature-80124", "Feature: #80124 - EXT:form - allow setting of validation messages in form editor" ], "feature-80263-add-a-new-signal-slot-for-user-switch": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-80263-AddANewSignalSlotForUserSwitch.html#feature-80263-add-a-new-signal-slot-for-user-switch", + "Changelog\/9.2\/Feature-80263-AddANewSignalSlotForUserSwitch.html#feature-80263", "Feature: #80263 - Add a new signal slot for user switch" ], "feature-82704-add-readonly-and-required-attributes-to-textareaviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-82704-AddReadonlyAndRequiredAttributesToTextareaViewHelper.html#feature-82704-add-readonly-and-required-attributes-to-textareaviewhelper", + "Changelog\/9.2\/Feature-82704-AddReadonlyAndRequiredAttributesToTextareaViewHelper.html#feature-82704", "Feature: #82704 - Add readonly and required attributes to TextareaViewHelper" ], "feature-83460-hide-restricted-columns-in-page-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-83460-HideRestrictedColumns.html#feature-83460-hide-restricted-columns-in-page-module", + "Changelog\/9.2\/Feature-83460-HideRestrictedColumns.html#feature-83460", "Feature: #83460 - Hide restricted columns in page module" ], "feature-83506-retrieve-session-data-in-ts-conditions": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-83506-RetrieveSessionDataInTSConditions.html#feature-83506-retrieve-session-data-in-ts-conditions", + "Changelog\/9.2\/Feature-83506-RetrieveSessionDataInTSConditions.html#feature-83506", "Feature: #83506 - Retrieve session data in TS conditions" ], "feature-83556-add-toggle-switches-to-formengine": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-83556-AddToggleSwitchesToFormEngine.html#feature-83556-add-toggle-switches-to-formengine", + "Changelog\/9.2\/Feature-83556-AddToggleSwitchesToFormEngine.html#feature-83556", "Feature: #83556 - Add toggle switches to FormEngine" ], "rendertype-checkboxtoggle": [ @@ -63049,109 +63253,109 @@ "feature-83711-featureflag-unifiedpagetranslationhandling": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-83711-FeatureFlagUnifiedPageTranslationHandling.html#feature-83711-featureflag-unifiedpagetranslationhandling", + "Changelog\/9.2\/Feature-83711-FeatureFlagUnifiedPageTranslationHandling.html#feature-83711", "Feature: #83711 - FeatureFlag: unifiedPageTranslationHandling" ], "feature-83725-support-for-psr-15-http-middlewares": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-83725-SupportForPSR-15HTTPMiddlewares.html#feature-83725-support-for-psr-15-http-middlewares", + "Changelog\/9.2\/Feature-83725-SupportForPSR-15HTTPMiddlewares.html#feature-83725", "Feature: #83725 - Support for PSR-15 HTTP middlewares" ], "feature-83736-extended-psr-7-requests-with-typo3-normalized-server-parameters": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-83736-ExtendedPSR-7RequestsWithTYPO3ServerParameters.html#feature-83736-extended-psr-7-requests-with-typo3-normalized-server-parameters", + "Changelog\/9.2\/Feature-83736-ExtendedPSR-7RequestsWithTYPO3ServerParameters.html#feature-83736", "Feature: #83736 - Extended PSR-7 requests with TYPO3 normalized server parameters" ], "feature-83740-cleanup-of-abstractrecordlist-breaks-hook": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-83740-CleanupOfAbstractRecordListBreaksHook.html#feature-83740-cleanup-of-abstractrecordlist-breaks-hook", + "Changelog\/9.2\/Feature-83740-CleanupOfAbstractRecordListBreaksHook.html#feature-83740", "Feature: #83740 - Cleanup of AbstractRecordList breaks hook" ], "feature-83748-show-value-of-fields-in-debug-mode": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-83748-ShowValueOfFieldsInDebugMode.html#feature-83748-show-value-of-fields-in-debug-mode", + "Changelog\/9.2\/Feature-83748-ShowValueOfFieldsInDebugMode.html#feature-83748", "Feature: #83748 - Show value of fields in debug mode" ], "feature-83906-disable-single-formengine-data-provider": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-83906-DisableSingleFormEngineDataProvider.html#feature-83906-disable-single-formengine-data-provider", + "Changelog\/9.2\/Feature-83906-DisableSingleFormEngineDataProvider.html#feature-83906", "Feature: #83906 - Disable single FormEngine data provider" ], "feature-83942-provide-viewhelper-to-render-icon-for-resources": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-83942-ProvideViewHelperToRenderIconForResources.html#feature-83942-provide-viewhelper-to-render-icon-for-resources", + "Changelog\/9.2\/Feature-83942-ProvideViewHelperToRenderIconForResources.html#feature-83942", "Feature: #83942 - Provide ViewHelper to render icon for resources" ], "feature-83965-make-position-of-sys-notes-configurable": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-83965-MakePositionOfSysNotesConfigurable.html#feature-83965-make-position-of-sys-notes-configurable", + "Changelog\/9.2\/Feature-83965-MakePositionOfSysNotesConfigurable.html#feature-83965", "Feature: #83965 - Make position of sys notes configurable" ], "feature-84045-new-adminpanel-module-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-84045-NewAdminPanelModuleAPI.html#feature-84045-new-adminpanel-module-api", + "Changelog\/9.2\/Feature-84045-NewAdminPanelModuleAPI.html#feature-84045", "Feature: #84045 - new AdminPanel module API" ], "feature-84120-absolute-urls-for-typolink-viewhelpers": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-84120-AbsoluteURLsForTypolinkViewHelpers.html#feature-84120-absolute-urls-for-typolink-viewhelpers", + "Changelog\/9.2\/Feature-84120-AbsoluteURLsForTypolinkViewHelpers.html#feature-84120", "Feature: #84120 - Absolute URLs for typolink ViewHelpers" ], "feature-84153-introduce-a-generic-environment-class": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-84153-IntroduceAGenericEnvironmentClass.html#feature-84153-introduce-a-generic-environment-class", + "Changelog\/9.2\/Feature-84153-IntroduceAGenericEnvironmentClass.html#feature-84153", "Feature: #84153 - Introduce a generic Environment class" ], "feature-84159-extract-admin-panel-to-own-extension": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-84159-ExtractAdminPanelToOwnExtension.html#feature-84159-extract-admin-panel-to-own-extension", + "Changelog\/9.2\/Feature-84159-ExtractAdminPanelToOwnExtension.html#feature-84159", "Feature: #84159 - Extract admin panel to own extension" ], "feature-84216-new-attribute-debug-in-renderviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-84216-FluidPartialDebugOutputShouldNotBeVisibleInAdminPanel.html#feature-84216-new-attribute-debug-in-renderviewhelper", + "Changelog\/9.2\/Feature-84216-FluidPartialDebugOutputShouldNotBeVisibleInAdminPanel.html#feature-84216", "Feature: #84216 - New attribute \"debug\" in RenderViewHelper" ], "feature-84466-request-aware-interfaces-added-to-reports": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-84466-RequestAwareInterfacesAddedToReports.html#feature-84466-request-aware-interfaces-added-to-reports", + "Changelog\/9.2\/Feature-84466-RequestAwareInterfacesAddedToReports.html#feature-84466", "Feature: #84466 - Request aware interfaces added to reports" ], "feature-84517-recordlist-make-csv-delimiter-configurable": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-84517-Recordlist-MakeCsvDelimiterConfigurable.html#feature-84517-recordlist-make-csv-delimiter-configurable", + "Changelog\/9.2\/Feature-84517-Recordlist-MakeCsvDelimiterConfigurable.html#feature-84517", "Feature: #84517 - Recordlist - Make csv delimiter configurable" ], "feature-84545-allow-temporary-files-to-be-stored-outside-the-document-root": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-84545-AllowTemporaryFilesToBeStoredOutsideTheDocumentRoot.html#feature-84545-allow-temporary-files-to-be-stored-outside-the-document-root", + "Changelog\/9.2\/Feature-84545-AllowTemporaryFilesToBeStoredOutsideTheDocumentRoot.html#feature-84545", "Feature: #84545 - Allow temporary files to be stored outside the document root" ], "feature-84549-usage-of-new-rest-api-on-get-typo3-org": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-84549-UsageOfNewRESTAPIOnGettypo3org.html#feature-84549-usage-of-new-rest-api-on-get-typo3-org", + "Changelog\/9.2\/Feature-84549-UsageOfNewRESTAPIOnGettypo3org.html#feature-84549", "Feature: #84549 - Usage of new REST API on get.typo3.org" ], "feature-84581-introduce-site-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Feature-84581-SiteHandling.html#feature-84581-introduce-site-handling", + "Changelog\/9.2\/Feature-84581-SiteHandling.html#feature-84581", "Feature: #84581 - Introduce Site Handling" ], "typo3conf-sites-folder": [ @@ -63181,25 +63385,25 @@ "important-83724-api-and-behavior-change-in-request-handler-classes": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Important-83724-APIAndBehaviorChangeInRequestHandlerClasses.html#important-83724-api-and-behavior-change-in-request-handler-classes", + "Changelog\/9.2\/Important-83724-APIAndBehaviorChangeInRequestHandlerClasses.html#important-83724", "Important: #83724 - API and behavior change in request handler classes" ], "important-83869-removed-request-type-specific-code-in-bootstrap": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Important-83869-RemovedRequestTypeSpecificCodeInBootstrap.html#important-83869-removed-request-type-specific-code-in-bootstrap", + "Changelog\/9.2\/Important-83869-RemovedRequestTypeSpecificCodeInBootstrap.html#important-83869", "Important: #83869 - Removed request type specific code in Bootstrap" ], "important-84420-properly-escape-reserved-chars-in-yaml": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Important-84420-ProperlyEscapeReservedCharsInYaml.html#important-84420-properly-escape-reserved-chars-in-yaml", + "Changelog\/9.2\/Important-84420-ProperlyEscapeReservedCharsInYaml.html#important-84420", "Important: #84420 - Properly escape reserved chars in YAML" ], "important-84658-keep-sorting-value-for-deleted-records": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.2\/Important-84658-KeepSortingForDeletedRecords.html#important-84658-keep-sorting-value-for-deleted-records", + "Changelog\/9.2\/Important-84658-KeepSortingForDeletedRecords.html#important-84658", "Important: #84658 - Keep sorting value for deleted records" ], "9-2-changes": [ @@ -63211,67 +63415,67 @@ "breaking-84680-removed-unused-locallang-files-from-ext-lang": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Breaking-84680-RemovedUnusedLocallangFilesFromEXTlang.html#breaking-84680-removed-unused-locallang-files-from-ext-lang", + "Changelog\/9.3\/Breaking-84680-RemovedUnusedLocallangFilesFromEXTlang.html#breaking-84680", "Breaking: #84680 - Removed unused locallang files from EXT:lang" ], "breaking-84744-raise-doctrine-dbal-version": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Breaking-84744-RaiseDoctrinedbal-version.html#breaking-84744-raise-doctrine-dbal-version", + "Changelog\/9.3\/Breaking-84744-RaiseDoctrinedbal-version.html#breaking-84744", "Breaking: #84744 - Raise doctrine\/dbal-version" ], "breaking-84810-remove-explicitconfirmationoftranslation": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Breaking-84810-RemoveExplicitConfirmationOfTranslation.html#breaking-84810-remove-explicitconfirmationoftranslation", + "Changelog\/9.3\/Breaking-84810-RemoveExplicitConfirmationOfTranslation.html#breaking-84810", "Breaking: #84810 - Remove explicitConfirmationOfTranslation" ], "breaking-84877-localization-of-page-on-column-basis-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Breaking-84877-LocalizationOfPageOnColumnBasisRemoved.html#breaking-84877-localization-of-page-on-column-basis-removed", + "Changelog\/9.3\/Breaking-84877-LocalizationOfPageOnColumnBasisRemoved.html#breaking-84877-1668719183", "Breaking: #84877 - Localization of page on column basis removed" ], "breaking-84877-localizationrepository-marked-as-internal": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Breaking-84877-LocalizationRepositoryMarkedAsInternal.html#breaking-84877-localizationrepository-marked-as-internal", + "Changelog\/9.3\/Breaking-84877-LocalizationRepositoryMarkedAsInternal.html#breaking-84877-1668719195", "Breaking: #84877 - LocalizationRepository marked as internal" ], "breaking-84877-methods-of-localization-repository-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Breaking-84877-MethodsOfLocalizationRepositoryChanged.html#breaking-84877-methods-of-localization-repository-changed", + "Changelog\/9.3\/Breaking-84877-MethodsOfLocalizationRepositoryChanged.html#breaking-84877", "Breaking: #84877 - Methods of localization repository changed" ], "breaking-84877-route-of-language-retrieval-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Breaking-84877-RouteOfLanguageRetrievalChanged.html#breaking-84877-route-of-language-retrieval-changed", + "Changelog\/9.3\/Breaking-84877-RouteOfLanguageRetrievalChanged.html#breaking-84877-1668719171", "Breaking: #84877 - Route of language retrieval changed" ], "breaking-85025-enumerations-are-now-final": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Breaking-85025-EnumerationsAreNowFinal.html#breaking-85025-enumerations-are-now-final", + "Changelog\/9.3\/Breaking-85025-EnumerationsAreNowFinal.html#breaking-85025", "Breaking: #85025 - Enumerations are now final" ], "breaking-85036-removed-support-for-non-namespaced-classes-in-extbase": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Breaking-85036-RemoveSupportForNonNamespacedClassesInExtbase.html#breaking-85036-removed-support-for-non-namespaced-classes-in-extbase", + "Changelog\/9.3\/Breaking-85036-RemoveSupportForNonNamespacedClassesInExtbase.html#breaking-85036", "Breaking: #85036 - Removed support for non-namespaced classes in Extbase" ], "deprecation-81686-accessing-core-typoscript-with-txt-file-extension-has-been-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Deprecation-81686-AccessingCoreTypoScriptWithTxtFileExtensionHasBeenDeprecated.html#deprecation-81686-accessing-core-typoscript-with-txt-file-extension-has-been-deprecated", + "Changelog\/9.3\/Deprecation-81686-AccessingCoreTypoScriptWithTxtFileExtensionHasBeenDeprecated.html#deprecation-81686", "Deprecation: #81686 - Accessing core TypoScript with .txt file extension has been deprecated" ], "deprecation-83167-replace-validate-with-typo3-cms-extbase-annotation-validate": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Deprecation-83167-ReplaceValidateWithTYPO3CMSExtbaseAnnotationValidate.html#deprecation-83167-replace-validate-with-typo3-cms-extbase-annotation-validate", + "Changelog\/9.3\/Deprecation-83167-ReplaceValidateWithTYPO3CMSExtbaseAnnotationValidate.html#deprecation-83167", "Deprecation: #83167 - Replace @validate with @TYPO3\\CMS\\Extbase\\Annotation\\Validate" ], "validators-for-class-properties": [ @@ -63295,157 +63499,157 @@ "deprecation-83976-moved-file-extension-detection-to-fal-driver": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Deprecation-83976-MovedFileExtensionDetectionToFALDriver.html#deprecation-83976-moved-file-extension-detection-to-fal-driver", + "Changelog\/9.3\/Deprecation-83976-MovedFileExtensionDetectionToFALDriver.html#deprecation-83976", "Deprecation: #83976 - Moved file extension detection to FAL driver" ], "deprecation-84680-move-last-language-files-away-from-ext-lang-and-remove-ext-lang-completely": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Deprecation-84680-MoveLastLanguageFilesAwayFromExtlangAndRemoveExtlangCompletely.html#deprecation-84680-move-last-language-files-away-from-ext-lang-and-remove-ext-lang-completely", + "Changelog\/9.3\/Deprecation-84680-MoveLastLanguageFilesAwayFromExtlangAndRemoveExtlangCompletely.html#deprecation-84680", "Deprecation: #84680 - Move last language files away from ext:lang and remove ext:lang completely" ], "deprecation-84725-sys-domain-resolving-moved-into-middleware": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Deprecation-84725-SysDomainResolvingMovedIntoMiddleware.html#deprecation-84725-sys-domain-resolving-moved-into-middleware", + "Changelog\/9.3\/Deprecation-84725-SysDomainResolvingMovedIntoMiddleware.html#deprecation-84725", "Deprecation: #84725 - sys_domain resolving moved into middleware" ], "deprecation-84965-various-typoscriptfrontendcontroller-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Deprecation-84965-VariousTypoScriptFrontendControllerMethods.html#deprecation-84965-various-typoscriptfrontendcontroller-methods", + "Changelog\/9.3\/Deprecation-84965-VariousTypoScriptFrontendControllerMethods.html#deprecation-84965", "Deprecation: #84965 - Various TypoScriptFrontendController methods" ], "deprecation-84980-backenduserauthentication-addtscomment": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Deprecation-84980-BackendUserAuthentication-addTScommentDeprecated.html#deprecation-84980-backenduserauthentication-addtscomment", + "Changelog\/9.3\/Deprecation-84980-BackendUserAuthentication-addTScommentDeprecated.html#deprecation-84980", "Deprecation: #84980 - BackendUserAuthentication->addTScomment()" ], "deprecation-84981-backenduserauthentication-simplelog": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Deprecation-84981-BackendUserAuthentication-simplelogDeprecated.html#deprecation-84981-backenduserauthentication-simplelog", + "Changelog\/9.3\/Deprecation-84981-BackendUserAuthentication-simplelogDeprecated.html#deprecation-84981", "Deprecation: #84981 - BackendUserAuthentication->simplelog()" ], "deprecation-84984-protected-user-tsconfig-properties-in-backenduserauthentication": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Deprecation-84984-ProtectedUserTSconfigPropertiesInBackendUserAuthentication.html#deprecation-84984-protected-user-tsconfig-properties-in-backenduserauthentication", + "Changelog\/9.3\/Deprecation-84984-ProtectedUserTSconfigPropertiesInBackendUserAuthentication.html#deprecation-84984", "Deprecation: #84984 - Protected user TSconfig properties in BackendUserAuthentication" ], "deprecation-84993-deprecate-some-tsconfig-related-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Deprecation-84993-DeprecateSomeTSconfigRelatedMethods.html#deprecation-84993-deprecate-some-tsconfig-related-methods", + "Changelog\/9.3\/Deprecation-84993-DeprecateSomeTSconfigRelatedMethods.html#deprecation-84993", "Deprecation: #84993 - Deprecate some TSconfig related methods" ], "deprecation-84994-backendutility-getpidformodtsconfig": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Deprecation-84994-BackendUtilitygetPidForModTSconfigDeprecated.html#deprecation-84994-backendutility-getpidformodtsconfig", + "Changelog\/9.3\/Deprecation-84994-BackendUtilitygetPidForModTSconfigDeprecated.html#deprecation-84994", "Deprecation: #84994 - BackendUtility::getPidForModTSconfig()" ], "deprecation-85005-deprecate-methods-and-constants-in-validatorresolver": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Deprecation-85005-DeprecateMethodsAndConstantsInValidatorResolver.html#deprecation-85005-deprecate-methods-and-constants-in-validatorresolver", + "Changelog\/9.3\/Deprecation-85005-DeprecateMethodsAndConstantsInValidatorResolver.html#deprecation-85005", "Deprecation: #85005 - Deprecate methods and constants in ValidatorResolver" ], "deprecation-85012-getvalidationresults-of-argument-class-and-arguments-class": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Deprecation-85012-OnlyValidateMethodParamsIfNeeded.html#deprecation-85012-getvalidationresults-of-argument-class-and-arguments-class", + "Changelog\/9.3\/Deprecation-85012-OnlyValidateMethodParamsIfNeeded.html#deprecation-85012", "Deprecation: #85012 - GetValidationResults of Argument:class and Arguments::class" ], "deprecation-84982-overriding-page-tsconfig-mod-with-user-tsconfig-mod": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Deprecation-85016-OverridingPageTSconfigModWithUserTSconfigModDeprecated.html#deprecation-84982-overriding-page-tsconfig-mod-with-user-tsconfig-mod", + "Changelog\/9.3\/Deprecation-85016-OverridingPageTSconfigModWithUserTSconfigModDeprecated.html#deprecation-84982", "Deprecation: #84982 - Overriding page TSconfig mod. with user TSconfig mod." ], "deprecation-85027-saltedpasswordsutility-isusageenabled": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Deprecation-85027-SaltedPasswordsRelatedMethodsAndClasses.html#deprecation-85027-saltedpasswordsutility-isusageenabled", + "Changelog\/9.3\/Deprecation-85027-SaltedPasswordsRelatedMethodsAndClasses.html#deprecation-85027", "Deprecation: #85027 - SaltedPasswordsUtility::isUsageEnabled()" ], "deprecation-85078-pagerepository-versioningpreview": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Deprecation-85078-PageRepositoryVersioningPreview.html#deprecation-85078-pagerepository-versioningpreview", + "Changelog\/9.3\/Deprecation-85078-PageRepositoryVersioningPreview.html#deprecation-85078", "Deprecation: #85078 - PageRepository->versioningPreview" ], "deprecation-85086-generalutility-arraytologstring": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Deprecation-85086-GeneralUtilityArrayToLogString.html#deprecation-85086-generalutility-arraytologstring", + "Changelog\/9.3\/Deprecation-85086-GeneralUtilityArrayToLogString.html#deprecation-85086", "Deprecation: #85086 - GeneralUtility::arrayToLogString()" ], "deprecation-85102-phpoptionsutility": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Deprecation-85102-PhpOptionsUtility.html#deprecation-85102-phpoptionsutility", + "Changelog\/9.3\/Deprecation-85102-PhpOptionsUtility.html#deprecation-85102", "Deprecation: #85102 - PhpOptionsUtility" ], "deprecation-85113-legacy-backend-module-routing-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Deprecation-85113-LegacyBackendModuleRoutingMethods.html#deprecation-85113-legacy-backend-module-routing-methods", + "Changelog\/9.3\/Deprecation-85113-LegacyBackendModuleRoutingMethods.html#deprecation-85113", "Deprecation: #85113 - Legacy Backend Module Routing methods" ], "deprecation-85120-javascriptencoder": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Deprecation-85120-JavaScriptEncoder.html#deprecation-85120-javascriptencoder", + "Changelog\/9.3\/Deprecation-85120-JavaScriptEncoder.html#deprecation-85120", "Deprecation: #85120 - JavaScriptEncoder" ], "deprecation-85122-functionality-in-charsetconverter": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Deprecation-85122-FunctionalityInCharsetConverter.html#deprecation-85122-functionality-in-charsetconverter", + "Changelog\/9.3\/Deprecation-85122-FunctionalityInCharsetConverter.html#deprecation-85122", "Deprecation: #85122 - Functionality in CharsetConverter" ], "deprecation-85123-constants-related-to-services": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Deprecation-85123-ConstantsRelatedToServices.html#deprecation-85123-constants-related-to-services", + "Changelog\/9.3\/Deprecation-85123-ConstantsRelatedToServices.html#deprecation-85123", "Deprecation: #85123 - Constants related to Services" ], "deprecation-85124-redirecting-urlhandler-hook-concept": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Deprecation-85124-RedirectingUrlHandlerHookConcept.html#deprecation-85124-redirecting-urlhandler-hook-concept", + "Changelog\/9.3\/Deprecation-85124-RedirectingUrlHandlerHookConcept.html#deprecation-85124", "Deprecation: #85124 - Redirecting urlHandler Hook Concept" ], "deprecation-85125-deprecate-usages-of-charsetconverter-in-core": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Deprecation-85125-UsagesOfCharsetConverterInCore.html#deprecation-85125-deprecate-usages-of-charsetconverter-in-core", + "Changelog\/9.3\/Deprecation-85125-UsagesOfCharsetConverterInCore.html#deprecation-85125", "Deprecation: #85125 - Deprecate usages of CharsetConverter in core" ], "deprecation-85130-tsfe-getpageshortcut-moved-to-pagerepository": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Deprecation-85130-TSFE-getPageShortcutMovedToPageRepository.html#deprecation-85130-tsfe-getpageshortcut-moved-to-pagerepository", + "Changelog\/9.3\/Deprecation-85130-TSFE-getPageShortcutMovedToPageRepository.html#deprecation-85130", "Deprecation: #85130 - $TSFE->getPageShortcut() moved to PageRepository" ], "feature-69274-preserve-image-rotation-if-orient-is-saved-in-exif": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Feature-69274-PreserveImageRotationIfOrientIsSavedInExif.html#feature-69274-preserve-image-rotation-if-orient-is-saved-in-exif", + "Changelog\/9.3\/Feature-69274-PreserveImageRotationIfOrientIsSavedInExif.html#feature-69274", "Feature: #69274 - Preserve image rotation if orient is saved in exif" ], "feature-71644-add-metadata-to-filebrowser-search": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Feature-71644-AddMetadataToFilebrowserSearch.html#feature-71644-add-metadata-to-filebrowser-search", + "Changelog\/9.3\/Feature-71644-AddMetadataToFilebrowserSearch.html#feature-71644", "Feature: #71644 - Add metadata to filebrowser search" ], "feature-79889-saltedpasswords-supports-php-password-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Feature-79889-SaltedpasswordsSupportPHPPasswordAPI.html#feature-79889-saltedpasswords-supports-php-password-api", + "Changelog\/9.3\/Feature-79889-SaltedpasswordsSupportPHPPasswordAPI.html#feature-79889", "Feature: #79889 - Saltedpasswords supports PHP password API" ], "using-the-meta-tag-api": [ @@ -63469,13 +63673,13 @@ "feature-81794-password-fields-in-the-install-tool": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Feature-81794-PasswordFieldsInTheInstallTool.html#feature-81794-password-fields-in-the-install-tool", + "Changelog\/9.3\/Feature-81794-PasswordFieldsInTheInstallTool.html#feature-81794", "Feature: #81794 - Password fields in the Install tool" ], "feature-82511-ext-form-add-html5-date-form-element": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Feature-82511-ExtFormAddHtml5DateElement.html#feature-82511-ext-form-add-html5-date-form-element", + "Changelog\/9.3\/Feature-82511-ExtFormAddHtml5DateElement.html#feature-82511", "Feature: #82511 - EXT:form add HTML5 date form element" ], "date-form-element": [ @@ -63493,19 +63697,19 @@ "feature-83167-replace-validate-with-typo3-cms-extbase-annotation-validate": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Feature-83167-ReplaceValidateWithTYPO3CMSExtbaseAnnotationValidate.html#feature-83167-replace-validate-with-typo3-cms-extbase-annotation-validate", + "Changelog\/9.3\/Feature-83167-ReplaceValidateWithTYPO3CMSExtbaseAnnotationValidate.html#feature-83167", "Feature: #83167 - Replace @validate with @TYPO3\\CMS\\Extbase\\Annotation\\Validate" ], "feature-83983-improved-modulelinkviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Feature-83983-ImprovedModuleLinkViewHelper.html#feature-83983-improved-modulelinkviewhelper", + "Changelog\/9.3\/Feature-83983-ImprovedModuleLinkViewHelper.html#feature-83983", "Feature: #83983 - Improved ModuleLinkViewHelper" ], "feature-84650-introduce-fluid-data-processor-for-language-menus": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Feature-84650-IntroduceLanguageMenuProcessor.html#feature-84650-introduce-fluid-data-processor-for-language-menus", + "Changelog\/9.3\/Feature-84650-IntroduceLanguageMenuProcessor.html#feature-84650", "Feature: #84650 - Introduce fluid data processor for language menus" ], "example-typoscript-configuration": [ @@ -63523,19 +63727,19 @@ "feature-84749-hide-duplicate-button-by-default": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Feature-84749-HideDuplicateButtonByDefault.html#feature-84749-hide-duplicate-button-by-default", + "Changelog\/9.3\/Feature-84749-HideDuplicateButtonByDefault.html#feature-84749", "Feature: #84749 - Hide \"duplicate\" button by default" ], "feature-84760-typoscript-conditions-for-site-and-sitelanguage": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Feature-84760-TypoScriptConditionsForSiteAndSiteLanguage.html#feature-84760-typoscript-conditions-for-site-and-sitelanguage", + "Changelog\/9.3\/Feature-84760-TypoScriptConditionsForSiteAndSiteLanguage.html#feature-84760", "Feature: #84760 - TypoScript conditions for site and siteLanguage" ], "feature-84775-extend-hmenu-to-support-auto-filling-of-special-value-for-special-language": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Feature-84775-ExtendHMENUForLanguageMenus.html#feature-84775-extend-hmenu-to-support-auto-filling-of-special-value-for-special-language", + "Changelog\/9.3\/Feature-84775-ExtendHMENUForLanguageMenus.html#feature-84775", "Feature: #84775 - Extend HMENU to support auto filling of special.value for special=language" ], "changed-options": [ @@ -63547,37 +63751,37 @@ "feature-84780-remove-entries-in-localstorage-by-key-prefix": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Feature-84780-RemoveEntriesInLocalStorageByKeyPrefix.html#feature-84780-remove-entries-in-localstorage-by-key-prefix", + "Changelog\/9.3\/Feature-84780-RemoveEntriesInLocalStorageByKeyPrefix.html#feature-84780", "Feature: #84780 - Remove entries in localStorage by key prefix" ], "feature-84780-store-icons-fetched-by-the-icon-api-in-localstorage": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Feature-84780-StoreIconsFetchedByTheIconAPIInLocalStorage.html#feature-84780-store-icons-fetched-by-the-icon-api-in-localstorage", + "Changelog\/9.3\/Feature-84780-StoreIconsFetchedByTheIconAPIInLocalStorage.html#feature-84780-1668719171", "Feature: #84780 - Store icons fetched by the Icon API in localStorage" ], "feature-84798-add-seo-fields-to-pages-tca": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Feature-84798-AddSEOFieldsToPagesTCA.html#feature-84798-add-seo-fields-to-pages-tca", + "Changelog\/9.3\/Feature-84798-AddSEOFieldsToPagesTCA.html#feature-84798", "Feature: #84798 - Add SEO fields to Pages TCA" ], "feature-84894-add-runtimecachewriter-to-logging-framework": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Feature-84894-AddRuntimeCacheWriterToLoggingFramework.html#feature-84894-add-runtimecachewriter-to-logging-framework", + "Changelog\/9.3\/Feature-84894-AddRuntimeCacheWriterToLoggingFramework.html#feature-84894", "Feature: #84894 - Add RuntimeCacheWriter to Logging Framework" ], "feature-84932-sort-subpages-by-nav-title": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Feature-84932-SortSubpagesByNavTitle.html#feature-84932-sort-subpages-by-nav-title", + "Changelog\/9.3\/Feature-84932-SortSubpagesByNavTitle.html#feature-84932", "Feature: #84932 - Sort subpages by nav_title" ], "feature-84983-be-viewhelper-for-editdocumentcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Feature-84983-BEViewHelperForEditDocumentController.html#feature-84983-be-viewhelper-for-editdocumentcontroller", + "Changelog\/9.3\/Feature-84983-BEViewHelperForEditDocumentController.html#feature-84983", "Feature: #84983 - BE ViewHelper for EditDocumentController" ], "new-record-uri-and-link-view-helper": [ @@ -63595,31 +63799,31 @@ "feature-85017-user-tsconfig-shown-in-configuration-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Feature-85017-UserTSconfigShowInConfigurationModule.html#feature-85017-user-tsconfig-shown-in-configuration-module", + "Changelog\/9.3\/Feature-85017-UserTSconfigShowInConfigurationModule.html#feature-85017", "Feature: #85017 - User TSconfig shown in Configuration module" ], "feature-85147-render-seo-meta-tags-in-frontend": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Feature-85147-RenderSEOMetaTagsInFrontend.html#feature-85147-render-seo-meta-tags-in-frontend", + "Changelog\/9.3\/Feature-85147-RenderSEOMetaTagsInFrontend.html#feature-85147", "Feature: #85147 - Render SEO meta tags in frontend" ], "feature-85160-auto-create-management-db-fields-from-tca-ctrl": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Feature-85160-AutoCreateManagementDBFieldsFromTCACtrl.html#feature-85160-auto-create-management-db-fields-from-tca-ctrl", + "Changelog\/9.3\/Feature-85160-AutoCreateManagementDBFieldsFromTCACtrl.html#feature-85160", "Feature: #85160 - Auto create management DB fields from TCA ctrl" ], "important-84715-set-exclude-property-for-tt-content-fields": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Important-84715-SetExcludePropertyForTt_contentFields.html#important-84715-set-exclude-property-for-tt-content-fields", + "Changelog\/9.3\/Important-84715-SetExcludePropertyForTt_contentFields.html#important-84715", "Important: #84715 - Set exclude property for tt_content fields" ], "important-85026-salted-passwords-changes": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Important-85026-SaltedpasswordsChanges.html#important-85026-salted-passwords-changes", + "Changelog\/9.3\/Important-85026-SaltedpasswordsChanges.html#important-85026", "Important: #85026 - salted passwords changes" ], "data-thriftness": [ @@ -63643,7 +63847,7 @@ "important-85116-changed-visibility-of-charsetconverter-initialization-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.3\/Important-85116-ChangedVisibilityOfCharsetConverterInitializationMethods.html#important-85116-changed-visibility-of-charsetconverter-initialization-methods", + "Changelog\/9.3\/Important-85116-ChangedVisibilityOfCharsetConverterInitializationMethods.html#important-85116", "Important: #85116 - Changed visibility of CharsetConverter initialization methods" ], "9-3-changes": [ @@ -63655,445 +63859,445 @@ "breaking-85080-method-isenabled-added-to-renderableinterface-and-finisherinterface": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Breaking-85080-MethodIsEnabledAddedToRenderableInterfaceAndFinisherInterface.html#breaking-85080-method-isenabled-added-to-renderableinterface-and-finisherinterface", + "Changelog\/9.4\/Breaking-85080-MethodIsEnabledAddedToRenderableInterfaceAndFinisherInterface.html#breaking-85080", "Breaking: #85080 - Method \"isEnabled()\" added to RenderableInterface and FinisherInterface" ], "breaking-85398-drop-documentation-extension": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Breaking-85398-DropDocumentationExtension.html#breaking-85398-drop-documentation-extension", + "Changelog\/9.4\/Breaking-85398-DropDocumentationExtension.html#breaking-85398", "Breaking: #85398 - Drop documentation extension" ], "breaking-85761-authentication-chain-changes": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Breaking-85761-AuthenticationChainChanges.html#breaking-85761-authentication-chain-changes", + "Changelog\/9.4\/Breaking-85761-AuthenticationChainChanges.html#breaking-85761", "Breaking: #85761 - Authentication chain changes" ], "deprecation-65578-config-concatenatejsandcss-and-concatenatefiles": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-65578-ConfigconcatenateJsAndCssAndConcatenateFiles.html#deprecation-65578-config-concatenatejsandcss-and-concatenatefiles", + "Changelog\/9.4\/Deprecation-65578-ConfigconcatenateJsAndCssAndConcatenateFiles.html#deprecation-65578", "Deprecation: #65578 - config.concatenateJsAndCss and concatenateFiles" ], "deprecation-81430-typoscripttemplatemodulecontroller-renderlist": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-81430-TypoScriptTemplateModuleControllerrenderList.html#deprecation-81430-typoscripttemplatemodulecontroller-renderlist", + "Changelog\/9.4\/Deprecation-81430-TypoScriptTemplateModuleControllerrenderList.html#deprecation-81430", "Deprecation: #81430 - TypoScriptTemplateModuleController::renderList" ], "deprecation-83750-adapt-tca-signature-for-customcontrols": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-83750-AdaptTCASignatureForInlineCustomControl.html#deprecation-83750-adapt-tca-signature-for-customcontrols", + "Changelog\/9.4\/Deprecation-83750-AdaptTCASignatureForInlineCustomControl.html#deprecation-83750", "Deprecation: #83750 - Adapt TCA signature for customControls" ], "deprecation-84133-deprecate-ishiddenformelement-and-isreadonlyformelement": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-84133-Deprecate_isHiddenFormElementAnd_isReadOnlyFormElement.html#deprecation-84133-deprecate-ishiddenformelement-and-isreadonlyformelement", + "Changelog\/9.4\/Deprecation-84133-Deprecate_isHiddenFormElementAnd_isReadOnlyFormElement.html#deprecation-84133", "Deprecation: #84133 - Deprecate _isHiddenFormElement and _isReadOnlyFormElement" ], "deprecation-84375-protected-methods-and-properties-in-pagelayoutcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-84375-ProtectedMethodsAndPropertiesInPageLayoutController.html#deprecation-84375-protected-methods-and-properties-in-pagelayoutcontroller", + "Changelog\/9.4\/Deprecation-84375-ProtectedMethodsAndPropertiesInPageLayoutController.html#deprecation-84375", "Deprecation: #84375 - Protected methods and properties in PageLayoutController" ], "deprecation-84387-deprecated-method-and-property-in-schedulermodulecontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-84387-DeprecatedMethodAndPropertyInSchedulerModuleController.html#deprecation-84387-deprecated-method-and-property-in-schedulermodulecontroller", + "Changelog\/9.4\/Deprecation-84387-DeprecatedMethodAndPropertyInSchedulerModuleController.html#deprecation-84387", "Deprecation: #84387 - Deprecated method and property in SchedulerModuleController" ], "deprecation-84414-backendutility-shortcutexists": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-84414-BackendUtilityshortcutExists.html#deprecation-84414-backendutility-shortcutexists", + "Changelog\/9.4\/Deprecation-84414-BackendUtilityshortcutExists.html#deprecation-84414", "Deprecation: #84414 - BackendUtility::shortcutExists" ], "deprecation-84584-adminpanelview-isadminmoduleenabled-and-ext-maketoolbar-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-84584-AdminPanelViewIsAdminModuleEnabledAndExt_makeToolbarDeprecated.html#deprecation-84584-adminpanelview-isadminmoduleenabled-and-ext-maketoolbar-deprecated", + "Changelog\/9.4\/Deprecation-84584-AdminPanelViewIsAdminModuleEnabledAndExt_makeToolbarDeprecated.html#deprecation-84584", "Deprecation: #84584 - AdminPanelView: isAdminModuleEnabled and ext_makeToolbar deprecated" ], "deprecation-85004-deprecate-methods-in-reflectionservice": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85004-DeprecateMethodsInReflectionService.html#deprecation-85004-deprecate-methods-in-reflectionservice", + "Changelog\/9.4\/Deprecation-85004-DeprecateMethodsInReflectionService.html#deprecation-85004", "Deprecation: #85004 - Deprecate methods in ReflectionService" ], "deprecation-85164-language-related-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85164-LanguageRelatedMethods.html#deprecation-85164-language-related-methods", + "Changelog\/9.4\/Deprecation-85164-LanguageRelatedMethods.html#deprecation-85164", "Deprecation: #85164 - Language related methods" ], "deprecation-85196-protect-setupmodulecontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85196-ProtectSetupModuleController.html#deprecation-85196-protect-setupmodulecontroller", + "Changelog\/9.4\/Deprecation-85196-ProtectSetupModuleController.html#deprecation-85196", "Deprecation: #85196 - Protect SetupModuleController" ], "deprecation-85285-deprecated-path-related-constants": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85285-DeprecatedSystemConstants.html#deprecation-85285-deprecated-path-related-constants", + "Changelog\/9.4\/Deprecation-85285-DeprecatedSystemConstants.html#deprecation-85285", "Deprecation: #85285 - Deprecated path related constants" ], "deprecation-85300-datahandler-resorting-method": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85300-DataHandlerResortingMethod.html#deprecation-85300-datahandler-resorting-method", + "Changelog\/9.4\/Deprecation-85300-DataHandlerResortingMethod.html#deprecation-85300", "Deprecation: #85300 - DataHandler resorting method" ], "deprecation-85389-various-public-properties-in-favor-of-context-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85389-VariousPublicPropertiesInFavorOfContextAPI.html#deprecation-85389-various-public-properties-in-favor-of-context-api", + "Changelog\/9.4\/Deprecation-85389-VariousPublicPropertiesInFavorOfContextAPI.html#deprecation-85389", "Deprecation: #85389 - Various public properties in favor of Context API" ], "deprecation-85394-class-core-database-pdohelper-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85394-ClassCoreDatabasePdoHelperDeprecated.html#deprecation-85394-class-core-database-pdohelper-deprecated", + "Changelog\/9.4\/Deprecation-85394-ClassCoreDatabasePdoHelperDeprecated.html#deprecation-85394", "Deprecation: #85394 - Class CoreDatabasePdoHelper deprecated" ], "deprecation-85408-templateservice-init-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85408-TemplateServiceInitDeprecated.html#deprecation-85408-templateservice-init-deprecated", + "Changelog\/9.4\/Deprecation-85408-TemplateServiceInitDeprecated.html#deprecation-85408", "Deprecation: #85408 - TemplateService init() deprecated" ], "deprecation-85445-templateservice-getfilename": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85445-TemplateService-getFileName.html#deprecation-85445-templateservice-getfilename", + "Changelog\/9.4\/Deprecation-85445-TemplateService-getFileName.html#deprecation-85445", "Deprecation: #85445 - TemplateService->getFileName" ], "deprecation-85451-contentobjectrenderer-calcintexplode-deprecated": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85451-ContentObjectRenderer-calcIntExplodeDeprecated.html#deprecation-85451-contentobjectrenderer-calcintexplode-deprecated", + "Changelog\/9.4\/Deprecation-85451-ContentObjectRenderer-calcIntExplodeDeprecated.html#deprecation-85451", "Deprecation: #85451 - ContentObjectRenderer->calcIntExplode() deprecated" ], "deprecation-85462-signal-hasinstalledextensions": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85462-SignalHasInstalledExtensions.html#deprecation-85462-signal-hasinstalledextensions", + "Changelog\/9.4\/Deprecation-85462-SignalHasInstalledExtensions.html#deprecation-85462-1668719172", "Deprecation: #85462 - Signal 'hasInstalledExtensions'" ], "deprecation-85462-signal-tablesdefinitionisbeingbuilt": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85462-SignalTablesDefinitionIsBeingBuilt.html#deprecation-85462-signal-tablesdefinitionisbeingbuilt", + "Changelog\/9.4\/Deprecation-85462-SignalTablesDefinitionIsBeingBuilt.html#deprecation-85462", "Deprecation: #85462 - Signal 'tablesDefinitionIsBeingBuilt'" ], "deprecation-85543-language-related-properties-in-typoscriptfrontendcontroller-and-pagerepository": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85543-Language-relatedPropertiesInTypoScriptFrontendControllerAndPageRepository.html#deprecation-85543-language-related-properties-in-typoscriptfrontendcontroller-and-pagerepository", + "Changelog\/9.4\/Deprecation-85543-Language-relatedPropertiesInTypoScriptFrontendControllerAndPageRepository.html#deprecation-85543", "Deprecation: #85543 - Language-related properties in TypoScriptFrontendController and PageRepository" ], "deprecation-85553-pagerepository-language-related-methods-use-null-as-default-value": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85553-PageRepositoryLanguage-relatedMethodsUseNullAsDefaultValue.html#deprecation-85553-pagerepository-language-related-methods-use-null-as-default-value", + "Changelog\/9.4\/Deprecation-85553-PageRepositoryLanguage-relatedMethodsUseNullAsDefaultValue.html#deprecation-85553", "Deprecation: #85553 - PageRepository language-related methods use null as default value" ], "deprecation-85554-pagerepository-checkworkspaceaccess": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85554-PageRepository-checkWorkspaceAccess.html#deprecation-85554-pagerepository-checkworkspaceaccess", + "Changelog\/9.4\/Deprecation-85554-PageRepository-checkWorkspaceAccess.html#deprecation-85554", "Deprecation: #85554 - PageRepository->checkWorkspaceAccess" ], "deprecation-85555-typoscriptfrontendcontroller-getuniqueid": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85555-TypoScriptFrontendController-getUniqueId.html#deprecation-85555-typoscriptfrontendcontroller-getuniqueid", + "Changelog\/9.4\/Deprecation-85555-TypoScriptFrontendController-getUniqueId.html#deprecation-85555", "Deprecation: #85555 - TypoScriptFrontendController->getUniqueId" ], "deprecation-85556-pagerepository-versioningworkspaceid": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85556-PageRepository-versioningWorkspaceId.html#deprecation-85556-pagerepository-versioningworkspaceid", + "Changelog\/9.4\/Deprecation-85556-PageRepository-versioningWorkspaceId.html#deprecation-85556", "Deprecation: #85556 - PageRepository->versioningWorkspaceId" ], "deprecation-85557-pagerepository-getrootline": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85557-PageRepository-getRootLine.html#deprecation-85557-pagerepository-getrootline", + "Changelog\/9.4\/Deprecation-85557-PageRepository-getRootLine.html#deprecation-85557", "Deprecation: #85557 - PageRepository->getRootLine" ], "deprecation-85558-contentobjectrenderer-enablefields": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85558-ContentObjectRenderer-enableFields.html#deprecation-85558-contentobjectrenderer-enablefields", + "Changelog\/9.4\/Deprecation-85558-ContentObjectRenderer-enableFields.html#deprecation-85558", "Deprecation: #85558 - ContentObjectRenderer->enableFields" ], "deprecation-85646-deprecate-eid-implemented-as-script": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85646-DeprecateEIDImplementedAsScript.html#deprecation-85646-deprecate-eid-implemented-as-script", + "Changelog\/9.4\/Deprecation-85646-DeprecateEIDImplementedAsScript.html#deprecation-85646", "Deprecation: #85646 - Deprecate eID implemented as script" ], "deprecation-85666-typoscriptfrontendcontroller-inittemplate": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85666-TypoScriptFrontendController-initTemplate.html#deprecation-85666-typoscriptfrontendcontroller-inittemplate", + "Changelog\/9.4\/Deprecation-85666-TypoScriptFrontendController-initTemplate.html#deprecation-85666", "Deprecation: #85666 - TypoScriptFrontendController->initTemplate" ], "deprecation-85678-config-titletagfunction": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85678-ConfigTitleTagFunction.html#deprecation-85678-config-titletagfunction", + "Changelog\/9.4\/Deprecation-85678-ConfigTitleTagFunction.html#deprecation-85678-1668719172", "Deprecation: #85678 - config.titleTagFunction" ], "deprecation-85678-globals-tsfe-altpagetitle": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85678-TsfeAltPageTitle.html#deprecation-85678-globals-tsfe-altpagetitle", + "Changelog\/9.4\/Deprecation-85678-TsfeAltPageTitle.html#deprecation-85678", "Deprecation: #85678 - $GLOBALS['TSFE']->altPageTitle" ], "deprecation-85687-deprecate-runtimecachewriter": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85687-DeprecateRuntimeCacheWriter.html#deprecation-85687-deprecate-runtimecachewriter", + "Changelog\/9.4\/Deprecation-85687-DeprecateRuntimeCacheWriter.html#deprecation-85687", "Deprecation: #85687 - Deprecate RuntimeCacheWriter" ], "deprecation-85699-various-methods-in-pagerepository": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85699-MethodsInPageRepository.html#deprecation-85699-various-methods-in-pagerepository", + "Changelog\/9.4\/Deprecation-85699-MethodsInPageRepository.html#deprecation-85699", "Deprecation: #85699 - Various methods in PageRepository" ], "deprecation-85701-various-methods-in-moduletemplate": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85701-MethodsInModuleTemplate.html#deprecation-85701-various-methods-in-moduletemplate", + "Changelog\/9.4\/Deprecation-85701-MethodsInModuleTemplate.html#deprecation-85701", "Deprecation: #85701 - Various methods in ModuleTemplate" ], "deprecation-85707-loginframesetcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85707-LoginFramesetController.html#deprecation-85707-loginframesetcontroller", + "Changelog\/9.4\/Deprecation-85707-LoginFramesetController.html#deprecation-85707", "Deprecation: #85707 - LoginFramesetController" ], "deprecation-85727-databaseintegritycheck-moved-to-ext-lowlevel": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85727-DatabaseIntegrityCheckMovedToEXTlowlevel.html#deprecation-85727-databaseintegritycheck-moved-to-ext-lowlevel", + "Changelog\/9.4\/Deprecation-85727-DatabaseIntegrityCheckMovedToEXTlowlevel.html#deprecation-85727", "Deprecation: #85727 - DatabaseIntegrityCheck moved to EXT:lowlevel" ], "deprecation-85735-various-method-and-property-in-documenttemplate": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85735-MethodAndPropertyInDocumentTemplate.html#deprecation-85735-various-method-and-property-in-documenttemplate", + "Changelog\/9.4\/Deprecation-85735-MethodAndPropertyInDocumentTemplate.html#deprecation-85735", "Deprecation: #85735 - Various method and property in DocumentTemplate" ], "deprecation-85759-generalutility-gethostname": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85759-GeneralUtilitygetHostName.html#deprecation-85759-generalutility-gethostname", + "Changelog\/9.4\/Deprecation-85759-GeneralUtilitygetHostName.html#deprecation-85759", "Deprecation: #85759 - GeneralUtility::getHostName" ], "deprecation-85760-generalutility-unquotefilenames": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85760-GeneralUtilityunQuoteFilenames.html#deprecation-85760-generalutility-unquotefilenames", + "Changelog\/9.4\/Deprecation-85760-GeneralUtilityunQuoteFilenames.html#deprecation-85760", "Deprecation: #85760 - GeneralUtility::unQuoteFilenames" ], "deprecation-85761-saltedpasswordservice": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85761-SaltedPasswordService.html#deprecation-85761-saltedpasswordservice", + "Changelog\/9.4\/Deprecation-85761-SaltedPasswordService.html#deprecation-85761", "Deprecation: #85761 - SaltedPasswordService" ], "deprecation-85793-several-constants-from-systemenvironmentbuilder": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85793-SeveralConstantsFromSystemEnvironmentBuilder.html#deprecation-85793-several-constants-from-systemenvironmentbuilder", + "Changelog\/9.4\/Deprecation-85793-SeveralConstantsFromSystemEnvironmentBuilder.html#deprecation-85793", "Deprecation: #85793 - Several constants from SystemEnvironmentBuilder" ], "deprecation-85796-salted-passwords-cleanups": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85796-SaltedPasswordsCleanups.html#deprecation-85796-salted-passwords-cleanups", + "Changelog\/9.4\/Deprecation-85796-SaltedPasswordsCleanups.html#deprecation-85796", "Deprecation: #85796 - Salted passwords cleanups" ], "deprecation-85801-generalutility-explodeurl2array-2nd-method-argument": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85801-GeneralUtilityexplodeUrl2Array-2ndMethodArgument.html#deprecation-85801-generalutility-explodeurl2array-2nd-method-argument", + "Changelog\/9.4\/Deprecation-85801-GeneralUtilityexplodeUrl2Array-2ndMethodArgument.html#deprecation-85801", "Deprecation: #85801 - GeneralUtility::explodeUrl2Array - 2nd method argument" ], "deprecation-85802-move-flexformservice-from-ext-extbase-to-ext-core": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85802-MoveFlexFormServiceFromEXTextbaseToEXTcore.html#deprecation-85802-move-flexformservice-from-ext-extbase-to-ext-core", + "Changelog\/9.4\/Deprecation-85802-MoveFlexFormServiceFromEXTextbaseToEXTcore.html#deprecation-85802", "Deprecation: #85802 - Move FlexFormService from EXT:extbase to EXT:core" ], "deprecation-85804-salted-password-hash-class-deprecations": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85804-SaltedPasswordHashClassDeprecations.html#deprecation-85804-salted-password-hash-class-deprecations", + "Changelog\/9.4\/Deprecation-85804-SaltedPasswordHashClassDeprecations.html#deprecation-85804", "Deprecation: #85804 - Salted password hash class deprecations" ], "deprecation-85806-second-argument-of-pagerenderer-addinlinelanguagelabelarray": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85806-SecondArgumentOfPageRendereraddInlineLanguageLabelArray.html#deprecation-85806-second-argument-of-pagerenderer-addinlinelanguagelabelarray", + "Changelog\/9.4\/Deprecation-85806-SecondArgumentOfPageRendereraddInlineLanguageLabelArray.html#deprecation-85806", "Deprecation: #85806 - Second argument of PageRenderer::addInlineLanguageLabelArray" ], "deprecation-85807-environmentservice-isenvironmentinclimode": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85807-EnvironmentServiceisEnvironmentInCliMode.html#deprecation-85807-environmentservice-isenvironmentinclimode", + "Changelog\/9.4\/Deprecation-85807-EnvironmentServiceisEnvironmentInCliMode.html#deprecation-85807", "Deprecation: #85807 - EnvironmentService::isEnvironmentInCliMode" ], "deprecation-85821-bootstrap-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85821-BootstrapMethods.html#deprecation-85821-bootstrap-methods", + "Changelog\/9.4\/Deprecation-85821-BootstrapMethods.html#deprecation-85821", "Deprecation: #85821 - bootstrap methods" ], "deprecation-85822-static-class-typo3-cms-frontend-page-pagegenerator": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85822-PageGenerator.html#deprecation-85822-static-class-typo3-cms-frontend-page-pagegenerator", + "Changelog\/9.4\/Deprecation-85822-PageGenerator.html#deprecation-85822", "Deprecation: #85822 - Static class TYPO3\\CMS\\Frontend\\Page\\PageGenerator" ], "deprecation-85833-extension-saltedpasswords-merged-into-core-extension": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85833-ExtensionSaltedpasswordsMergedIntoCoreExtension.html#deprecation-85833-extension-saltedpasswords-merged-into-core-extension", + "Changelog\/9.4\/Deprecation-85833-ExtensionSaltedpasswordsMergedIntoCoreExtension.html#deprecation-85833", "Deprecation: #85833 - Extension saltedpasswords merged into core extension" ], "deprecation-85836-backendutility-gettcatypes": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85836-BackendUtilitygetTCAtypes.html#deprecation-85836-backendutility-gettcatypes", + "Changelog\/9.4\/Deprecation-85836-BackendUtilitygetTCAtypes.html#deprecation-85836", "Deprecation: #85836 - BackendUtility::getTCAtypes" ], "deprecation-85858-generalutility-clientinfo": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85858-GeneralUtilityclientInfo.html#deprecation-85858-generalutility-clientinfo", + "Changelog\/9.4\/Deprecation-85858-GeneralUtilityclientInfo.html#deprecation-85858", "Deprecation: #85858 - GeneralUtility::clientInfo()" ], "deprecation-85878-eidutility-and-various-tsfe-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85878-EidUtilityAndVariousTSFEMethods.html#deprecation-85878-eidutility-and-various-tsfe-methods", + "Changelog\/9.4\/Deprecation-85878-EidUtilityAndVariousTSFEMethods.html#deprecation-85878", "Deprecation: #85878 - EidUtility and various TSFE methods" ], "deprecation-85892-various-methods-regarding-sys-domain-resolving": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85892-VariousMethodsRegardingSysDomainResolving.html#deprecation-85892-various-methods-regarding-sys-domain-resolving", + "Changelog\/9.4\/Deprecation-85892-VariousMethodsRegardingSysDomainResolving.html#deprecation-85892", "Deprecation: #85892 - Various methods regarding sys_domain-resolving" ], "deprecation-85902-imgmenu-gmenu": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85902-IMGMENUGMENU.html#deprecation-85902-imgmenu-gmenu", + "Changelog\/9.4\/Deprecation-85902-IMGMENUGMENU.html#deprecation-85902", "Deprecation: #85902 - IMGMENU\/GMENU" ], "deprecation-85960-abstractuserauthentication-compareuident-and-abstractauthenticationservice-compareuident": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85960-CompareUidentDeprecated.html#deprecation-85960-abstractuserauthentication-compareuident-and-abstractauthenticationservice-compareuident", + "Changelog\/9.4\/Deprecation-85960-CompareUidentDeprecated.html#deprecation-85960", "Deprecation: #85960 - AbstractUserAuthentication::compareUident and AbstractAuthenticationService->compareUident" ], "deprecation-85971-pagerepository-getfirstwebpage": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85971-DeprecatePageRepository-getFirstWebPage.html#deprecation-85971-pagerepository-getfirstwebpage", + "Changelog\/9.4\/Deprecation-85971-DeprecatePageRepository-getFirstWebPage.html#deprecation-85971", "Deprecation: #85971 - PageRepository->getFirstWebPage" ], "deprecation-85977-extbase-cli-functionality-command-controllers-and-cli-annotation": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85977-ExtbaseCommandControllersAndCliAnnotation.html#deprecation-85977-extbase-cli-functionality-command-controllers-and-cli-annotation", + "Changelog\/9.4\/Deprecation-85977-ExtbaseCommandControllersAndCliAnnotation.html#deprecation-85977", "Deprecation: #85977 - Extbase CLI functionality, Command Controllers and @cli Annotation" ], "deprecation-85978-graphicalfunctions-init": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85978-GraphicalFunctions-init.html#deprecation-85978-graphicalfunctions-init", + "Changelog\/9.4\/Deprecation-85978-GraphicalFunctions-init.html#deprecation-85978", "Deprecation: #85978 - GraphicalFunctions->init" ], "deprecation-85996-extensionmanager-commandcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-85996-ExtensionManagerCommandController.html#deprecation-85996-extensionmanager-commandcontroller", + "Changelog\/9.4\/Deprecation-85996-ExtensionManagerCommandController.html#deprecation-85996", "Deprecation: #85996 - ExtensionManager CommandController" ], "deprecation-86001-workspaces-tasks-migrated-to-symfony-commands": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-86001-WorkspacesTasksMigratedToSymfonyCommands.html#deprecation-86001-workspaces-tasks-migrated-to-symfony-commands", + "Changelog\/9.4\/Deprecation-86001-WorkspacesTasksMigratedToSymfonyCommands.html#deprecation-86001", "Deprecation: #86001 - Workspaces tasks migrated to symfony commands" ], "deprecation-86002-tsfe-constructor-with-no-cache-argument": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-86002-TSFEConstructorWithNo_cacheArgument.html#deprecation-86002-tsfe-constructor-with-no-cache-argument", + "Changelog\/9.4\/Deprecation-86002-TSFEConstructorWithNo_cacheArgument.html#deprecation-86002", "Deprecation: #86002 - TSFE constructor with no_cache argument" ], "deprecation-86046-additional-arguments-in-several-typoscriptfrontendcontroller-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-86046-AdditionalArgumentsInSeveralTypoScriptFrontendControllerMethods.html#deprecation-86046-additional-arguments-in-several-typoscriptfrontendcontroller-methods", + "Changelog\/9.4\/Deprecation-86046-AdditionalArgumentsInSeveralTypoScriptFrontendControllerMethods.html#deprecation-86046", "Deprecation: #86046 - Additional arguments in several TypoScriptFrontendController methods" ], "deprecation-86109-class-userstoragecapabilityservice": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Deprecation-86109-ClassUserStorageCapabilityService.html#deprecation-86109-class-userstoragecapabilityservice", + "Changelog\/9.4\/Deprecation-86109-ClassUserStorageCapabilityService.html#deprecation-86109", "Deprecation: #86109 - Class UserStorageCapabilityService" ], "feature-13265-select-first-element-of-pagetree-toolbar-on-initialization": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-13265-MakeFirstOptionToolbarOpenByDefaultInThePageTree.html#feature-13265-select-first-element-of-pagetree-toolbar-on-initialization", + "Changelog\/9.4\/Feature-13265-MakeFirstOptionToolbarOpenByDefaultInThePageTree.html#feature-13265", "Feature: #13265 - Select first element of PageTree toolbar on initialization" ], "feature-44297-interval-presets-for-cron-command-of-scheduler-task": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-44297-IntervalPresetsForCronCommandOfSchedulerTask.html#feature-44297-interval-presets-for-cron-command-of-scheduler-task", + "Changelog\/9.4\/Feature-44297-IntervalPresetsForCronCommandOfSchedulerTask.html#feature-44297", "Feature: #44297 - Interval presets for cron command of scheduler task" ], "feature-57331-support-dash-in-currencyviewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-57331-SupportMdashInCurrencyViewHelper.html#feature-57331-support-dash-in-currencyviewhelper", + "Changelog\/9.4\/Feature-57331-SupportMdashInCurrencyViewHelper.html#feature-57331", "Feature: #57331 - Support dash in CurrencyViewHelper" ], "feature-75806-add-hreflang-support": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-75806-AddHreflangSupport.html#feature-75806-add-hreflang-support", + "Changelog\/9.4\/Feature-75806-AddHreflangSupport.html#feature-75806", "Feature: #75806 - Add hreflang support" ], "feature-83476-load-merged-js-files-asynchronous": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-83476-LoadMergedJSFilesAsynchronous.html#feature-83476-load-merged-js-files-asynchronous", + "Changelog\/9.4\/Feature-83476-LoadMergedJSFilesAsynchronous.html#feature-83476", "Feature: #83476 - Load merged JS files asynchronous" ], "feature-83749-filtering-and-pagination-in-the-redirects-module": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-83749-FilteringAndPaginationInTheRedirectsModule.html#feature-83749-filtering-and-pagination-in-the-redirects-module", + "Changelog\/9.4\/Feature-83749-FilteringAndPaginationInTheRedirectsModule.html#feature-83749", "Feature: #83749 - Filtering and Pagination in the redirects module" ], "feature-84133-introduce-variants": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-84133-IntroduceVariants.html#feature-84133-introduce-variants", + "Changelog\/9.4\/Feature-84133-IntroduceVariants.html#feature-84133", "Feature: #84133 - Introduce variants" ], "short-description": [ @@ -64189,7 +64393,7 @@ "feature-84525-xml-sitemap": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-84525-XMLSitemap.html#feature-84525-xml-sitemap", + "Changelog\/9.4\/Feature-84525-XMLSitemap.html#feature-84525", "Feature: #84525 - XML Sitemap" ], "installation": [ @@ -64213,91 +64417,91 @@ "feature-84584-re-design-the-admin-panel": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-84584-Re-DesignTheAdminPanel.html#feature-84584-re-design-the-admin-panel", + "Changelog\/9.4\/Feature-84584-Re-DesignTheAdminPanel.html#feature-84584", "Feature: #84584 - Re-Design the admin panel" ], "feature-84606-add-log-module-to-adminpanel": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-84606-AddLogModuleToAdminPanel.html#feature-84606-add-log-module-to-adminpanel", + "Changelog\/9.4\/Feature-84606-AddLogModuleToAdminPanel.html#feature-84606", "Feature: #84606 - Add Log Module to AdminPanel" ], "feature-84609-add-sql-log-module-to-adminpanel": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-84609-AddSQLLogModuleToAdminPanel.html#feature-84609-add-sql-log-module-to-adminpanel", + "Changelog\/9.4\/Feature-84609-AddSQLLogModuleToAdminPanel.html#feature-84609", "Feature: #84609 - Add SQL Log Module to AdminPanel" ], "feature-84704-open-specific-field-when-fixing-links-in-linkvalidator": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-84704-OpenSpecificFieldWhenFixingLinksInLinkvalidator.html#feature-84704-open-specific-field-when-fixing-links-in-linkvalidator", + "Changelog\/9.4\/Feature-84704-OpenSpecificFieldWhenFixingLinksInLinkvalidator.html#feature-84704", "Feature: #84704 - Open specific field when fixing links in Linkvalidator" ], "feature-84729-new-tca-type-slug": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-84729-NewTCATypeSlug.html#feature-84729-new-tca-type-slug", + "Changelog\/9.4\/Feature-84729-NewTCATypeSlug.html#feature-84729", "Feature: #84729 - New TCA type \"slug\"" ], "feature-85080-add-property-to-disable-form-elements-and-finishers": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-85080-AddPropertyDisableFormElementsAndFinishers.html#feature-85080-add-property-to-disable-form-elements-and-finishers", + "Changelog\/9.4\/Feature-85080-AddPropertyDisableFormElementsAndFinishers.html#feature-85080", "Feature: #85080 - Add property to disable form elements and finishers" ], "feature-85146-read-environment-variables-in-typoscript": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-85146-ReadEnvironmentVariablesInTypoScript.html#feature-85146-read-environment-variables-in-typoscript", + "Changelog\/9.4\/Feature-85146-ReadEnvironmentVariablesInTypoScript.html#feature-85146", "Feature: #85146 - Read environment variables in TypoScript" ], "feature-85164-available-languages-respects-site-configuration-settings": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-85164-AvailableLanguagesRespectsSiteConfigurationSettings.html#feature-85164-available-languages-respects-site-configuration-settings", + "Changelog\/9.4\/Feature-85164-AvailableLanguagesRespectsSiteConfigurationSettings.html#feature-85164-1668719172", "Feature: #85164 - Available languages respects site configuration settings" ], "feature-85164-enable-languages-on-a-per-site-basis": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-85164-EnableLanguagesPerSite.html#feature-85164-enable-languages-on-a-per-site-basis", + "Changelog\/9.4\/Feature-85164-EnableLanguagesPerSite.html#feature-85164", "Feature: #85164 - Enable Languages on a per-site basis" ], "feature-85236-infix-option-to-default-log-file-names-for-filewriter": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-85236-InfixOptionToDefaultLogFileNamesForFileWriter.html#feature-85236-infix-option-to-default-log-file-names-for-filewriter", + "Changelog\/9.4\/Feature-85236-InfixOptionToDefaultLogFileNamesForFileWriter.html#feature-85236", "Feature: #85236 - Infix option to default log file names for FileWriter" ], "feature-85247-trait-to-detect-public-deprecated-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-85247-TraitToDetectPublicDeprecatedMethods.html#feature-85247-trait-to-detect-public-deprecated-methods", + "Changelog\/9.4\/Feature-85247-TraitToDetectPublicDeprecatedMethods.html#feature-85247", "Feature: #85247 - Trait to detect public deprecated methods" ], "feature-85256-install-typo3-on-sqlite": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-85256-InstallTYPO3OnSQLite.html#feature-85256-install-typo3-on-sqlite", + "Changelog\/9.4\/Feature-85256-InstallTYPO3OnSQLite.html#feature-85256", "Feature: #85256 - Install TYPO3 on SQLite" ], "feature-85313-add-notes-field-to-pages-table": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-85313-AddNotesFieldToPagesTable.html#feature-85313-add-notes-field-to-pages-table", + "Changelog\/9.4\/Feature-85313-AddNotesFieldToPagesTable.html#feature-85313", "Feature: #85313 - Add notes field to pages table" ], "feature-85355-support-basic-html5-fields-in-formengine": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-85355-SupportBasicHTML5FieldsInFormEngine.html#feature-85355-support-basic-html5-fields-in-formengine", + "Changelog\/9.4\/Feature-85355-SupportBasicHTML5FieldsInFormEngine.html#feature-85355", "Feature: #85355 - Support basic HTML5 fields in FormEngine" ], "feature-85389-context-api-for-consistent-data-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-85389-ContextAPIForConsistentDataHandling.html#feature-85389-context-api-for-consistent-data-handling", + "Changelog\/9.4\/Feature-85389-ContextAPIForConsistentDataHandling.html#feature-85389", "Feature: #85389 - Context API for consistent data handling" ], "further-development": [ @@ -64309,25 +64513,25 @@ "feature-85410-allow-tca-description-property": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-85410-AllowTCADescriptionProperty.html#feature-85410-allow-tca-description-property", + "Changelog\/9.4\/Feature-85410-AllowTCADescriptionProperty.html#feature-85410", "Feature: #85410 - Allow TCA description property" ], "feature-85550-introduce-context-for-typoscript-data-gettext-property": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-85550-IntroduceContextForTypoScriptDataGetTextProperty.html#feature-85550-introduce-context-for-typoscript-data-gettext-property", + "Changelog\/9.4\/Feature-85550-IntroduceContextForTypoScriptDataGetTextProperty.html#feature-85550", "Feature: #85550 - Introduce context for TypoScript data getText property" ], "feature-85590-add-hooks-for-databaserecordlist-csv-actions": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-85590-AddHooksForDatabaseRecordListCSVActions.html#feature-85590-add-hooks-for-databaserecordlist-csv-actions", + "Changelog\/9.4\/Feature-85590-AddHooksForDatabaseRecordListCSVActions.html#feature-85590", "Feature: #85590 - Add hooks for DatabaseRecordList CSV actions" ], "feature-85678-add-pagetitle-api": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-85678-AddAPIForTitleTags.html#feature-85678-add-pagetitle-api", + "Changelog\/9.4\/Feature-85678-AddAPIForTitleTags.html#feature-85678", "Feature: #85678 - Add PageTitle API" ], "create-your-own-pagetitleprovider": [ @@ -64345,31 +64549,31 @@ "feature-85691-show-page-path-for-references-in-record-info": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-85691-ShowPagePathForReferencesInRecordInfo.html#feature-85691-show-page-path-for-references-in-record-info", + "Changelog\/9.4\/Feature-85691-ShowPagePathForReferencesInRecordInfo.html#feature-85691", "Feature: #85691 - Show page path for references in record info" ], "feature-85698-new-type-input-eval-saltedpassword": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-85698-NewTypeinputEvalSaltedPassword.html#feature-85698-new-type-input-eval-saltedpassword", + "Changelog\/9.4\/Feature-85698-NewTypeinputEvalSaltedPassword.html#feature-85698", "Feature: #85698 - New type=input eval saltedPassword" ], "feature-85719-allow-sites-without-scheme-or-domain": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-85719-AllowSitesWithoutSchemeOrDomain.html#feature-85719-allow-sites-without-scheme-or-domain", + "Changelog\/9.4\/Feature-85719-AllowSitesWithoutSchemeOrDomain.html#feature-85719", "Feature: #85719 - Allow sites without scheme or domain" ], "feature-85828-move-symfony-expression-language-handling-into-ext-core": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-85828-MoveSymfonyExpressionLanguageHandlingIntoEXTcore.html#feature-85828-move-symfony-expression-language-handling-into-ext-core", + "Changelog\/9.4\/Feature-85828-MoveSymfonyExpressionLanguageHandlingIntoEXTcore.html#feature-85828", "Feature: #85828 - Move symfony expression language handling into EXT:core" ], "feature-85829-implement-symfony-expression-language-for-typoscript-conditions": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-85829-ImplementSymfonyExpressionLanguageForTypoScriptConditions.html#feature-85829-implement-symfony-expression-language-for-typoscript-conditions", + "Changelog\/9.4\/Feature-85829-ImplementSymfonyExpressionLanguageForTypoScriptConditions.html#feature-85829", "Feature: #85829 - Implement symfony expression language for TypoScript conditions" ], "general-usage": [ @@ -64399,43 +64603,43 @@ "feature-85894-feature-toggles-in-admin-tools-settings": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-85894-FeatureTogglesInAdminToolsSettings.html#feature-85894-feature-toggles-in-admin-tools-settings", + "Changelog\/9.4\/Feature-85894-FeatureTogglesInAdminToolsSettings.html#feature-85894", "Feature: #85894 - Feature toggles in Admin Tools Settings" ], "feature-85900-pseudo-site-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-85900-PseudoSiteHandling.html#feature-85900-pseudo-site-handling", + "Changelog\/9.4\/Feature-85900-PseudoSiteHandling.html#feature-85900", "Feature: #85900 - Pseudo Site Handling" ], "feature-85928-upgrade-wizard-to-migrate-pages-to-speaking-urls": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-85928-UpgradeWizardToMigratePagesToSpeakingURLs.html#feature-85928-upgrade-wizard-to-migrate-pages-to-speaking-urls", + "Changelog\/9.4\/Feature-85928-UpgradeWizardToMigratePagesToSpeakingURLs.html#feature-85928", "Feature: #85928 - Upgrade wizard to migrate pages to speaking URLs" ], "feature-85947-page-based-url-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-85947-PageBasedURLHandling.html#feature-85947-page-based-url-handling", + "Changelog\/9.4\/Feature-85947-PageBasedURLHandling.html#feature-85947", "Feature: #85947 - Page based URL handling" ], "feature-85991-exclude-symfony-commands-from-scheduler": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-85991-ExcludeSymfonyCommandsFromScheduler.html#feature-85991-exclude-symfony-commands-from-scheduler", + "Changelog\/9.4\/Feature-85991-ExcludeSymfonyCommandsFromScheduler.html#feature-85991", "Feature: #85991 - Exclude Symfony Commands from Scheduler" ], "feature-86001-regular-workspace-cleanup-tasks-available-via-cli-commands": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-86001-RegularWorkspaceCleanupTasksAvailableViaCLICommands.html#feature-86001-regular-workspace-cleanup-tasks-available-via-cli-commands", + "Changelog\/9.4\/Feature-86001-RegularWorkspaceCleanupTasksAvailableViaCLICommands.html#feature-86001", "Feature: #86001 - Regular Workspace cleanup tasks available via CLI commands" ], "feature-86003-composition-based-api-for-the-adminpanel": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-86003-AdminpanelCompositionApi.html#feature-86003-composition-based-api-for-the-adminpanel", + "Changelog\/9.4\/Feature-86003-AdminpanelCompositionApi.html#feature-86003", "Feature: #86003 - Composition based API for the Adminpanel" ], "general-request-flow-and-the-adminpanel": [ @@ -64555,61 +64759,61 @@ "feature-86051-show-extensions-via-cli": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-86051-ShowExtensionsViaCLI.html#feature-86051-show-extensions-via-cli", + "Changelog\/9.4\/Feature-86051-ShowExtensionsViaCLI.html#feature-86051", "Feature: #86051 - Show extensions via CLI" ], "feature-86057-improved-typolink-url-link-generation": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-86057-ImprovedTypolinkURLLinkGeneration.html#feature-86057-improved-typolink-url-link-generation", + "Changelog\/9.4\/Feature-86057-ImprovedTypolinkURLLinkGeneration.html#feature-86057", "Feature: #86057 - Improved typolink \/ URL link generation" ], "feature-86066-cli-commands-for-listing-and-showing-sites": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-86066-CLICommandsForListingAndShowingSites.html#feature-86066-cli-commands-for-listing-and-showing-sites", + "Changelog\/9.4\/Feature-86066-CLICommandsForListingAndShowingSites.html#feature-86066", "Feature: #86066 - CLI Commands for listing and showing sites" ], "feature-86076-new-api-for-upgradewizards": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Feature-86076-NewAPIForUpgradeWizards.html#feature-86076-new-api-for-upgradewizards", + "Changelog\/9.4\/Feature-86076-NewAPIForUpgradeWizards.html#feature-86076", "Feature: #86076 - New API for UpgradeWizards" ], "important-84280-unit-test-suppressnotices-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Important-84280-UnitTestSuppressNoticesRemoved.html#important-84280-unit-test-suppressnotices-removed", + "Changelog\/9.4\/Important-84280-UnitTestSuppressNoticesRemoved.html#important-84280", "Important: #84280 - Unit test suppressNotices removed" ], "important-85196-removed-simulate-user-from-user-settings": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Important-85196-RemovedSimulateUserFromUserSettings.html#important-85196-removed-simulate-user-from-user-settings", + "Changelog\/9.4\/Important-85196-RemovedSimulateUserFromUserSettings.html#important-85196", "Important: #85196 - Removed simulate user from user settings" ], "important-85393-extension-manager-only-imports-extensions-compatible-with-typo3-v7-lts-or-higher": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Important-85393-ExtensionManagerOnlyImportsExtensionsCompatibleWithTYPO3V7LTSOrHigher.html#important-85393-extension-manager-only-imports-extensions-compatible-with-typo3-v7-lts-or-higher", + "Changelog\/9.4\/Important-85393-ExtensionManagerOnlyImportsExtensionsCompatibleWithTYPO3V7LTSOrHigher.html#important-85393", "Important: #85393 - Extension Manager only imports extensions compatible with TYPO3 v7 LTS or higher" ], "important-85683-dropped-salted-passwords-options": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Important-85683-DroppedSaltedpasswordOptions.html#important-85683-dropped-salted-passwords-options", + "Changelog\/9.4\/Important-85683-DroppedSaltedpasswordOptions.html#important-85683", "Important: #85683 - Dropped salted passwords options" ], "important-85719-php-packages-symfony-components-requirements-raised-to-symfony-4-1": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Important-85719-PHPPackagesSymfonyComponentsRequirementsRaisedToSymfony41.html#important-85719-php-packages-symfony-components-requirements-raised-to-symfony-4-1", + "Changelog\/9.4\/Important-85719-PHPPackagesSymfonyComponentsRequirementsRaisedToSymfony41.html#important-85719", "Important: #85719 - PHP Packages: Symfony Components requirements raised to Symfony 4.1" ], "important-85833-saltedpasswords-extension-merged-into-core-extension": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.4\/Important-85833-SaltedpasswordsExtensionMergedIntoCoreExtension.html#important-85833-saltedpasswords-extension-merged-into-core-extension", + "Changelog\/9.4\/Important-85833-SaltedpasswordsExtensionMergedIntoCoreExtension.html#important-85833", "Important: #85833 - saltedpasswords extension merged into core extension" ], "9-4-changes": [ @@ -64621,283 +64825,283 @@ "breaking-86492-removed-stdwrap-support-for-config-additionalheaders": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Breaking-86492-RemovedStdWrapSupportForConfigadditionalHeaders.html#breaking-86492-removed-stdwrap-support-for-config-additionalheaders", + "Changelog\/9.5\/Breaking-86492-RemovedStdWrapSupportForConfigadditionalHeaders.html#breaking-86492", "Breaking: #86492 - Removed stdWrap support for config.additionalHeaders" ], "deprecation-83793-fal-resourcestorage-dumpfilecontents": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-83793-FALResourceStorage-dumpFileContents.html#deprecation-83793-fal-resourcestorage-dumpfilecontents", + "Changelog\/9.5\/Deprecation-83793-FALResourceStorage-dumpFileContents.html#deprecation-83793", "Deprecation: #83793 - FAL ResourceStorage->dumpFileContents()" ], "deprecation-84196-backend-controller-actions-do-not-receive-prepared-response": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-84196-BackendControllerActionsDoNotReceivePreparedResponse.html#deprecation-84196-backend-controller-actions-do-not-receive-prepared-response", + "Changelog\/9.5\/Deprecation-84196-BackendControllerActionsDoNotReceivePreparedResponse.html#deprecation-84196", "Deprecation: #84196 - Backend controller actions do not receive prepared response" ], "deprecation-85031-protected-importexportcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-85031-ProtectedImportExportController.html#deprecation-85031-protected-importexportcontroller", + "Changelog\/9.5\/Deprecation-85031-ProtectedImportExportController.html#deprecation-85031", "Deprecation: #85031 - Protected ImportExportController" ], "deprecation-85970-file-content-object": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-85970-FileContentObject.html#deprecation-85970-file-content-object", + "Changelog\/9.5\/Deprecation-85970-FileContentObject.html#deprecation-85970", "Deprecation: #85970 - FILE content object" ], "deprecation-85980-internal-annotation-in-extbase-commands": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-85980-InternalAnnotationInExtbaseCommands.html#deprecation-85980-internal-annotation-in-extbase-commands", + "Changelog\/9.5\/Deprecation-85980-InternalAnnotationInExtbaseCommands.html#deprecation-85980", "Deprecation: #85980 - @internal annotation in extbase commands" ], "deprecation-83094-annotation-flushescaches": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-85981-AnnotationFlushesCaches.html#deprecation-83094-annotation-flushescaches", + "Changelog\/9.5\/Deprecation-85981-AnnotationFlushesCaches.html#deprecation-83094-1668719172", "Deprecation: #83094 - Annotation @flushesCaches" ], "deprecation-86047-tsfe-properties-methods-and-change-visibility": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86047-TSFEPropertiesMethodsAndChangeVisibility.html#deprecation-86047-tsfe-properties-methods-and-change-visibility", + "Changelog\/9.5\/Deprecation-86047-TSFEPropertiesMethodsAndChangeVisibility.html#deprecation-86047", "Deprecation: #86047 - TSFE properties \/ methods and change visibility" ], "deprecation-86068-old-condition-syntax": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86068-OldConditionSyntax.html#deprecation-86068-old-condition-syntax", + "Changelog\/9.5\/Deprecation-86068-OldConditionSyntax.html#deprecation-86068", "Deprecation: #86068 - old condition syntax" ], "deprecation-86110-frontendeditingcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86110-FrontendEditingController.html#deprecation-86110-frontendeditingcontroller", + "Changelog\/9.5\/Deprecation-86110-FrontendEditingController.html#deprecation-86110", "Deprecation: #86110 - FrontendEditingController" ], "deprecation-86163-tca-type-user-without-rendertype": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86163-TCATypeuserWithoutRenderType.html#deprecation-86163-tca-type-user-without-rendertype", + "Changelog\/9.5\/Deprecation-86163-TCATypeuserWithoutRenderType.html#deprecation-86163", "Deprecation: #86163 - TCA type=\"user\" without renderType" ], "deprecation-86178-class-elementbrowserframesetcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86178-ClassElementBrowserFramesetController.html#deprecation-86178-class-elementbrowserframesetcontroller", + "Changelog\/9.5\/Deprecation-86178-ClassElementBrowserFramesetController.html#deprecation-86178", "Deprecation: #86178 - Class ElementBrowserFramesetController" ], "deprecation-86179-protected-render-method-in-backendcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86179-ProtectedRenderMethodInBackendController.html#deprecation-86179-protected-render-method-in-backendcontroller", + "Changelog\/9.5\/Deprecation-86179-ProtectedRenderMethodInBackendController.html#deprecation-86179", "Deprecation: #86179 - Protected render() method in BackendController" ], "deprecation-86180-protected-methods-in-setupmodulecontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86180-ProtectedMethodsInSetupModuleController.html#deprecation-86180-protected-methods-in-setupmodulecontroller", + "Changelog\/9.5\/Deprecation-86180-ProtectedMethodsInSetupModuleController.html#deprecation-86180", "Deprecation: #86180 - Protected methods in SetupModuleController" ], "deprecation-86182-protected-taskmodulecontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86182-ProtectedTaskModuleController.html#deprecation-86182-protected-taskmodulecontroller", + "Changelog\/9.5\/Deprecation-86182-ProtectedTaskModuleController.html#deprecation-86182", "Deprecation: #86182 - Protected TaskModuleController" ], "deprecation-86184-protected-methods-in-reportcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86184-ProtectedMethodsInReportController.html#deprecation-86184-protected-methods-in-reportcontroller", + "Changelog\/9.5\/Deprecation-86184-ProtectedMethodsInReportController.html#deprecation-86184", "Deprecation: #86184 - Protected methods in ReportController" ], "deprecation-86192-protected-methods-in-elementbrowsercontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86192-ProtectedMethodsInElementBrowserController.html#deprecation-86192-protected-methods-in-elementbrowsercontroller", + "Changelog\/9.5\/Deprecation-86192-ProtectedMethodsInElementBrowserController.html#deprecation-86192", "Deprecation: #86192 - Protected methods in ElementBrowserController" ], "deprecation-86193-protect-methods-in-abstractlinkbrowsercontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86193-ProtectMethodsInAbstractLinkBrowserController.html#deprecation-86193-protect-methods-in-abstractlinkbrowsercontroller", + "Changelog\/9.5\/Deprecation-86193-ProtectMethodsInAbstractLinkBrowserController.html#deprecation-86193", "Deprecation: #86193 - Protect methods in AbstractLinkBrowserController" ], "deprecation-86197-protected-filelistcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86197-ProtectedFileListController.html#deprecation-86197-protected-filelistcontroller", + "Changelog\/9.5\/Deprecation-86197-ProtectedFileListController.html#deprecation-86197", "Deprecation: #86197 - Protected FileListController" ], "deprecation-86198-protected-recordlistcontroller": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86198-ProtectedRecordListController.html#deprecation-86198-protected-recordlistcontroller", + "Changelog\/9.5\/Deprecation-86198-ProtectedRecordListController.html#deprecation-86198", "Deprecation: #86198 - Protected RecordListController" ], "deprecation-86207-protected-tstemplate-extension": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86207-ProtectedTstemplateExtension.html#deprecation-86207-protected-tstemplate-extension", + "Changelog\/9.5\/Deprecation-86207-ProtectedTstemplateExtension.html#deprecation-86207", "Deprecation: #86207 - Protected tstemplate extension" ], "deprecation-86210-protected-info-extension": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86210-ProtectedInfoExtension.html#deprecation-86210-protected-info-extension", + "Changelog\/9.5\/Deprecation-86210-ProtectedInfoExtension.html#deprecation-86210", "Deprecation: #86210 - Protected info extension" ], "deprecation-86225-classes-basescriptclass-and-abstractfunctionmodule": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86225-ClassesBaseScriptClassAndAbstractFunctionModule.html#deprecation-86225-classes-basescriptclass-and-abstractfunctionmodule", + "Changelog\/9.5\/Deprecation-86225-ClassesBaseScriptClassAndAbstractFunctionModule.html#deprecation-86225", "Deprecation: #86225 - Classes BaseScriptClass and AbstractFunctionModule" ], "deprecation-86270-config-tx-extbase-objects-and-plugin-tx-plugin-objects": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86270-ExtbaseXclassViaTypoScriptSettings.html#deprecation-86270-config-tx-extbase-objects-and-plugin-tx-plugin-objects", + "Changelog\/9.5\/Deprecation-86270-ExtbaseXclassViaTypoScriptSettings.html#deprecation-86270", "Deprecation: #86270 - config.tx_extbase.objects and plugin.tx_%plugin%.objects" ], "deprecation-86279-various-hooks-and-psr-15-middlewares": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86279-VariousHooksAndPSR-15Middlewares.html#deprecation-86279-various-hooks-and-psr-15-middlewares", + "Changelog\/9.5\/Deprecation-86279-VariousHooksAndPSR-15Middlewares.html#deprecation-86279", "Deprecation: #86279 - Various Hooks and PSR-15 Middlewares" ], "deprecation-86288-frontendbackenduserauthentication-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86288-FrontendBackendUserAuthenticationMethods.html#deprecation-86288-frontendbackenduserauthentication-methods", + "Changelog\/9.5\/Deprecation-86288-FrontendBackendUserAuthenticationMethods.html#deprecation-86288", "Deprecation: #86288 - FrontendBackendUserAuthentication methods" ], "deprecation-86320-mark-internal-tsfe-properties-as-protected": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86320-MarkInternalTSFEPropertiesAsProtected.html#deprecation-86320-mark-internal-tsfe-properties-as-protected", + "Changelog\/9.5\/Deprecation-86320-MarkInternalTSFEPropertiesAsProtected.html#deprecation-86320", "Deprecation: #86320 - Mark internal $TSFE properties as protected" ], "deprecation-86323-configuration-key-site-in-yaml-site-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86323-ConfigurationKeySiteInYAMLSiteConfiguration.html#deprecation-86323-configuration-key-site-in-yaml-site-configuration", + "Changelog\/9.5\/Deprecation-86323-ConfigurationKeySiteInYAMLSiteConfiguration.html#deprecation-86323", "Deprecation: #86323 - Configuration key \"site\" in YAML site configuration" ], "deprecation-86338-change-visibility-of-pagerepository-init": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86338-ChangeVisibilityOfPageRepository-init.html#deprecation-86338-change-visibility-of-pagerepository-init", + "Changelog\/9.5\/Deprecation-86338-ChangeVisibilityOfPageRepository-init.html#deprecation-86338", "Deprecation: #86338 - Change visibility of PageRepository->init" ], "deprecation-86353-cachemanager-usage-in-ext-localconf-php": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86353-CacheManagerUsageInExt_localconfphp.html#deprecation-86353-cachemanager-usage-in-ext-localconf-php", + "Changelog\/9.5\/Deprecation-86353-CacheManagerUsageInExt_localconfphp.html#deprecation-86353", "Deprecation: #86353 - CacheManager usage in ext_localconf.php" ], "deprecation-86366-methods-in-abstractupdate": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86366-MethodsInAbstractUpdate.html#deprecation-86366-methods-in-abstractupdate", + "Changelog\/9.5\/Deprecation-86366-MethodsInAbstractUpdate.html#deprecation-86366", "Deprecation: #86366 - Methods in AbstractUpdate" ], "deprecation-86389-generalutility-getset-and-tsfe-mergingwithgetvars": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86389-GeneralUtility_GETsetAndTSFE-mergingWithGetVars.html#deprecation-86389-generalutility-getset-and-tsfe-mergingwithgetvars", + "Changelog\/9.5\/Deprecation-86389-GeneralUtility_GETsetAndTSFE-mergingWithGetVars.html#deprecation-86389", "Deprecation: #86389 - GeneralUtility::_GETset() and TSFE->mergingWithGetVars()" ], "deprecation-86404-globals-typo3-loaded-ext": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86404-GLOBALSTYPO3_LOADED_EXT.html#deprecation-86404-globals-typo3-loaded-ext", + "Changelog\/9.5\/Deprecation-86404-GLOBALSTYPO3_LOADED_EXT.html#deprecation-86404", "Deprecation: #86404 - $GLOBALS['TYPO3_LOADED_EXT']" ], "deprecation-86406-tca-type-group-internal-type-file-and-file-reference": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86406-TCATypeGroupInternal_typeFileAndFile_reference.html#deprecation-86406-tca-type-group-internal-type-file-and-file-reference", + "Changelog\/9.5\/Deprecation-86406-TCATypeGroupInternal_typeFileAndFile_reference.html#deprecation-86406", "Deprecation: #86406 - TCA type group internal_type file and file_reference" ], "deprecation-86411-tsfe-makecachehash": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86411-TSFE-makeCacheHash.html#deprecation-86411-tsfe-makecachehash", + "Changelog\/9.5\/Deprecation-86411-TSFE-makeCacheHash.html#deprecation-86411", "Deprecation: #86411 - TSFE->makeCacheHash()" ], "deprecation-86433-various-stdwrap-functions-and-contentobjectrenderer-related-methods": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86433-VariousStdWrapFunctionsAndContentObjectRenderer-relatedMethods.html#deprecation-86433-various-stdwrap-functions-and-contentobjectrenderer-related-methods", + "Changelog\/9.5\/Deprecation-86433-VariousStdWrapFunctionsAndContentObjectRenderer-relatedMethods.html#deprecation-86433", "Deprecation: #86433 - Various stdWrap functions and ContentObjectRenderer-related methods" ], "deprecation-86438-pagerenderer-loadjquery": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86438-PageRenderer-loadJQuery.html#deprecation-86438-pagerenderer-loadjquery", + "Changelog\/9.5\/Deprecation-86438-PageRenderer-loadJQuery.html#deprecation-86438", "Deprecation: #86438 - PageRenderer->loadJQuery()" ], "deprecation-86439-mark-several-methods-within-templateservice-as-internal": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86439-MarkSeveralMethodsWithinTemplateServiceAsInternal.html#deprecation-86439-mark-several-methods-within-templateservice-as-internal", + "Changelog\/9.5\/Deprecation-86439-MarkSeveralMethodsWithinTemplateServiceAsInternal.html#deprecation-86439", "Deprecation: #86439 - Mark several methods within TemplateService as internal" ], "deprecation-86440-internal-methods-and-properties-within-rtehtmlparser": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86440-InternalMethodsAndPropertiesWithinRteHtmlParser.html#deprecation-86440-internal-methods-and-properties-within-rtehtmlparser", + "Changelog\/9.5\/Deprecation-86440-InternalMethodsAndPropertiesWithinRteHtmlParser.html#deprecation-86440", "Deprecation: #86440 - Internal Methods and properties within RteHtmlParser" ], "deprecation-86441-various-methods-and-properties-inside-backenduserauthentication": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86441-VariousMethodsAndPropertiesInsideBackendUserAuthentication.html#deprecation-86441-various-methods-and-properties-inside-backenduserauthentication", + "Changelog\/9.5\/Deprecation-86441-VariousMethodsAndPropertiesInsideBackendUserAuthentication.html#deprecation-86441", "Deprecation: #86441 - Various methods and properties inside BackendUserAuthentication" ], "deprecation-86461-mark-various-typoscript-parsing-functionality-as-internal": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86461-MarkVariousTypoScriptParsingFunctionalityAsInternal.html#deprecation-86461-mark-various-typoscript-parsing-functionality-as-internal", + "Changelog\/9.5\/Deprecation-86461-MarkVariousTypoScriptParsingFunctionalityAsInternal.html#deprecation-86461", "Deprecation: #86461 - Mark various TypoScript parsing functionality as internal" ], "deprecation-86466-abstractuserauthentication-fetchuserrecord": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86466-AbstractUserAuthentication-fetchUserRecord.html#deprecation-86466-abstractuserauthentication-fetchuserrecord", + "Changelog\/9.5\/Deprecation-86466-AbstractUserAuthentication-fetchUserRecord.html#deprecation-86466", "Deprecation: #86466 - AbstractUserAuthentication->fetchUserRecord" ], "deprecation-86486-typoscriptfrontendcontroller-processoutput": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Deprecation-86486-TypoScriptFrontendController-processOutput.html#deprecation-86486-typoscriptfrontendcontroller-processoutput", + "Changelog\/9.5\/Deprecation-86486-TypoScriptFrontendController-processOutput.html#deprecation-86486", "Deprecation: #86486 - TypoScriptFrontendController->processOutput()" ], "feature-20051-support-the-canonical-tag": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Feature-20051-SupportTheCanonicalTag.html#feature-20051-support-the-canonical-tag", + "Changelog\/9.5\/Feature-20051-SupportTheCanonicalTag.html#feature-20051", "Feature: #20051 - Support the \"canonical\" tag" ], "feature-80398-utf8mb4-on-mysql-by-default-for-new-instances": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Feature-80398-Utf8mb4OnMysqlByDefaultForNewInstances.html#feature-80398-utf8mb4-on-mysql-by-default-for-new-instances", + "Changelog\/9.5\/Feature-80398-Utf8mb4OnMysqlByDefaultForNewInstances.html#feature-80398", "Feature: #80398 - utf8mb4 on mysql by default for new instances" ], "feature-86160-pagetypeenhancer-for-mapping-type-parameter": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Feature-86160-PageTypeEnhancerForMappingTypeParameter.html#feature-86160-pagetypeenhancer-for-mapping-type-parameter", + "Changelog\/9.5\/Feature-86160-PageTypeEnhancerForMappingTypeParameter.html#feature-86160", "Feature: #86160 - PageTypeEnhancer for mapping &type parameter" ], "feature-86214-implement-static-routes": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Feature-86214-ImplementStaticRoutes.html#feature-86214-implement-static-routes", + "Changelog\/9.5\/Feature-86214-ImplementStaticRoutes.html#feature-86214", "Feature: #86214 - Implement static routes" ], "statictext": [ @@ -64921,13 +65125,13 @@ "feature-86303-variants-for-site-s-base": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Feature-86303-VariantsForSitesBase.html#feature-86303-variants-for-site-s-base", + "Changelog\/9.5\/Feature-86303-VariantsForSitesBase.html#feature-86303", "Feature: #86303 - Variants for site's base" ], "feature-86365-routing-enhancers-and-aspects": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Feature-86365-RoutingEnhancersAndAspects.html#feature-86365-routing-enhancers-and-aspects", + "Changelog\/9.5\/Feature-86365-RoutingEnhancersAndAspects.html#feature-86365", "Feature: #86365 - Routing Enhancers and Aspects" ], "enhancers": [ @@ -64993,31 +65197,31 @@ "feature-86409-allow-usage-of-environment-variables-in-site-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Feature-86409-AllowUsageOfEnvironmentVariablesInSiteConfiguration.html#feature-86409-allow-usage-of-environment-variables-in-site-configuration", + "Changelog\/9.5\/Feature-86409-AllowUsageOfEnvironmentVariablesInSiteConfiguration.html#feature-86409", "Feature: #86409 - Allow usage of environment variables in site configuration" ], "feature-86422-typoscript-gettext-property-site": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Feature-86422-TypoScriptGetTextPropertySite.html#feature-86422-typoscript-gettext-property-site", + "Changelog\/9.5\/Feature-86422-TypoScriptGetTextPropertySite.html#feature-86422", "Feature: #86422 - TypoScript getText property site" ], "feature-86457-tca-type-slug-adds-a-prepending-slash": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Feature-86457-TCATypeSlugAddsAPrependingSlash.html#feature-86457-tca-type-slug-adds-a-prepending-slash", + "Changelog\/9.5\/Feature-86457-TCATypeSlugAddsAPrependingSlash.html#feature-86457", "Feature: #86457 - TCA Type Slug adds a prepending slash" ], "feature-90115-add-support-for-kinyarwanda-language": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Feature-90115-KinyarwandaLanguage.html#feature-90115-add-support-for-kinyarwanda-language", + "Changelog\/9.5\/Feature-90115-KinyarwandaLanguage.html#feature-90115", "Feature: #90115 - Add support for Kinyarwanda language" ], "important-82363-make-extbase-translation-handling-consistent-with-typoscript": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Important-82363-MakeExtBaseTranslationHandlingConsistentWithTyposcript.html#important-82363-make-extbase-translation-handling-consistent-with-typoscript", + "Changelog\/9.5\/Important-82363-MakeExtBaseTranslationHandlingConsistentWithTyposcript.html#important-82363", "Important: #82363 - Make Extbase translation handling consistent with TypoScript" ], "identifiers": [ @@ -65047,13 +65251,13 @@ "important-85560-location-of-xlf-labels-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Important-85560-LocationOfXLFLabelsChanged.html#important-85560-location-of-xlf-labels-changed", + "Changelog\/9.5\/Important-85560-LocationOfXLFLabelsChanged.html#important-85560", "Important: #85560 - Location of XLF labels changed" ], "important-86173-location-of-supplied-htaccess-web-config-files-changed": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5\/Important-86173-LocationOfSuppliedHtaccessWebconfigFilesChanged.html#important-86173-location-of-supplied-htaccess-web-config-files-changed", + "Changelog\/9.5\/Important-86173-LocationOfSuppliedHtaccessWebconfigFilesChanged.html#important-86173", "Important: #86173 - Location of supplied .htaccess \/ web.config files changed" ], "new-location-of-file-templates": [ @@ -65071,31 +65275,31 @@ "deprecation-86907-deprecate-usage-of-dependency-injection-with-non-public-properties": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Deprecation-86907-DeprecateUsageOfDependencyInjectionWithNonPublicProperties.html#deprecation-86907-deprecate-usage-of-dependency-injection-with-non-public-properties", + "Changelog\/9.5.x\/Deprecation-86907-DeprecateUsageOfDependencyInjectionWithNonPublicProperties.html#deprecation-86907", "Deprecation: #86907 - Deprecate usage of dependency injection with non public properties" ], "deprecation-87277-fluid-class-aliases": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Deprecation-87277-FluidClassAliases.html#deprecation-87277-fluid-class-aliases", + "Changelog\/9.5.x\/Deprecation-87277-FluidClassAliases.html#deprecation-87277", "Deprecation: #87277 - Fluid Class Aliases" ], "feature-83334-add-improved-building-of-query-strings": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Feature-83334-AddImprovedBuildQueryString.html#feature-83334-add-improved-building-of-query-strings", + "Changelog\/9.5.x\/Feature-83334-AddImprovedBuildQueryString.html#feature-83334", "Feature: #83334 - Add improved building of query strings" ], "feature-86331-native-url-support-for-mountpoints": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Feature-86331-NativeURLSupportForMountPoints.html#feature-86331-native-url-support-for-mountpoints", + "Changelog\/9.5.x\/Feature-86331-NativeURLSupportForMountPoints.html#feature-86331", "Feature: #86331 - Native URL support for MountPoints" ], "feature-86740-replace-characters-in-slug": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Feature-86740-AllowRemovalOfSlashInSlug.html#feature-86740-replace-characters-in-slug", + "Changelog\/9.5.x\/Feature-86740-AllowRemovalOfSlashInSlug.html#feature-86740", "Feature: #86740 - Replace characters in slug" ], "easy-example": [ @@ -65113,37 +65317,37 @@ "feature-86762-enhanced-fallback-modes-for-translated-content": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Feature-86762-EnhancedFallbackModesForTranslatedContent.html#feature-86762-enhanced-fallback-modes-for-translated-content", + "Changelog\/9.5.x\/Feature-86762-EnhancedFallbackModesForTranslatedContent.html#feature-86762", "Feature: #86762 - Enhanced fallback modes for translated content" ], "feature-86826-recursive-record-sitemap": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Feature-86826-RecursiveRecordSitemap.html#feature-86826-recursive-record-sitemap", + "Changelog\/9.5.x\/Feature-86826-RecursiveRecordSitemap.html#feature-86826", "Feature: #86826 - Recursive record sitemap" ], "feature-86881-support-of-features-in-expression-language": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Feature-86881-SupportOfFeaturesInExpressionLanguage.html#feature-86881-support-of-features-in-expression-language", + "Changelog\/9.5.x\/Feature-86881-SupportOfFeaturesInExpressionLanguage.html#feature-86881", "Feature: #86881 - Support of Features in expression language" ], "feature-86973-typoscript-gettext-property-sitelanguage": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Feature-86973-TypoScriptGetTextPropertySiteLanguage.html#feature-86973-typoscript-gettext-property-sitelanguage", + "Changelog\/9.5.x\/Feature-86973-TypoScriptGetTextPropertySiteLanguage.html#feature-86973", "Feature: #86973 - TypoScript getText property siteLanguage" ], "feature-87033-new-typoscript-property-config-htmltag-attributes": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Feature-87033-NewTypoScriptPropertyConfightmlTagattributes.html#feature-87033-new-typoscript-property-config-htmltag-attributes", + "Changelog\/9.5.x\/Feature-87033-NewTypoScriptPropertyConfightmlTagattributes.html#feature-87033", "Feature: #87033 - New TypoScript Property config.htmlTag.attributes" ], "feature-87085-fallback-options-for-slug-fields": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Feature-87085-FallbackOptionsForSlugFields.html#feature-87085-fallback-options-for-slug-fields", + "Changelog\/9.5.x\/Feature-87085-FallbackOptionsForSlugFields.html#feature-87085", "Feature: #87085 - Fallback options for slug fields" ], "hint": [ @@ -65155,55 +65359,55 @@ "feature-87380-introduce-sitelanguageawareinterface-to-denote-site-language-awareness": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Feature-87380-IntroduceSiteLanguageAwareInterfaceToDenoteSiteLanguageAwareness.html#feature-87380-introduce-sitelanguageawareinterface-to-denote-site-language-awareness", + "Changelog\/9.5.x\/Feature-87380-IntroduceSiteLanguageAwareInterfaceToDenoteSiteLanguageAwareness.html#feature-87380", "Feature: #87380 - Introduce SiteLanguageAwareInterface to denote site language awareness" ], "feature-87610-new-fal-api-to-search-for-files-including-their-meta-data": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Feature-87610-New-FAL-API-to-search-for-files.html#feature-87610-new-fal-api-to-search-for-files-including-their-meta-data", + "Changelog\/9.5.x\/Feature-87610-New-FAL-API-to-search-for-files.html#feature-87610", "Feature: #87610 - New FAL API to search for files including their meta data" ], "feature-87748-add-siteprocessor": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Feature-87748-AddSiteProcessor.html#feature-87748-add-siteprocessor", + "Changelog\/9.5.x\/Feature-87748-AddSiteProcessor.html#feature-87748", "Feature: #87748 - Add SiteProcessor" ], "feature-88198-tca-based-slug-modifiers-for-extensions": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Feature-88198-TCA-basedSlugModifiersForExtensions.html#feature-88198-tca-based-slug-modifiers-for-extensions", + "Changelog\/9.5.x\/Feature-88198-TCA-basedSlugModifiersForExtensions.html#feature-88198", "Feature: #88198 - TCA-based Slug modifiers for extensions" ], "feature-89526-featureflag-newtranslationserver": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Feature-89556-FeatureFlagBetaTranslationServer.html#feature-89526-featureflag-newtranslationserver", + "Changelog\/9.5.x\/Feature-89556-FeatureFlagBetaTranslationServer.html#feature-89526", "Feature: #89526 - FeatureFlag: newTranslationServer" ], "feature-90328-support-of-macedonian-mk": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Feature-90328-SupportOfMacedonian.html#feature-90328-support-of-macedonian-mk", + "Changelog\/9.5.x\/Feature-90328-SupportOfMacedonian.html#feature-90328", "Feature: #90328 - Support of Macedonian (MK)" ], "feature-91354-integrate-server-response-security-checks": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Feature-91354-IntegrateServerResponseSecurityChecks.html#feature-91354-integrate-server-response-security-checks", + "Changelog\/9.5.x\/Feature-91354-IntegrateServerResponseSecurityChecks.html#feature-91354", "Feature: #91354 - Integrate server response security checks" ], "feature-94825-new-f-sanitize-html-fluid-viewhelper": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Feature-94825-SanitizeHtmlFluidViewHelper.html#feature-94825-new-f-sanitize-html-fluid-viewhelper", + "Changelog\/9.5.x\/Feature-94825-SanitizeHtmlFluidViewHelper.html#feature-94825-1667998632", "Feature: #94825 - New f:sanitize.html Fluid ViewHelper" ], "important-65636-file-meta-data-can-now-be-edited-on-read-only-storages": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Important-65636-AllowMetaDataEditingOnReadOnlyStorages.html#important-65636-file-meta-data-can-now-be-edited-on-read-only-storages", + "Changelog\/9.5.x\/Important-65636-AllowMetaDataEditingOnReadOnlyStorages.html#important-65636", "Important: #65636 - File meta data can now be edited on read only storages" ], "allowing-meta-data-editing-on-read-only-storage": [ @@ -65215,25 +65419,25 @@ "important-76166-x-ua-compatible-not-set-in-backend-anymore": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Important-76166-X-UA-CompatibleNotSetInBackendAnymore.html#important-76166-x-ua-compatible-not-set-in-backend-anymore", + "Changelog\/9.5.x\/Important-76166-X-UA-CompatibleNotSetInBackendAnymore.html#important-76166", "Important: #76166 - X-UA-Compatible not set in backend anymore" ], "important-84105-streamline-deprecation-log-handling": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Important-84105-StreamlineDeprecationLogHandling.html#important-84105-streamline-deprecation-log-handling", + "Changelog\/9.5.x\/Important-84105-StreamlineDeprecationLogHandling.html#important-84105", "Important: #84105 - Streamline deprecation log handling" ], "important-84985-unified-workspace-restriction-for-database-queries": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Important-84985-UnifiedWorkspaceRestrictionForDatabaseQueries.html#important-84985-unified-workspace-restriction-for-database-queries", + "Changelog\/9.5.x\/Important-84985-UnifiedWorkspaceRestrictionForDatabaseQueries.html#important-84985", "Important: #84985 - Unified Workspace Restriction for Database Queries" ], "important-86577-query-parameters-are-now-included-in-canonicalized-urls": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Important-86577-QueryParametersAreNowIncludedInCanonicalizedUrls.html#important-86577-query-parameters-are-now-included-in-canonicalized-urls", + "Changelog\/9.5.x\/Important-86577-QueryParametersAreNowIncludedInCanonicalizedUrls.html#important-86577", "Important: #86577 - Query parameters are now included in canonicalized URLs" ], "possibility-to-define-query-parameters-to-be-included-in-canonicalized-urls": [ @@ -65245,67 +65449,67 @@ "important-86785-exclude-logger-from-serialisation-on-save-for-scheduler-task": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Important-86785-ExcludeLoggerFromSerialisationForSchedulerTasks.html#important-86785-exclude-logger-from-serialisation-on-save-for-scheduler-task", + "Changelog\/9.5.x\/Important-86785-ExcludeLoggerFromSerialisationForSchedulerTasks.html#important-86785", "Important: #86785 - Exclude logger from serialisation on save for scheduler task" ], "important-86895-route-aspects-take-precedence-over-requirements": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Important-86895-RouteAspectsTakePrecedenceOverRequirements.html#important-86895-route-aspects-take-precedence-over-requirements", + "Changelog\/9.5.x\/Important-86895-RouteAspectsTakePrecedenceOverRequirements.html#important-86895", "Important: #86895 - Route aspects take precedence over requirements" ], "important-86994-indexed-search-indexes-pages-using-route-enhancers": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Important-86994-IndexedSearchWithRouteEnhancers.html#important-86994-indexed-search-indexes-pages-using-route-enhancers", + "Changelog\/9.5.x\/Important-86994-IndexedSearchWithRouteEnhancers.html#important-86994", "Important: #86994 - Indexed Search indexes pages using route enhancers" ], "important-87028-access-objects-from-objectstorage-using-numeric-value": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Important-87028-AccessObjectsFromObjectStorageUsingNumericValue.html#important-87028-access-objects-from-objectstorage-using-numeric-value", + "Changelog\/9.5.x\/Important-87028-AccessObjectsFromObjectStorageUsingNumericValue.html#important-87028", "Important: #87028 - Access objects from ObjectStorage using numeric value" ], "important-87980-page-is-being-generated-message-has-been-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Important-87980-PageIsBeingGeneratedMessageHasBeenRemoved.html#important-87980-page-is-being-generated-message-has-been-removed", + "Changelog\/9.5.x\/Important-87980-PageIsBeingGeneratedMessageHasBeenRemoved.html#important-87980", "Important: #87980 - \"Page is being generated\" message has been removed" ], "important-88045-locales-dependencies-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Important-88045-LocalesDependenciesConfiguration.html#important-88045-locales-dependencies-configuration", + "Changelog\/9.5.x\/Important-88045-LocalesDependenciesConfiguration.html#important-88045", "Important: #88045 - Locales dependencies configuration" ], "important-88720-respect-site-for-persisted-mappers": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Important-88720-RespectSiteForPersistedMappers.html#important-88720-respect-site-for-persisted-mappers", + "Changelog\/9.5.x\/Important-88720-RespectSiteForPersistedMappers.html#important-88720", "Important: #88720 - Respect site for persisted mappers" ], "important-89269-introduce-upgrade-wizard-for-invalid-backend-user-configuration": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Important-89269-IntroduceUpgradeWizardForInvalidBackendUserConfiguration.html#important-89269-introduce-upgrade-wizard-for-invalid-backend-user-configuration", + "Changelog\/9.5.x\/Important-89269-IntroduceUpgradeWizardForInvalidBackendUserConfiguration.html#important-89269", "Important: #89269 - Introduce Upgrade Wizard for invalid Backend User configuration" ], "important-90911-package-algo26-matthias-idna-convert-removed": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Important-90911-PackageAlgo26-matthiasidna-convertRemoved.html#important-90911-package-algo26-matthias-idna-convert-removed", + "Changelog\/9.5.x\/Important-90911-PackageAlgo26-matthiasidna-convertRemoved.html#important-90911", "Important: #90911 - Package algo26-matthias\/idna-convert removed" ], "important-91242-introduce-backend-route-referrer-check": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Important-91242-IntroduceBackendRouteReferrerCheck.html#important-91242-introduce-backend-route-referrer-check", + "Changelog\/9.5.x\/Important-91242-IntroduceBackendRouteReferrerCheck.html#important-91242", "Important: #91242 - Introduce Backend Route Referrer Check" ], "important-92836-introduce-sudo-mode-for-install-tool-accessed-via-backend": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Important-92836-IntroduceSudoModeForInstallToolAccessedViaBackend.html#important-92836-introduce-sudo-mode-for-install-tool-accessed-via-backend", + "Changelog\/9.5.x\/Important-92836-IntroduceSudoModeForInstallToolAccessedViaBackend.html#important-92836", "Important: #92836 - Introduce sudo mode for Install Tool accessed via backend" ], "potential-side-effects": [ @@ -65317,7 +65521,7 @@ "important-94484-introduce-html-sanitizer": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Important-94484-IntroduceHTMLSanitizer.html#important-94484-introduce-html-sanitizer", + "Changelog\/9.5.x\/Important-94484-IntroduceHTMLSanitizer.html#important-94484", "Important: #94484 - Introduce HTML Sanitizer" ], "php-api": [ @@ -65359,7 +65563,7 @@ "important-94492-introduce-svg-sanitizer": [ "TYPO3 Core Changelog", "main", - "Changelog\/9.5.x\/Important-94492-IntroduceSVGSanitizer.html#important-94492-introduce-svg-sanitizer", + "Changelog\/9.5.x\/Important-94492-IntroduceSVGSanitizer.html#important-94492", "Important: #94492 - Introduce SVG Sanitizer" ], "introduced-aspects": [ @@ -65425,19 +65629,19 @@ "10-x-changes-by-type": [ "TYPO3 Core Changelog", "main", - "Changelog-10-combined.html#10-x-changes-by-type", + "Changelog-10-combined.html#changelog-v10-byType", "10.x Changes by type" ], "deprecations": [ "TYPO3 Core Changelog", "main", - "Changelog-9-combined.html#deprecations", + "Changelog-9-combined.html#changelog-v9-dep", "Deprecations" ], "important-notes": [ "TYPO3 Core Changelog", "main", - "Changelog-9-combined.html#important-notes", + "Changelog-9-combined.html#changelog-v9-imp", "Important notes" ], "changelog-v10": [ @@ -65455,7 +65659,7 @@ "11-x-changes-by-type": [ "TYPO3 Core Changelog", "main", - "Changelog-11-combined.html#11-x-changes-by-type", + "Changelog-11-combined.html#changelog-v11-byType", "11.x Changes by type" ], "changelog-v11": [ @@ -65467,7 +65671,7 @@ "12-x-changes-by-type": [ "TYPO3 Core Changelog", "main", - "Changelog-12-combined.html#12-x-changes-by-type", + "Changelog-12-combined.html#changelog-v12-byType", "12.x Changes by type" ], "changelog-v12": [ @@ -65479,7 +65683,7 @@ "13-x-changes-by-type": [ "TYPO3 Core Changelog", "main", - "Changelog-13-combined.html#13-x-changes-by-type", + "Changelog-13-combined.html#changelog-v13-byType", "13.x Changes by type" ], "changelog-v13": [ @@ -65491,7 +65695,7 @@ "14-x-changes-by-type": [ "TYPO3 Core Changelog", "main", - "Changelog-14-combined.html#14-x-changes-by-type", + "Changelog-14-combined.html#changelog-v14-byType", "14.x Changes by type" ], "changelog-v14": [ @@ -65503,7 +65707,7 @@ "7-x-changes-by-type": [ "TYPO3 Core Changelog", "main", - "Changelog-7-combined.html#7-x-changes-by-type", + "Changelog-7-combined.html#changelog-v7-byType", "7.x Changes by type" ], "changelog-v7": [ @@ -65515,7 +65719,7 @@ "8-x-changes-by-type": [ "TYPO3 Core Changelog", "main", - "Changelog-8-combined.html#8-x-changes-by-type", + "Changelog-8-combined.html#changelog-v8-byType", "8.x Changes by type" ], "changelog-v8": [ @@ -65527,7 +65731,7 @@ "9-x-changes-by-type": [ "TYPO3 Core Changelog", "main", - "Changelog-9-combined.html#9-x-changes-by-type", + "Changelog-9-combined.html#changelog-v9-byType", "9.x Changes by type" ], "changelog-v9": [ diff --git a/legacy_hook/tests/Unit/Fixtures/Permalinks/c/typo3/cms-seo/12.4/en-us/objects.inv.json b/legacy_hook/tests/Unit/Fixtures/Permalinks/c/typo3/cms-seo/12.4/en-us/objects.inv.json index a50ec62a..da25d239 100644 --- a/legacy_hook/tests/Unit/Fixtures/Permalinks/c/typo3/cms-seo/12.4/en-us/objects.inv.json +++ b/legacy_hook/tests/Unit/Fixtures/Permalinks/c/typo3/cms-seo/12.4/en-us/objects.inv.json @@ -181,7 +181,7 @@ "configuration-1": [ "SEO", "12.4", - "Configuration\/Index.html#configuration-1", + "Configuration\/Index.html#configuration", "Configuration" ], "typoscript-settings": [ @@ -229,19 +229,19 @@ "tags": [ "SEO", "12.4", - "Configuration\/Index.html#tags", + "Configuration\/Index.html#config-tags", "Tags" ], "hreflang-link-tags": [ "SEO", "12.4", - "Configuration\/Index.html#hreflang-link-tags", + "Configuration\/Index.html#config-hreflang-tags", "Hreflang link-tags" ], "canonical-tag": [ "SEO", "12.4", - "Configuration\/Index.html#canonical-tag", + "Configuration\/Index.html#config-canonical-tag", "Canonical Tag" ], "working-links": [ @@ -283,37 +283,37 @@ "developer-corner": [ "SEO", "12.4", - "Developer\/Index.html#developer-corner", + "Developer\/Index.html#developer", "Developer Corner" ], "dashboard-widgets-for-seo": [ "SEO", "12.4", - "Editor\/DashboardWidgets.html#dashboard-widgets-for-seo", + "Editor\/DashboardWidgets.html#dashboard-widgets", "Dashboard widgets for SEO" ], "missing-meta-description-widget": [ "SEO", "12.4", - "Editor\/DashboardWidgets.html#missing-meta-description-widget", + "Editor\/DashboardWidgets.html#dashboard-widgets-missing-description", "\"Missing Meta Description\" widget" ], "adding-the-missing-meta-description-widget-to-your-personal-dashboard": [ "SEO", "12.4", - "Editor\/DashboardWidgets.html#adding-the-missing-meta-description-widget-to-your-personal-dashboard", + "Editor\/DashboardWidgets.html#dashboard-widgets-missing-description-add", "Adding the \"Missing Meta Description\" widget to your personal Dashboard" ], "using-the-missing-meta-description-widget-to-improve-seo-results": [ "SEO", "12.4", - "Editor\/DashboardWidgets.html#using-the-missing-meta-description-widget-to-improve-seo-results", + "Editor\/DashboardWidgets.html#dashboard-widgets-missing-description-use", "Using the \"Missing Meta Description\" widget to improve SEO results" ], "for-editors-1": [ "SEO", "12.4", - "Editor\/Index.html#for-editors-1", + "Editor\/Index.html#for-editors", "For Editors" ], "general-tab": [ @@ -355,7 +355,7 @@ "index-this-page": [ "SEO", "12.4", - "Editor\/Index.html#index-this-page", + "Editor\/Index.html#index-page", "Index this page" ], "follow-this-page": [ @@ -409,31 +409,31 @@ "general-recommendations": [ "SEO", "12.4", - "GeneralRecommendations\/Index.html#general-recommendations", + "GeneralRecommendations\/Index.html#recommendations", "General Recommendations" ], "recommendations-for-additional-seo-extensions": [ "SEO", "12.4", - "GeneralRecommendations\/Index.html#recommendations-for-additional-seo-extensions", + "GeneralRecommendations\/Index.html#recommendations_extensions", "Recommendations for additional SEO extensions" ], "recommendations-for-the-description-field": [ "SEO", "12.4", - "GeneralRecommendations\/Index.html#recommendations-for-the-description-field", + "GeneralRecommendations\/Index.html#recommendations_field_description", "Recommendations for the description field" ], "typo3-search-engine-optimization": [ "SEO", "12.4", - "Index.html#typo3-search-engine-optimization", + "Index.html#start", "TYPO3 Search Engine Optimization" ], "installation-1": [ "SEO", "12.4", - "Installation\/Index.html#installation-1", + "Installation\/Index.html#installation", "Installation" ], "installation-with-composer": [ @@ -451,7 +451,7 @@ "introduction-1": [ "SEO", "12.4", - "Introduction\/Index.html#introduction-1", + "Introduction\/Index.html#introduction", "Introduction" ], "what-does-it-do": [ diff --git a/legacy_hook/tests/Unit/Fixtures/Permalinks/c/typo3/cms-seo/13.4/en-us/objects.inv.json b/legacy_hook/tests/Unit/Fixtures/Permalinks/c/typo3/cms-seo/13.4/en-us/objects.inv.json index bad91357..32c9895a 100644 --- a/legacy_hook/tests/Unit/Fixtures/Permalinks/c/typo3/cms-seo/13.4/en-us/objects.inv.json +++ b/legacy_hook/tests/Unit/Fixtures/Permalinks/c/typo3/cms-seo/13.4/en-us/objects.inv.json @@ -24,23 +24,17 @@ "Developer\/Index.html", "Developer Corner" ], - "Editor\/DashboardWidgets": [ + "Features\/Index": [ "SEO", "13.4", - "Editor\/DashboardWidgets.html", - "Dashboard widgets for SEO" + "Features\/Index.html", + "Features of the TYPO3 system extension \"seo\"" ], - "Editor\/Index": [ + "Features\/XmlSitemap": [ "SEO", "13.4", - "Editor\/Index.html", - "For Editors" - ], - "GeneralRecommendations\/Index": [ - "SEO", - "13.4", - "GeneralRecommendations\/Index.html", - "General Recommendations" + "Features\/XmlSitemap.html", + "XML sitemap" ], "Index": [ "SEO", @@ -80,24 +74,6 @@ "Configuration\/Index.html#configuration-site-sets", "Site sets" ], - "config-tags": [ - "SEO", - "13.4", - "Configuration\/Index.html#config-tags", - "Tags" - ], - "config-hreflang-tags": [ - "SEO", - "13.4", - "Configuration\/Index.html#config-hreflang-tags", - "Hreflang link-tags" - ], - "config-canonical-tag": [ - "SEO", - "13.4", - "Configuration\/Index.html#config-canonical-tag", - "Canonical Tag" - ], "configuration-site-set-settings": [ "SEO", "13.4", @@ -116,372 +92,330 @@ "Developer\/Index.html#developer", "Developer Corner" ], - "dashboard-widgets": [ + "features": [ "SEO", "13.4", - "Editor\/DashboardWidgets.html#dashboard-widgets", - "Dashboard widgets for SEO" + "Features\/Index.html#features", + "Features of the TYPO3 system extension \"seo\"" ], - "dashboard-widgets-missing-description": [ + "seo-page-properties": [ "SEO", "13.4", - "Editor\/DashboardWidgets.html#dashboard-widgets-missing-description", - "\"Missing Meta Description\" widget" + "Features\/Index.html#seo-page-properties", + "Additional tabs \"SEO\" and \"Social media\" in the page properties" ], - "dashboard-widgets-missing-description-add": [ + "seo-page-dashboard": [ "SEO", "13.4", - "Editor\/DashboardWidgets.html#dashboard-widgets-missing-description-add", - "Adding the \"Missing Meta Description\" widget to your personal Dashboard" + "Features\/Index.html#seo-page-dashboard", + "A Dashboard Widget for SEO" ], - "dashboard-widgets-missing-description-use": [ + "xml-sitemap": [ "SEO", "13.4", - "Editor\/DashboardWidgets.html#dashboard-widgets-missing-description-use", - "Using the \"Missing Meta Description\" widget to improve SEO results" + "Features\/Index.html#xml-sitemap", + "XML Sitemap" ], - "for-editors": [ + "canonical-url": [ "SEO", "13.4", - "Editor\/Index.html#for-editors", - "For Editors" + "Features\/Index.html#canonical-url", + "Canonical URL" ], - "title-for-search-engines": [ + "seo-page-title-provider": [ "SEO", "13.4", - "Editor\/Index.html#title-for-search-engines", - "Title for search engines" + "Features\/Index.html#seo-page-title-provider", + "SEO page title provider" ], - "description": [ + "seo-meta-tag-provider": [ "SEO", "13.4", - "Editor\/Index.html#description", - "Description" + "Features\/Index.html#seo-meta-tag-provider", + "Additional meta tag handling" ], - "index-page": [ + "seo-hreflang": [ "SEO", "13.4", - "Editor\/Index.html#index-page", - "Index this page" + "Features\/Index.html#seo-hreflang", + "Hreflang tags" ], - "recommendations": [ + "xmlsitemap": [ "SEO", "13.4", - "GeneralRecommendations\/Index.html#recommendations", - "General Recommendations" + "Features\/XmlSitemap.html#xmlsitemap", + "XML sitemap" ], - "recommendations-extensions": [ + "xmlsitemap-url": [ "SEO", "13.4", - "GeneralRecommendations\/Index.html#recommendations_extensions", - "Recommendations for additional SEO extensions" + "Features\/XmlSitemap.html#xmlsitemap-url", + "How to access your XML sitemap" ], - "recommendations-field-description": [ + "xmlsitemap-routing": [ "SEO", "13.4", - "GeneralRecommendations\/Index.html#recommendations_field_description", - "Recommendations for the description field" + "Features\/XmlSitemap.html#xmlsitemap-routing", + "How to setup routing for the XML sitemap" ], - "start": [ + "xmlsitemap-data-providers": [ "SEO", "13.4", - "Index.html#start", - "TYPO3 Search Engine Optimization" + "Features\/XmlSitemap.html#xmlsitemap-data-providers", + "Data providers for XML sitemaps" ], - "installation": [ + "xmlsitemap-data-providers-pages": [ "SEO", "13.4", - "Installation\/Index.html#installation", - "Installation" + "Features\/XmlSitemap.html#xmlsitemap-data-providers-pages", + "For pages: PagesXmlSitemapDataProvider" ], - "introduction": [ + "xmlsitemap-data-providers-records": [ "SEO", "13.4", - "Introduction\/Index.html#introduction", - "Introduction" + "Features\/XmlSitemap.html#xmlsitemap-data-providers-records", + "For database records: RecordsXmlSitemapDataProvider" ], - "screenshots": [ - "SEO", - "13.4", - "Introduction\/Index.html#screenshots", - "Screenshots" - ] - }, - "std:title": { - "configuration-1": [ + "xmlsitemap-changefreq-priority": [ "SEO", "13.4", - "Configuration\/Index.html#configuration-1", - "Configuration" + "Features\/XmlSitemap.html#xmlsitemap-changefreq-priority", + "Change frequency and priority" ], - "site-sets": [ + "xmlsitemap-without-sorting": [ "SEO", "13.4", - "Configuration\/Index.html#site-sets", - "Site sets" + "Features\/XmlSitemap.html#xmlsitemap-without-sorting", + "Sitemap of records without sorting field" ], - "typoscript-settings": [ + "xmlsitemap-custom-provider": [ "SEO", "13.4", - "Configuration\/Index.html#typoscript-settings", - "TypoScript Settings" + "Features\/XmlSitemap.html#xmlsitemap-custom-provider", + "Create a custom XML sitemap provider" ], - "site-configuration": [ + "sitemap-xslfile": [ "SEO", "13.4", - "Configuration\/Index.html#site-configuration", - "Site configuration" + "Features\/XmlSitemap.html#sitemap-xslFile", + "Use a customized sitemap XSL file" ], - "entry-point": [ + "start": [ "SEO", "13.4", - "Configuration\/Index.html#entry-point", - "Entry Point" + "Index.html#start", + "TYPO3 Search Engine Optimization" ], - "languages": [ + "installation": [ "SEO", "13.4", - "Configuration\/Index.html#languages", - "Languages" + "Installation\/Index.html#installation", + "Installation" ], - "error-handling": [ + "introduction": [ "SEO", "13.4", - "Configuration\/Index.html#error-handling", - "Error Handling" + "Introduction\/Index.html#introduction", + "Introduction" ], - "robots-txt": [ + "confval-menu-seo-settings": [ "SEO", "13.4", - "Configuration\/Index.html#robots-txt", - "robots.txt" + "Configuration\/Settings.html#confval-menu-seo-settings", + "" ], - "static-routes-and-redirects": [ + "confval-seo-settings-category-seo": [ "SEO", "13.4", - "Configuration\/Index.html#static-routes-and-redirects", - "Static Routes and redirects" + "Configuration\/Settings.html#confval-seo-settings-category-seo", + "seo" ], - "tags": [ + "confval-seo-settings-category-seo-templates": [ "SEO", "13.4", - "Configuration\/Index.html#tags", - "Tags" + "Configuration\/Settings.html#confval-seo-settings-category-seo-templates", + "seo.templates" ], - "hreflang-link-tags": [ + "confval-seo-settings-seo-sitemap-view-templaterootpath": [ "SEO", "13.4", - "Configuration\/Index.html#hreflang-link-tags", - "Hreflang link-tags" + "Configuration\/Settings.html#confval-seo-settings-seo-sitemap-view-templaterootpath", + "seo.sitemap.view.templateRootPath" ], - "canonical-tag": [ + "confval-seo-settings-seo-sitemap-view-partialrootpath": [ "SEO", "13.4", - "Configuration\/Index.html#canonical-tag", - "Canonical Tag" + "Configuration\/Settings.html#confval-seo-settings-seo-sitemap-view-partialrootpath", + "seo.sitemap.view.partialRootPath" ], - "working-links": [ + "confval-seo-settings-seo-sitemap-view-layoutrootpath": [ "SEO", "13.4", - "Configuration\/Index.html#working-links", - "Working links" + "Configuration\/Settings.html#confval-seo-settings-seo-sitemap-view-layoutrootpath", + "seo.sitemap.view.layoutRootPath" ], - "typoscript-examples": [ + "confval-seo-settings-seo-sitemap-pages-excludeddoktypes": [ "SEO", "13.4", - "Configuration\/Index.html#typoscript-examples", - "TypoScript examples" + "Configuration\/Settings.html#confval-seo-settings-seo-sitemap-pages-excludeddoktypes", + "seo.sitemap.pages.excludedDoktypes" ], - "setting-missing-opengraph-meta-tags": [ + "confval-seo-settings-seo-sitemap-pages-excludepagesrecursive": [ "SEO", "13.4", - "Configuration\/Index.html#setting-missing-opengraph-meta-tags", - "Setting missing OpenGraph meta tags" + "Configuration\/Settings.html#confval-seo-settings-seo-sitemap-pages-excludepagesrecursive", + "seo.sitemap.pages.excludePagesRecursive" ], - "setting-fallbacks-for-meta-tags": [ + "confval-seo-settings-seo-sitemap-pages-additionalwhere": [ "SEO", "13.4", - "Configuration\/Index.html#setting-fallbacks-for-meta-tags", - "Setting fallbacks for meta tags" - ], - "setting-fallbacks-for-og-image-and-twitter-image": [ + "Configuration\/Settings.html#confval-seo-settings-seo-sitemap-pages-additionalwhere", + "seo.sitemap.pages.additionalWhere" + ] + }, + "std:title": { + "configuration-1": [ "SEO", "13.4", - "Configuration\/Index.html#setting-fallbacks-for-og-image-and-twitter-image", - "Setting fallbacks for og:image and twitter:image" + "Configuration\/Index.html#configuration", + "Configuration" ], - "setting-defaults-for-the-author-on-meta-tags": [ + "site-sets": [ "SEO", "13.4", - "Configuration\/Index.html#setting-defaults-for-the-author-on-meta-tags", - "Setting defaults for the author on meta tags" + "Configuration\/Index.html#configuration-site-sets", + "Site sets" ], "site-sets-settings-of-ext-seo": [ "SEO", "13.4", - "Configuration\/Settings.html#site-sets-settings-of-ext-seo", + "Configuration\/Settings.html#configuration-site-set-settings", "Site sets settings of EXT:seo" ], "settings-editor-1": [ "SEO", "13.4", - "Configuration\/SettingsEditor.html#settings-editor-1", + "Configuration\/SettingsEditor.html#settings-editor", "Settings editor" ], "developer-corner": [ "SEO", "13.4", - "Developer\/Index.html#developer-corner", + "Developer\/Index.html#developer", "Developer Corner" ], - "dashboard-widgets-for-seo": [ - "SEO", - "13.4", - "Editor\/DashboardWidgets.html#dashboard-widgets-for-seo", - "Dashboard widgets for SEO" - ], - "missing-meta-description-widget": [ - "SEO", - "13.4", - "Editor\/DashboardWidgets.html#missing-meta-description-widget", - "\"Missing Meta Description\" widget" - ], - "adding-the-missing-meta-description-widget-to-your-personal-dashboard": [ - "SEO", - "13.4", - "Editor\/DashboardWidgets.html#adding-the-missing-meta-description-widget-to-your-personal-dashboard", - "Adding the \"Missing Meta Description\" widget to your personal Dashboard" - ], - "using-the-missing-meta-description-widget-to-improve-seo-results": [ - "SEO", - "13.4", - "Editor\/DashboardWidgets.html#using-the-missing-meta-description-widget-to-improve-seo-results", - "Using the \"Missing Meta Description\" widget to improve SEO results" - ], - "for-editors-1": [ - "SEO", - "13.4", - "Editor\/Index.html#for-editors-1", - "For Editors" - ], - "general-tab": [ + "features-of-the-typo3-system-extension-seo": [ "SEO", "13.4", - "Editor\/Index.html#general-tab", - "General tab" + "Features\/Index.html#features", + "Features of the TYPO3 system extension \"seo\"" ], - "page-title": [ + "additional-tabs-seo-and-social-media-in-the-page-properties": [ "SEO", "13.4", - "Editor\/Index.html#page-title", - "Page Title" + "Features\/Index.html#seo-page-properties", + "Additional tabs \"SEO\" and \"Social media\" in the page properties" ], - "url-segment-slug": [ + "a-dashboard-widget-for-seo": [ "SEO", "13.4", - "Editor\/Index.html#url-segment-slug", - "URL Segment (slug)" + "Features\/Index.html#seo-page-dashboard", + "A Dashboard Widget for SEO" ], - "seo-tab": [ - "SEO", - "13.4", - "Editor\/Index.html#seo-tab", - "SEO Tab" - ], - "title-for-search-engines": [ + "xml-sitemap": [ "SEO", "13.4", - "Editor\/Index.html#title-for-search-engines", - "Title for search engines" + "Features\/XmlSitemap.html#xmlsitemap", + "XML sitemap" ], - "description": [ + "canonical-url": [ "SEO", "13.4", - "Editor\/Index.html#description", - "Description" + "Features\/Index.html#canonical-url", + "Canonical URL" ], - "index-this-page": [ + "seo-page-title-provider": [ "SEO", "13.4", - "Editor\/Index.html#index-this-page", - "Index this page" + "Features\/Index.html#seo-page-title-provider", + "SEO page title provider" ], - "follow-this-page": [ + "additional-meta-tag-handling": [ "SEO", "13.4", - "Editor\/Index.html#follow-this-page", - "Follow this page" + "Features\/Index.html#seo-meta-tag-provider", + "Additional meta tag handling" ], - "canonical-link": [ + "hreflang-tags": [ "SEO", "13.4", - "Editor\/Index.html#canonical-link", - "Canonical link" + "Features\/Index.html#seo-hreflang", + "Hreflang tags" ], - "change-frequency": [ + "how-to-access-your-xml-sitemap": [ "SEO", "13.4", - "Editor\/Index.html#change-frequency", - "Change frequency" + "Features\/XmlSitemap.html#xmlsitemap-url", + "How to access your XML sitemap" ], - "priority": [ + "how-to-setup-routing-for-the-xml-sitemap": [ "SEO", "13.4", - "Editor\/Index.html#priority", - "Priority" + "Features\/XmlSitemap.html#xmlsitemap-routing", + "How to setup routing for the XML sitemap" ], - "social-media": [ + "data-providers-for-xml-sitemaps": [ "SEO", "13.4", - "Editor\/Index.html#social-media", - "Social media" + "Features\/XmlSitemap.html#xmlsitemap-data-providers", + "Data providers for XML sitemaps" ], - "title": [ + "for-pages-pagesxmlsitemapdataprovider": [ "SEO", "13.4", - "Editor\/Index.html#title", - "Title" + "Features\/XmlSitemap.html#xmlsitemap-data-providers-pages", + "For pages: PagesXmlSitemapDataProvider" ], - "image": [ + "for-database-records-recordsxmlsitemapdataprovider": [ "SEO", "13.4", - "Editor\/Index.html#image", - "Image" + "Features\/XmlSitemap.html#xmlsitemap-data-providers-records", + "For database records: RecordsXmlSitemapDataProvider" ], - "metadata-tab": [ + "change-frequency-and-priority": [ "SEO", "13.4", - "Editor\/Index.html#metadata-tab", - "Metadata Tab" + "Features\/XmlSitemap.html#xmlsitemap-changefreq-priority", + "Change frequency and priority" ], - "general-recommendations": [ + "sitemap-of-records-without-sorting-field": [ "SEO", "13.4", - "GeneralRecommendations\/Index.html#general-recommendations", - "General Recommendations" + "Features\/XmlSitemap.html#xmlsitemap-without-sorting", + "Sitemap of records without sorting field" ], - "recommendations-for-additional-seo-extensions": [ + "create-a-custom-xml-sitemap-provider": [ "SEO", "13.4", - "GeneralRecommendations\/Index.html#recommendations-for-additional-seo-extensions", - "Recommendations for additional SEO extensions" + "Features\/XmlSitemap.html#xmlsitemap-custom-provider", + "Create a custom XML sitemap provider" ], - "recommendations-for-the-description-field": [ + "use-a-customized-sitemap-xsl-file": [ "SEO", "13.4", - "GeneralRecommendations\/Index.html#recommendations-for-the-description-field", - "Recommendations for the description field" + "Features\/XmlSitemap.html#sitemap-xslFile", + "Use a customized sitemap XSL file" ], "typo3-search-engine-optimization": [ "SEO", "13.4", - "Index.html#typo3-search-engine-optimization", + "Index.html#start", "TYPO3 Search Engine Optimization" ], "installation-1": [ "SEO", "13.4", - "Installation\/Index.html#installation-1", + "Installation\/Index.html#installation", "Installation" ], "installation-with-composer": [ @@ -499,39 +433,9 @@ "introduction-1": [ "SEO", "13.4", - "Introduction\/Index.html#introduction-1", + "Introduction\/Index.html#introduction", "Introduction" ], - "what-does-it-do": [ - "SEO", - "13.4", - "Introduction\/Index.html#what-does-it-do", - "What does it do?" - ], - "screenshots": [ - "SEO", - "13.4", - "Introduction\/Index.html#screenshots", - "Screenshots" - ], - "hreflang-tags": [ - "SEO", - "13.4", - "Introduction\/Index.html#hreflang-tags", - "Hreflang Tags" - ], - "canonical-tags": [ - "SEO", - "13.4", - "Introduction\/Index.html#canonical-tags", - "Canonical Tags" - ], - "xml-sitemap": [ - "SEO", - "13.4", - "Introduction\/Index.html#xml-sitemap", - "XML Sitemap" - ], "sitemap": [ "SEO", "13.4", @@ -543,7 +447,7 @@ "seo-settings": [ "SEO", "13.4", - "Configuration\/Settings.html#seo-settings", + "Configuration\/Settings.html#confval-menu-seo-settings", "" ] }, @@ -551,49 +455,49 @@ "seo-settings-category-seo": [ "SEO", "13.4", - "Configuration\/Settings.html#seo-settings-category-seo", + "Configuration\/Settings.html#confval-seo-settings-category-seo", "seo" ], "seo-settings-category-seo-templates": [ "SEO", "13.4", - "Configuration\/Settings.html#seo-settings-category-seo-templates", + "Configuration\/Settings.html#confval-seo-settings-category-seo-templates", "seo.templates" ], "seo-settings-seo-sitemap-view-templaterootpath": [ "SEO", "13.4", - "Configuration\/Settings.html#seo-settings-seo-sitemap-view-templaterootpath", + "Configuration\/Settings.html#confval-seo-settings-seo-sitemap-view-templaterootpath", "seo.sitemap.view.templateRootPath" ], "seo-settings-seo-sitemap-view-partialrootpath": [ "SEO", "13.4", - "Configuration\/Settings.html#seo-settings-seo-sitemap-view-partialrootpath", + "Configuration\/Settings.html#confval-seo-settings-seo-sitemap-view-partialrootpath", "seo.sitemap.view.partialRootPath" ], "seo-settings-seo-sitemap-view-layoutrootpath": [ "SEO", "13.4", - "Configuration\/Settings.html#seo-settings-seo-sitemap-view-layoutrootpath", + "Configuration\/Settings.html#confval-seo-settings-seo-sitemap-view-layoutrootpath", "seo.sitemap.view.layoutRootPath" ], "seo-settings-seo-sitemap-pages-excludeddoktypes": [ "SEO", "13.4", - "Configuration\/Settings.html#seo-settings-seo-sitemap-pages-excludeddoktypes", + "Configuration\/Settings.html#confval-seo-settings-seo-sitemap-pages-excludeddoktypes", "seo.sitemap.pages.excludedDoktypes" ], "seo-settings-seo-sitemap-pages-excludepagesrecursive": [ "SEO", "13.4", - "Configuration\/Settings.html#seo-settings-seo-sitemap-pages-excludepagesrecursive", + "Configuration\/Settings.html#confval-seo-settings-seo-sitemap-pages-excludepagesrecursive", "seo.sitemap.pages.excludePagesRecursive" ], "seo-settings-seo-sitemap-pages-additionalwhere": [ "SEO", "13.4", - "Configuration\/Settings.html#seo-settings-seo-sitemap-pages-additionalwhere", + "Configuration\/Settings.html#confval-seo-settings-seo-sitemap-pages-additionalwhere", "seo.sitemap.pages.additionalWhere" ] } diff --git a/legacy_hook/tests/Unit/Fixtures/Permalinks/c/typo3/cms-seo/main/en-us/objects.inv.json b/legacy_hook/tests/Unit/Fixtures/Permalinks/c/typo3/cms-seo/main/en-us/objects.inv.json index e0d05de1..9a72b1ee 100644 --- a/legacy_hook/tests/Unit/Fixtures/Permalinks/c/typo3/cms-seo/main/en-us/objects.inv.json +++ b/legacy_hook/tests/Unit/Fixtures/Permalinks/c/typo3/cms-seo/main/en-us/objects.inv.json @@ -24,23 +24,17 @@ "Developer\/Index.html", "Developer Corner" ], - "Editor\/DashboardWidgets": [ + "Features\/Index": [ "SEO", "main", - "Editor\/DashboardWidgets.html", - "Dashboard widgets for SEO" + "Features\/Index.html", + "Features of the TYPO3 system extension \"seo\"" ], - "Editor\/Index": [ + "Features\/XmlSitemap": [ "SEO", "main", - "Editor\/Index.html", - "For Editors" - ], - "GeneralRecommendations\/Index": [ - "SEO", - "main", - "GeneralRecommendations\/Index.html", - "General Recommendations" + "Features\/XmlSitemap.html", + "XML sitemap" ], "Index": [ "SEO", @@ -80,24 +74,6 @@ "Configuration\/Index.html#configuration-site-sets", "Site sets" ], - "config-tags": [ - "SEO", - "main", - "Configuration\/Index.html#config-tags", - "Tags" - ], - "config-hreflang-tags": [ - "SEO", - "main", - "Configuration\/Index.html#config-hreflang-tags", - "Hreflang link-tags" - ], - "config-canonical-tag": [ - "SEO", - "main", - "Configuration\/Index.html#config-canonical-tag", - "Canonical Tag" - ], "configuration-site-set-settings": [ "SEO", "main", @@ -116,372 +92,330 @@ "Developer\/Index.html#developer", "Developer Corner" ], - "dashboard-widgets": [ + "features": [ "SEO", "main", - "Editor\/DashboardWidgets.html#dashboard-widgets", - "Dashboard widgets for SEO" + "Features\/Index.html#features", + "Features of the TYPO3 system extension \"seo\"" ], - "dashboard-widgets-missing-description": [ + "seo-page-properties": [ "SEO", "main", - "Editor\/DashboardWidgets.html#dashboard-widgets-missing-description", - "\"Missing Meta Description\" widget" + "Features\/Index.html#seo-page-properties", + "Additional tabs \"SEO\" and \"Social media\" in the page properties" ], - "dashboard-widgets-missing-description-add": [ + "seo-page-dashboard": [ "SEO", "main", - "Editor\/DashboardWidgets.html#dashboard-widgets-missing-description-add", - "Adding the \"Missing Meta Description\" widget to your personal Dashboard" + "Features\/Index.html#seo-page-dashboard", + "A Dashboard Widget for SEO" ], - "dashboard-widgets-missing-description-use": [ + "xml-sitemap": [ "SEO", "main", - "Editor\/DashboardWidgets.html#dashboard-widgets-missing-description-use", - "Using the \"Missing Meta Description\" widget to improve SEO results" + "Features\/Index.html#xml-sitemap", + "XML Sitemap" ], - "for-editors": [ + "canonical-url": [ "SEO", "main", - "Editor\/Index.html#for-editors", - "For Editors" + "Features\/Index.html#canonical-url", + "Canonical URL" ], - "title-for-search-engines": [ + "seo-page-title-provider": [ "SEO", "main", - "Editor\/Index.html#title-for-search-engines", - "Title for search engines" + "Features\/Index.html#seo-page-title-provider", + "SEO page title provider" ], - "description": [ + "seo-meta-tag-provider": [ "SEO", "main", - "Editor\/Index.html#description", - "Description" + "Features\/Index.html#seo-meta-tag-provider", + "Additional meta tag handling" ], - "index-page": [ + "seo-hreflang": [ "SEO", "main", - "Editor\/Index.html#index-page", - "Index this page" + "Features\/Index.html#seo-hreflang", + "Hreflang tags" ], - "recommendations": [ + "xmlsitemap": [ "SEO", "main", - "GeneralRecommendations\/Index.html#recommendations", - "General Recommendations" + "Features\/XmlSitemap.html#xmlsitemap", + "XML sitemap" ], - "recommendations-extensions": [ + "xmlsitemap-url": [ "SEO", "main", - "GeneralRecommendations\/Index.html#recommendations_extensions", - "Recommendations for additional SEO extensions" + "Features\/XmlSitemap.html#xmlsitemap-url", + "How to access your XML sitemap" ], - "recommendations-field-description": [ + "xmlsitemap-routing": [ "SEO", "main", - "GeneralRecommendations\/Index.html#recommendations_field_description", - "Recommendations for the description field" + "Features\/XmlSitemap.html#xmlsitemap-routing", + "How to setup routing for the XML sitemap" ], - "start": [ + "xmlsitemap-data-providers": [ "SEO", "main", - "Index.html#start", - "TYPO3 Search Engine Optimization" + "Features\/XmlSitemap.html#xmlsitemap-data-providers", + "Data providers for XML sitemaps" ], - "installation": [ + "xmlsitemap-data-providers-pages": [ "SEO", "main", - "Installation\/Index.html#installation", - "Installation" + "Features\/XmlSitemap.html#xmlsitemap-data-providers-pages", + "For pages: PagesXmlSitemapDataProvider" ], - "introduction": [ + "xmlsitemap-data-providers-records": [ "SEO", "main", - "Introduction\/Index.html#introduction", - "Introduction" + "Features\/XmlSitemap.html#xmlsitemap-data-providers-records", + "For database records: RecordsXmlSitemapDataProvider" ], - "screenshots": [ - "SEO", - "main", - "Introduction\/Index.html#screenshots", - "Screenshots" - ] - }, - "std:title": { - "configuration-1": [ + "xmlsitemap-changefreq-priority": [ "SEO", "main", - "Configuration\/Index.html#configuration-1", - "Configuration" + "Features\/XmlSitemap.html#xmlsitemap-changefreq-priority", + "Change frequency and priority" ], - "site-sets": [ + "xmlsitemap-without-sorting": [ "SEO", "main", - "Configuration\/Index.html#site-sets", - "Site sets" + "Features\/XmlSitemap.html#xmlsitemap-without-sorting", + "Sitemap of records without sorting field" ], - "typoscript-settings": [ + "xmlsitemap-custom-provider": [ "SEO", "main", - "Configuration\/Index.html#typoscript-settings", - "TypoScript Settings" + "Features\/XmlSitemap.html#xmlsitemap-custom-provider", + "Create a custom XML sitemap provider" ], - "site-configuration": [ + "sitemap-xslfile": [ "SEO", "main", - "Configuration\/Index.html#site-configuration", - "Site configuration" + "Features\/XmlSitemap.html#sitemap-xslFile", + "Use a customized sitemap XSL file" ], - "entry-point": [ + "start": [ "SEO", "main", - "Configuration\/Index.html#entry-point", - "Entry Point" + "Index.html#start", + "TYPO3 Search Engine Optimization" ], - "languages": [ + "installation": [ "SEO", "main", - "Configuration\/Index.html#languages", - "Languages" + "Installation\/Index.html#installation", + "Installation" ], - "error-handling": [ + "introduction": [ "SEO", "main", - "Configuration\/Index.html#error-handling", - "Error Handling" + "Introduction\/Index.html#introduction", + "Introduction" ], - "robots-txt": [ + "confval-menu-seo-settings": [ "SEO", "main", - "Configuration\/Index.html#robots-txt", - "robots.txt" + "Configuration\/Settings.html#confval-menu-seo-settings", + "" ], - "static-routes-and-redirects": [ + "confval-seo-settings-category-seo": [ "SEO", "main", - "Configuration\/Index.html#static-routes-and-redirects", - "Static Routes and redirects" + "Configuration\/Settings.html#confval-seo-settings-category-seo", + "seo" ], - "tags": [ + "confval-seo-settings-category-seo-templates": [ "SEO", "main", - "Configuration\/Index.html#tags", - "Tags" + "Configuration\/Settings.html#confval-seo-settings-category-seo-templates", + "seo.templates" ], - "hreflang-link-tags": [ + "confval-seo-settings-seo-sitemap-view-templaterootpath": [ "SEO", "main", - "Configuration\/Index.html#hreflang-link-tags", - "Hreflang link-tags" + "Configuration\/Settings.html#confval-seo-settings-seo-sitemap-view-templaterootpath", + "seo.sitemap.view.templateRootPath" ], - "canonical-tag": [ + "confval-seo-settings-seo-sitemap-view-partialrootpath": [ "SEO", "main", - "Configuration\/Index.html#canonical-tag", - "Canonical Tag" + "Configuration\/Settings.html#confval-seo-settings-seo-sitemap-view-partialrootpath", + "seo.sitemap.view.partialRootPath" ], - "working-links": [ + "confval-seo-settings-seo-sitemap-view-layoutrootpath": [ "SEO", "main", - "Configuration\/Index.html#working-links", - "Working links" + "Configuration\/Settings.html#confval-seo-settings-seo-sitemap-view-layoutrootpath", + "seo.sitemap.view.layoutRootPath" ], - "typoscript-examples": [ + "confval-seo-settings-seo-sitemap-pages-excludeddoktypes": [ "SEO", "main", - "Configuration\/Index.html#typoscript-examples", - "TypoScript examples" + "Configuration\/Settings.html#confval-seo-settings-seo-sitemap-pages-excludeddoktypes", + "seo.sitemap.pages.excludedDoktypes" ], - "setting-missing-opengraph-meta-tags": [ + "confval-seo-settings-seo-sitemap-pages-excludepagesrecursive": [ "SEO", "main", - "Configuration\/Index.html#setting-missing-opengraph-meta-tags", - "Setting missing OpenGraph meta tags" + "Configuration\/Settings.html#confval-seo-settings-seo-sitemap-pages-excludepagesrecursive", + "seo.sitemap.pages.excludePagesRecursive" ], - "setting-fallbacks-for-meta-tags": [ + "confval-seo-settings-seo-sitemap-pages-additionalwhere": [ "SEO", "main", - "Configuration\/Index.html#setting-fallbacks-for-meta-tags", - "Setting fallbacks for meta tags" - ], - "setting-fallbacks-for-og-image-and-twitter-image": [ + "Configuration\/Settings.html#confval-seo-settings-seo-sitemap-pages-additionalwhere", + "seo.sitemap.pages.additionalWhere" + ] + }, + "std:title": { + "configuration-1": [ "SEO", "main", - "Configuration\/Index.html#setting-fallbacks-for-og-image-and-twitter-image", - "Setting fallbacks for og:image and twitter:image" + "Configuration\/Index.html#configuration", + "Configuration" ], - "setting-defaults-for-the-author-on-meta-tags": [ + "site-sets": [ "SEO", "main", - "Configuration\/Index.html#setting-defaults-for-the-author-on-meta-tags", - "Setting defaults for the author on meta tags" + "Configuration\/Index.html#configuration-site-sets", + "Site sets" ], "site-sets-settings-of-ext-seo": [ "SEO", "main", - "Configuration\/Settings.html#site-sets-settings-of-ext-seo", + "Configuration\/Settings.html#configuration-site-set-settings", "Site sets settings of EXT:seo" ], "settings-editor-1": [ "SEO", "main", - "Configuration\/SettingsEditor.html#settings-editor-1", + "Configuration\/SettingsEditor.html#settings-editor", "Settings editor" ], "developer-corner": [ "SEO", "main", - "Developer\/Index.html#developer-corner", + "Developer\/Index.html#developer", "Developer Corner" ], - "dashboard-widgets-for-seo": [ - "SEO", - "main", - "Editor\/DashboardWidgets.html#dashboard-widgets-for-seo", - "Dashboard widgets for SEO" - ], - "missing-meta-description-widget": [ - "SEO", - "main", - "Editor\/DashboardWidgets.html#missing-meta-description-widget", - "\"Missing Meta Description\" widget" - ], - "adding-the-missing-meta-description-widget-to-your-personal-dashboard": [ - "SEO", - "main", - "Editor\/DashboardWidgets.html#adding-the-missing-meta-description-widget-to-your-personal-dashboard", - "Adding the \"Missing Meta Description\" widget to your personal Dashboard" - ], - "using-the-missing-meta-description-widget-to-improve-seo-results": [ - "SEO", - "main", - "Editor\/DashboardWidgets.html#using-the-missing-meta-description-widget-to-improve-seo-results", - "Using the \"Missing Meta Description\" widget to improve SEO results" - ], - "for-editors-1": [ - "SEO", - "main", - "Editor\/Index.html#for-editors-1", - "For Editors" - ], - "general-tab": [ + "features-of-the-typo3-system-extension-seo": [ "SEO", "main", - "Editor\/Index.html#general-tab", - "General tab" + "Features\/Index.html#features", + "Features of the TYPO3 system extension \"seo\"" ], - "page-title": [ + "additional-tabs-seo-and-social-media-in-the-page-properties": [ "SEO", "main", - "Editor\/Index.html#page-title", - "Page Title" + "Features\/Index.html#seo-page-properties", + "Additional tabs \"SEO\" and \"Social media\" in the page properties" ], - "url-segment-slug": [ + "a-dashboard-widget-for-seo": [ "SEO", "main", - "Editor\/Index.html#url-segment-slug", - "URL Segment (slug)" + "Features\/Index.html#seo-page-dashboard", + "A Dashboard Widget for SEO" ], - "seo-tab": [ - "SEO", - "main", - "Editor\/Index.html#seo-tab", - "SEO Tab" - ], - "title-for-search-engines": [ + "xml-sitemap": [ "SEO", "main", - "Editor\/Index.html#title-for-search-engines", - "Title for search engines" + "Features\/XmlSitemap.html#xmlsitemap", + "XML sitemap" ], - "description": [ + "canonical-url": [ "SEO", "main", - "Editor\/Index.html#description", - "Description" + "Features\/Index.html#canonical-url", + "Canonical URL" ], - "index-this-page": [ + "seo-page-title-provider": [ "SEO", "main", - "Editor\/Index.html#index-this-page", - "Index this page" + "Features\/Index.html#seo-page-title-provider", + "SEO page title provider" ], - "follow-this-page": [ + "additional-meta-tag-handling": [ "SEO", "main", - "Editor\/Index.html#follow-this-page", - "Follow this page" + "Features\/Index.html#seo-meta-tag-provider", + "Additional meta tag handling" ], - "canonical-link": [ + "hreflang-tags": [ "SEO", "main", - "Editor\/Index.html#canonical-link", - "Canonical link" + "Features\/Index.html#seo-hreflang", + "Hreflang tags" ], - "change-frequency": [ + "how-to-access-your-xml-sitemap": [ "SEO", "main", - "Editor\/Index.html#change-frequency", - "Change frequency" + "Features\/XmlSitemap.html#xmlsitemap-url", + "How to access your XML sitemap" ], - "priority": [ + "how-to-setup-routing-for-the-xml-sitemap": [ "SEO", "main", - "Editor\/Index.html#priority", - "Priority" + "Features\/XmlSitemap.html#xmlsitemap-routing", + "How to setup routing for the XML sitemap" ], - "social-media": [ + "data-providers-for-xml-sitemaps": [ "SEO", "main", - "Editor\/Index.html#social-media", - "Social media" + "Features\/XmlSitemap.html#xmlsitemap-data-providers", + "Data providers for XML sitemaps" ], - "title": [ + "for-pages-pagesxmlsitemapdataprovider": [ "SEO", "main", - "Editor\/Index.html#title", - "Title" + "Features\/XmlSitemap.html#xmlsitemap-data-providers-pages", + "For pages: PagesXmlSitemapDataProvider" ], - "image": [ + "for-database-records-recordsxmlsitemapdataprovider": [ "SEO", "main", - "Editor\/Index.html#image", - "Image" + "Features\/XmlSitemap.html#xmlsitemap-data-providers-records", + "For database records: RecordsXmlSitemapDataProvider" ], - "metadata-tab": [ + "change-frequency-and-priority": [ "SEO", "main", - "Editor\/Index.html#metadata-tab", - "Metadata Tab" + "Features\/XmlSitemap.html#xmlsitemap-changefreq-priority", + "Change frequency and priority" ], - "general-recommendations": [ + "sitemap-of-records-without-sorting-field": [ "SEO", "main", - "GeneralRecommendations\/Index.html#general-recommendations", - "General Recommendations" + "Features\/XmlSitemap.html#xmlsitemap-without-sorting", + "Sitemap of records without sorting field" ], - "recommendations-for-additional-seo-extensions": [ + "create-a-custom-xml-sitemap-provider": [ "SEO", "main", - "GeneralRecommendations\/Index.html#recommendations-for-additional-seo-extensions", - "Recommendations for additional SEO extensions" + "Features\/XmlSitemap.html#xmlsitemap-custom-provider", + "Create a custom XML sitemap provider" ], - "recommendations-for-the-description-field": [ + "use-a-customized-sitemap-xsl-file": [ "SEO", "main", - "GeneralRecommendations\/Index.html#recommendations-for-the-description-field", - "Recommendations for the description field" + "Features\/XmlSitemap.html#sitemap-xslFile", + "Use a customized sitemap XSL file" ], "typo3-search-engine-optimization": [ "SEO", "main", - "Index.html#typo3-search-engine-optimization", + "Index.html#start", "TYPO3 Search Engine Optimization" ], "installation-1": [ "SEO", "main", - "Installation\/Index.html#installation-1", + "Installation\/Index.html#installation", "Installation" ], "installation-with-composer": [ @@ -499,39 +433,9 @@ "introduction-1": [ "SEO", "main", - "Introduction\/Index.html#introduction-1", + "Introduction\/Index.html#introduction", "Introduction" ], - "what-does-it-do": [ - "SEO", - "main", - "Introduction\/Index.html#what-does-it-do", - "What does it do?" - ], - "screenshots": [ - "SEO", - "main", - "Introduction\/Index.html#screenshots", - "Screenshots" - ], - "hreflang-tags": [ - "SEO", - "main", - "Introduction\/Index.html#hreflang-tags", - "Hreflang Tags" - ], - "canonical-tags": [ - "SEO", - "main", - "Introduction\/Index.html#canonical-tags", - "Canonical Tags" - ], - "xml-sitemap": [ - "SEO", - "main", - "Introduction\/Index.html#xml-sitemap", - "XML Sitemap" - ], "sitemap": [ "SEO", "main", @@ -543,7 +447,7 @@ "seo-settings": [ "SEO", "main", - "Configuration\/Settings.html#seo-settings", + "Configuration\/Settings.html#confval-menu-seo-settings", "" ] }, @@ -551,49 +455,49 @@ "seo-settings-category-seo": [ "SEO", "main", - "Configuration\/Settings.html#seo-settings-category-seo", + "Configuration\/Settings.html#confval-seo-settings-category-seo", "seo" ], "seo-settings-category-seo-templates": [ "SEO", "main", - "Configuration\/Settings.html#seo-settings-category-seo-templates", + "Configuration\/Settings.html#confval-seo-settings-category-seo-templates", "seo.templates" ], "seo-settings-seo-sitemap-view-templaterootpath": [ "SEO", "main", - "Configuration\/Settings.html#seo-settings-seo-sitemap-view-templaterootpath", + "Configuration\/Settings.html#confval-seo-settings-seo-sitemap-view-templaterootpath", "seo.sitemap.view.templateRootPath" ], "seo-settings-seo-sitemap-view-partialrootpath": [ "SEO", "main", - "Configuration\/Settings.html#seo-settings-seo-sitemap-view-partialrootpath", + "Configuration\/Settings.html#confval-seo-settings-seo-sitemap-view-partialrootpath", "seo.sitemap.view.partialRootPath" ], "seo-settings-seo-sitemap-view-layoutrootpath": [ "SEO", "main", - "Configuration\/Settings.html#seo-settings-seo-sitemap-view-layoutrootpath", + "Configuration\/Settings.html#confval-seo-settings-seo-sitemap-view-layoutrootpath", "seo.sitemap.view.layoutRootPath" ], "seo-settings-seo-sitemap-pages-excludeddoktypes": [ "SEO", "main", - "Configuration\/Settings.html#seo-settings-seo-sitemap-pages-excludeddoktypes", + "Configuration\/Settings.html#confval-seo-settings-seo-sitemap-pages-excludeddoktypes", "seo.sitemap.pages.excludedDoktypes" ], "seo-settings-seo-sitemap-pages-excludepagesrecursive": [ "SEO", "main", - "Configuration\/Settings.html#seo-settings-seo-sitemap-pages-excludepagesrecursive", + "Configuration\/Settings.html#confval-seo-settings-seo-sitemap-pages-excludepagesrecursive", "seo.sitemap.pages.excludePagesRecursive" ], "seo-settings-seo-sitemap-pages-additionalwhere": [ "SEO", "main", - "Configuration\/Settings.html#seo-settings-seo-sitemap-pages-additionalwhere", + "Configuration\/Settings.html#confval-seo-settings-seo-sitemap-pages-additionalwhere", "seo.sitemap.pages.additionalWhere" ] } diff --git a/legacy_hook/tests/Unit/Fixtures/Permalinks/m/typo3/reference-coreapi/12.4/en-us/objects.inv.json b/legacy_hook/tests/Unit/Fixtures/Permalinks/m/typo3/reference-coreapi/12.4/en-us/objects.inv.json index 2cbfccea..3622f60d 100644 --- a/legacy_hook/tests/Unit/Fixtures/Permalinks/m/typo3/reference-coreapi/12.4/en-us/objects.inv.json +++ b/legacy_hook/tests/Unit/Fixtures/Permalinks/m/typo3/reference-coreapi/12.4/en-us/objects.inv.json @@ -108,6 +108,18 @@ "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html", "Setting up backend user groups" ], + "Administration\/SystemSettings\/Index": [ + "TYPO3 Explained", + "12.4", + "Administration\/SystemSettings\/Index.html", + "TYPO3 system settings for administrators" + ], + "Administration\/SystemSettings\/MaintenanceMode\/Index": [ + "TYPO3 Explained", + "12.4", + "Administration\/SystemSettings\/MaintenanceMode\/Index.html", + "Maintenance mode: Prevent backend logins during upgrade" + ], "Administration\/Troubleshooting\/Database": [ "TYPO3 Explained", "12.4", @@ -3588,12 +3600,6 @@ "CodingGuidelines\/CglYaml.html", "YAML coding guidelines" ], - "CodingGuidelines\/CodingBestPractices\/AccessingTheDatabase": [ - "TYPO3 Explained", - "12.4", - "CodingGuidelines\/CodingBestPractices\/AccessingTheDatabase.html", - "Accessing the database" - ], "CodingGuidelines\/CodingBestPractices\/ClassNamesOfUserFiles": [ "TYPO3 Explained", "12.4", @@ -3624,18 +3630,6 @@ "CodingGuidelines\/CodingBestPractices\/Singletons.html", "Singletons" ], - "CodingGuidelines\/CodingBestPractices\/StaticMethods": [ - "TYPO3 Explained", - "12.4", - "CodingGuidelines\/CodingBestPractices\/StaticMethods.html", - "Static methods" - ], - "CodingGuidelines\/CodingBestPractices\/UnitTests": [ - "TYPO3 Explained", - "12.4", - "CodingGuidelines\/CodingBestPractices\/UnitTests.html", - "Unit Tests" - ], "CodingGuidelines\/Index": [ "TYPO3 Explained", "12.4", @@ -4284,6 +4278,12 @@ "ExtensionArchitecture\/HowTo\/BackendModule\/ModuleConfiguration.html", "Backend module configuration examples" ], + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations": [ + "TYPO3 Explained", + "12.4", + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations.html", + "Security Considerations" + ], "ExtensionArchitecture\/HowTo\/BackendModule\/Tutorials": [ "TYPO3 Explained", "12.4", @@ -5300,6 +5300,30 @@ "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#describe-naming-conventions-in-tca", "Describe the naming conventions in the TCA" ], + "system-settings": [ + "TYPO3 Explained", + "12.4", + "Administration\/SystemSettings\/Index.html#system-settings", + "TYPO3 system settings for administrators" + ], + "maintenance-mode": [ + "TYPO3 Explained", + "12.4", + "Administration\/SystemSettings\/MaintenanceMode\/Index.html#maintenance-mode", + "Maintenance mode: Prevent backend logins during upgrade" + ], + "maintenance-mode-total": [ + "TYPO3 Explained", + "12.4", + "Administration\/SystemSettings\/MaintenanceMode\/Index.html#maintenance-mode-total", + "Total shutdown for maintenance purposes" + ], + "maintenance-mode-editors": [ + "TYPO3 Explained", + "12.4", + "Administration\/SystemSettings\/MaintenanceMode\/Index.html#maintenance-mode-editors", + "Lock the TYPO3 backend for editors" + ], "troubleshooting-database": [ "TYPO3 Explained", "12.4", @@ -7724,6 +7748,12 @@ "ApiOverview\/CropVariants\/Index.html#cropvariants", "Crop Variants for Images" ], + "cgl-database-access": [ + "TYPO3 Explained", + "12.4", + "ApiOverview\/Database\/BasicCrud\/Index.html#cgl-database-access", + "Basic create, read, update, and delete operations (CRUD)" + ], "database-basic-crud": [ "TYPO3 Explained", "12.4", @@ -9002,6 +9032,18 @@ "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#AfterPageTreeItemsPreparedEvent", "AfterPageTreeItemsPreparedEvent" ], + "afterpagetreeitemspreparedevent-example": [ + "TYPO3 Explained", + "12.4", + "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#AfterPageTreeItemsPreparedEvent-example", + "Example" + ], + "afterpagetreeitemspreparedevent-api": [ + "TYPO3 Explained", + "12.4", + "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#AfterPageTreeItemsPreparedEvent-api", + "API" + ], "afterrecordsummaryforlocalizationevent": [ "TYPO3 Explained", "12.4", @@ -12218,6 +12260,12 @@ "ApiOverview\/Mail\/Index.html#mail-configuration-fluid", "Fluid paths" ], + "mail-configuration-fluid-example": [ + "TYPO3 Explained", + "12.4", + "ApiOverview\/Mail\/Index.html#mail-configuration-fluid-example", + "Minimal example for a Fluid-based email template" + ], "mail-configuration-transport": [ "TYPO3 Explained", "12.4", @@ -13172,6 +13220,12 @@ "ApiOverview\/Seo\/CanonicalApi.html#canonicalapi", "Canonical API" ], + "canonicalapi-additionalparameters": [ + "TYPO3 Explained", + "12.4", + "ApiOverview\/Seo\/CanonicalApi.html#canonicalapi-additionalparameters", + "Including specific arguments for the URL generation" + ], "seo": [ "TYPO3 Explained", "12.4", @@ -14030,12 +14084,6 @@ "CodingGuidelines\/CglYaml.html#cgl-yaml", "YAML coding guidelines" ], - "cgl-database-access": [ - "TYPO3 Explained", - "12.4", - "CodingGuidelines\/CodingBestPractices\/AccessingTheDatabase.html#cgl-database-access", - "Accessing the database" - ], "cgl-namespaces-class-names": [ "TYPO3 Explained", "12.4", @@ -14072,18 +14120,6 @@ "CodingGuidelines\/CodingBestPractices\/Singletons.html#cgl-singletons", "Singletons" ], - "cgl-static-methods": [ - "TYPO3 Explained", - "12.4", - "CodingGuidelines\/CodingBestPractices\/StaticMethods.html#cgl-static-methods", - "Static methods" - ], - "cgl-unit-tests": [ - "TYPO3 Explained", - "12.4", - "CodingGuidelines\/CodingBestPractices\/UnitTests.html#cgl-unit-tests", - "Unit Tests" - ], "cgl": [ "TYPO3 Explained", "12.4", @@ -14138,6 +14174,12 @@ "CodingGuidelines\/PhpArchitecture\/Services.html#cgl-services", "Services" ], + "cgl-static-methods": [ + "TYPO3 Explained", + "12.4", + "CodingGuidelines\/PhpArchitecture\/StaticMethods.html#cgl-static-methods", + "Static Methods, static Classes, Utility Classes" + ], "cgl-model-static-methods": [ "TYPO3 Explained", "12.4", @@ -16778,6 +16820,12 @@ "ExtensionArchitecture\/HowTo\/BackendModule\/ModuleConfiguration.html#backend-modules-configuration-example-debug", "Check if the modules have been properly registered" ], + "backend-modules-security": [ + "TYPO3 Explained", + "12.4", + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations.html#backend-modules-security", + "Security Considerations" + ], "backend-modules-tutorials": [ "TYPO3 Explained", "12.4", @@ -18536,6 +18584,12 @@ "Testing\/UnitTesting\/Index.html#testing-writing-unit", "Unit testing with the TYPO3 testing framework" ], + "cgl-unit-tests": [ + "TYPO3 Explained", + "12.4", + "Testing\/UnitTesting\/Index.html#cgl-unit-tests", + "Unit test conventions" + ], "testing-writing-unit-conventions": [ "TYPO3 Explained", "12.4", @@ -29575,13 +29629,13 @@ "about-this-manual": [ "TYPO3 Explained", "12.4", - "About.html#about-this-manual", + "About.html#about", "About This Manual" ], "intended-audience": [ "TYPO3 Explained", "12.4", - "About.html#intended-audience", + "About.html#audience", "Intended Audience" ], "code-examples": [ @@ -29593,7 +29647,7 @@ "feedback-and-contribute": [ "TYPO3 Explained", "12.4", - "About.html#feedback-and-contribute", + "About.html#feedback", "Feedback and Contribute" ], "credits": [ @@ -29611,55 +29665,55 @@ "typo3-administration": [ "TYPO3 Explained", "12.4", - "Administration\/Index.html#typo3-administration", + "Administration\/Index.html#administration", "TYPO3 administration" ], "deployer": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/Deployer\/Index.html#deployer", + "Administration\/Installation\/Deployer\/Index.html#deployment-deployer", "Deployer" ], "deploying-typo3": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/DeployTYPO3.html#deploying-typo3", + "Administration\/Installation\/DeployTYPO3.html#deployment", "Deploying TYPO3" ], "general-deployment-steps": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/DeployTYPO3.html#general-deployment-steps", + "Administration\/Installation\/DeployTYPO3.html#deployment-steps", "General Deployment Steps" ], "deployment-automation": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/DeployTYPO3.html#deployment-automation", + "Administration\/Installation\/DeployTYPO3.html#deployment-automatic", "Deployment Automation" ], "configuring-environments": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/EnvironmentConfiguration.html#configuring-environments", + "Administration\/Installation\/EnvironmentConfiguration.html#environment-configuration", "Configuring environments" ], "env-dotenv-files": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/EnvironmentConfiguration.html#env-dotenv-files", + "Administration\/Installation\/EnvironmentConfiguration.html#environment-dotenv", ".env \/ dotenv files" ], "helhum-dotenv-connect": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/EnvironmentConfiguration.html#helhum-dotenv-connect", + "Administration\/Installation\/EnvironmentConfiguration.html#environment-helhum-dotenv", "helhum\/dotenv-connect" ], "plain-php-configuration-files": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/EnvironmentConfiguration.html#plain-php-configuration-files", + "Administration\/Installation\/EnvironmentConfiguration.html#environment-phpconfig", "Plain PHP configuration files" ], "installation": [ @@ -29671,7 +29725,7 @@ "installing-typo3": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/Install.html#installing-typo3", + "Administration\/Installation\/Install.html#installation", "Installing TYPO3" ], "pre-installation-checklist": [ @@ -29707,7 +29761,7 @@ "access-typo3-via-a-web-browser": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/Install.html#access-typo3-via-a-web-browser", + "Administration\/Installation\/Install.html#install-access-typo3-via-a-web-browser", "Access TYPO3 via a web browser" ], "scan-environment": [ @@ -29743,55 +29797,55 @@ "installing-extensions-legacy-guide": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/LegacyExtensionInstallation.html#installing-extensions-legacy-guide", + "Administration\/Installation\/LegacyExtensionInstallation.html#extensions-legacy-management", "Installing Extensions - Legacy Guide" ], "installing-an-extension-using-the-extension-manager": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/LegacyExtensionInstallation.html#installing-an-extension-using-the-extension-manager", + "Administration\/Installation\/LegacyExtensionInstallation.html#extension-install", "Installing an Extension using the Extension Manager" ], "uninstall-an-extension-without-composer": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/LegacyExtensionInstallation.html#uninstall-an-extension-without-composer", + "Administration\/Installation\/LegacyExtensionInstallation.html#uninstall-extension-without-composer", "Uninstall an Extension Without Composer" ], "check-dependencies": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/LegacyExtensionInstallation.html#check-dependencies", + "Administration\/Installation\/LegacyExtensionInstallation.html#uninstall-extension-without-composer-dependencies", "Check Dependencies" ], "uninstall-deactivate-extension-via-typo3-backend": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/LegacyExtensionInstallation.html#uninstall-deactivate-extension-via-typo3-backend", + "Administration\/Installation\/LegacyExtensionInstallation.html#uninstall-extension-backend", "Uninstall \/ Deactivate Extension via TYPO3 Backend" ], "remove-an-extension-via-the-typo3-backend": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/LegacyExtensionInstallation.html#remove-an-extension-via-the-typo3-backend", + "Administration\/Installation\/LegacyExtensionInstallation.html#remove-extension-backend", "Remove an Extension via the TYPO3 Backend" ], "uninstalling-an-extension-manually": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/LegacyExtensionInstallation.html#uninstalling-an-extension-manually", + "Administration\/Installation\/LegacyExtensionInstallation.html#uninstall-extension-manually", "Uninstalling an Extension Manually" ], "removing-an-extension-manually": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/LegacyExtensionInstallation.html#removing-an-extension-manually", + "Administration\/Installation\/LegacyExtensionInstallation.html#remove-extension-manually", "Removing an extension manually" ], "legacy-installation": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/LegacyInstallation.html#legacy-installation", + "Administration\/Installation\/LegacyInstallation.html#legacyinstallation", "Legacy Installation" ], "installing-on-a-unix-server": [ @@ -29815,19 +29869,19 @@ "magallanes": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/Magallanes\/Index.html#magallanes", + "Administration\/Installation\/Magallanes\/Index.html#deployment-magallanes", "Magallanes" ], "production-settings-1": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/ProductionSettings.html#production-settings-1", + "Administration\/Installation\/ProductionSettings.html#production-settings", "Production Settings" ], "typo3-release-integrity": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/ReleaseIntegrity.html#typo3-release-integrity", + "Administration\/Installation\/ReleaseIntegrity.html#release_integrity", "TYPO3 release integrity" ], "release-contents": [ @@ -29863,43 +29917,43 @@ "typo3-surf": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/Surf\/Index.html#typo3-surf", + "Administration\/Installation\/Surf\/Index.html#deployment-typo3-surf", "TYPO3 Surf" ], "system-requirements-1": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/SystemRequirements\/Index.html#system-requirements-1", + "Administration\/Installation\/SystemRequirements\/Index.html#system-requirements", "System Requirements" ], "php": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Debugging\/Index.html#php", + "ApiOverview\/Debugging\/Index.html#examples-debug-php", "PHP" ], "configure": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/SystemRequirements\/Index.html#configure", + "Administration\/Installation\/SystemRequirements\/Index.html#system-requirements-php-configuration", "Configure" ], "required-extensions": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/SystemRequirements\/Index.html#required-extensions", + "Administration\/Installation\/SystemRequirements\/Index.html#system-requirements-php-extensions", "Required Extensions" ], "required-database-extensions": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/SystemRequirements\/Index.html#required-database-extensions", + "Administration\/Installation\/SystemRequirements\/Index.html#system-requirements-php-database-extensions", "Required Database Extensions" ], "web-server": [ "TYPO3 Explained", "12.4", - "Administration\/Troubleshooting\/WebServer.html#web-server", + "Administration\/Troubleshooting\/WebServer.html#troubleshooting-webserver", "Web Server" ], "htaccess": [ @@ -29911,7 +29965,7 @@ "virtual-host-record": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/SystemRequirements\/Index.html#virtual-host-record", + "Administration\/Installation\/SystemRequirements\/Index.html#vhost-records", "Virtual Host Record" ], "apache-modules": [ @@ -29923,13 +29977,13 @@ "database": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Database\/Index.html#database", + "ApiOverview\/Events\/Events\/Core\/Database\/Index.html#eventlist-core-database", "Database" ], "required-database-privileges": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/SystemRequirements\/Index.html#required-database-privileges", + "Administration\/Installation\/SystemRequirements\/Index.html#system-requirements-database", "Required Database Privileges" ], "composer": [ @@ -29941,7 +29995,7 @@ "tuning-typo3": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/TuneTYPO3.html#tuning-typo3", + "Administration\/Installation\/TuneTYPO3.html#tunetypo3", "Tuning TYPO3" ], "opcache": [ @@ -29965,25 +30019,25 @@ "general-recommendations-1": [ "TYPO3 Explained", "12.4", - "Administration\/PermissionsManagement\/GeneralRecommendations\/Index.html#general-recommendations-1", + "Administration\/PermissionsManagement\/GeneralRecommendations\/Index.html#general-recommendations", "General recommendations" ], "create-user-specific-accounts": [ "TYPO3 Explained", "12.4", - "Administration\/PermissionsManagement\/GeneralRecommendations\/Index.html#create-user-specific-accounts", + "Administration\/PermissionsManagement\/GeneralRecommendations\/Index.html#user-specific-accounts", "Create user-specific accounts" ], "how-to-ensure-safety": [ "TYPO3 Explained", "12.4", - "Administration\/PermissionsManagement\/GeneralRecommendations\/Index.html#how-to-ensure-safety", + "Administration\/PermissionsManagement\/GeneralRecommendations\/Index.html#ensure-safety", "How to ensure safety" ], "set-permissions-via-groups-not-user-records": [ "TYPO3 Explained", "12.4", - "Administration\/PermissionsManagement\/GeneralRecommendations\/Index.html#set-permissions-via-groups-not-user-records", + "Administration\/PermissionsManagement\/GeneralRecommendations\/Index.html#permissions-via-groups", "Set permissions via groups, not user records" ], "file-mounts-and-files-management": [ @@ -29995,25 +30049,25 @@ "permissions-management-1": [ "TYPO3 Explained", "12.4", - "Administration\/PermissionsManagement\/Index.html#permissions-management-1", + "Administration\/PermissionsManagement\/Index.html#permissions-management", "Permissions management" ], "introduction": [ "TYPO3 Explained", "12.4", - "Testing\/Tutorial\/Enetcache.html#introduction", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-introduction", "Introduction" ], "what-access-options-can-be-set-within-typo3": [ "TYPO3 Explained", "12.4", - "Administration\/PermissionsManagement\/Index.html#what-access-options-can-be-set-within-typo3", + "Administration\/PermissionsManagement\/Index.html#available-acl-options", "What access options can be set within TYPO3?" ], "setting-up-backend-user-groups-1": [ "TYPO3 Explained", "12.4", - "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#setting-up-backend-user-groups-1", + "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#setting-up-backend-user-groups", "Setting up backend user groups" ], "system-groups": [ @@ -30025,25 +30079,25 @@ "access-control-list-acl-groups": [ "TYPO3 Explained", "12.4", - "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#access-control-list-acl-groups", + "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#acl-groups", "Access Control List (ACL) groups" ], "role-groups-as-an-aggregation-of-specific-role-permissions": [ "TYPO3 Explained", "12.4", - "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#role-groups-as-an-aggregation-of-specific-role-permissions", + "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#role-groups", "Role groups as an aggregation of specific role permissions" ], "implementing-naming-conventions-for-easy-group-management": [ "TYPO3 Explained", "12.4", - "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#implementing-naming-conventions-for-easy-group-management", + "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#naming-convention", "Implementing naming conventions for easy group management" ], "role-group": [ "TYPO3 Explained", "12.4", - "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#role-group", + "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#role-group:", "Role Group" ], "page-group": [ @@ -30085,13 +30139,13 @@ "limit-to-languages": [ "TYPO3 Explained", "12.4", - "Administration\/UserManagement\/GroupPermissions\/Index.html#limit-to-languages", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-language-limit", "Limit to Languages" ], "describe-the-naming-conventions-in-the-tca": [ "TYPO3 Explained", "12.4", - "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#describe-the-naming-conventions-in-the-tca", + "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#describe-naming-conventions-in-tca", "Describe the naming conventions in the TCA" ], "use-the-notes-field-to-describe-the-purpose-of-the-group": [ @@ -30100,6 +30154,30 @@ "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#use-the-notes-field-to-describe-the-purpose-of-the-group", "Use the Notes field to describe the purpose of the group" ], + "typo3-system-settings-for-administrators": [ + "TYPO3 Explained", + "12.4", + "Administration\/SystemSettings\/Index.html#system-settings", + "TYPO3 system settings for administrators" + ], + "maintenance-mode-prevent-backend-logins-during-upgrade": [ + "TYPO3 Explained", + "12.4", + "Administration\/SystemSettings\/MaintenanceMode\/Index.html#maintenance-mode", + "Maintenance mode: Prevent backend logins during upgrade" + ], + "total-shutdown-for-maintenance-purposes": [ + "TYPO3 Explained", + "12.4", + "Administration\/SystemSettings\/MaintenanceMode\/Index.html#maintenance-mode-total", + "Total shutdown for maintenance purposes" + ], + "lock-the-typo3-backend-for-editors": [ + "TYPO3 Explained", + "12.4", + "Administration\/SystemSettings\/MaintenanceMode\/Index.html#maintenance-mode-editors", + "Lock the TYPO3 backend for editors" + ], "mysql": [ "TYPO3 Explained", "12.4", @@ -30115,25 +30193,25 @@ "troubleshooting": [ "TYPO3 Explained", "12.4", - "ApiOverview\/PasswordHashing\/Troubleshooting.html#troubleshooting", + "ApiOverview\/PasswordHashing\/Troubleshooting.html#password-hashing_troubleshooting", "Troubleshooting" ], "missing-php-modules": [ "TYPO3 Explained", "12.4", - "Administration\/Troubleshooting\/PHP.html#missing-php-modules", + "Administration\/Troubleshooting\/PHP.html#troubleshooting-php-modules", "Missing PHP Modules" ], "php-caches-extension-classes-etc": [ "TYPO3 Explained", "12.4", - "Administration\/Troubleshooting\/PHP.html#php-caches-extension-classes-etc", + "Administration\/Troubleshooting\/PHP.html#troubleshooting-php-caches-extension-classes-etc", "PHP Caches, Extension Classes etc." ], "opcode-cache-messages": [ "TYPO3 Explained", "12.4", - "Administration\/Troubleshooting\/PHP.html#opcode-cache-messages", + "Administration\/Troubleshooting\/PHP.html#troubleshooting-php-troubleshooting_opcode", "Opcode cache messages" ], "no-php-opcode-cache-loaded": [ @@ -30163,121 +30241,121 @@ "system-modules": [ "TYPO3 Explained", "12.4", - "Administration\/Troubleshooting\/SystemModules.html#system-modules", + "Administration\/Troubleshooting\/SystemModules.html#troubleshooting-system_modules", "System Modules" ], "log": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Quickstart\/Index.html#log", + "ApiOverview\/Logging\/Quickstart\/Index.html#logging-quickstart-log", "Log" ], "db-check": [ "TYPO3 Explained", "12.4", - "Administration\/Troubleshooting\/SystemModules.html#db-check", + "Administration\/Troubleshooting\/SystemModules.html#troubleshooting-system-modules-dbcheck", "DB Check" ], "configuration": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/Configuration.html#configuration", + "ExtensionArchitecture\/HowTo\/Configuration.html#extension_configuration", "Configuration" ], "reports": [ "TYPO3 Explained", "12.4", - "Administration\/Troubleshooting\/SystemModules.html#reports", + "Administration\/Troubleshooting\/SystemModules.html#troubleshooting-system-modules-reports", "Reports" ], "typo3": [ "TYPO3 Explained", "12.4", - "ApiOverview\/GlobalValues\/Constants\/Index.html#typo3", + "ApiOverview\/GlobalValues\/Constants\/Index.html#globals-constants-typo3", "TYPO3" ], "resetting-passwords": [ "TYPO3 Explained", "12.4", - "Administration\/Troubleshooting\/TYPO3.html#resetting-passwords", + "Administration\/Troubleshooting\/TYPO3.html#troubleshooting-typo3-password-reset", "Resetting Passwords" ], "backend-administrator-password": [ "TYPO3 Explained", "12.4", - "Administration\/Troubleshooting\/TYPO3.html#backend-administrator-password", + "Administration\/Troubleshooting\/TYPO3.html#troubleshooting-backend-admin-password", "Backend Administrator Password" ], "install-tool-password": [ "TYPO3 Explained", "12.4", - "Administration\/Troubleshooting\/TYPO3.html#install-tool-password", + "Administration\/Troubleshooting\/TYPO3.html#troubleshooting-install-tool-password", "Install Tool Password" ], "debug-settings": [ "TYPO3 Explained", "12.4", - "Administration\/Troubleshooting\/TYPO3.html#debug-settings", + "Administration\/Troubleshooting\/TYPO3.html#troubleshooting-debug-mode", "Debug Settings" ], "caching": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Caching.html#caching", + "ExtensionArchitecture\/Extbase\/Reference\/Caching.html#extbase_caching", "Caching" ], "cached-files-in-typo3temp": [ "TYPO3 Explained", "12.4", - "Administration\/Troubleshooting\/TYPO3.html#cached-files-in-typo3temp", + "Administration\/Troubleshooting\/TYPO3.html#troubleshooting-caching-typo3temp", "Cached Files in typo3temp\/" ], "possible-problems-with-the-cached-files": [ "TYPO3 Explained", "12.4", - "Administration\/Troubleshooting\/TYPO3.html#possible-problems-with-the-cached-files", + "Administration\/Troubleshooting\/TYPO3.html#troubleshooting-possible-problems-with-the-cached-files", "Possible Problems With the Cached Files" ], "changing-the-absolute-path-to-typo3": [ "TYPO3 Explained", "12.4", - "Administration\/Troubleshooting\/TYPO3.html#changing-the-absolute-path-to-typo3", + "Administration\/Troubleshooting\/TYPO3.html#troubleshooting-changing-the-absolute-path-to-typo3", "Changing the absolute path to TYPO3" ], "changing-image-processing-settings": [ "TYPO3 Explained", "12.4", - "Administration\/Troubleshooting\/TYPO3.html#changing-image-processing-settings", + "Administration\/Troubleshooting\/TYPO3.html#troubleshooting-changing-image-processing-settings", "Changing Image Processing Settings" ], "apache": [ "TYPO3 Explained", "12.4", - "Administration\/Troubleshooting\/WebServer.html#apache", + "Administration\/Troubleshooting\/WebServer.html#troubleshooting-apache", "Apache" ], "enable-mod-rewrite": [ "TYPO3 Explained", "12.4", - "Administration\/Troubleshooting\/WebServer.html#enable-mod-rewrite", + "Administration\/Troubleshooting\/WebServer.html#troubleshooting-enable-mod_rewrite", "Enable mod_rewrite" ], "adjust-threadstacksize-on-windows": [ "TYPO3 Explained", "12.4", - "Administration\/Troubleshooting\/WebServer.html#adjust-threadstacksize-on-windows", + "Administration\/Troubleshooting\/WebServer.html#troubleshooting-adjust-threadstacksize-on-windows", "Adjust ThreadStackSize on Windows" ], "applying-core-patches-1": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/ApplyingCorePatches\/Index.html#applying-core-patches-1", + "Administration\/Upgrade\/ApplyingCorePatches\/Index.html#applying-core-patches", "Applying Core patches" ], "automatic-patch-application-with-cweagans-composer-patches": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/ApplyingCorePatches\/Index.html#automatic-patch-application-with-cweagans-composer-patches", + "Administration\/Upgrade\/ApplyingCorePatches\/Index.html#cweagans-composer-patches", "Automatic patch application with cweagans\/composer-patches" ], "creating-a-diff-from-a-core-change": [ @@ -30289,25 +30367,25 @@ "apply-a-core-patch-manually": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/ApplyingCorePatches\/Index.html#apply-a-core-patch-manually", + "Administration\/Upgrade\/ApplyingCorePatches\/Index.html#apply-core-patch-manually", "Apply a core patch manually" ], "apply-a-core-patch-automatically-via-gilbertsoft-typo3-core-patches": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/ApplyingCorePatches\/Index.html#apply-a-core-patch-automatically-via-gilbertsoft-typo3-core-patches", + "Administration\/Upgrade\/ApplyingCorePatches\/Index.html#apply-core-patch-automatically", "Apply a core patch automatically via gilbertsoft\/typo3-core-patches" ], "upgrading-the-typo3-core-and-extensions": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/Index.html#upgrading-the-typo3-core-and-extensions", + "Administration\/Upgrade\/Index.html#upgrading", "Upgrading the TYPO3 Core and extensions" ], "legacy-upgrade": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/Legacy\/Index.html#legacy-upgrade", + "Administration\/Upgrade\/Legacy\/Index.html#legacy", "Legacy Upgrade" ], "minor-upgrades-using-the-core-updater": [ @@ -30319,7 +30397,7 @@ "major-upgrades-symlink-the-core": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/Legacy\/Index.html#major-upgrades-symlink-the-core", + "Administration\/Upgrade\/Legacy\/Index.html#install-manually", "Major Upgrades - Symlink The Core" ], "disabling-the-core-updater": [ @@ -30337,67 +30415,67 @@ "major-upgrade": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/Major\/Index.html#major-upgrade", + "Administration\/Upgrade\/Major\/Index.html#major", "Major upgrade" ], "post-upgrade-tasks": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#post-upgrade-tasks", + "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#postupgradetasks", "Post-upgrade tasks" ], "run-the-upgrade-wizard": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#run-the-upgrade-wizard", + "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#run_upgrade_wizard", "Run the upgrade wizard" ], "run-the-database-analyser": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#run-the-database-analyser", + "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#run_the_database_analyser", "Run the database analyser" ], "clear-user-settings": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#clear-user-settings", + "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#clear_user_settings", "Clear user settings" ], "clear-caches": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#clear-caches", + "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#post_upgrade_clear_caches", "Clear caches" ], "update-backend-translations": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#update-backend-translations", + "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#update_backend_translation", "Update backend translations" ], "verify-webserver-configuration-htaccess": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#verify-webserver-configuration-htaccess", + "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#maintain-htaccess", "Verify webserver configuration (.htaccess)" ], "pre-upgrade-tasks": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#pre-upgrade-tasks", + "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#preupgradetasks", "Pre-upgrade tasks" ], "make-a-backup": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#make-a-backup", + "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#preupgradetasks_make_a_backup", "Make A Backup" ], "update-reference-index": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#update-reference-index", + "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#update_reference_index", "Update Reference Index" ], "with-command-line-recommended": [ @@ -30415,25 +30493,25 @@ "check-the-changelog": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#check-the-changelog", + "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#check-the-changelog-and-news-md", "Check the ChangeLog" ], "resolve-deprecations": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#resolve-deprecations", + "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#deprecations", "Resolve Deprecations" ], "convert-global-extensions": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#convert-global-extensions", + "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#convert_global_extensions", "Convert Global Extensions" ], "upgrade-the-core": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/Major\/UpgradeCore.html#upgrade-the-core", + "Administration\/Upgrade\/Major\/UpgradeCore.html#upgradecore", "Upgrade the Core" ], "upgrading-to-a-major-release-using-composer": [ @@ -30469,13 +30547,13 @@ "migrate-content": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/MigrateContent\/Index.html#migrate-content", + "Administration\/Upgrade\/MigrateContent\/Index.html#migratecontent", "Migrate content" ], "prerequisites": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Routing\/Introduction.html#prerequisites", + "ApiOverview\/Routing\/Introduction.html#routing-prerequisites", "Prerequisites" ], "export-your-data": [ @@ -30517,7 +30595,7 @@ "migrating-and-accessing-public-web-assets-from-typo3conf-ext-to-public-assets": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/MigrateToComposer\/AssetMigration.html#migrating-and-accessing-public-web-assets-from-typo3conf-ext-to-public-assets", + "Administration\/Upgrade\/MigrateToComposer\/AssetMigration.html#migrate-public-assets", "Migrating and accessing public web assets from typo3conf\/ext\/ to public\/_assets" ], "migration": [ @@ -30529,7 +30607,7 @@ "migrate-a-typo3-project-to-composer": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/MigrateToComposer\/Index.html#migrate-a-typo3-project-to-composer", + "Administration\/Upgrade\/MigrateToComposer\/Index.html#migratetocomposer", "Migrate a TYPO3 project to Composer" ], "migration-steps": [ @@ -30559,7 +30637,7 @@ "install-the-core": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/MigrateToComposer\/MigrationSteps.html#install-the-core", + "Administration\/Upgrade\/MigrateToComposer\/MigrationSteps.html#composer-migration-require-subtree-packages", "Install the Core" ], "install-extensions-from-packagist": [ @@ -30589,13 +30667,13 @@ "install-extension-from-version-control-system-e-g-github-gitlab": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/MigrateToComposer\/MigrationSteps.html#install-extension-from-version-control-system-e-g-github-gitlab", + "Administration\/Upgrade\/MigrateToComposer\/MigrationSteps.html#composer-require-repository", "Install extension from version control system (e.g. GitHub, Gitlab, ...)" ], "include-individual-extensions-like-site-packages": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/MigrateToComposer\/MigrationSteps.html#include-individual-extensions-like-site-packages", + "Administration\/Upgrade\/MigrateToComposer\/MigrationSteps.html#mig-composer-include-individual-extensions", "Include individual extensions like site packages" ], "new-file-locations": [ @@ -30637,7 +30715,7 @@ "version-control": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/SitePackage\/Introduction.html#version-control", + "ExtensionArchitecture\/SitePackage\/Introduction.html#site-package-version-controll", "Version control" ], "add-to-version-control-system": [ @@ -30661,7 +30739,7 @@ "patch-bugfix-update": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/Minor\/Index.html#patch-bugfix-update", + "Administration\/Upgrade\/Minor\/Index.html#minor", "Patch\/Bugfix update" ], "what-are-patch-bugfix-updates": [ @@ -30697,7 +30775,7 @@ "third-party-tools": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/Tools\/Index.html#third-party-tools", + "Administration\/Upgrade\/Tools\/Index.html#tools", "Third-party tools" ], "rector-for-typo3": [ @@ -30727,7 +30805,7 @@ "upgrading-extensions": [ "TYPO3 Explained", "12.4", - "Administration\/Upgrade\/UpgradingExtensions\/Index.html#upgrading-extensions", + "Administration\/Upgrade\/UpgradingExtensions\/Index.html#upgradingextensions", "Upgrading extensions" ], "list-extensions": [ @@ -30757,7 +30835,7 @@ "changing-the-backend-language": [ "TYPO3 Explained", "12.4", - "Administration\/UserManagement\/BackendLanguages.html#changing-the-backend-language", + "Administration\/UserManagement\/BackendLanguages.html#backendlanguages", "Changing the backend language" ], "install-an-additional-language-pack": [ @@ -30781,25 +30859,25 @@ "backend-privileges": [ "TYPO3 Explained", "12.4", - "Administration\/UserManagement\/BackendPrivileges\/Index.html#backend-privileges", + "Administration\/UserManagement\/BackendPrivileges\/Index.html#privileges", "Backend Privileges" ], "admin": [ "TYPO3 Explained", "12.4", - "Administration\/UserManagement\/BackendPrivileges\/Index.html#admin", + "Administration\/UserManagement\/BackendPrivileges\/Index.html#admin-user", "Admin" ], "system-maintainers": [ "TYPO3 Explained", "12.4", - "Administration\/UserManagement\/BackendPrivileges\/Index.html#system-maintainers", + "Administration\/UserManagement\/BackendPrivileges\/Index.html#system-maintainer", "System Maintainers" ], "create-default-users": [ "TYPO3 Explained", "12.4", - "Administration\/UserManagement\/BackendUsers\/CreateDefaultEditors.html#create-default-users", + "Administration\/UserManagement\/BackendUsers\/CreateDefaultEditors.html#user-management-create-default-editors", "Create Default Users" ], "create-simple-editor": [ @@ -30829,7 +30907,7 @@ "backend-users": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/AccessControl\/OtherOptions\/Index.html#backend-users", + "ApiOverview\/Backend\/AccessControl\/OtherOptions\/Index.html#access-other-options-users", "Backend users" ], "default-editors-in-the-introduction-package": [ @@ -30847,25 +30925,25 @@ "simple-editor": [ "TYPO3 Explained", "12.4", - "Administration\/UserManagement\/BackendUsers\/Index.html#simple-editor", + "Administration\/UserManagement\/BackendUsers\/Index.html#user-management-simple-editor", "\"simple_editor\"" ], "advanced-editor": [ "TYPO3 Explained", "12.4", - "Administration\/UserManagement\/BackendUsers\/Index.html#advanced-editor", + "Administration\/UserManagement\/BackendUsers\/Index.html#user-management-advanced-editor", "\"advanced_editor\"" ], "adding-backend-users": [ "TYPO3 Explained", "12.4", - "Administration\/UserManagement\/BackendUsers.html#adding-backend-users", + "Administration\/UserManagement\/BackendUsers.html#backendusers", "Adding Backend Users" ], "setting-up-user-permissions-1": [ "TYPO3 Explained", "12.4", - "Administration\/UserManagement\/GroupPermissions\/Index.html#setting-up-user-permissions-1", + "Administration\/UserManagement\/GroupPermissions\/Index.html#setting-up-user-permissions", "Setting up User Permissions" ], "general": [ @@ -30877,109 +30955,109 @@ "access-lists": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/AccessControl\/AccessControlOptions\/Index.html#access-lists", + "ApiOverview\/Backend\/AccessControl\/AccessControlOptions\/Index.html#access-options-access-lists", "Access Lists" ], "modules": [ "TYPO3 Explained", "12.4", - "Administration\/UserManagement\/GroupPermissions\/Index.html#modules", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-modules", "Modules" ], "tables": [ "TYPO3 Explained", "12.4", - "Administration\/UserManagement\/GroupPermissions\/Index.html#tables", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-tables", "Tables" ], "page-types": [ "TYPO3 Explained", "12.4", - "Administration\/UserManagement\/GroupPermissions\/Index.html#page-types", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-page-types", "Page Types" ], "allowed-excludefields": [ "TYPO3 Explained", "12.4", - "Administration\/UserManagement\/GroupPermissions\/Index.html#allowed-excludefields", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-allowed-excludefields", "Allowed Excludefields" ], "explicitly-allow-or-deny-field-values": [ "TYPO3 Explained", "12.4", - "Administration\/UserManagement\/GroupPermissions\/Index.html#explicitly-allow-or-deny-field-values", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-explicitly-allow-deny-field-values", "Explicitly Allow or Deny Field Values" ], "mounts-and-workspaces": [ "TYPO3 Explained", "12.4", - "Administration\/UserManagement\/GroupPermissions\/Index.html#mounts-and-workspaces", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-mounts", "Mounts and Workspaces" ], "db-mounts": [ "TYPO3 Explained", "12.4", - "Administration\/UserManagement\/GroupPermissions\/Index.html#db-mounts", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-db-mounts", "DB Mounts" ], "file-mounts": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Administration\/Permissions.html#file-mounts", + "ApiOverview\/Fal\/Administration\/Permissions.html#fal-administration-permissions-mounts", "File mounts" ], "fileoperation-permissions": [ "TYPO3 Explained", "12.4", - "Administration\/UserManagement\/GroupPermissions\/Index.html#fileoperation-permissions", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-file-permissions", "Fileoperation Permissions" ], "category-mounts": [ "TYPO3 Explained", "12.4", - "Administration\/UserManagement\/GroupPermissions\/Index.html#category-mounts", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-category-permissions", "Category mounts" ], "groups-1": [ "TYPO3 Explained", "12.4", - "Administration\/UserManagement\/Groups\/Index.html#groups-1", + "Administration\/UserManagement\/Groups\/Index.html#groups", "Groups" ], "backend-user-management": [ "TYPO3 Explained", "12.4", - "Administration\/UserManagement\/Index.html#backend-user-management", + "Administration\/UserManagement\/Index.html#user-management", "Backend user management" ], "page-permissions-1": [ "TYPO3 Explained", "12.4", - "Administration\/UserManagement\/PagePermissions\/Index.html#page-permissions-1", + "Administration\/UserManagement\/PagePermissions\/Index.html#page-permissions", "Page Permissions" ], "setting-up-a-user": [ "TYPO3 Explained", "12.4", - "Administration\/UserManagement\/UserSetup\/Index.html#setting-up-a-user", + "Administration\/UserManagement\/UserSetup\/Index.html#creating-a-new-user-for-the-introduction-site", "Setting up a User" ], "step-1-create-a-new-group": [ "TYPO3 Explained", "12.4", - "Administration\/UserManagement\/UserSetup\/Index.html#step-1-create-a-new-group", + "Administration\/UserManagement\/UserSetup\/Index.html#step-create-a-new-group", "Step 1: Create a New Group" ], "step-2-create-the-user": [ "TYPO3 Explained", "12.4", - "Administration\/UserManagement\/UserSetup\/Index.html#step-2-create-the-user", + "Administration\/UserManagement\/UserSetup\/Index.html#step-create-the-user", "Step 2: Create the User" ], "assets-css-javascript-media": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Assets\/Index.html#assets-css-javascript-media", + "ApiOverview\/Assets\/Index.html#assets", "Assets (CSS, JavaScript, Media)" ], "asset-collector": [ @@ -30991,7 +31069,7 @@ "the-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Assets\/Index.html#the-api", + "ApiOverview\/Assets\/Index.html#asset-collector-api", "The API" ], "viewhelper": [ @@ -31003,7 +31081,7 @@ "rendering-order": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Assets\/Index.html#rendering-order", + "ApiOverview\/Assets\/Index.html#assets-rendering-order", "Rendering order" ], "examples": [ @@ -31015,97 +31093,97 @@ "events": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/Events\/Index.html#events", + "ExtensionArchitecture\/HowTo\/Events\/Index.html#extension-development-events", "Events" ], "former-methods-to-add-assets": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Assets\/Index.html#former-methods-to-add-assets", + "ApiOverview\/Assets\/Index.html#assets-other-methods", "Former methods to add assets" ], "using-the-page-renderer": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Assets\/Index.html#using-the-page-renderer", + "ApiOverview\/Assets\/Index.html#assets-page-renderer", "Using the page renderer" ], "using-the-typoscriptfrontendcontroller": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Assets\/Index.html#using-the-typoscriptfrontendcontroller", + "ApiOverview\/Assets\/Index.html#assets-TypoScriptFrontendController", "Using the TypoScriptFrontendController" ], "csrf-like-request-token-handling": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Authentication\/CSRFlikeRequestTokenHandling.html#csrf-like-request-token-handling", + "ApiOverview\/Authentication\/CSRFlikeRequestTokenHandling.html#authentication-request-token", "CSRF-like request token handling" ], "workflow": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Workflow.html#workflow", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Workflow.html#crowdin-workflow", "Workflow" ], "authentication-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Authentication\/Index.html#authentication-1", + "ApiOverview\/Authentication\/Index.html#authentication", "Authentication" ], "why-use-services": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Authentication\/Index.html#why-use-services", + "ApiOverview\/Authentication\/Index.html#authentication-why-services", "Why Use Services?" ], "the-authentication-process": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Authentication\/Index.html#the-authentication-process", + "ApiOverview\/Authentication\/Index.html#authentication-process", "The Authentication Process" ], "the-login-data": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Authentication\/Index.html#the-login-data", + "ApiOverview\/Authentication\/Index.html#authentication-data", "The login data" ], "the-auth-services-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Authentication\/Index.html#the-auth-services-api", + "ApiOverview\/Authentication\/Index.html#authentication-api", "The \"auth\" services API" ], "the-service-chain": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Authentication\/Index.html#the-service-chain", + "ApiOverview\/Authentication\/Index.html#authentication-service-chain", "The service chain" ], "developing-an-authentication-service": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Authentication\/Index.html#developing-an-authentication-service", + "ApiOverview\/Authentication\/Index.html#authentication-service-development", "Developing an authentication service" ], "advanced-options": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Authentication\/Index.html#advanced-options", + "ApiOverview\/Authentication\/Index.html#authentication-advanced-options", "Advanced Options" ], "multi-factor-authentication-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Authentication\/MultiFactorAuthentication.html#multi-factor-authentication-1", + "ApiOverview\/Authentication\/MultiFactorAuthentication.html#multi-factor-authentication", "Multi-factor authentication" ], "included-mfa-providers": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Authentication\/MultiFactorAuthentication.html#included-mfa-providers", + "ApiOverview\/Authentication\/MultiFactorAuthentication.html#multi-factor-authentication-included-providers", "Included MFA providers" ], "time-based-one-time-password-totp": [ @@ -31165,7 +31243,7 @@ "composerclassloader": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Autoloading\/Background.html#composerclassloader", + "ApiOverview\/Autoloading\/Background.html#composer-class-loader", "ComposerClassLoader" ], "integrating-composer-class-loader-into-typo3": [ @@ -31219,7 +31297,7 @@ "autoloading": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Autoloading\/Index.html#autoloading", + "ApiOverview\/Autoloading\/Index.html#autoload", "Autoloading" ], "about-php-makeinstance": [ @@ -31231,25 +31309,25 @@ "autoloading-classes": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Autoloading\/Index.html#autoloading-classes", + "ApiOverview\/Autoloading\/Index.html#autoloading_classes", "Autoloading classes" ], "loading-classes-with-composer-mode": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Autoloading\/Index.html#loading-classes-with-composer-mode", + "ApiOverview\/Autoloading\/Index.html#autoloading_with_composer_mode", "Loading classes with Composer mode" ], "loading-classes-without-composer-mode": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Autoloading\/Index.html#loading-classes-without-composer-mode", + "ApiOverview\/Autoloading\/Index.html#autoloading_without_composer_mode", "Loading classes without Composer mode" ], "best-practices": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Logger\/Index.html#best-practices", + "ApiOverview\/Logging\/Logger\/Index.html#logging-logger-best-practices", "Best practices" ], "further-reading": [ @@ -31261,73 +31339,73 @@ "access-control-options": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/AccessControl\/AccessControlOptions\/Index.html#access-control-options", + "ApiOverview\/Backend\/AccessControl\/AccessControlOptions\/Index.html#access-options", "Access Control Options" ], "mounts": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/AccessControl\/AccessControlOptions\/Index.html#mounts", + "ApiOverview\/Backend\/AccessControl\/AccessControlOptions\/Index.html#access-options-mounts", "Mounts" ], "page-permissions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/AccessControl\/AccessControlOptions\/Index.html#page-permissions", + "ApiOverview\/Backend\/AccessControl\/AccessControlOptions\/Index.html#access-options-page-permissions", "Page Permissions" ], "user-tsconfig": [ "TYPO3 Explained", "12.4", - "Configuration\/TypoScript\/TSconfig\/Index.html#user-tsconfig", + "Configuration\/TypoScript\/TSconfig\/Index.html#tsconfig-user", "User TSconfig" ], "access-control-in-the-backend-users-and-groups": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/AccessControl\/Index.html#access-control-in-the-backend-users-and-groups", + "ApiOverview\/Backend\/AccessControl\/Index.html#access", "Access control in the backend (users and groups)" ], "more-about-file-mounts": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/AccessControl\/MoreAboutFileMounts\/Index.html#more-about-file-mounts", + "ApiOverview\/Backend\/AccessControl\/MoreAboutFileMounts\/Index.html#access-filemounts-more", "More about file mounts" ], "create-a-new-filemount": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/AccessControl\/MoreAboutFileMounts\/Index.html#create-a-new-filemount", + "ApiOverview\/Backend\/AccessControl\/MoreAboutFileMounts\/Index.html#access-filemounts-create", "Create a new filemount" ], "paths-for-local-driver-storage": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/AccessControl\/MoreAboutFileMounts\/Index.html#paths-for-local-driver-storage", + "ApiOverview\/Backend\/AccessControl\/MoreAboutFileMounts\/Index.html#access-filemounts-more-local-driver", "Paths for local driver storage" ], "home-directories": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/AccessControl\/MoreAboutFileMounts\/Index.html#home-directories", + "ApiOverview\/Backend\/AccessControl\/MoreAboutFileMounts\/Index.html#access-filemounts-home-directories", "Home directories" ], "other-options": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/AccessControl\/OtherOptions\/Index.html#other-options", + "ApiOverview\/Backend\/AccessControl\/OtherOptions\/Index.html#access-other-options", "Other Options" ], "backend-groups": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/AccessControl\/OtherOptions\/Index.html#backend-groups", + "ApiOverview\/Backend\/AccessControl\/OtherOptions\/Index.html#access-other-options-groups", "Backend Groups" ], "backend-users-module": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/AccessControl\/OverviewOfUsers\/Index.html#backend-users-module", + "ApiOverview\/Backend\/AccessControl\/OverviewOfUsers\/Index.html#access-backend-users-module", "Backend users module" ], "comparing-users-or-groups": [ @@ -31345,7 +31423,7 @@ "password-reset-functionality": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/AccessControl\/PasswordReset\/Index.html#password-reset-functionality", + "ApiOverview\/Backend\/AccessControl\/PasswordReset\/Index.html#access-password-reset", "Password reset functionality" ], "notes-on-security": [ @@ -31381,37 +31459,37 @@ "users-and-groups": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#users-and-groups", + "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#access-users-groups", "Users and groups" ], "users": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#users", + "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#access-users-groups-users", "Users" ], "groups": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#groups", + "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#access-users-groups-groups", "Groups" ], "the-admin-user": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#the-admin-user", + "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#access-users-groups-admin", "The \"admin\" user" ], "location-of-users-and-groups": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#location-of-users-and-groups", + "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#access-users-groups-location", "Location of users and groups" ], "ajax-in-the-backend": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/Ajax.html#ajax-in-the-backend", + "ApiOverview\/Backend\/Ajax.html#ajax-backend", "Ajax in the backend" ], "create-a-controller": [ @@ -31435,109 +31513,109 @@ "backend-layout": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendLayout.html#backend-layout", + "ApiOverview\/Backend\/BackendLayout.html#be-layout", "Backend layout" ], "backend-layout-video": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendLayout.html#backend-layout-video", + "ApiOverview\/Backend\/BackendLayout.html#be-layout-video", "Backend layout video" ], "backend-layout-configuration": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendLayout.html#backend-layout-configuration", + "ApiOverview\/Backend\/BackendLayout.html#be-layout-info-module", "Backend layout configuration" ], "backend-layout-definition": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendLayout.html#backend-layout-definition", + "ApiOverview\/Backend\/BackendLayout.html#be-layout-definition", "Backend layout definition" ], "backend-layout-simple-example": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendLayout.html#backend-layout-simple-example", + "ApiOverview\/Backend\/BackendLayout.html#be-layout-simple-example", "Backend layout simple example" ], "backend-layout-advanced-example": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendLayout.html#backend-layout-advanced-example", + "ApiOverview\/Backend\/BackendLayout.html#be-layout-advanced-example", "Backend layout advanced example" ], "output-of-a-backend-layout-in-the-frontend": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendLayout.html#output-of-a-backend-layout-in-the-frontend", + "ApiOverview\/Backend\/BackendLayout.html#be-layout-frontend", "Output of a backend layout in the frontend" ], "reference-implementations-of-backend-layouts": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendLayout.html#reference-implementations-of-backend-layouts", + "ApiOverview\/Backend\/BackendLayout.html#be-layout-reference-implementations", "Reference implementations of backend layouts" ], "extensions-for-backend-layouts": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendLayout.html#extensions-for-backend-layouts", + "ApiOverview\/Backend\/BackendLayout.html#be-layout-extensions", "Extensions for backend layouts" ], "backend-gui-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/BackendGUI.html#backend-gui-1", + "ApiOverview\/Backend\/BackendModules\/BackendGUI.html#backend-modules-structure", "Backend GUI" ], "docheadercomponent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/DocHeaderComponent.html#docheadercomponent", + "ApiOverview\/Backend\/BackendModules\/DocHeaderComponent.html#DocHeaderComponent", "DocHeaderComponent" ], "docheadercomponent-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/DocHeaderComponent.html#docheadercomponent-api", + "ApiOverview\/Backend\/BackendModules\/DocHeaderComponent.html#DocHeaderComponent-api", "DocHeaderComponent API" ], "example-build-a-module-header-with-buttons-and-a-menu": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/DocHeaderComponent.html#example-build-a-module-header-with-buttons-and-a-menu", + "ApiOverview\/Backend\/BackendModules\/DocHeaderComponent.html#DocHeaderComponent-example", "Example: Build a module header with buttons and a menu" ], "backend-modules-api-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/Index.html#backend-modules-api-1", + "ApiOverview\/Backend\/BackendModules\/Index.html#backend-modules", "Backend modules API" ], "modules-php-backend-module-configuration": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#modules-php-backend-module-configuration", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-modules-configuration", "Modules.php - Backend module configuration" ], "module-configuration-options": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#module-configuration-options", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-modules-configuration-options", "Module configuration options" ], "default-module-configuration-options-without-extbase": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#default-module-configuration-options-without-extbase", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-modules-api-default", "Default module configuration options (without Extbase)" ], "extbase-module-configuration-options": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#extbase-module-configuration-options", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-modules-configuration-extensionName", "Extbase module configuration options" ], "debug-the-module-configuration": [ @@ -31549,13 +31627,13 @@ "backend-modules-with-sudo-mode": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-modules-with-sudo-mode", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-configuration-sudo", "Backend modules with sudo mode" ], "third-level-modules-module-functions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/ThirdlevelModules.html#third-level-modules-module-functions", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/ThirdlevelModules.html#backend-modules-third-level-module", "Third-level modules \/ module functions" ], "example": [ @@ -31567,7 +31645,7 @@ "toplevel-modules": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/ToplevelModules.html#toplevel-modules", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/ToplevelModules.html#backend-modules-toplevel-module", "Toplevel modules" ], "register-a-custom-toplevel-module": [ @@ -31579,13 +31657,13 @@ "module-data-object": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleDataObject.html#module-data-object", + "ApiOverview\/Backend\/BackendModules\/ModuleDataObject.html#backend-Module-data-object", "Module data object" ], "moduleinterface": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleInterface.html#moduleinterface", + "ApiOverview\/Backend\/BackendModules\/ModuleInterface.html#backend-module-interface", "ModuleInterface" ], "moduleinterface-api": [ @@ -31597,79 +31675,79 @@ "moduleprovider": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleProviderAPI.html#moduleprovider", + "ApiOverview\/Backend\/BackendModules\/ModuleProviderAPI.html#backend-module-provider", "ModuleProvider" ], "moduleprovider-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleProviderAPI.html#moduleprovider-api", + "ApiOverview\/Backend\/BackendModules\/ModuleProviderAPI.html#backend-module-provider-api", "ModuleProvider API" ], "moduletemplate": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleTemplate.html#moduletemplate", + "ApiOverview\/Backend\/BackendModules\/ModuleTemplate.html#ModuleTemplate", "ModuleTemplate" ], "example-create-and-use-a-moduletemplate-in-an-extbase-controller": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleTemplate.html#example-create-and-use-a-moduletemplate-in-an-extbase-controller", + "ApiOverview\/Backend\/BackendModules\/ModuleTemplate.html#ModuleTemplate-examples", "Example: Create and use a ModuleTemplate in an Extbase Controller" ], "moduletemplatefactory": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleTemplateFactory.html#moduletemplatefactory", + "ApiOverview\/Backend\/BackendModules\/ModuleTemplateFactory.html#ModuleTemplateFactory", "ModuleTemplateFactory" ], "moduletemplatefactory-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleTemplateFactory.html#moduletemplatefactory-api", + "ApiOverview\/Backend\/BackendModules\/ModuleTemplateFactory.html#ModuleTemplateFactory-api", "ModuleTemplateFactory API" ], "example-initialize-module-template": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleTemplateFactory.html#example-initialize-module-template", + "ApiOverview\/Backend\/BackendModules\/ModuleTemplateFactory.html#ModuleTemplateFactory-examples", "Example: Initialize module template" ], "typoscript-configuration-of-modules": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleTypoScript.html#typoscript-configuration-of-modules", + "ApiOverview\/Backend\/BackendModules\/ModuleTypoScript.html#backend-module-typoscript", "TypoScript configuration of modules" ], "sudo-mode-in-typo3-backend-modules": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/SudoMode.html#sudo-mode-in-typo3-backend-modules", + "ApiOverview\/Backend\/BackendModules\/SudoMode.html#backend-module-sudo", "Sudo mode in TYPO3 backend modules" ], "authentication-in-for-sudo-mode-in-extensions-using-the-auth-service": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/SudoMode.html#authentication-in-for-sudo-mode-in-extensions-using-the-auth-service", + "ApiOverview\/Backend\/BackendModules\/SudoMode.html#backend-module-sudo-extensions", "Authentication in for sudo mode in extensions using the auth service" ], "custom-backend-modules-requiring-the-sudo-mode": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/SudoMode.html#custom-backend-modules-requiring-the-sudo-mode", + "ApiOverview\/Backend\/BackendModules\/SudoMode.html#backend-module-sudo-modules", "Custom backend modules requiring the sudo mode" ], "process-in-a-nutshell": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/SudoMode.html#process-in-a-nutshell", + "ApiOverview\/Backend\/BackendModules\/SudoMode.html#backend-module-sudo-modules-process", "Process in a nutshell" ], "backend-routing-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendRouting.html#backend-routing-1", + "ApiOverview\/Backend\/BackendRouting.html#backend-routing", "Backend routing" ], "backend-routing-and-cross-site-scripting": [ @@ -31681,7 +31759,7 @@ "dynamic-url-parts-in-backend-urls": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendRouting.html#dynamic-url-parts-in-backend-urls", + "ApiOverview\/Backend\/BackendRouting.html#backend-routing-dynamic-parts", "Dynamic URL parts in backend URLs" ], "generating-backend-urls": [ @@ -31693,19 +31771,19 @@ "via-fluid-viewhelper": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendRouting.html#via-fluid-viewhelper", + "ApiOverview\/Backend\/BackendRouting.html#backend-routing-url-viewhelper", "Via Fluid ViewHelper" ], "via-php": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendRouting.html#via-php", + "ApiOverview\/Backend\/BackendRouting.html#backend-routing-url-php", "Via PHP" ], "sudo-mode": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendRouting.html#sudo-mode", + "ApiOverview\/Backend\/BackendRouting.html#backend-routing-sudo", "Sudo mode" ], "more-information": [ @@ -31717,91 +31795,91 @@ "backend-user-object": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendUserObject.html#backend-user-object", + "ApiOverview\/Backend\/BackendUserObject.html#be-user", "Backend user object" ], "checking-user-access": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendUserObject.html#checking-user-access", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-check", "Checking user access" ], "checking-access-to-current-backend-module": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendUserObject.html#checking-access-to-current-backend-module", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-access-current", "Checking access to current backend module" ], "checking-access-to-any-backend-module": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendUserObject.html#checking-access-to-any-backend-module", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-access-any", "Checking access to any backend module" ], "access-to-tables-and-fields": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendUserObject.html#access-to-tables-and-fields", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-access-tables", "Access to tables and fields?" ], "is-admin": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendUserObject.html#is-admin", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-admin", "Is \"admin\"?" ], "read-access-to-a-page": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendUserObject.html#read-access-to-a-page", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-page", "Read access to a page?" ], "is-a-page-inside-a-db-mount": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendUserObject.html#is-a-page-inside-a-db-mount", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-mount", "Is a page inside a DB mount?" ], "selecting-readable-pages-from-database": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendUserObject.html#selecting-readable-pages-from-database", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-pageperms", "Selecting readable pages from database?" ], "saving-module-data": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendUserObject.html#saving-module-data", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-module-save", "Saving module data" ], "getting-module-data": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendUserObject.html#getting-module-data", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-module-get", "Getting module data" ], "getting-tsconfig": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendUserObject.html#getting-tsconfig", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-tsconfig", "Getting TSconfig" ], "getting-the-username": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendUserObject.html#getting-the-username", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-name", "Getting the Username" ], "get-user-configuration-value": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendUserObject.html#get-user-configuration-value", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-configuration", "Get User Configuration Value" ], "broadcast-channels": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BroadcastChannels.html#broadcast-channels", + "ApiOverview\/Backend\/BroadcastChannels.html#broadcast_channels", "Broadcast channels" ], "send-a-message": [ @@ -31819,7 +31897,7 @@ "button-components-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/ButtonComponents.html#button-components-1", + "ApiOverview\/Backend\/ButtonComponents.html#button-components", "Button components" ], "generic-button-component": [ @@ -31837,55 +31915,55 @@ "dropdownbutton": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/ButtonComponents.html#dropdownbutton", + "ApiOverview\/Backend\/ButtonComponents.html#dropdown-button-components-button", "DropDownButton" ], "dropdowndivider": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/ButtonComponents.html#dropdowndivider", + "ApiOverview\/Backend\/ButtonComponents.html#dropdown-button-components-divider", "DropDownDivider" ], "dropdownheader": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/ButtonComponents.html#dropdownheader", + "ApiOverview\/Backend\/ButtonComponents.html#dropdown-button-components-header", "DropDownHeader" ], "dropdownitem": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/ButtonComponents.html#dropdownitem", + "ApiOverview\/Backend\/ButtonComponents.html#dropdown-button-components-item", "DropDownItem" ], "dropdownradio": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/ButtonComponents.html#dropdownradio", + "ApiOverview\/Backend\/ButtonComponents.html#dropdown-button-components-radio", "DropDownRadio" ], "dropdowntoggle": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/ButtonComponents.html#dropdowntoggle", + "ApiOverview\/Backend\/ButtonComponents.html#dropdown-button-components-toggle", "DropDownToggle" ], "clipboard": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/Clipboard.html#clipboard", + "ApiOverview\/Backend\/Clipboard.html#examples-clipboard-put", "Clipboard" ], "context-sensitive-menus": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/ContextualMenu.html#context-sensitive-menus", + "ApiOverview\/Backend\/ContextualMenu.html#context-menu", "Context-sensitive menus" ], "context-menu-rendering-flow": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/ContextualMenu.html#context-menu-rendering-flow", + "ApiOverview\/Backend\/ContextualMenu.html#csm-implementation", "Context menu rendering flow" ], "markup": [ @@ -31939,7 +32017,7 @@ "tutorial-how-to-add-a-custom-context-menu-item": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/ContextualMenu.html#tutorial-how-to-add-a-custom-context-menu-item", + "ApiOverview\/Backend\/ContextualMenu.html#csm-adding", "Tutorial: How to add a custom context menu item" ], "step-1-implementation-of-the-item-provider-class": [ @@ -31969,37 +32047,37 @@ "using-custom-permission-options": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/CustomPermissions.html#using-custom-permission-options", + "ApiOverview\/Backend\/CustomPermissions.html#custom-permissions", "Using Custom Permission Options" ], "registration": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Icon\/Index.html#registration", + "ApiOverview\/Icon\/Index.html#icon-registration", "Registration" ], "evaluation": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/CustomPermissions.html#evaluation", + "ApiOverview\/Backend\/CustomPermissions.html#custom-permissions-evaluation", "Evaluation" ], "keys-for-options": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/CustomPermissions.html#keys-for-options", + "ApiOverview\/Backend\/CustomPermissions.html#custom-permissions-keys", "Keys for Options" ], "backend-apis": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/Index.html#backend-apis", + "ApiOverview\/Backend\/Index.html#backend", "Backend APIs" ], "ajax-request-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/AjaxRequest\/Index.html#ajax-request-1", + "ApiOverview\/Backend\/JavaScript\/AjaxRequest\/Index.html#ajax-request", "Ajax request" ], "prepare-a-request": [ @@ -32029,13 +32107,13 @@ "es6-in-the-typo3-backend": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/ES6\/Index.html#es6-in-the-typo3-backend", + "ApiOverview\/Backend\/JavaScript\/ES6\/Index.html#backend-javascript-es6", "ES6 in the TYPO3 Backend" ], "loading-es6": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/ES6\/Index.html#loading-es6", + "ApiOverview\/Backend\/JavaScript\/ES6\/Index.html#backend-javascript-es6-loading", "Loading ES6" ], "some-tips-on-es6": [ @@ -32059,13 +32137,13 @@ "migration-from-requirejs": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/ES6\/Index.html#migration-from-requirejs", + "ApiOverview\/Backend\/JavaScript\/ES6\/Index.html#requirejs-migration", "Migration from RequireJS" ], "event-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/EventApi\/Index.html#event-api", + "ApiOverview\/Backend\/JavaScript\/EventApi\/Index.html#js-event-api", "Event API" ], "event-binding": [ @@ -32125,7 +32203,7 @@ "javascript-form-helpers-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/Forms\/Index.html#javascript-form-helpers-1", + "ApiOverview\/Backend\/JavaScript\/Forms\/Index.html#javascript-form-helpers", "JavaScript form helpers" ], "empty-checkbox-handling": [ @@ -32143,43 +32221,43 @@ "javascript-in-typo3-backend": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/Index.html#javascript-in-typo3-backend", + "ApiOverview\/Backend\/JavaScript\/Index.html#javascript", "JavaScript in TYPO3 backend" ], "documentservice-jquery-ready-substitute": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/DocumentService.html#documentservice-jquery-ready-substitute", + "ApiOverview\/Backend\/JavaScript\/Modules\/DocumentService.html#modules-documentservice", "DocumentService (jQuery.ready substitute)" ], "various-javascript-modules": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Index.html#various-javascript-modules", + "ApiOverview\/Backend\/JavaScript\/Modules\/Index.html#modules", "Various JavaScript modules" ], "modals": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modals", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals", "Modals" ], "api": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/UriBuilder.html#api", + "ExtensionArchitecture\/Extbase\/Reference\/UriBuilder.html#uri-builder-api", "API" ], "modal-settings": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modal-settings", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-settings", "Modal settings" ], "button-settings": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#button-settings", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-button-settings", "Button settings" ], "data-attributes": [ @@ -32191,13 +32269,13 @@ "multi-step-wizard": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/MultiStepWizard.html#multi-step-wizard", + "ApiOverview\/Backend\/JavaScript\/Modules\/MultiStepWizard.html#modules-multistepwizard", "Multi-step wizard" ], "sessionstorage-wrapper": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/SessionStorageWrapper.html#sessionstorage-wrapper", + "ApiOverview\/Backend\/JavaScript\/Modules\/SessionStorageWrapper.html#modules-sessionstorage", "SessionStorage wrapper" ], "api-methods": [ @@ -32209,7 +32287,7 @@ "navigation-via-javascript": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/Navigation\/Index.html#navigation-via-javascript", + "ApiOverview\/Backend\/JavaScript\/Navigation\/Index.html#javascript-navigation", "Navigation via JavaScript" ], "navigate-to-url": [ @@ -32233,43 +32311,43 @@ "dependency-handling": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/RequireJS\/Dependency\/Index.html#dependency-handling", + "ApiOverview\/Backend\/JavaScript\/RequireJS\/Dependency\/Index.html#requirejs-dependency", "Dependency handling" ], "use-requirejs-in-your-own-extension": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/RequireJS\/Extensions\/Index.html#use-requirejs-in-your-own-extension", + "ApiOverview\/Backend\/JavaScript\/RequireJS\/Extensions\/Index.html#requirejs-extensions", "Use RequireJS in your own extension" ], "requirejs-deprecated": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/RequireJS\/Index.html#requirejs-deprecated", + "ApiOverview\/Backend\/JavaScript\/RequireJS\/Index.html#requirejs", "RequireJS (Deprecated)" ], "overview": [ "TYPO3 Explained", "12.4", - "Testing\/FunctionalTesting\/Introduction.html#overview", + "Testing\/FunctionalTesting\/Introduction.html#testing-writing-functional-overview", "Overview" ], "loading-your-own-or-other-requirejs-modules": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/RequireJS\/Loading\/Index.html#loading-your-own-or-other-requirejs-modules", + "ApiOverview\/Backend\/JavaScript\/RequireJS\/Loading\/Index.html#requirejs-loading", "Loading your own or other RequireJS modules" ], "shim-library-to-use-it-as-own-requirejs-modules": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/RequireJS\/Shim\/Index.html#shim-library-to-use-it-as-own-requirejs-modules", + "ApiOverview\/Backend\/JavaScript\/RequireJS\/Shim\/Index.html#requirejs-shim", "Shim Library to Use it as Own RequireJS Modules" ], "client-side-templating": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/Templating\/Index.html#client-side-templating", + "ApiOverview\/Backend\/JavaScript\/Templating\/Index.html#js-templating", "Client-side templating" ], "variable-assignment": [ @@ -32293,85 +32371,85 @@ "backend-login-form-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/LoginProvider.html#backend-login-form-api", + "ApiOverview\/Backend\/LoginProvider.html#login-provider", "Backend login form API" ], "registering-a-login-provider": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/LoginProvider.html#registering-a-login-provider", + "ApiOverview\/Backend\/LoginProvider.html#login-provider-registration", "Registering a login provider" ], "loginproviderinterface": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/LoginProvider.html#loginproviderinterface", + "ApiOverview\/Backend\/LoginProvider.html#login-provider-interface", "LoginProviderInterface" ], "the-view": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/LoginProvider.html#the-view", + "ApiOverview\/Backend\/LoginProvider.html#login-provider-view", "The view" ], "use-the-backend-uribuilder-to-link-to-edit-records": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/UriBuilder.html#use-the-backend-uribuilder-to-link-to-edit-records", + "ApiOverview\/Backend\/UriBuilder.html#edit-links", "Use the backend UriBuilder to link to \"Edit Records\"" ], "display-a-link-to-edit-record": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/UriBuilder.html#display-a-link-to-edit-record", + "ApiOverview\/Backend\/UriBuilder.html#edit-links-basic", "Display a link to \"Edit Record\"" ], "examples-of-edit-record-links": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/UriBuilder.html#examples-of-edit-record-links", + "ApiOverview\/Backend\/UriBuilder.html#edit-links-examples", "Examples of \"Edit record\" links" ], "editing-a-record": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/UriBuilder.html#editing-a-record", + "ApiOverview\/Backend\/UriBuilder.html#edit-links-edit", "Editing a Record" ], "additional-options-for-editing-records": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/UriBuilder.html#additional-options-for-editing-records", + "ApiOverview\/Backend\/UriBuilder.html#edit-links-edit-restricted", "Additional options for editing records" ], "display-a-link-to-create-a-new-record": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/UriBuilder.html#display-a-link-to-create-a-new-record", + "ApiOverview\/Backend\/UriBuilder.html#edit-links-new", "Display a link to \"Create a New Record\"" ], "how-to-use-bitsets": [ "TYPO3 Explained", "12.4", - "ApiOverview\/BitSets\/BitSet.html#how-to-use-bitsets", + "ApiOverview\/BitSets\/BitSet.html#BitSet", "How to use bitsets" ], "how-to-use-enumerations": [ "TYPO3 Explained", "12.4", - "ApiOverview\/BitSets\/Enumeration.html#how-to-use-enumerations", + "ApiOverview\/BitSets\/Enumeration.html#Enumerations-How-to-use", "How to use enumerations" ], "create-an-enumeration": [ "TYPO3 Explained", "12.4", - "ApiOverview\/BitSets\/Enumeration.html#create-an-enumeration", + "ApiOverview\/BitSets\/Enumeration.html#Enumerations-Create-an-Enumeration", "Create an enumeration" ], "use-an-enumeration": [ "TYPO3 Explained", "12.4", - "ApiOverview\/BitSets\/Enumeration.html#use-an-enumeration", + "ApiOverview\/BitSets\/Enumeration.html#Enumerations-Use-an-Enumeration", "Use an enumeration" ], "exceptions": [ @@ -32383,13 +32461,13 @@ "implement-custom-logic": [ "TYPO3 Explained", "12.4", - "ApiOverview\/BitSets\/Enumeration.html#implement-custom-logic", + "ApiOverview\/BitSets\/Enumeration.html#Enumerations-Implement-custom-logic", "Implement custom logic" ], "bitsets-enumerations": [ "TYPO3 Explained", "12.4", - "ApiOverview\/BitSets\/Index.html#bitsets-enumerations", + "ApiOverview\/BitSets\/Index.html#Enumerations", "Bitsets & Enumerations" ], "background-and-history": [ @@ -32401,133 +32479,133 @@ "caching-framework-architecture": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/Architecture\/Index.html#caching-framework-architecture", + "ApiOverview\/CachingFramework\/Architecture\/Index.html#caching-architecture", "Caching framework architecture" ], "basic-know-how": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/Architecture\/Index.html#basic-know-how", + "ApiOverview\/CachingFramework\/Architecture\/Index.html#caching-architecture-base", "Basic know-how" ], "about-the-identifier": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/Architecture\/Index.html#about-the-identifier", + "ApiOverview\/CachingFramework\/Architecture\/Index.html#caching-architecture-identifier", "About the identifier" ], "about-tags": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/Architecture\/Index.html#about-tags", + "ApiOverview\/CachingFramework\/Architecture\/Index.html#caching-architecture-tags", "About tags" ], "caches-in-the-typo3-core": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/Architecture\/Index.html#caches-in-the-typo3-core", + "ApiOverview\/CachingFramework\/Architecture\/Index.html#caching-architecture-core", "Caches in the TYPO3 Core" ], "garbage-collection-task": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/QuickStart\/Index.html#garbage-collection-task", + "ApiOverview\/CachingFramework\/QuickStart\/Index.html#caching-quickstart-garbage", "Garbage collection task" ], "cache-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/Architecture\/Index.html#cache-api", + "ApiOverview\/CachingFramework\/Architecture\/Index.html#caching-architecture-api", "Cache API" ], "cache-configurations": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/Configuration\/Index.html#cache-configurations", + "ApiOverview\/CachingFramework\/Configuration\/Index.html#caching-configuration-cache", "Cache configurations" ], "how-to-disable-specific-caches": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/Configuration\/Index.html#how-to-disable-specific-caches", + "ApiOverview\/CachingFramework\/Configuration\/Index.html#caching-disable", "How to disable specific caches" ], "developer-information": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/Developer\/Index.html#developer-information", + "ApiOverview\/CachingFramework\/Developer\/Index.html#caching-developer", "Developer information" ], "cache-registration": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/Developer\/Index.html#cache-registration", + "ApiOverview\/CachingFramework\/Developer\/Index.html#caching-developer-registration", "Cache registration" ], "using-the-cache": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/Developer\/Index.html#using-the-cache", + "ApiOverview\/CachingFramework\/Developer\/Index.html#caching-developer-access", "Using the cache" ], "cache-frontends": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#cache-frontends", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-frontend", "Cache frontends" ], "frontend-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#frontend-api", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-frontend-api", "Frontend API" ], "available-frontends": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#available-frontends", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-frontend-avalaible", "Available Frontends" ], "variable-frontend": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#variable-frontend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-frontend-variable", "Variable Frontend" ], "php-frontend": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#php-frontend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-frontend-php", "PHP Frontend" ], "cache-backends": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#cache-backends", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend", "Cache backends" ], "backend-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#backend-api", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching_backend-api", "Backend API" ], "common-options": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#common-options", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-options", "Common Options" ], "database-backend": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#database-backend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-db", "Database Backend" ], "innodb-issues": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#innodb-issues", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-db-innodb", "InnoDB Issues" ], "options": [ @@ -32539,67 +32617,67 @@ "memcached-backend": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#memcached-backend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-memcached", "Memcached Backend" ], "warning-and-design-constraints": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#warning-and-design-constraints", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-memcache-warning", "Warning and Design Constraints" ], "redis-backend": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#redis-backend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-redis", "Redis Backend" ], "redis-example": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#redis-example", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-redis-example", "Redis example" ], "redis-server-configuration": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#redis-server-configuration", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#cacheBackendRedisServerConfiguration", "Redis server configuration" ], "file-backend": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/Backend\/Index.html#file-backend", + "ExtensionArchitecture\/FileStructure\/Configuration\/Backend\/Index.html#extension-configuration-backend", "Backend" ], "simple-file-backend": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#simple-file-backend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-simple-file", "Simple File Backend" ], "pdo-backend": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#pdo-backend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-pdo", "PDO Backend" ], "transient-memory-backend": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#transient-memory-backend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-transient", "Transient Memory Backend" ], "null-backend": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#null-backend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-null", "Null Backend" ], "caching-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/Index.html#caching-1", + "ApiOverview\/CachingFramework\/Index.html#caching", "Caching" ], "caching-in-typo3": [ @@ -32611,7 +32689,7 @@ "caching-variants-or-what-is-a-cache-hash": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/Index.html#caching-variants-or-what-is-a-cache-hash", + "ApiOverview\/CachingFramework\/Index.html#chash", "Caching variants - or: What is a \"cache hash\"?" ], "example-excerpt-of-config-system-additional-php": [ @@ -32653,61 +32731,61 @@ "quick-start-for-integrators": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/QuickStart\/Index.html#quick-start-for-integrators", + "ApiOverview\/CachingFramework\/QuickStart\/Index.html#caching-quickstart", "Quick start for integrators" ], "change-specific-cache-options": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/QuickStart\/Index.html#change-specific-cache-options", + "ApiOverview\/CachingFramework\/QuickStart\/Index.html#caching-quickstart-tuning", "Change specific cache options" ], "system-categories": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Categories\/Index.html#system-categories", + "ApiOverview\/Categories\/Index.html#categories", "System categories" ], "using-categories": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Categories\/Index.html#using-categories", + "ApiOverview\/Categories\/Index.html#categories-using", "Using Categories" ], "managing-categories": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Categories\/Index.html#managing-categories", + "ApiOverview\/Categories\/Index.html#categories-managing", "Managing Categories" ], "adding-categories-to-a-table": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Categories\/Index.html#adding-categories-to-a-table", + "ApiOverview\/Categories\/Index.html#categories-activating", "Adding categories to a table" ], "using-categories-in-flexforms": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Categories\/Index.html#using-categories-in-flexforms", + "ApiOverview\/Categories\/Index.html#categories-flexforms", "Using categories in FlexForms" ], "system-categories-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Categories\/Index.html#system-categories-api", + "ApiOverview\/Categories\/Index.html#categories-api", "System categories API" ], "category-collections": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Categories\/Index.html#category-collections", + "ApiOverview\/Categories\/Index.html#categories-collections", "Category Collections" ], "usage-with-typoscript": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Categories\/Index.html#usage-with-typoscript", + "ApiOverview\/Categories\/Index.html#categories-typoscript", "Usage with TypoScript" ], "user-permissions-for-system-categories": [ @@ -32719,19 +32797,19 @@ "console-commands-cli": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/Index.html#console-commands-cli", + "ApiOverview\/CommandControllers\/Index.html#symfony-console-commands", "Console commands (CLI)" ], "run-a-command-from-the-command-line": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/Index.html#run-a-command-from-the-command-line", + "ApiOverview\/CommandControllers\/Index.html#symfony-console-commands-cli", "Run a command from the command line" ], "running-the-command-from-the-scheduler": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/Index.html#running-the-command-from-the-scheduler", + "ApiOverview\/CommandControllers\/Index.html#symfony-console-commands-scheduler", "Running the command from the scheduler" ], "create-a-custom-command": [ @@ -32755,19 +32833,19 @@ "list-of-typo3-console-commands": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#list-of-typo3-console-commands", + "ApiOverview\/CommandControllers\/ListCommands.html#symfony-console-commands-list", "List of TYPO3 console commands" ], "list-all-typo3-console-commands": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#list-all-typo3-console-commands", + "ApiOverview\/CommandControllers\/ListCommands.html#symfony-console-commands-list-list", "List all TYPO3 console commands" ], "tutorial": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/Tutorial.html#tutorial", + "ApiOverview\/CommandControllers\/Tutorial.html#console-command-tutorial", "Tutorial" ], "create-a-console-command-from-scratch": [ @@ -32779,13 +32857,13 @@ "creating-a-basic-command": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/Tutorial.html#creating-a-basic-command", + "ApiOverview\/CommandControllers\/Tutorial.html#console-command-tutorial-create", "Creating a basic command" ], "1-register-the-command": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/Tutorial.html#1-register-the-command", + "ApiOverview\/CommandControllers\/Tutorial.html#console-command-tutorial-registration-services", "1. Register the command" ], "2-create-the-command-class": [ @@ -32803,7 +32881,7 @@ "use-the-php-attribute-to-register-commands": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/Tutorial.html#use-the-php-attribute-to-register-commands", + "ApiOverview\/CommandControllers\/Tutorial.html#console-command-tutorial-registration-attribute", "Use the PHP attribute to register commands" ], "create-a-command-with-arguments-and-interaction": [ @@ -32839,67 +32917,67 @@ "create-a-custom-content-element-type": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#create-a-custom-content-element-type", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#adding-your-own-content-elements", "Create a custom content element type" ], "use-an-extension": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#use-an-extension", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#AddingCE-use-an-extension", "Use an extension" ], "register-the-content-element-type": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#register-the-content-element-type", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#AddingCE-TCA-Overrides-tt_content", "Register the content element type" ], "about-the-icon": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#about-the-icon", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#AddingCE-Icon", "About the icon" ], "add-it-to-the-new-content-element-wizard": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#add-it-to-the-new-content-element-wizard", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#AddingCE-PageTSconfig", "Add it to the new content element wizard" ], "configure-the-backend-form": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#configure-the-backend-form", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#ConfigureCE-Fields", "Configure the backend form" ], "configure-the-frontend-rendering": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#configure-the-frontend-rendering", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#ConfigureCE-Frontend", "Configure the frontend rendering" ], "extended-example-extend-tt-content-and-use-data-processing": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#extended-example-extend-tt-content-and-use-data-processing", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#AddingCE-Extended-Example", "Extended example: Extend tt_content and use data processing" ], "extending-tt-content": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#extending-tt-content", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#ConfigureCE-Extend-tt_content", "Extending tt_content" ], "extending-the-database-schema": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#extending-the-database-schema", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#ConfigureCE-Extend-tt_content-database", "Extending the database schema" ], "defining-the-field-in-the-tca": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#defining-the-field-in-the-tca", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#ConfigureCE-Extend-tt_content-tca", "Defining the field in the TCA" ], "defining-the-field-in-the-tce": [ @@ -32911,13 +32989,13 @@ "data-processing": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#data-processing", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#ConfigureCE-DataProcessors", "Data processing" ], "best-practices-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/BestPractices.html#best-practices-1", + "ApiOverview\/ContentElements\/BestPractices.html#best-practices", "Best practices" ], "coding-structure": [ @@ -32935,7 +33013,7 @@ "add-content-elements-to-the-content-element-wizard": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/ContentElementsWizard.html#add-content-elements-to-the-content-element-wizard", + "ApiOverview\/ContentElements\/ContentElementsWizard.html#content-element-wizard", "Add content elements to the Content Element Wizard" ], "add-your-plugin-or-content-element-to-a-different-tab": [ @@ -32953,13 +33031,13 @@ "create-plugins": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/CreatePlugins.html#create-plugins", + "ApiOverview\/ContentElements\/CreatePlugins.html#Create-plugins", "Create plugins" ], "configure-custom-backend-preview-for-content-element": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/CustomBackendPreview.html#configure-custom-backend-preview-for-content-element", + "ApiOverview\/ContentElements\/CustomBackendPreview.html#ConfigureCE-Preview", "Configure custom backend preview for content element" ], "extend-the-default-preview-renderer": [ @@ -32971,13 +33049,13 @@ "page-tsconfig": [ "TYPO3 Explained", "12.4", - "Configuration\/TypoScript\/TSconfig\/Index.html#page-tsconfig", + "Configuration\/TypoScript\/TSconfig\/Index.html#tsconfig-page", "Page TSconfig" ], "event-listener": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/CustomBackendPreview.html#event-listener", + "ApiOverview\/ContentElements\/CustomBackendPreview.html#ConfigureCE-Preview-EventListener", "Event listener" ], "writing-a-preview-renderer": [ @@ -32995,91 +33073,91 @@ "custom-data-processors": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/CustomDataProcessing.html#custom-data-processors", + "ApiOverview\/ContentElements\/CustomDataProcessing.html#content-elements-custom-data-processor", "Custom data processors" ], "using-a-custom-data-processor-in-typoscript": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/CustomDataProcessing.html#using-a-custom-data-processor-in-typoscript", + "ApiOverview\/ContentElements\/CustomDataProcessing.html#content-elements-custom-data-processor_typoscript", "Using a custom data processor in TypoScript" ], "register-an-alias-for-the-data-processor-optional": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/CustomDataProcessing.html#register-an-alias-for-the-data-processor-optional", + "ApiOverview\/ContentElements\/CustomDataProcessing.html#content-elements-custom-data-processor_alias", "Register an alias for the data processor (optional)" ], "implementing-the-custom-data-processor": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/CustomDataProcessing.html#implementing-the-custom-data-processor", + "ApiOverview\/ContentElements\/CustomDataProcessing.html#content-elements-custom-data-processor_implementation", "Implementing the custom data processor" ], "content-elements-plugins": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/Index.html#content-elements-plugins", + "ApiOverview\/ContentElements\/Index.html#content-element-and-plugin", "Content Elements & Plugins" ], "content-elements-in-typo3": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/Index.html#content-elements-in-typo3", + "ApiOverview\/ContentElements\/Index.html#content-elements", "Content elements in TYPO3" ], "plugins-in-typo3": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/Index.html#plugins-in-typo3", + "ApiOverview\/ContentElements\/Index.html#plugins", "Plugins in TYPO3" ], "extbase-plugins": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/Index.html#extbase-plugins", + "ApiOverview\/ContentElements\/Index.html#plugins-extbase", "Extbase plugins" ], "plugins-without-extbase": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/Index.html#plugins-without-extbase", + "ApiOverview\/ContentElements\/Index.html#plugins-non-extbase", "Plugins without Extbase" ], "typical-characteristics-of-plugins": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/Index.html#typical-characteristics-of-plugins", + "ApiOverview\/ContentElements\/Index.html#plugins-characteristics", "Typical characteristics of plugins" ], "ctype-vs-list-type-plugins": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/Index.html#ctype-vs-list-type-plugins", + "ApiOverview\/ContentElements\/Index.html#plugins-list_type", "CType vs list_type plugins" ], "editing": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/Index.html#editing", + "ApiOverview\/ContentElements\/Index.html#plugins-editing", "Editing" ], "customizing": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/Index.html#customizing", + "ApiOverview\/ContentElements\/Index.html#cePluginsCustomize", "Customizing" ], "creating-custom-content-element-types-or-plugins": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentElements\/Index.html#creating-custom-content-element-types-or-plugins", + "ApiOverview\/ContentElements\/Index.html#content-element-and-plugin-creation", "Creating custom content element types or plugins" ], "content-security-policy-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-1", + "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy", "Content Security Policy" ], "policy-builder-approach": [ @@ -33091,31 +33169,31 @@ "extension-specific": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#extension-specific", + "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-extension", "Extension-specific" ], "site-specific-frontend": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#site-specific-frontend", + "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-site", "Site-specific (frontend)" ], "disable-csp-for-a-site": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#disable-csp-for-a-site", + "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-site-active", "Disable CSP for a site" ], "modes": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#modes", + "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-modes", "Modes" ], "nonce": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Nonce.html#nonce", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Nonce.html#typo3-request-attribute-nonce", "Nonce" ], "retrieve-with-php": [ @@ -33133,7 +33211,7 @@ "reporting-of-violations": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#reporting-of-violations", + "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-reporting", "Reporting of violations" ], "using-a-third-party-service": [ @@ -33145,79 +33223,79 @@ "psr-14-events": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Events.html#psr-14-events", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events", "PSR-14 events" ], "context-api-and-aspects": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#context-api-and-aspects", + "ApiOverview\/Context\/Index.html#context-api", "Context API and aspects" ], "aspects": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#aspects", + "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#routing-advanced-routing-configuration-aspects", "Aspects" ], "date-time-aspect": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#date-time-aspect", + "ApiOverview\/Context\/Index.html#context_api_aspects_datetime", "Date time aspect" ], "language-aspect": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#language-aspect", + "ApiOverview\/Context\/Index.html#context_api_aspects_language", "Language aspect" ], "overlay-types": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#overlay-types", + "ApiOverview\/Context\/Index.html#context_api_aspects_language_overlay-types", "Overlay types" ], "preview-aspect": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#preview-aspect", + "ApiOverview\/Context\/Index.html#context_api_aspects_preview", "Preview aspect" ], "typoscript-aspect": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#typoscript-aspect", + "ApiOverview\/Context\/Index.html#context_api_aspects_typoscript", "TypoScript aspect" ], "user-aspect": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#user-aspect", + "ApiOverview\/Context\/Index.html#context_api_aspects_user", "User aspect" ], "visibility-aspect": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#visibility-aspect", + "ApiOverview\/Context\/Index.html#context_api_aspects_visibility", "Visibility aspect" ], "workspace-aspect": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#workspace-aspect", + "ApiOverview\/Context\/Index.html#context_api_aspects_workspace", "Workspace aspect" ], "context-sensitive-help-has-been-removed": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContextSensitiveHelp\/Index.html#context-sensitive-help-has-been-removed", + "ApiOverview\/ContextSensitiveHelp\/Index.html#csh", "Context sensitive help has been removed" ], "country-api-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Country\/Index.html#country-api-1", + "ApiOverview\/Country\/Index.html#country-api", "Country API" ], "using-the-php-api": [ @@ -33277,13 +33355,13 @@ "form-viewhelper": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Country\/Index.html#form-viewhelper", + "ApiOverview\/Country\/Index.html#country-select-viewhelper", "Form ViewHelper" ], "crop-variants-configuration-per-content-element": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CropVariants\/ContentElement\/Index.html#crop-variants-configuration-per-content-element", + "ApiOverview\/CropVariants\/ContentElement\/Index.html#CE_cropvariants", "Crop variants configuration per content element" ], "disable-crop-variants": [ @@ -33295,7 +33373,7 @@ "general-configuration": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CropVariants\/General\/Index.html#general-configuration", + "ApiOverview\/CropVariants\/General\/Index.html#cropvariants_general", "General Configuration" ], "crop-area": [ @@ -33325,13 +33403,13 @@ "crop-variants-for-images": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CropVariants\/Index.html#crop-variants-for-images", + "ApiOverview\/CropVariants\/Index.html#cropvariants", "Crop Variants for Images" ], "basic-create-read-update-and-delete-operations-crud": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/BasicCrud\/Index.html#basic-create-read-update-and-delete-operations-crud", + "ApiOverview\/Database\/BasicCrud\/Index.html#cgl-database-access", "Basic create, read, update, and delete operations (CRUD)" ], "insert-a-row": [ @@ -33343,7 +33421,7 @@ "select-a-single-row": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/BasicCrud\/Index.html#select-a-single-row", + "ApiOverview\/Database\/BasicCrud\/Index.html#database-select", "Select a single row" ], "select-multiple-rows-with-some-where-magic": [ @@ -33367,7 +33445,7 @@ "class-overview": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/ClassOverview\/Index.html#class-overview", + "ApiOverview\/Database\/ClassOverview\/Index.html#database-class-overview", "Class overview" ], "example-one-connection": [ @@ -33385,13 +33463,13 @@ "connection": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/Connection\/Index.html#connection", + "ApiOverview\/Database\/Connection\/Index.html#database-connection", "Connection" ], "instantiation": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Logger\/Index.html#instantiation", + "ApiOverview\/Logging\/Logger\/Index.html#logging-logger-instantiation", "Instantiation" ], "using-the-connection-pool": [ @@ -33409,25 +33487,25 @@ "parameter-types": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/Connection\/Index.html#parameter-types", + "ApiOverview\/Database\/Connection\/Index.html#database-connection-parameter-types", "Parameter types" ], "insert": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/Connection\/Index.html#insert", + "ApiOverview\/Database\/Connection\/Index.html#database-connection-insert", "insert()" ], "bulkinsert": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/Connection\/Index.html#bulkinsert", + "ApiOverview\/Database\/Connection\/Index.html#database-connection-bulk-insert", "bulkInsert()" ], "update": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/Connection\/Index.html#update", + "ApiOverview\/Database\/Connection\/Index.html#database-connection-update", "update()" ], "delete": [ @@ -33439,61 +33517,61 @@ "truncate": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/Connection\/Index.html#truncate", + "ApiOverview\/Database\/Connection\/Index.html#database-connection-truncate", "truncate()" ], "count": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#count", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-count", "count()" ], "select": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/Connection\/Index.html#select", + "ApiOverview\/Database\/Connection\/Index.html#database-connection-select", "select()" ], "lastinsertid": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/Connection\/Index.html#lastinsertid", + "ApiOverview\/Database\/Connection\/Index.html#database-connection-last-insert-id", "lastInsertId()" ], "createquerybuilder": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/Connection\/Index.html#createquerybuilder", + "ApiOverview\/Database\/Connection\/Index.html#database-connection-create-query-builder", "createQueryBuilder()" ], "native-json-database-field-type-support": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/Connection\/Index.html#native-json-database-field-type-support", + "ApiOverview\/Database\/Connection\/Index.html#json_database_type", "Native JSON database field type support" ], "connectionpool": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/ConnectionPool\/Index.html#connectionpool", + "ApiOverview\/Database\/ConnectionPool\/Index.html#database-connection-pool", "ConnectionPool" ], "pooling-multiple-connections-to-different-database-endpoints": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/ConnectionPool\/Index.html#pooling-multiple-connections-to-different-database-endpoints", + "ApiOverview\/Database\/ConnectionPool\/Index.html#database-connection-pool-pooling", "Pooling: multiple connections to different database endpoints" ], "beware": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/ConnectionPool\/Index.html#beware", + "ApiOverview\/Database\/ConnectionPool\/Index.html#database-connection-pool-beware", "Beware" ], "database-structure-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/DatabaseStructure\/Index.html#database-structure-1", + "ApiOverview\/Database\/DatabaseStructure\/Index.html#database-structure-requirements", "Database structure" ], "types-of-tables": [ @@ -33523,67 +33601,67 @@ "the-pages-table": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/DatabaseStructure\/Index.html#the-pages-table", + "ApiOverview\/Database\/DatabaseStructure\/Index.html#database-structure-pages", "The \"pages\" table" ], "mm-relations": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/DatabaseStructure\/Index.html#mm-relations", + "ApiOverview\/Database\/DatabaseStructure\/Index.html#database-structure-mm-relations", "MM relations" ], "other-tables": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/DatabaseStructure\/Index.html#other-tables", + "ApiOverview\/Database\/DatabaseStructure\/Index.html#database-structure-other-tables", "Other tables" ], "upgrade-table-and-field-definitions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/DatabaseUpgrade\/Index.html#upgrade-table-and-field-definitions", + "ApiOverview\/Database\/DatabaseUpgrade\/Index.html#database-upgrade", "Upgrade table and field definitions" ], "the-ext-tables-sql-files": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/DatabaseUpgrade\/Index.html#the-ext-tables-sql-files", + "ApiOverview\/Database\/DatabaseUpgrade\/Index.html#database-exttables-sql", "The ext_tables.sql files" ], "expression-builder": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#expression-builder", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder", "Expression builder" ], "basic-usage": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/RestRequests\/Index.html#basic-usage", + "ExtensionArchitecture\/HowTo\/RestRequests\/Index.html#http-basic", "Basic usage" ], "junctions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#junctions", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-basic-junctions", "Junctions" ], "comparisons": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#comparisons", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-basic-comparisons", "Comparisons" ], "aggregate-functions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#aggregate-functions", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-basic-aggregate-functions", "Aggregate functions" ], "various-expressions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#various-expressions", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-basic-various-expressions", "Various expressions" ], "length": [ @@ -33601,7 +33679,7 @@ "database-doctrine-dbal": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/Index.html#database-doctrine-dbal", + "ApiOverview\/Database\/Index.html#database", "Database (Doctrine DBAL)" ], "doctrine-dbal": [ @@ -33625,7 +33703,7 @@ "doctrine-dbal-driver-middlewares": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/Middleware\/Index.html#doctrine-dbal-driver-middlewares", + "ApiOverview\/Database\/Middleware\/Index.html#database-middleware", "Doctrine DBAL driver middlewares" ], "registering-a-new-driver-middleware": [ @@ -33637,25 +33715,25 @@ "query-builder": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#query-builder", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder", "Query builder" ], "select-and-addselect": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#select-and-addselect", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-select", "select() and addSelect()" ], "default-restrictions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#default-restrictions", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-select-restrictions", "Default Restrictions" ], "update-and-set": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#update-and-set", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-update-set", "update() and set()" ], "insert-and-values": [ @@ -33685,7 +33763,7 @@ "orderby-and-addorderby": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#orderby-and-addorderby", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-orderby", "orderBy() and addOrderBy()" ], "groupby-and-addgroupby": [ @@ -33703,37 +33781,37 @@ "add": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#add", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-add", "add()" ], "getsql": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#getsql", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-get-sql", "getSQL()" ], "getparameters": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#getparameters", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-get-parameters", "getParameters()" ], "execute-executequery-and-executestatement": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#execute-executequery-and-executestatement", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-execute", "execute(), executeQuery() and executeStatement()" ], "executequery": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#executequery", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-execute-query", "executeQuery()" ], "executestatement": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#executestatement", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-execute-statement", "executeStatement()" ], "expr": [ @@ -33745,7 +33823,7 @@ "createnamedparameter": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#createnamedparameter", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-create-named-parameter", "createNamedParameter()" ], "more-examples": [ @@ -33763,13 +33841,13 @@ "quoteidentifier-and-quoteidentifiers": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#quoteidentifier-and-quoteidentifiers", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-quote-identifier", "quoteIdentifier() and quoteIdentifiers()" ], "escapelikewildcards": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#escapelikewildcards", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-escape-like-wildcards", "escapeLikeWildcards()" ], "getrestrictions-setrestrictions-resetrestrictions": [ @@ -33781,7 +33859,7 @@ "restriction-builder": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/RestrictionBuilder\/Index.html#restriction-builder", + "ApiOverview\/Database\/RestrictionBuilder\/Index.html#database-restriction-builder", "Restriction builder" ], "rationale": [ @@ -33811,43 +33889,43 @@ "limit-restrictions-to-tables": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/RestrictionBuilder\/Index.html#limit-restrictions-to-tables", + "ApiOverview\/Database\/RestrictionBuilder\/Index.html#database-limit-restrictions-to-tables", "Limit restrictions to tables" ], "custom-restrictions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/RestrictionBuilder\/Index.html#custom-restrictions", + "ApiOverview\/Database\/RestrictionBuilder\/Index.html#database-custom-restrictions", "Custom restrictions" ], "result": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/Statement\/Index.html#result", + "ApiOverview\/Database\/Statement\/Index.html#database-result", "Result" ], "fetchassociative": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/Statement\/Index.html#fetchassociative", + "ApiOverview\/Database\/Statement\/Index.html#database-result-fetch-associative", "fetchAssociative()" ], "fetchallassociative": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/Statement\/Index.html#fetchallassociative", + "ApiOverview\/Database\/Statement\/Index.html#database-result-fetch-all-associative", "fetchAllAssociative()" ], "fetchone": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/Statement\/Index.html#fetchone", + "ApiOverview\/Database\/Statement\/Index.html#database-result-fetch-one", "fetchOne()" ], "rowcount": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/Statement\/Index.html#rowcount", + "ApiOverview\/Database\/Statement\/Index.html#database-result-row-count", "rowCount()" ], "reuse-prepared-statement": [ @@ -33859,49 +33937,49 @@ "various-tips-and-tricks": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Database\/TipsAndTricks\/Index.html#various-tips-and-tricks", + "ApiOverview\/Database\/TipsAndTricks\/Index.html#database-tips-and-tricks", "Various tips and tricks" ], "database-records-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DatabaseRecords\/Index.html#database-records-1", + "ApiOverview\/DatabaseRecords\/Index.html#database-records", "Database records" ], "common-examples-of-records-in-typo3": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DatabaseRecords\/Index.html#common-examples-of-records-in-typo3", + "ApiOverview\/DatabaseRecords\/Index.html#database-records-examples", "Common examples of records in TYPO3:" ], "technical-structure-of-a-record": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DatabaseRecords\/Index.html#technical-structure-of-a-record", + "ApiOverview\/DatabaseRecords\/Index.html#database-records-technical", "Technical structure of a record:" ], "tca-table-configuration-array": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#tca-table-configuration-array", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_tca", "TCA - Table Configuration Array" ], "types-and-subtypes-in-records": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DatabaseRecords\/Index.html#types-and-subtypes-in-records", + "ApiOverview\/DatabaseRecords\/Index.html#database-records-types", "Types and subtypes in records" ], "extbase-domain-models": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DatabaseRecords\/Index.html#extbase-domain-models", + "ApiOverview\/DatabaseRecords\/Index.html#database-records-models", "Extbase domain models" ], "datahandler-basics-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-basics-1", + "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-basics", "DataHandler basics" ], "commands-array": [ @@ -33913,13 +33991,13 @@ "command-keywords-and-values": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#command-keywords-and-values", + "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-command-keywords", "Command keywords and values" ], "examples-of-commands": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#examples-of-commands", + "ApiOverview\/DataHandler\/Database\/Index.html#tce-command-examples", "Examples of commands" ], "accessing-the-uid-of-copied-records": [ @@ -33931,25 +34009,25 @@ "data-array": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#data-array", + "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-data", "Data array" ], "examples-of-data-submission": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#examples-of-data-submission", + "ApiOverview\/DataHandler\/Database\/Index.html#tce-data-examples", "Examples of data submission" ], "clear-cache": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#clear-cache", + "ApiOverview\/DataHandler\/Database\/Index.html#tce-clear-cache", "Clear cache" ], "clear-cache-using-cache-tags": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#clear-cache-using-cache-tags", + "ApiOverview\/DataHandler\/Database\/Index.html#tce-cache-hook", "Clear cache using cache tags" ], "hook-for-cache-post-processing": [ @@ -33961,115 +34039,115 @@ "flags-in-datahandler": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#flags-in-datahandler", + "ApiOverview\/DataHandler\/Database\/Index.html#tce-flags", "Flags in DataHandler" ], "datahandler": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Index.html#datahandler", + "ApiOverview\/DataHandler\/Index.html#data-handler", "DataHandler" ], "files": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Index.html#files", + "ExtensionArchitecture\/FileStructure\/Index.html#extension-files", "Files" ], "the-record-commit-route": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/TceDb\/Index.html#the-record-commit-route", + "ApiOverview\/DataHandler\/TceDb\/Index.html#record-commit-route", "The \"\/record\/commit\" route" ], "using-the-datahandler-in-scripts": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#using-the-datahandler-in-scripts", + "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#using-tcemain", "Using the DataHandler in scripts" ], "using-the-datahandler-in-a-symfony-command": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#using-the-datahandler-in-a-symfony-command", + "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#dataHandler-cli-command", "Using the DataHandler in a Symfony command" ], "datahandler-examples": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#datahandler-examples", + "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#tcemain-examples", "DataHandler examples" ], "submitting-data": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#submitting-data", + "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#tcemain-submit-data", "Submitting data" ], "executing-commands": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#executing-commands", + "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#tcemain-execute-commands", "Executing commands" ], "clearing-cache": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#clearing-cache", + "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#tcemain-clear-cache", "Clearing cache" ], "complex-data-submission": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#complex-data-submission", + "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#tcemain-complex-submission", "Complex data submission" ], "both-data-and-commands-executed-with-alternative-user-object": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#both-data-and-commands-executed-with-alternative-user-object", + "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#tcemain-data-command-user", "Both data and commands executed with alternative user object" ], "error-handling": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/ErrorHandling\/Index.html#error-handling", + "ApiOverview\/SiteHandling\/ErrorHandling\/Index.html#sitehandling-errorHandling", "Error handling" ], "debugging": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#debugging", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-debugging", "Debugging" ], "typo3-backend-debug-mode": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Debugging\/Index.html#typo3-backend-debug-mode", + "ApiOverview\/Debugging\/Index.html#examples-debug-backend", "TYPO3 backend debug mode" ], "debugutility-debug": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Debugging\/Index.html#debugutility-debug", + "ApiOverview\/Debugging\/Index.html#examples-debug-utility", "DebugUtility::debug()" ], "extbase-debuggerutility": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Debugging\/Index.html#extbase-debuggerutility", + "ApiOverview\/Debugging\/Index.html#examples-debug-extbase-utility", "Extbase DebuggerUtility" ], "fluid-debug-viewhelper": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Debugging\/Index.html#fluid-debug-viewhelper", + "ApiOverview\/Debugging\/Index.html#examples-debug-fluid", "Fluid Debug ViewHelper" ], "xdebug": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Debugging\/Index.html#xdebug", + "ApiOverview\/Debugging\/Index.html#examples-debug-xdebug", "Xdebug" ], "dependency-injection": [ @@ -34099,7 +34177,7 @@ "using-di": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DependencyInjection\/Index.html#using-di", + "ApiOverview\/DependencyInjection\/Index.html#Using-DI", "Using DI" ], "when-to-use-dependency-injection-in-typo3": [ @@ -34111,13 +34189,13 @@ "constructor-injection": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DependencyInjection\/Index.html#constructor-injection", + "ApiOverview\/DependencyInjection\/Index.html#Constructor-injection", "Constructor injection" ], "method-injection": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DependencyInjection\/Index.html#method-injection", + "ApiOverview\/DependencyInjection\/Index.html#Method-injection", "Method injection" ], "interface-injection": [ @@ -34135,13 +34213,13 @@ "configure-dependency-injection-in-extensions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DependencyInjection\/Index.html#configure-dependency-injection-in-extensions", + "ApiOverview\/DependencyInjection\/Index.html#dependency-injection-in-extensions", "Configure dependency injection in extensions" ], "arguments": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DependencyInjection\/Index.html#arguments", + "ApiOverview\/DependencyInjection\/Index.html#DependencyInjectionArguments", "Arguments" ], "public": [ @@ -34153,7 +34231,7 @@ "what-to-make-public": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DependencyInjection\/Index.html#what-to-make-public", + "ApiOverview\/DependencyInjection\/Index.html#What-to-make-public", "What to make public" ], "errors-resulting-from-wrong-configuration": [ @@ -34165,7 +34243,7 @@ "installation-wide-configuration": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DependencyInjection\/Index.html#installation-wide-configuration", + "ApiOverview\/DependencyInjection\/Index.html#dependency-injection-installation-wide", "Installation-wide configuration" ], "user-functions-and-their-restrictions": [ @@ -34189,13 +34267,13 @@ "deprecation-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Deprecation\/Index.html#deprecation-1", + "ApiOverview\/Deprecation\/Index.html#deprecation", "Deprecation" ], "enabling-deprecation-errors": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Deprecation\/Index.html#enabling-deprecation-errors", + "ApiOverview\/Deprecation\/Index.html#deprecation_enable_errors", "Enabling deprecation errors" ], "via-gui": [ @@ -34213,25 +34291,25 @@ "find-calls-to-deprecated-functions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Deprecation\/Index.html#find-calls-to-deprecated-functions", + "ApiOverview\/Deprecation\/Index.html#deprecation_finding_calls", "Find calls to deprecated functions" ], "deprecate-functions-in-extensions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Deprecation\/Index.html#deprecate-functions-in-extensions", + "ApiOverview\/Deprecation\/Index.html#deprecate_functions", "Deprecate functions in extensions" ], "directory-structure-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/Index.html#directory-structure-1", + "ApiOverview\/DirectoryStructure\/Index.html#directory-structure", "Directory structure" ], "files-on-project-level": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#files-on-project-level", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-project", "Files on project level" ], "directories-in-a-typical-project": [ @@ -34243,229 +34321,229 @@ "file-config": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-config", + "ApiOverview\/DirectoryStructure\/Index.html#directory-config", "config\/" ], "file-config-sites": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-config-sites", + "ApiOverview\/DirectoryStructure\/Index.html#directory-config-sites", "config\/sites\/" ], "file-config-system": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-config-system", + "ApiOverview\/DirectoryStructure\/Index.html#directory-config-system", "config\/system\/" ], "file-packages": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-packages", + "ApiOverview\/DirectoryStructure\/Index.html#directory-packages", "packages\/" ], "file-public": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Resources\/Public\/Index.html#file-public", + "ExtensionArchitecture\/FileStructure\/Resources\/Public\/Index.html#extension-Resources-Public", "Public" ], "file-public-assets": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-public-assets", + "ApiOverview\/DirectoryStructure\/Index.html#directory-public-assets", "public\/_assets\/" ], "file-public-fileadmin": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-public-fileadmin", + "ApiOverview\/DirectoryStructure\/Index.html#directory-public-fileadmin", "public\/fileadmin\/" ], "file-public-typo3": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-public-typo3", + "ApiOverview\/DirectoryStructure\/Index.html#directory-public-typo3", "public\/typo3\/" ], "file-public-typo3temp": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-public-typo3temp", + "ApiOverview\/DirectoryStructure\/Index.html#directory-public-typo3temp", "public\/typo3temp\/" ], "file-public-typo3temp-assets": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-public-typo3temp-assets", + "ApiOverview\/DirectoryStructure\/Index.html#directory-public-typo3temp-assets", "public\/typo3temp\/assets\/" ], "file-var": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-var", + "ApiOverview\/DirectoryStructure\/Index.html#directory-var", "var\/" ], "file-var-cache": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-var-cache", + "ApiOverview\/DirectoryStructure\/Index.html#directory-var-cache", "var\/cache\/" ], "file-var-labels": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-var-labels", + "ApiOverview\/DirectoryStructure\/Index.html#directory-var-labels", "var\/labels\/" ], "file-var-log": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-var-log", + "ApiOverview\/DirectoryStructure\/Index.html#directory-var-log", "var\/log\/" ], "file-vendor": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-vendor", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-vendor", "vendor\/" ], "legacy-installations-directory-structure": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-installations-directory-structure", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-structure", "Legacy installations: Directory structure" ], "file-fileadmin": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-fileadmin", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-fileadmin", "fileadmin\/" ], "file-typo3": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3", "typo3\/" ], "file-typo3-sysext": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3-sysext", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3-sysext", "typo3\/sysext\/" ], "file-typo3-source": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3-source", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3_source", "typo3_source\/" ], "file-typo3conf": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3conf", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3conf", "typo3conf\/" ], "file-typo3conf-autoload": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3conf-autoload", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3conf-autoload", "typo3conf\/autoload\/" ], "file-typo3conf-ext": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3conf-ext", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3conf-ext", "typo3conf\/ext\/" ], "file-typo3conf-l10n": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3conf-l10n", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3conf-l10n", "typo3conf\/l10n\/" ], "file-typo3conf-sites": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3conf-sites", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3conf-sites", "typo3conf\/sites\/" ], "file-typo3conf-system": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3conf-system", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3conf-system", "typo3conf\/system\/" ], "file-typo3temp": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3temp", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3temp", "typo3temp\/" ], "file-typo3temp-assets": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3temp-assets", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3temp-assets", "typo3temp\/assets\/" ], "file-typo3temp-var": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3temp-var", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3temp-var", "typo3temp\/var\/" ], "environment": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Environment\/Index.html#environment", + "ApiOverview\/Environment\/Index.html#Environment", "Environment" ], "environment-php-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Environment\/Index.html#environment-php-api", + "ApiOverview\/Environment\/Index.html#Environment-php-api", "Environment PHP API" ], "getprojectpath": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Environment\/Index.html#getprojectpath", + "ApiOverview\/Environment\/Index.html#Environment-project-path", "getProjectPath()" ], "getpublicpath": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Environment\/Index.html#getpublicpath", + "ApiOverview\/Environment\/Index.html#Environment-public-path", "getPublicPath()" ], "getvarpath": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Environment\/Index.html#getvarpath", + "ApiOverview\/Environment\/Index.html#Environment-var-path", "getVarPath()" ], "getconfigpath": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Environment\/Index.html#getconfigpath", + "ApiOverview\/Environment\/Index.html#Environment-config-path", "getConfigPath()" ], "getlabelspath": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Environment\/Index.html#getlabelspath", + "ApiOverview\/Environment\/Index.html#Environment-labels-path", "getLabelsPath()" ], "getcurrentscript": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Environment\/Index.html#getcurrentscript", + "ApiOverview\/Environment\/Index.html#Environment-current-script", "getCurrentScript()" ], "getcontext": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Environment\/Index.html#getcontext", + "ApiOverview\/Environment\/Index.html#Environment-context", "getContext()" ], "via-the-abbr-gui-graphical-user-interface": [ @@ -34489,37 +34567,37 @@ "debug-exception-handler": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ErrorAndExceptionHandling\/DebugExceptionHandler\/Index.html#debug-exception-handler", + "ApiOverview\/ErrorAndExceptionHandling\/DebugExceptionHandler\/Index.html#error-handling-debug-exception-handler", "Debug exception handler" ], "error-handler": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ErrorAndExceptionHandling\/ErrorHandler\/Index.html#error-handler", + "ApiOverview\/ErrorAndExceptionHandling\/ErrorHandler\/Index.html#error-handling-error-handler", "Error Handler" ], "debugging-and-development-setup": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ErrorAndExceptionHandling\/Examples\/Index.html#debugging-and-development-setup", + "ApiOverview\/ErrorAndExceptionHandling\/Examples\/Index.html#error-handling-configuration-examples-debug", "Debugging and development setup" ], "production-setup": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ErrorAndExceptionHandling\/Examples\/Index.html#production-setup", + "ApiOverview\/ErrorAndExceptionHandling\/Examples\/Index.html#error-handling-configuration-examples-production", "Production setup" ], "performance-setup": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ErrorAndExceptionHandling\/Examples\/Index.html#performance-setup", + "ApiOverview\/ErrorAndExceptionHandling\/Examples\/Index.html#error-handling-configuration-examples-performance", "Performance setup" ], "how-to-extend-the-error-and-exception-handling": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ErrorAndExceptionHandling\/Extending\/Index.html#how-to-extend-the-error-and-exception-handling", + "ApiOverview\/ErrorAndExceptionHandling\/Extending\/Index.html#error-handling-extending", "How to extend the error and exception handling" ], "example-debug-exception-handler": [ @@ -34531,61 +34609,61 @@ "error-and-exception-handling": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ErrorAndExceptionHandling\/Index.html#error-and-exception-handling", + "ApiOverview\/ErrorAndExceptionHandling\/Index.html#error-handling", "Error and exception handling" ], "production-exception-handler": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ErrorAndExceptionHandling\/ProductionExceptionHandler\/Index.html#production-exception-handler", + "ApiOverview\/ErrorAndExceptionHandling\/ProductionExceptionHandler\/Index.html#error-handling-production-exception-handler", "Production exception handler" ], "message-oops-an-error-occurred": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ErrorAndExceptionHandling\/ProductionExceptionHandler\/Index.html#message-oops-an-error-occurred", + "ApiOverview\/ErrorAndExceptionHandling\/ProductionExceptionHandler\/Index.html#error-handling-oops-an-error", "Message \"Oops, an error occurred!\"" ], "show-detailed-exception-output": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ErrorAndExceptionHandling\/ProductionExceptionHandler\/Index.html#show-detailed-exception-output", + "ApiOverview\/ErrorAndExceptionHandling\/ProductionExceptionHandler\/Index.html#error-handling-oops-an-error-detail", "Show detailed exception output" ], "example-prevent-oops-an-error-occurred-messages-for-logged-in-admins": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ErrorAndExceptionHandling\/ProductionExceptionHandler\/Index.html#example-prevent-oops-an-error-occurred-messages-for-logged-in-admins", + "ApiOverview\/ErrorAndExceptionHandling\/ProductionExceptionHandler\/Index.html#error-handling-oops-an-error-detail-admin", "Example: prevent \"Oops, an error occurred!\" messages for logged-in admins" ], "extending-the-typo3-core": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Concept\/Index.html#extending-the-typo3-core", + "ApiOverview\/Events\/Concept\/Index.html#hooks-concept", "Extending the TYPO3 Core" ], "typo3-extending-mechanisms-video": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Concept\/Index.html#typo3-extending-mechanisms-video", + "ApiOverview\/Events\/Concept\/Index.html#hooks-video", "TYPO3 extending mechanisms video" ], "events-and-hooks-vs-xclass-extensions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Concept\/Index.html#events-and-hooks-vs-xclass-extensions", + "ApiOverview\/Events\/Concept\/Index.html#hooks-xclass", "Events and hooks vs. XCLASS extensions" ], "proposing-events": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Concept\/Index.html#proposing-events", + "ApiOverview\/Events\/Concept\/Index.html#events-proposing", "Proposing events" ], "event-dispatcher-psr-14-events": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#event-dispatcher-psr-14-events", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcher", "Event dispatcher (PSR-14 events)" ], "quick-start": [ @@ -34597,37 +34675,37 @@ "dispatching-an-event": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#dispatching-an-event", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherQuickStartDispatching", "Dispatching an event" ], "description-of-psr-14-in-the-context-of-typo3": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#description-of-psr-14-in-the-context-of-typo3", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherDescription", "Description of PSR-14 in the context of TYPO3" ], "the-event-dispatcher-object": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#the-event-dispatcher-object", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherObject", "The event dispatcher object" ], "the-listener-provider": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#the-listener-provider", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherListenerProvider", "The listener provider" ], "the-events": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#the-events", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherEvents", "The events" ], "the-listeners": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#the-listeners", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherListeners", "The listeners" ], "advantages-of-the-event-dispatcher-over-hooks": [ @@ -34639,115 +34717,115 @@ "impact-on-typo3-core-development-in-the-future": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#impact-on-typo3-core-development-in-the-future", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherImpact", "Impact on TYPO3 Core development in the future" ], "implementing-an-event-listener-in-your-extension": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#implementing-an-event-listener-in-your-extension", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherImplementation", "Implementing an event listener in your extension" ], "registering-the-event-listener": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#registering-the-event-listener", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherRegistration", "Registering the event listener" ], "the-event-listener-class": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#the-event-listener-class", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherEventListenerClass", "The event listener class" ], "overriding-event-listeners": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#overriding-event-listeners", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventListenerOverride", "Overriding event listeners" ], "debugging-event-handling": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#debugging-event-handling", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDebugging", "Debugging event handling" ], "afterbackendpagerenderevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/AfterBackendPageRenderEvent.html#afterbackendpagerenderevent", + "ApiOverview\/Events\/Events\/Backend\/AfterBackendPageRenderEvent.html#AfterBackendPageRenderEvent", "AfterBackendPageRenderEvent" ], "afterformenginepageinitializedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/AfterFormEnginePageInitializedEvent.html#afterformenginepageinitializedevent", + "ApiOverview\/Events\/Events\/Backend\/AfterFormEnginePageInitializedEvent.html#AfterFormEnginePageInitializedEvent", "AfterFormEnginePageInitializedEvent" ], "afterhistoryrollbackfinishedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/AfterHistoryRollbackFinishedEvent.html#afterhistoryrollbackfinishedevent", + "ApiOverview\/Events\/Events\/Backend\/AfterHistoryRollbackFinishedEvent.html#AfterHistoryRollbackFinishedEvent", "AfterHistoryRollbackFinishedEvent" ], "afterpagecolumnsselectedforlocalizationevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/AfterPageColumnsSelectedForLocalizationEvent.html#afterpagecolumnsselectedforlocalizationevent", + "ApiOverview\/Events\/Events\/Backend\/AfterPageColumnsSelectedForLocalizationEvent.html#AfterPageColumnsSelectedForLocalizationEvent", "AfterPageColumnsSelectedForLocalizationEvent" ], "afterpagepreviewurigeneratedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/AfterPagePreviewUriGeneratedEvent.html#afterpagepreviewurigeneratedevent", + "ApiOverview\/Events\/Events\/Backend\/AfterPagePreviewUriGeneratedEvent.html#AfterPagePreviewUriGeneratedEvent", "AfterPagePreviewUriGeneratedEvent" ], "afterpagetreeitemspreparedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#afterpagetreeitemspreparedevent", + "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#AfterPageTreeItemsPreparedEvent", "AfterPageTreeItemsPreparedEvent" ], "afterrecordsummaryforlocalizationevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/AfterRecordSummaryForLocalizationEvent.html#afterrecordsummaryforlocalizationevent", + "ApiOverview\/Events\/Events\/Backend\/AfterRecordSummaryForLocalizationEvent.html#AfterRecordSummaryForLocalizationEvent", "AfterRecordSummaryForLocalizationEvent" ], "beforeformenginepageinitializedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/BeforeFormEnginePageInitializedEvent.html#beforeformenginepageinitializedevent", + "ApiOverview\/Events\/Events\/Backend\/BeforeFormEnginePageInitializedEvent.html#BeforeFormEnginePageInitializedEvent", "BeforeFormEnginePageInitializedEvent" ], "beforehistoryrollbackstartevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/BeforeHistoryRollbackStartEvent.html#beforehistoryrollbackstartevent", + "ApiOverview\/Events\/Events\/Backend\/BeforeHistoryRollbackStartEvent.html#BeforeHistoryRollbackStartEvent", "BeforeHistoryRollbackStartEvent" ], "beforemodulecreationevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/BeforeModuleCreationEvent.html#beforemodulecreationevent", + "ApiOverview\/Events\/Events\/Backend\/BeforeModuleCreationEvent.html#BeforeModuleCreationEvent", "BeforeModuleCreationEvent" ], "beforepagepreviewurigeneratedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/BeforePagePreviewUriGeneratedEvent.html#beforepagepreviewurigeneratedevent", + "ApiOverview\/Events\/Events\/Backend\/BeforePagePreviewUriGeneratedEvent.html#BeforePagePreviewUriGeneratedEvent", "BeforePagePreviewUriGeneratedEvent" ], "beforesearchindatabaserecordproviderevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/BeforeSearchInDatabaseRecordProviderEvent.html#beforesearchindatabaserecordproviderevent", + "ApiOverview\/Events\/Events\/Backend\/BeforeSearchInDatabaseRecordProviderEvent.html#BeforeSearchInDatabaseRecordProviderEvent", "BeforeSearchInDatabaseRecordProviderEvent" ], "customfilecontrolsevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/CustomFileControlsEvent.html#customfilecontrolsevent", + "ApiOverview\/Events\/Events\/Backend\/CustomFileControlsEvent.html#CustomFileControlsEvent", "CustomFileControlsEvent" ], "backend": [ @@ -34759,139 +34837,139 @@ "iscontentusedonpagelayoutevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/IsContentUsedOnPageLayoutEvent.html#iscontentusedonpagelayoutevent", + "ApiOverview\/Events\/Events\/Backend\/IsContentUsedOnPageLayoutEvent.html#IsContentUsedOnPageLayoutEvent", "IsContentUsedOnPageLayoutEvent" ], "example-display-unused-elements-detected-on-this-page-for-elements-with-missing-parent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/IsContentUsedOnPageLayoutEvent.html#example-display-unused-elements-detected-on-this-page-for-elements-with-missing-parent", + "ApiOverview\/Events\/Events\/Backend\/IsContentUsedOnPageLayoutEvent.html#IsContentUsedOnPageLayoutEvent-example", "Example: Display \"Unused elements detected on this page\" for elements with missing parent" ], "api-of-iscontentusedonpagelayoutevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/IsContentUsedOnPageLayoutEvent.html#api-of-iscontentusedonpagelayoutevent", + "ApiOverview\/Events\/Events\/Backend\/IsContentUsedOnPageLayoutEvent.html#IsContentUsedOnPageLayoutEvent-api", "API of IsContentUsedOnPageLayoutEvent" ], "isfileselectableevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/IsFileSelectableEvent.html#isfileselectableevent", + "ApiOverview\/Events\/Events\/Backend\/IsFileSelectableEvent.html#IsFileSelectableEvent", "IsFileSelectableEvent" ], "modifyalloweditemsevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyAllowedItemsEvent.html#modifyalloweditemsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyAllowedItemsEvent.html#ModifyAllowedItemsEvent", "ModifyAllowedItemsEvent" ], "modifybuttonbarevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyButtonBarEvent.html#modifybuttonbarevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyButtonBarEvent.html#ModifyButtonBarEvent", "ModifyButtonBarEvent" ], "modifyclearcacheactionsevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyClearCacheActionsEvent.html#modifyclearcacheactionsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyClearCacheActionsEvent.html#ModifyClearCacheActionsEvent", "ModifyClearCacheActionsEvent" ], "modifydatabasequeryforcontentevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyDatabaseQueryForContentEvent.html#modifydatabasequeryforcontentevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyDatabaseQueryForContentEvent.html#ModifyDatabaseQueryForContentEvent", "ModifyDatabaseQueryForContentEvent" ], "modifydatabasequeryforrecordlistingevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyDatabaseQueryForRecordListingEvent.html#modifydatabasequeryforrecordlistingevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyDatabaseQueryForRecordListingEvent.html#ModifyDatabaseQueryForRecordListingEvent", "ModifyDatabaseQueryForRecordListingEvent" ], "modifyeditformuseraccessevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyEditFormUserAccessEvent.html#modifyeditformuseraccessevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyEditFormUserAccessEvent.html#ModifyEditFormUserAccessEvent", "ModifyEditFormUserAccessEvent" ], "modifyfilereferencecontrolsevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyFileReferenceControlsEvent.html#modifyfilereferencecontrolsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyFileReferenceControlsEvent.html#ModifyFileReferenceControlsEvent", "ModifyFileReferenceControlsEvent" ], "modifyfilereferenceenabledcontrolsevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyFileReferenceEnabledControlsEvent.html#modifyfilereferenceenabledcontrolsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyFileReferenceEnabledControlsEvent.html#ModifyFileReferenceEnabledControlsEvent", "ModifyFileReferenceEnabledControlsEvent" ], "modifygenericbackendmessagesevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyGenericBackendMessagesEvent.html#modifygenericbackendmessagesevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyGenericBackendMessagesEvent.html#ModifyGenericBackendMessagesEvent", "ModifyGenericBackendMessagesEvent" ], "modifyimagemanipulationpreviewurlevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyImageManipulationPreviewUrlEvent.html#modifyimagemanipulationpreviewurlevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyImageManipulationPreviewUrlEvent.html#ModifyImageManipulationPreviewUrlEvent", "ModifyImageManipulationPreviewUrlEvent" ], "modifyinlineelementcontrolsevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyInlineElementControlsEvent.html#modifyinlineelementcontrolsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyInlineElementControlsEvent.html#ModifyInlineElementControlsEvent", "ModifyInlineElementControlsEvent" ], "modifyinlineelementenabledcontrolsevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyInlineElementEnabledControlsEvent.html#modifyinlineelementenabledcontrolsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyInlineElementEnabledControlsEvent.html#ModifyInlineElementEnabledControlsEvent", "ModifyInlineElementEnabledControlsEvent" ], "modifylinkexplanationevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyLinkExplanationEvent.html#modifylinkexplanationevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyLinkExplanationEvent.html#ModifyLinkExplanationEvent", "ModifyLinkExplanationEvent" ], "modifylinkhandlersevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyLinkHandlersEvent.html#modifylinkhandlersevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyLinkHandlersEvent.html#ModifyLinkHandlersEvent", "ModifyLinkHandlersEvent" ], "modifynewcontentelementwizarditemsevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyNewContentElementWizardItemsEvent.html#modifynewcontentelementwizarditemsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyNewContentElementWizardItemsEvent.html#ModifyNewContentElementWizardItemsEvent", "ModifyNewContentElementWizardItemsEvent" ], "modifypagelayoutcontentevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyPageLayoutContentEvent.html#modifypagelayoutcontentevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyPageLayoutContentEvent.html#ModifyPageLayoutContentEvent", "ModifyPageLayoutContentEvent" ], "modifypagelayoutonloginproviderselectionevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyPageLayoutOnLoginProviderSelectionEvent.html#modifypagelayoutonloginproviderselectionevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyPageLayoutOnLoginProviderSelectionEvent.html#ModifyPageLayoutOnLoginProviderSelectionEvent", "ModifyPageLayoutOnLoginProviderSelectionEvent" ], "modifyqueryforlivesearchevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyQueryForLiveSearchEvent.html#modifyqueryforlivesearchevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyQueryForLiveSearchEvent.html#ModifyQueryForLiveSearchEvent", "ModifyQueryForLiveSearchEvent" ], "modifyrecordlistheadercolumnsevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyRecordListHeaderColumnsEvent.html#modifyrecordlistheadercolumnsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyRecordListHeaderColumnsEvent.html#ModifyRecordListHeaderColumnsEvent", "ModifyRecordListHeaderColumnsEvent" ], "usage": [ @@ -34903,811 +34981,811 @@ "modifyrecordlistrecordactionsevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyRecordListRecordActionsEvent.html#modifyrecordlistrecordactionsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyRecordListRecordActionsEvent.html#ModifyRecordListRecordActionsEvent", "ModifyRecordListRecordActionsEvent" ], "modifyrecordlisttableactionsevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyRecordListTableActionsEvent.html#modifyrecordlisttableactionsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyRecordListTableActionsEvent.html#ModifyRecordListTableActionsEvent", "ModifyRecordListTableActionsEvent" ], "modifyresultiteminlivesearchevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyResultItemInLiveSearchEvent.html#modifyresultiteminlivesearchevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyResultItemInLiveSearchEvent.html#ModifyResultItemInLiveSearchEvent", "ModifyResultItemInLiveSearchEvent" ], "pagecontentpreviewrenderingevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/PageContentPreviewRenderingEvent.html#pagecontentpreviewrenderingevent", + "ApiOverview\/Events\/Events\/Backend\/PageContentPreviewRenderingEvent.html#PageContentPreviewRenderingEvent", "PageContentPreviewRenderingEvent" ], "renderadditionalcontenttorecordlistevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/RenderAdditionalContentToRecordListEvent.html#renderadditionalcontenttorecordlistevent", + "ApiOverview\/Events\/Events\/Backend\/RenderAdditionalContentToRecordListEvent.html#RenderAdditionalContentToRecordListEvent", "RenderAdditionalContentToRecordListEvent" ], "switchuserevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/SwitchUserEvent.html#switchuserevent", + "ApiOverview\/Events\/Events\/Backend\/SwitchUserEvent.html#SwitchUserEvent", "SwitchUserEvent" ], "systeminformationtoolbarcollectorevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Backend\/SystemInformationToolbarCollectorEvent.html#systeminformationtoolbarcollectorevent", + "ApiOverview\/Events\/Events\/Backend\/SystemInformationToolbarCollectorEvent.html#SystemInformationToolbarCollectorEvent", "SystemInformationToolbarCollectorEvent" ], "aftergroupsresolvedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Authentication\/AfterGroupsResolvedEvent.html#aftergroupsresolvedevent", + "ApiOverview\/Events\/Events\/Core\/Authentication\/AfterGroupsResolvedEvent.html#AfterGroupsResolvedEvent", "AfterGroupsResolvedEvent" ], "afteruserloggedinevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Authentication\/AfterUserLoggedInEvent.html#afteruserloggedinevent", + "ApiOverview\/Events\/Events\/Core\/Authentication\/AfterUserLoggedInEvent.html#AfterUserLoggedInEvent", "AfterUserLoggedInEvent" ], "afteruserloggedoutevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Authentication\/AfterUserLoggedOutEvent.html#afteruserloggedoutevent", + "ApiOverview\/Events\/Events\/Core\/Authentication\/AfterUserLoggedOutEvent.html#AfterUserLoggedOutEvent", "AfterUserLoggedOutEvent" ], "beforerequesttokenprocessedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Authentication\/BeforeRequestTokenProcessedEvent.html#beforerequesttokenprocessedevent", + "ApiOverview\/Events\/Events\/Core\/Authentication\/BeforeRequestTokenProcessedEvent.html#BeforeRequestTokenProcessedEvent", "BeforeRequestTokenProcessedEvent" ], "beforeuserlogoutevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Authentication\/BeforeUserLogoutEvent.html#beforeuserlogoutevent", + "ApiOverview\/Events\/Events\/Core\/Authentication\/BeforeUserLogoutEvent.html#BeforeUserLogoutEvent", "BeforeUserLogoutEvent" ], "authentication": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Authentication\/Index.html#authentication", + "ApiOverview\/Events\/Events\/Core\/Authentication\/Index.html#eventlist-core-authentication", "Authentication" ], "loginattemptfailedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Authentication\/LoginAttemptFailedEvent.html#loginattemptfailedevent", + "ApiOverview\/Events\/Events\/Core\/Authentication\/LoginAttemptFailedEvent.html#LoginAttemptFailedEvent", "LoginAttemptFailedEvent" ], "cacheflushevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Cache\/CacheFlushEvent.html#cacheflushevent", + "ApiOverview\/Events\/Events\/Core\/Cache\/CacheFlushEvent.html#CacheFlushEvent", "CacheFlushEvent" ], "cachewarmupevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Cache\/CacheWarmupEvent.html#cachewarmupevent", + "ApiOverview\/Events\/Events\/Core\/Cache\/CacheWarmupEvent.html#CacheWarmupEvent", "CacheWarmupEvent" ], "cache": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Cache\/Index.html#cache", + "ApiOverview\/Events\/Events\/Core\/Cache\/Index.html#eventlist-core-cache", "Cache" ], "afterflexformdatastructureidentifierinitializedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Configuration\/AfterFlexFormDataStructureIdentifierInitializedEvent.html#afterflexformdatastructureidentifierinitializedevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/AfterFlexFormDataStructureIdentifierInitializedEvent.html#AfterFlexFormDataStructureIdentifierInitializedEvent", "AfterFlexFormDataStructureIdentifierInitializedEvent" ], "afterflexformdatastructureparsedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Configuration\/AfterFlexFormDataStructureParsedEvent.html#afterflexformdatastructureparsedevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/AfterFlexFormDataStructureParsedEvent.html#AfterFlexFormDataStructureParsedEvent", "AfterFlexFormDataStructureParsedEvent" ], "aftertcacompilationevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Configuration\/AfterTcaCompilationEvent.html#aftertcacompilationevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/AfterTcaCompilationEvent.html#AfterTcaCompilationEvent", "AfterTcaCompilationEvent" ], "beforeflexformdatastructureidentifierinitializedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Configuration\/BeforeFlexFormDataStructureIdentifierInitializedEvent.html#beforeflexformdatastructureidentifierinitializedevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/BeforeFlexFormDataStructureIdentifierInitializedEvent.html#BeforeFlexFormDataStructureIdentifierInitializedEvent", "BeforeFlexFormDataStructureIdentifierInitializedEvent" ], "beforeflexformdatastructureparsedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Configuration\/BeforeFlexFormDataStructureParsedEvent.html#beforeflexformdatastructureparsedevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/BeforeFlexFormDataStructureParsedEvent.html#BeforeFlexFormDataStructureParsedEvent", "BeforeFlexFormDataStructureParsedEvent" ], "modifyloadedpagetsconfigevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Configuration\/ModifyLoadedPageTsConfigEvent.html#modifyloadedpagetsconfigevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/ModifyLoadedPageTsConfigEvent.html#ModifyLoadedPageTsConfigEvent", "ModifyLoadedPageTsConfigEvent" ], "compatibility-with-typo3-v11-and-v12": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Configuration\/ModifyLoadedPageTsConfigEvent.html#compatibility-with-typo3-v11-and-v12", + "ApiOverview\/Events\/Events\/Core\/Configuration\/ModifyLoadedPageTsConfigEvent.html#ModifyLoadedPageTsConfigEventv11v12", "Compatibility with TYPO3 v11 and v12" ], "siteconfigurationbeforewriteevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Configuration\/SiteConfigurationBeforeWriteEvent.html#siteconfigurationbeforewriteevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/SiteConfigurationBeforeWriteEvent.html#SiteConfigurationBeforeWriteEvent", "SiteConfigurationBeforeWriteEvent" ], "siteconfigurationloadedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Configuration\/SiteConfigurationLoadedEvent.html#siteconfigurationloadedevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/SiteConfigurationLoadedEvent.html#SiteConfigurationLoadedEvent", "SiteConfigurationLoadedEvent" ], "bootcompletedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Core\/BootCompletedEvent.html#bootcompletedevent", + "ApiOverview\/Events\/Events\/Core\/Core\/BootCompletedEvent.html#BootCompletedEvent", "BootCompletedEvent" ], "core": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Index.html#core", + "ApiOverview\/Events\/Events\/Core\/Index.html#eventlist-core", "Core" ], "altertabledefinitionstatementsevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Database\/AlterTableDefinitionStatementsEvent.html#altertabledefinitionstatementsevent", + "ApiOverview\/Events\/Events\/Core\/Database\/AlterTableDefinitionStatementsEvent.html#AlterTableDefinitionStatementsEvent", "AlterTableDefinitionStatementsEvent" ], "appendlinkhandlerelementsevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/DataHandling\/AppendLinkHandlerElementsEvent.html#appendlinkhandlerelementsevent", + "ApiOverview\/Events\/Events\/Core\/DataHandling\/AppendLinkHandlerElementsEvent.html#AppendLinkHandlerElementsEvent", "AppendLinkHandlerElementsEvent" ], "datahandling": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/DataHandling\/Index.html#datahandling", + "ApiOverview\/Events\/Events\/Core\/DataHandling\/Index.html#eventlist-core-Datahandling", "DataHandling" ], "istableexcludedfromreferenceindexevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/DataHandling\/IsTableExcludedFromReferenceIndexEvent.html#istableexcludedfromreferenceindexevent", + "ApiOverview\/Events\/Events\/Core\/DataHandling\/IsTableExcludedFromReferenceIndexEvent.html#IsTableExcludedFromReferenceIndexEvent", "IsTableExcludedFromReferenceIndexEvent" ], "afterrecordlanguageoverlayevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Domain\/AfterRecordLanguageOverlayEvent.html#afterrecordlanguageoverlayevent", + "ApiOverview\/Events\/Events\/Core\/Domain\/AfterRecordLanguageOverlayEvent.html#AfterRecordLanguageOverlayEvent", "AfterRecordLanguageOverlayEvent" ], "beforepagelanguageoverlayevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Domain\/BeforePageLanguageOverlayEvent.html#beforepagelanguageoverlayevent", + "ApiOverview\/Events\/Events\/Core\/Domain\/BeforePageLanguageOverlayEvent.html#BeforePageLanguageOverlayEvent", "BeforePageLanguageOverlayEvent" ], "beforerecordlanguageoverlayevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Domain\/BeforeRecordLanguageOverlayEvent.html#beforerecordlanguageoverlayevent", + "ApiOverview\/Events\/Events\/Core\/Domain\/BeforeRecordLanguageOverlayEvent.html#BeforeRecordLanguageOverlayEvent", "BeforeRecordLanguageOverlayEvent" ], "domain": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Domain\/Index.html#domain", + "ApiOverview\/Events\/Events\/Core\/Domain\/Index.html#eventlist-core-domain", "Domain" ], "recordaccessgrantedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Domain\/RecordAccessGrantedEvent.html#recordaccessgrantedevent", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordAccessGrantedEvent.html#RecordAccessGrantedEvent", "RecordAccessGrantedEvent" ], "brokenlinkanalysisevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Html\/BrokenLinkAnalysisEvent.html#brokenlinkanalysisevent", + "ApiOverview\/Events\/Events\/Core\/Html\/BrokenLinkAnalysisEvent.html#BrokenLinkAnalysisEvent", "BrokenLinkAnalysisEvent" ], "html": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Html\/Index.html#html", + "ApiOverview\/Events\/Events\/Core\/Html\/Index.html#eventlist-core-html", "Html" ], "aftermailerinitializationevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Mail\/AfterMailerInitializationEvent.html#aftermailerinitializationevent", + "ApiOverview\/Events\/Events\/Core\/Mail\/AfterMailerInitializationEvent.html#AfterMailerInitializationEvent", "AfterMailerInitializationEvent" ], "aftermailersentmessageevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Mail\/AfterMailerSentMessageEvent.html#aftermailersentmessageevent", + "ApiOverview\/Events\/Events\/Core\/Mail\/AfterMailerSentMessageEvent.html#AfterMailerSentMessageEvent", "AfterMailerSentMessageEvent" ], "beforemailersentmessageevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Mail\/BeforeMailerSentMessageEvent.html#beforemailersentmessageevent", + "ApiOverview\/Events\/Events\/Core\/Mail\/BeforeMailerSentMessageEvent.html#BeforeMailerSentMessageEvent", "BeforeMailerSentMessageEvent" ], "mail": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Mail\/Index.html#mail", + "ApiOverview\/Events\/Events\/Core\/Mail\/Index.html#eventlist-core-mail", "Mail" ], "afterpackageactivationevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Package\/AfterPackageActivationEvent.html#afterpackageactivationevent", + "ApiOverview\/Events\/Events\/Core\/Package\/AfterPackageActivationEvent.html#AfterPackageActivationEvent", "AfterPackageActivationEvent" ], "afterpackagedeactivationevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Package\/AfterPackageDeactivationEvent.html#afterpackagedeactivationevent", + "ApiOverview\/Events\/Events\/Core\/Package\/AfterPackageDeactivationEvent.html#AfterPackageDeactivationEvent", "AfterPackageDeactivationEvent" ], "beforepackageactivationevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Package\/BeforePackageActivationEvent.html#beforepackageactivationevent", + "ApiOverview\/Events\/Events\/Core\/Package\/BeforePackageActivationEvent.html#BeforePackageActivationEvent", "BeforePackageActivationEvent" ], "package": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Package\/Index.html#package", + "ApiOverview\/Events\/Events\/Core\/Package\/Index.html#eventlist-core-package", "Package" ], "packagesmayhavechangedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Package\/PackagesMayHaveChangedEvent.html#packagesmayhavechangedevent", + "ApiOverview\/Events\/Events\/Core\/Package\/PackagesMayHaveChangedEvent.html#PackagesMayHaveChangedEvent", "PackagesMayHaveChangedEvent" ], "beforejavascriptsrenderingevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Page\/BeforeJavaScriptsRenderingEvent.html#beforejavascriptsrenderingevent", + "ApiOverview\/Events\/Events\/Core\/Page\/BeforeJavaScriptsRenderingEvent.html#BeforeJavaScriptsRenderingEvent", "BeforeJavaScriptsRenderingEvent" ], "beforestylesheetsrenderingevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Page\/BeforeStylesheetsRenderingEvent.html#beforestylesheetsrenderingevent", + "ApiOverview\/Events\/Events\/Core\/Page\/BeforeStylesheetsRenderingEvent.html#BeforeStylesheetsRenderingEvent", "BeforeStylesheetsRenderingEvent" ], "page": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Page\/Index.html#page", + "ApiOverview\/Events\/Events\/Core\/Page\/Index.html#eventlist-core-page", "Page" ], "enrichpasswordvalidationcontextdataevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/PasswordPolicy\/EnrichPasswordValidationContextDataEvent.html#enrichpasswordvalidationcontextdataevent", + "ApiOverview\/Events\/Events\/Core\/PasswordPolicy\/EnrichPasswordValidationContextDataEvent.html#EnrichPasswordValidationContextDataEvent", "EnrichPasswordValidationContextDataEvent" ], "password-policy": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/PasswordPolicy\/Index.html#password-policy", + "ApiOverview\/Events\/Events\/Core\/PasswordPolicy\/Index.html#eventlist-core-password-policy", "Password policy" ], "afterdefaultuploadfolderwasresolvedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterDefaultUploadFolderWasResolvedEvent.html#afterdefaultuploadfolderwasresolvedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterDefaultUploadFolderWasResolvedEvent.html#AfterDefaultUploadFolderWasResolvedEvent", "AfterDefaultUploadFolderWasResolvedEvent" ], "afterfileaddedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileAddedEvent.html#afterfileaddedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileAddedEvent.html#AfterFileAddedEvent", "AfterFileAddedEvent" ], "afterfileaddedtoindexevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileAddedToIndexEvent.html#afterfileaddedtoindexevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileAddedToIndexEvent.html#AfterFileAddedToIndexEvent", "AfterFileAddedToIndexEvent" ], "afterfilecommandprocessedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileCommandProcessedEvent.html#afterfilecommandprocessedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileCommandProcessedEvent.html#AfterFileCommandProcessedEvent", "AfterFileCommandProcessedEvent" ], "afterfilecontentssetevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileContentsSetEvent.html#afterfilecontentssetevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileContentsSetEvent.html#AfterFileContentsSetEvent", "AfterFileContentsSetEvent" ], "afterfilecopiedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileCopiedEvent.html#afterfilecopiedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileCopiedEvent.html#AfterFileCopiedEvent", "AfterFileCopiedEvent" ], "afterfilecreatedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileCreatedEvent.html#afterfilecreatedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileCreatedEvent.html#AfterFileCreatedEvent", "AfterFileCreatedEvent" ], "afterfiledeletedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileDeletedEvent.html#afterfiledeletedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileDeletedEvent.html#AfterFileDeletedEvent", "AfterFileDeletedEvent" ], "afterfilemarkedasmissingevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMarkedAsMissingEvent.html#afterfilemarkedasmissingevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMarkedAsMissingEvent.html#AfterFileMarkedAsMissingEvent", "AfterFileMarkedAsMissingEvent" ], "afterfilemetadatacreatedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMetaDataCreatedEvent.html#afterfilemetadatacreatedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMetaDataCreatedEvent.html#AfterFileMetaDataCreatedEvent", "AfterFileMetaDataCreatedEvent" ], "afterfilemetadatadeletedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMetaDataDeletedEvent.html#afterfilemetadatadeletedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMetaDataDeletedEvent.html#AfterFileMetaDataDeletedEvent", "AfterFileMetaDataDeletedEvent" ], "afterfilemetadataupdatedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMetaDataUpdatedEvent.html#afterfilemetadataupdatedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMetaDataUpdatedEvent.html#AfterFileMetaDataUpdatedEvent", "AfterFileMetaDataUpdatedEvent" ], "afterfilemovedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMovedEvent.html#afterfilemovedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMovedEvent.html#AfterFileMovedEvent", "AfterFileMovedEvent" ], "afterfileprocessingevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileProcessingEvent.html#afterfileprocessingevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileProcessingEvent.html#AfterFileProcessingEvent", "AfterFileProcessingEvent" ], "afterfileremovedfromindexevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileRemovedFromIndexEvent.html#afterfileremovedfromindexevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileRemovedFromIndexEvent.html#AfterFileRemovedFromIndexEvent", "AfterFileRemovedFromIndexEvent" ], "afterfilerenamedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileRenamedEvent.html#afterfilerenamedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileRenamedEvent.html#AfterFileRenamedEvent", "AfterFileRenamedEvent" ], "afterfilereplacedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileReplacedEvent.html#afterfilereplacedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileReplacedEvent.html#AfterFileReplacedEvent", "AfterFileReplacedEvent" ], "afterfileupdatedinindexevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileUpdatedInIndexEvent.html#afterfileupdatedinindexevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileUpdatedInIndexEvent.html#AfterFileUpdatedInIndexEvent", "AfterFileUpdatedInIndexEvent" ], "afterfolderaddedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderAddedEvent.html#afterfolderaddedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderAddedEvent.html#AfterFolderAddedEvent", "AfterFolderAddedEvent" ], "afterfoldercopiedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderCopiedEvent.html#afterfoldercopiedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderCopiedEvent.html#AfterFolderCopiedEvent", "AfterFolderCopiedEvent" ], "afterfolderdeletedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderDeletedEvent.html#afterfolderdeletedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderDeletedEvent.html#AfterFolderDeletedEvent", "AfterFolderDeletedEvent" ], "afterfoldermovedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderMovedEvent.html#afterfoldermovedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderMovedEvent.html#AfterFolderMovedEvent", "AfterFolderMovedEvent" ], "afterfolderrenamedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderRenamedEvent.html#afterfolderrenamedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderRenamedEvent.html#AfterFolderRenamedEvent", "AfterFolderRenamedEvent" ], "afterresourcestorageinitializationevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterResourceStorageInitializationEvent.html#afterresourcestorageinitializationevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterResourceStorageInitializationEvent.html#AfterResourceStorageInitializationEvent", "AfterResourceStorageInitializationEvent" ], "aftervideopreviewfetchedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterVideoPreviewFetchedEvent.html#aftervideopreviewfetchedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterVideoPreviewFetchedEvent.html#AfterVideoPreviewFetchedEvent", "AfterVideoPreviewFetchedEvent" ], "beforefileaddedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileAddedEvent.html#beforefileaddedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileAddedEvent.html#BeforeFileAddedEvent", "BeforeFileAddedEvent" ], "beforefilecontentssetevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileContentsSetEvent.html#beforefilecontentssetevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileContentsSetEvent.html#BeforeFileContentsSetEvent", "BeforeFileContentsSetEvent" ], "beforefilecopiedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileCopiedEvent.html#beforefilecopiedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileCopiedEvent.html#BeforeFileCopiedEvent", "BeforeFileCopiedEvent" ], "beforefilecreatedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileCreatedEvent.html#beforefilecreatedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileCreatedEvent.html#BeforeFileCreatedEvent", "BeforeFileCreatedEvent" ], "beforefiledeletedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileDeletedEvent.html#beforefiledeletedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileDeletedEvent.html#BeforeFileDeletedEvent", "BeforeFileDeletedEvent" ], "beforefilemovedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileMovedEvent.html#beforefilemovedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileMovedEvent.html#BeforeFileMovedEvent", "BeforeFileMovedEvent" ], "beforefileprocessingevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileProcessingEvent.html#beforefileprocessingevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileProcessingEvent.html#BeforeFileProcessingEvent", "BeforeFileProcessingEvent" ], "beforefilerenamedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileRenamedEvent.html#beforefilerenamedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileRenamedEvent.html#BeforeFileRenamedEvent", "BeforeFileRenamedEvent" ], "beforefilereplacedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileReplacedEvent.html#beforefilereplacedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileReplacedEvent.html#BeforeFileReplacedEvent", "BeforeFileReplacedEvent" ], "beforefolderaddedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderAddedEvent.html#beforefolderaddedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderAddedEvent.html#BeforeFolderAddedEvent", "BeforeFolderAddedEvent" ], "beforefoldercopiedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderCopiedEvent.html#beforefoldercopiedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderCopiedEvent.html#BeforeFolderCopiedEvent", "BeforeFolderCopiedEvent" ], "beforefolderdeletedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderDeletedEvent.html#beforefolderdeletedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderDeletedEvent.html#BeforeFolderDeletedEvent", "BeforeFolderDeletedEvent" ], "beforefoldermovedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderMovedEvent.html#beforefoldermovedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderMovedEvent.html#BeforeFolderMovedEvent", "BeforeFolderMovedEvent" ], "beforefolderrenamedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderRenamedEvent.html#beforefolderrenamedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderRenamedEvent.html#BeforeFolderRenamedEvent", "BeforeFolderRenamedEvent" ], "beforeresourcestorageinitializationevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeResourceStorageInitializationEvent.html#beforeresourcestorageinitializationevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeResourceStorageInitializationEvent.html#BeforeResourceStorageInitializationEvent", "BeforeResourceStorageInitializationEvent" ], "enrichfilemetadataevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/EnrichFileMetaDataEvent.html#enrichfilemetadataevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/EnrichFileMetaDataEvent.html#EnrichFileMetaDataEvent", "EnrichFileMetaDataEvent" ], "generatepublicurlforresourceevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/GeneratePublicUrlForResourceEvent.html#generatepublicurlforresourceevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/GeneratePublicUrlForResourceEvent.html#GeneratePublicUrlForResourceEvent", "GeneratePublicUrlForResourceEvent" ], "resource": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/Index.html#resource", + "ApiOverview\/Events\/Events\/Core\/Resource\/Index.html#eventlist-core-resource", "Resource" ], "modifyfiledumpevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/ModifyFileDumpEvent.html#modifyfiledumpevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/ModifyFileDumpEvent.html#ModifyFileDumpEvent", "ModifyFileDumpEvent" ], "modifyiconforresourcepropertiesevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/ModifyIconForResourcePropertiesEvent.html#modifyiconforresourcepropertiesevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/ModifyIconForResourcePropertiesEvent.html#ModifyIconForResourcePropertiesEvent", "ModifyIconForResourcePropertiesEvent" ], "sanitizefilenameevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/SanitizeFileNameEvent.html#sanitizefilenameevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/SanitizeFileNameEvent.html#SanitizeFileNameEvent", "SanitizeFileNameEvent" ], "security": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/SitePackage\/Introduction.html#security", + "ExtensionArchitecture\/SitePackage\/Introduction.html#site-package-security", "Security" ], "investigatemutationsevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Security\/InvestigateMutationsEvent.html#investigatemutationsevent", + "ApiOverview\/Events\/Events\/Core\/Security\/InvestigateMutationsEvent.html#InvestigateMutationsEvent", "InvestigateMutationsEvent" ], "policymutatedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Security\/PolicyMutatedEvent.html#policymutatedevent", + "ApiOverview\/Events\/Events\/Core\/Security\/PolicyMutatedEvent.html#PolicyMutatedEvent", "PolicyMutatedEvent" ], "tree": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Tree\/Index.html#tree", + "ApiOverview\/Events\/Events\/Core\/Tree\/Index.html#eventlist-core-tree", "Tree" ], "modifytreedataevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/Tree\/ModifyTreeDataEvent.html#modifytreedataevent", + "ApiOverview\/Events\/Events\/Core\/Tree\/ModifyTreeDataEvent.html#ModifyTreeDataEvent", "ModifyTreeDataEvent" ], "aftertemplateshavebeendeterminedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/TypoScript\/AfterTemplatesHaveBeenDeterminedEvent.html#aftertemplateshavebeendeterminedevent", + "ApiOverview\/Events\/Events\/Core\/TypoScript\/AfterTemplatesHaveBeenDeterminedEvent.html#AfterTemplatesHaveBeenDeterminedEvent", "AfterTemplatesHaveBeenDeterminedEvent" ], "evaluatemodifierfunctionevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Core\/TypoScript\/EvaluateModifierFunctionEvent.html#evaluatemodifierfunctionevent", + "ApiOverview\/Events\/Events\/Core\/TypoScript\/EvaluateModifierFunctionEvent.html#EvaluateModifierFunctionEvent", "EvaluateModifierFunctionEvent" ], "typoscript": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/Typoscript.html#typoscript", + "Security\/GuidelinesIntegrators\/Typoscript.html#security-typoscript", "TypoScript" ], "beforeflexformconfigurationoverrideevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Extbase\/Configuration\/BeforeFlexFormConfigurationOverrideEvent.html#beforeflexformconfigurationoverrideevent", + "ApiOverview\/Events\/Events\/Extbase\/Configuration\/BeforeFlexFormConfigurationOverrideEvent.html#BeforeFlexFormConfigurationOverrideEvent", "BeforeFlexFormConfigurationOverrideEvent" ], "extbase": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Extbase\/Index.html#extbase", + "ApiOverview\/Events\/Events\/Extbase\/Index.html#eventlist-extbase", "Extbase" ], "afterrequestdispatchedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Extbase\/Mvc\/AfterRequestDispatchedEvent.html#afterrequestdispatchedevent", + "ApiOverview\/Events\/Events\/Extbase\/Mvc\/AfterRequestDispatchedEvent.html#AfterRequestDispatchedEvent", "AfterRequestDispatchedEvent" ], "beforeactioncallevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Extbase\/Mvc\/BeforeActionCallEvent.html#beforeactioncallevent", + "ApiOverview\/Events\/Events\/Extbase\/Mvc\/BeforeActionCallEvent.html#BeforeActionCallEvent", "BeforeActionCallEvent" ], "mvc": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Extbase\/Mvc\/Index.html#mvc", + "ApiOverview\/Events\/Events\/Extbase\/Mvc\/Index.html#eventlist-extbase-mvc", "Mvc" ], "afterobjectthawedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Extbase\/Persistence\/AfterObjectThawedEvent.html#afterobjectthawedevent", + "ApiOverview\/Events\/Events\/Extbase\/Persistence\/AfterObjectThawedEvent.html#AfterObjectThawedEvent", "AfterObjectThawedEvent" ], "entityaddedtopersistenceevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Extbase\/Persistence\/EntityAddedToPersistenceEvent.html#entityaddedtopersistenceevent", + "ApiOverview\/Events\/Events\/Extbase\/Persistence\/EntityAddedToPersistenceEvent.html#EntityAddedToPersistenceEvent", "EntityAddedToPersistenceEvent" ], "entitypersistedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Extbase\/Persistence\/EntityPersistedEvent.html#entitypersistedevent", + "ApiOverview\/Events\/Events\/Extbase\/Persistence\/EntityPersistedEvent.html#EntityPersistedEvent", "EntityPersistedEvent" ], "entityremovedfrompersistenceevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Extbase\/Persistence\/EntityRemovedFromPersistenceEvent.html#entityremovedfrompersistenceevent", + "ApiOverview\/Events\/Events\/Extbase\/Persistence\/EntityRemovedFromPersistenceEvent.html#EntityRemovedFromPersistenceEvent", "EntityRemovedFromPersistenceEvent" ], "entityupdatedinpersistenceevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Extbase\/Persistence\/EntityUpdatedInPersistenceEvent.html#entityupdatedinpersistenceevent", + "ApiOverview\/Events\/Events\/Extbase\/Persistence\/EntityUpdatedInPersistenceEvent.html#EntityUpdatedInPersistenceEvent", "EntityUpdatedInPersistenceEvent" ], "persistence": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Persistence.html#persistence", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Persistence.html#extbase-Persistence", "Persistence" ], "modifyquerybeforefetchingobjectdataevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Extbase\/Persistence\/ModifyQueryBeforeFetchingObjectDataEvent.html#modifyquerybeforefetchingobjectdataevent", + "ApiOverview\/Events\/Events\/Extbase\/Persistence\/ModifyQueryBeforeFetchingObjectDataEvent.html#ModifyQueryBeforeFetchingObjectDataEvent", "ModifyQueryBeforeFetchingObjectDataEvent" ], "modifyresultafterfetchingobjectdataevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Extbase\/Persistence\/ModifyResultAfterFetchingObjectDataEvent.html#modifyresultafterfetchingobjectdataevent", + "ApiOverview\/Events\/Events\/Extbase\/Persistence\/ModifyResultAfterFetchingObjectDataEvent.html#ModifyResultAfterFetchingObjectDataEvent", "ModifyResultAfterFetchingObjectDataEvent" ], "afterextensiondatabasecontenthasbeenimportedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/ExtensionManager\/AfterExtensionDatabaseContentHasImportedEvent.html#afterextensiondatabasecontenthasbeenimportedevent", + "ApiOverview\/Events\/Events\/ExtensionManager\/AfterExtensionDatabaseContentHasImportedEvent.html#AfterExtensionDatabaseContentHasBeenImportedEvent", "AfterExtensionDatabaseContentHasBeenImportedEvent" ], "afterextensionfileshavebeenimportedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/ExtensionManager\/AfterExtensionFilesHaveBeenImportedEvent.html#afterextensionfileshavebeenimportedevent", + "ApiOverview\/Events\/Events\/ExtensionManager\/AfterExtensionFilesHaveBeenImportedEvent.html#AfterExtensionFilesHaveBeenImportedEvent", "AfterExtensionFilesHaveBeenImportedEvent" ], "afterextensionstaticdatabasecontenthasbeenimportedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/ExtensionManager\/AfterExtensionStaticDatabaseContentHasBeenImportedEvent.html#afterextensionstaticdatabasecontenthasbeenimportedevent", + "ApiOverview\/Events\/Events\/ExtensionManager\/AfterExtensionStaticDatabaseContentHasBeenImportedEvent.html#AfterExtensionStaticDatabaseContentHasBeenImportedEvent", "AfterExtensionStaticDatabaseContentHasBeenImportedEvent" ], "availableactionsforextensionevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/ExtensionManager\/AvailableActionsForExtensionEvent.html#availableactionsforextensionevent", + "ApiOverview\/Events\/Events\/ExtensionManager\/AvailableActionsForExtensionEvent.html#AvailableActionsForExtensionEvent", "AvailableActionsForExtensionEvent" ], "extensionmanager": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/ExtensionManager\/Index.html#extensionmanager", + "ApiOverview\/Events\/Events\/ExtensionManager\/Index.html#eventlist-backend-extension-manager", "ExtensionManager" ], "filelist": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Filelist\/Index.html#filelist", + "ApiOverview\/Events\/Events\/Filelist\/Index.html#eventlist-filelist", "Filelist" ], "modifyeditfileformdataevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Filelist\/ModifyEditFileFormDataEvent.html#modifyeditfileformdataevent", + "ApiOverview\/Events\/Events\/Filelist\/ModifyEditFileFormDataEvent.html#ModifyEditFileFormDataEvent", "ModifyEditFileFormDataEvent" ], "processfilelistactionsevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Filelist\/ProcessFileListActionsEvent.html#processfilelistactionsevent", + "ApiOverview\/Events\/Events\/Filelist\/ProcessFileListActionsEvent.html#ProcessFileListActionsEvent", "ProcessFileListActionsEvent" ], "aftercacheablecontentisgeneratedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Frontend\/AfterCacheableContentIsGeneratedEvent.html#aftercacheablecontentisgeneratedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterCacheableContentIsGeneratedEvent.html#AfterCacheableContentIsGeneratedEvent", "AfterCacheableContentIsGeneratedEvent" ], "aftercachedpageispersistedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Frontend\/AfterCachedPageIsPersistedEvent.html#aftercachedpageispersistedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterCachedPageIsPersistedEvent.html#AfterCachedPageIsPersistedEvent", "AfterCachedPageIsPersistedEvent" ], "afterlinkisgeneratedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Frontend\/AfterLinkIsGeneratedEvent.html#afterlinkisgeneratedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterLinkIsGeneratedEvent.html#AfterLinkIsGeneratedEvent", "AfterLinkIsGeneratedEvent" ], "afterpageandlanguageisresolvedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Frontend\/AfterPageAndLanguageIsResolvedEvent.html#afterpageandlanguageisresolvedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterPageAndLanguageIsResolvedEvent.html#AfterPageAndLanguageIsResolvedEvent", "AfterPageAndLanguageIsResolvedEvent" ], "afterpagewithrootlineisresolvedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Frontend\/AfterPageWithRootLineIsResolvedEvent.html#afterpagewithrootlineisresolvedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterPageWithRootLineIsResolvedEvent.html#AfterPageWithRootLineIsResolvedEvent", "AfterPageWithRootLineIsResolvedEvent" ], "beforepageisresolvedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Frontend\/BeforePageIsResolvedEvent.html#beforepageisresolvedevent", + "ApiOverview\/Events\/Events\/Frontend\/BeforePageIsResolvedEvent.html#BeforePageIsResolvedEvent", "BeforePageIsResolvedEvent" ], "filtermenuitemsevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Frontend\/FilterMenuItemsEvent.html#filtermenuitemsevent", + "ApiOverview\/Events\/Events\/Frontend\/FilterMenuItemsEvent.html#FilterMenuItemsEvent", "FilterMenuItemsEvent" ], "frontend": [ @@ -35719,61 +35797,61 @@ "modifycachelifetimeforpageevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Frontend\/ModifyCacheLifetimeForPageEvent.html#modifycachelifetimeforpageevent", + "ApiOverview\/Events\/Events\/Frontend\/ModifyCacheLifetimeForPageEvent.html#ModifyCacheLifetimeForPageEvent", "ModifyCacheLifetimeForPageEvent" ], "modifyhreflangtagsevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Frontend\/ModifyHrefLangTagsEvent.html#modifyhreflangtagsevent", + "ApiOverview\/Events\/Events\/Frontend\/ModifyHrefLangTagsEvent.html#ModifyHrefLangTagsEvent", "ModifyHrefLangTagsEvent" ], "modifypagelinkconfigurationevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Frontend\/ModifyPageLinkConfigurationEvent.html#modifypagelinkconfigurationevent", + "ApiOverview\/Events\/Events\/Frontend\/ModifyPageLinkConfigurationEvent.html#ModifyPageLinkConfigurationEvent", "ModifyPageLinkConfigurationEvent" ], "modifyresolvedfrontendgroupsevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Frontend\/ModifyResolvedFrontendGroupsEvent.html#modifyresolvedfrontendgroupsevent", + "ApiOverview\/Events\/Events\/Frontend\/ModifyResolvedFrontendGroupsEvent.html#ModifyResolvedFrontendGroupsEvent", "ModifyResolvedFrontendGroupsEvent" ], "shouldusecachedpagedataifavailableevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Frontend\/ShouldUseCachedPageDataIfAvailableEvent.html#shouldusecachedpagedataifavailableevent", + "ApiOverview\/Events\/Events\/Frontend\/ShouldUseCachedPageDataIfAvailableEvent.html#ShouldUseCachedPageDataIfAvailableEvent", "ShouldUseCachedPageDataIfAvailableEvent" ], "beforeredirectevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/FrontendLogin\/BeforeRedirectEvent.html#beforeredirectevent", + "ApiOverview\/Events\/Events\/FrontendLogin\/BeforeRedirectEvent.html#BeforeRedirectEvent", "BeforeRedirectEvent" ], "frontendlogin": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/FrontendLogin\/Index.html#frontendlogin", + "ApiOverview\/Events\/Events\/FrontendLogin\/Index.html#eventlist-felogin", "FrontendLogin" ], "loginconfirmedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/FrontendLogin\/LoginConfirmedEvent.html#loginconfirmedevent", + "ApiOverview\/Events\/Events\/FrontendLogin\/LoginConfirmedEvent.html#LoginConfirmedEvent", "LoginConfirmedEvent" ], "loginerroroccurredevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/FrontendLogin\/LoginErrorOccurredEvent.html#loginerroroccurredevent", + "ApiOverview\/Events\/Events\/FrontendLogin\/LoginErrorOccurredEvent.html#LoginErrorOccurredEvent", "LoginErrorOccurredEvent" ], "logoutconfirmedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/FrontendLogin\/LogoutConfirmedEvent.html#logoutconfirmedevent", + "ApiOverview\/Events\/Events\/FrontendLogin\/LogoutConfirmedEvent.html#LogoutConfirmedEvent", "LogoutConfirmedEvent" ], "example-delete-stored-private-key-from-disk-on-logout": [ @@ -35785,49 +35863,49 @@ "modifyloginformviewevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/FrontendLogin\/ModifyLoginFormViewEvent.html#modifyloginformviewevent", + "ApiOverview\/Events\/Events\/FrontendLogin\/ModifyLoginFormViewEvent.html#ModifyLoginFormViewEvent", "ModifyLoginFormViewEvent" ], "passwordchangeevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/FrontendLogin\/PasswordChangeEvent.html#passwordchangeevent", + "ApiOverview\/Events\/Events\/FrontendLogin\/PasswordChangeEvent.html#PasswordChangeEvent", "PasswordChangeEvent" ], "sendrecoveryemailevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/FrontendLogin\/SendRecoveryEmailEvent.html#sendrecoveryemailevent", + "ApiOverview\/Events\/Events\/FrontendLogin\/SendRecoveryEmailEvent.html#SendRecoveryEmailEvent", "SendRecoveryEmailEvent" ], "beforeimportevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Impexp\/BeforeImportEvent.html#beforeimportevent", + "ApiOverview\/Events\/Events\/Impexp\/BeforeImportEvent.html#BeforeImportEvent", "BeforeImportEvent" ], "impexp": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Impexp\/Index.html#impexp", + "ApiOverview\/Events\/Events\/Impexp\/Index.html#eventlist-impexp", "Impexp" ], "event-list": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Index.html#event-list", + "ApiOverview\/Events\/Events\/Index.html#eventlist", "Event list" ], "info": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Info\/Index.html#info", + "ApiOverview\/Events\/Events\/Info\/Index.html#eventlist-info", "Info" ], "modifyinfomodulecontentevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Info\/ModifyInfoModuleContentEvent.html#modifyinfomodulecontentevent", + "ApiOverview\/Events\/Events\/Info\/ModifyInfoModuleContentEvent.html#ModifyInfoModuleContentEvent", "ModifyInfoModuleContentEvent" ], "access-control": [ @@ -35839,85 +35917,85 @@ "install": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Install\/Index.html#install", + "ApiOverview\/Events\/Events\/Install\/Index.html#eventlist-install", "Install" ], "modifylanguagepackremotebaseurlevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Install\/ModifyLanguagePackRemoteBaseUrlEvent.html#modifylanguagepackremotebaseurlevent", + "ApiOverview\/Events\/Events\/Install\/ModifyLanguagePackRemoteBaseUrlEvent.html#ModifyLanguagePackRemoteBaseUrlEvent", "ModifyLanguagePackRemoteBaseUrlEvent" ], "modifylanguagepacksevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Install\/ModifyLanguagePacksEvent.html#modifylanguagepacksevent", + "ApiOverview\/Events\/Events\/Install\/ModifyLanguagePacksEvent.html#ModifyLanguagePacksEvent", "ModifyLanguagePacksEvent" ], "beforerecordisanalyzedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Linkvalidator\/BeforeRecordIsAnalyzedEvent.html#beforerecordisanalyzedevent", + "ApiOverview\/Events\/Events\/Linkvalidator\/BeforeRecordIsAnalyzedEvent.html#BeforeRecordIsAnalyzedEvent", "BeforeRecordIsAnalyzedEvent" ], "linkvalidator": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Linkvalidator\/Index.html#linkvalidator", + "ApiOverview\/Events\/Events\/Linkvalidator\/Index.html#eventlist-linkvalidator", "Linkvalidator" ], "modifyvalidatortaskemailevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Linkvalidator\/ModifyValidatorTaskEmailEvent.html#modifyvalidatortaskemailevent", + "ApiOverview\/Events\/Events\/Linkvalidator\/ModifyValidatorTaskEmailEvent.html#ModifyValidatorTaskEmailEvent", "ModifyValidatorTaskEmailEvent" ], "lowlevel": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Lowlevel\/Index.html#lowlevel", + "ApiOverview\/Events\/Events\/Lowlevel\/Index.html#eventlist-lowlevel", "Lowlevel" ], "modifyblindedconfigurationoptionsevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Lowlevel\/ModifyBlindedConfigurationOptionsEvent.html#modifyblindedconfigurationoptionsevent", + "ApiOverview\/Events\/Events\/Lowlevel\/ModifyBlindedConfigurationOptionsEvent.html#ModifyBlindedConfigurationOptionsEvent", "ModifyBlindedConfigurationOptionsEvent" ], "afterautocreateredirecthasbeenpersistedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Redirects\/AfterAutoCreateRedirectHasBeenPersistedEvent.html#afterautocreateredirecthasbeenpersistedevent", + "ApiOverview\/Events\/Events\/Redirects\/AfterAutoCreateRedirectHasBeenPersistedEvent.html#AfterAutoCreateRedirectHasBeenPersistedEvent", "AfterAutoCreateRedirectHasBeenPersistedEvent" ], "beforeredirectmatchdomainevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Redirects\/BeforeRedirectMatchDomainEvent.html#beforeredirectmatchdomainevent", + "ApiOverview\/Events\/Events\/Redirects\/BeforeRedirectMatchDomainEvent.html#BeforeRedirectMatchDomainEvent", "BeforeRedirectMatchDomainEvent" ], "redirects": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Redirects\/Index.html#redirects", + "ApiOverview\/Events\/Events\/Redirects\/Index.html#eventlist-redirects", "Redirects" ], "modifyautocreateredirectrecordbeforepersistingevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Redirects\/ModifyAutoCreateRedirectRecordBeforePersistingEvent.html#modifyautocreateredirectrecordbeforepersistingevent", + "ApiOverview\/Events\/Events\/Redirects\/ModifyAutoCreateRedirectRecordBeforePersistingEvent.html#ModifyAutoCreateRedirectRecordBeforePersistingEvent", "ModifyAutoCreateRedirectRecordBeforePersistingEvent" ], "modifyredirectmanagementcontrollerviewdataevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Redirects\/ModifyRedirectManagementControllerViewDataEvent.html#modifyredirectmanagementcontrollerviewdataevent", + "ApiOverview\/Events\/Events\/Redirects\/ModifyRedirectManagementControllerViewDataEvent.html#ModifyRedirectManagementControllerViewDataEvent", "ModifyRedirectManagementControllerViewDataEvent" ], "redirectwashitevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Redirects\/RedirectWasHitEvent.html#redirectwashitevent", + "ApiOverview\/Events\/Events\/Redirects\/RedirectWasHitEvent.html#RedirectWasHitEvent", "RedirectWasHitEvent" ], "example-disable-the-hit-count-increment-for-monitoring-tools": [ @@ -35929,13 +36007,13 @@ "slugredirectchangeitemcreatedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Redirects\/SlugRedirectChangeItemCreatedEvent.html#slugredirectchangeitemcreatedevent", + "ApiOverview\/Events\/Events\/Redirects\/SlugRedirectChangeItemCreatedEvent.html#SlugRedirectChangeItemCreatedEvent", "SlugRedirectChangeItemCreatedEvent" ], "using-the-php-pagetypesource": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Redirects\/SlugRedirectChangeItemCreatedEvent.html#using-the-php-pagetypesource", + "ApiOverview\/Events\/Events\/Redirects\/SlugRedirectChangeItemCreatedEvent.html#use_pagetypesource", "Using the PageTypeSource" ], "with-a-custom-source-implementation": [ @@ -35959,19 +36037,19 @@ "seo": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/SEO\/Index.html#seo", + "ApiOverview\/Events\/Events\/SEO\/Index.html#eventlist-seo", "Seo" ], "modifyurlforcanonicaltagevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/SEO\/ModifyUrlForCanonicalTagEvent.html#modifyurlforcanonicaltagevent", + "ApiOverview\/Events\/Events\/SEO\/ModifyUrlForCanonicalTagEvent.html#ModifyUrlForCanonicalTagEvent", "ModifyUrlForCanonicalTagEvent" ], "addjavascriptmodulesevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Setup\/AddJavaScriptModulesEvent.html#addjavascriptmodulesevent", + "ApiOverview\/Events\/Events\/Setup\/AddJavaScriptModulesEvent.html#AddJavaScriptModulesEvent", "AddJavaScriptModulesEvent" ], "setup": [ @@ -35983,109 +36061,109 @@ "aftercompiledcacheabledataforworkspaceevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Workspaces\/AfterCompiledCacheableDataForWorkspaceEvent.html#aftercompiledcacheabledataforworkspaceevent", + "ApiOverview\/Events\/Events\/Workspaces\/AfterCompiledCacheableDataForWorkspaceEvent.html#AfterCompiledCacheableDataForWorkspaceEvent", "AfterCompiledCacheableDataForWorkspaceEvent" ], "afterdatageneratedforworkspaceevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Workspaces\/AfterDataGeneratedForWorkspaceEvent.html#afterdatageneratedforworkspaceevent", + "ApiOverview\/Events\/Events\/Workspaces\/AfterDataGeneratedForWorkspaceEvent.html#AfterDataGeneratedForWorkspaceEvent", "AfterDataGeneratedForWorkspaceEvent" ], "afterrecordpublishedevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Workspaces\/AfterRecordPublishedEvent.html#afterrecordpublishedevent", + "ApiOverview\/Events\/Events\/Workspaces\/AfterRecordPublishedEvent.html#AfterRecordPublishedEvent", "AfterRecordPublishedEvent" ], "getversioneddataevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Workspaces\/GetVersionedDataEvent.html#getversioneddataevent", + "ApiOverview\/Events\/Events\/Workspaces\/GetVersionedDataEvent.html#GetVersionedDataEvent", "GetVersionedDataEvent" ], "workspaces": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Workspaces\/Index.html#workspaces", + "ApiOverview\/Events\/Events\/Workspaces\/Index.html#eventlist-workspaces", "Workspaces" ], "modifyversiondifferencesevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Workspaces\/ModifyVersionDifferencesEvent.html#modifyversiondifferencesevent", + "ApiOverview\/Events\/Events\/Workspaces\/ModifyVersionDifferencesEvent.html#ModifyVersionDifferencesEvent", "ModifyVersionDifferencesEvent" ], "sortversioneddataevent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Events\/Workspaces\/SortVersionedDataEvent.html#sortversioneddataevent", + "ApiOverview\/Events\/Events\/Workspaces\/SortVersionedDataEvent.html#SortVersionedDataEvent", "SortVersionedDataEvent" ], "hooks": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Hooks\/Index.html#hooks", + "ApiOverview\/Events\/Hooks\/Index.html#hooks-general", "Hooks" ], "using-hooks": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Hooks\/Index.html#using-hooks", + "ApiOverview\/Events\/Hooks\/Index.html#hooks-basics", "Using hooks" ], "creating-hooks": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Hooks\/Index.html#creating-hooks", + "ApiOverview\/Events\/Hooks\/Index.html#hooks-creation", "Creating hooks" ], "using-typo3-cms-core-utility-generalutility-makeinstance": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Hooks\/Index.html#using-typo3-cms-core-utility-generalutility-makeinstance", + "ApiOverview\/Events\/Hooks\/Index.html#hooks-creation-object", "Using \\TYPO3\\CMS\\Core\\Utility\\GeneralUtility::makeInstance()" ], "using-with-typo3-cms-core-utility-generalutility-calluserfunction": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Hooks\/Index.html#using-with-typo3-cms-core-utility-generalutility-calluserfunction", + "ApiOverview\/Events\/Hooks\/Index.html#hooks-creation-function", "Using with \\TYPO3\\CMS\\Core\\Utility\\GeneralUtility::callUserFunction()" ], "hook-configuration": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Hooks\/Index.html#hook-configuration", + "ApiOverview\/Events\/Hooks\/Index.html#hooks-configuration", "Hook configuration" ], "globals-typo3-conf-vars-extconf": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Hooks\/Index.html#globals-typo3-conf-vars-extconf", + "ApiOverview\/Events\/Hooks\/Index.html#hooks-extensions", "$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']" ], "globals-typo3-conf-vars-sc-options": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Hooks\/Index.html#globals-typo3-conf-vars-sc-options", + "ApiOverview\/Events\/Hooks\/Index.html#hooks-core", "$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']" ], "events-and-hooks": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/Index.html#events-and-hooks", + "ApiOverview\/Events\/Index.html#hooks", "Events and hooks" ], "debounce-event": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/JavaScript\/DebounceEvent\/Index.html#debounce-event", + "ApiOverview\/Events\/JavaScript\/DebounceEvent\/Index.html#Events_JavaScript_Debounce", "Debounce event" ], "javascript-event-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/JavaScript\/Index.html#javascript-event-api", + "ApiOverview\/Events\/JavaScript\/Index.html#Events_JavaScript", "JavaScript Event API" ], "bind-to-an-element": [ @@ -36103,259 +36181,259 @@ "regular-event": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/JavaScript\/RegularEvent\/Index.html#regular-event", + "ApiOverview\/Events\/JavaScript\/RegularEvent\/Index.html#Events_JavaScript_Regular", "Regular event" ], "requestanimationframe-event": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/JavaScript\/RequestAnimationFrameEvent\/Index.html#requestanimationframe-event", + "ApiOverview\/Events\/JavaScript\/RequestAnimationFrameEvent\/Index.html#Events_JavaScript_rAF", "RequestAnimationFrame event" ], "throttle-event": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/JavaScript\/ThrottleEvent\/Index.html#throttle-event", + "ApiOverview\/Events\/JavaScript\/ThrottleEvent\/Index.html#Events_JavaScript_Throttle", "Throttle event" ], "signals-and-slots-removed": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Events\/SignalsSlots\/Index.html#signals-and-slots-removed", + "ApiOverview\/Events\/SignalsSlots\/Index.html#signals-basics", "Signals and slots (removed)" ], "administration": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Administration\/Index.html#administration", + "ApiOverview\/Fal\/Administration\/Index.html#fal-administration", "Administration" ], "maintenance": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Administration\/Maintenance.html#maintenance", + "ApiOverview\/Fal\/Administration\/Maintenance.html#fal-administration-maintenance", "Maintenance" ], "scheduler-tasks": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Administration\/Maintenance.html#scheduler-tasks", + "ApiOverview\/Fal\/Administration\/Maintenance.html#fal-administration-maintenance-scheduler", "Scheduler tasks" ], "processed-files": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Folders.html#processed-files", + "ApiOverview\/Fal\/Architecture\/Folders.html#fal-architecture-folders-processed-files", "Processed files" ], "permissions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Administration\/Permissions.html#permissions", + "ApiOverview\/Fal\/Administration\/Permissions.html#fal-administration-permissions", "Permissions" ], "system-permissions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Administration\/Permissions.html#system-permissions", + "ApiOverview\/Fal\/Administration\/Permissions.html#fal-administration-permissions-system", "System permissions" ], "user-permissions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Administration\/Permissions.html#user-permissions", + "ApiOverview\/Fal\/Administration\/Permissions.html#fal-administration-permissions-user", "User permissions" ], "user-permissions-per-storage": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Administration\/Permissions.html#user-permissions-per-storage", + "ApiOverview\/Fal\/Administration\/Permissions.html#fal-administration-permissions-user-storage", "User permissions per storage" ], "user-permissions-details": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Administration\/Permissions.html#user-permissions-details", + "ApiOverview\/Fal\/Administration\/Permissions.html#fal-administration-permissions-user-details", "User permissions details" ], "default-upload-folder": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Administration\/Permissions.html#default-upload-folder", + "ApiOverview\/Fal\/Administration\/Permissions.html#fal-administration-permissions-upload-folder", "Default upload folder" ], "frontend-permissions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Administration\/Permissions.html#frontend-permissions", + "ApiOverview\/Fal\/Administration\/Permissions.html#fal-administration-permissions-frontend", "Frontend permissions" ], "file-storages": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Administration\/Storages.html#file-storages", + "ApiOverview\/Fal\/Administration\/Storages.html#fal-administration-storages", "File storages" ], "components": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Components.html#components", + "ApiOverview\/Fal\/Architecture\/Components.html#fal-architecture-components", "Components" ], "files-and-folders": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Components.html#files-and-folders", + "ApiOverview\/Fal\/Architecture\/Components.html#fal-architecture-components-files-folders", "Files and folders" ], "file-references": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Concepts\/Index.html#file-references", + "ApiOverview\/Fal\/Concepts\/Index.html#fal-concepts-file-references", "File references" ], "storage": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Components.html#storage", + "ApiOverview\/Fal\/Architecture\/Components.html#fal-architecture-components-storage", "Storage" ], "drivers": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Components.html#drivers", + "ApiOverview\/Fal\/Architecture\/Components.html#fal-architecture-components-drivers", "Drivers" ], "the-file-index": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Components.html#the-file-index", + "ApiOverview\/Fal\/Architecture\/Components.html#fal-architecture-components-file-index", "The file index" ], "collections": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Components.html#collections", + "ApiOverview\/Fal\/Architecture\/Components.html#fal-architecture-components-collections", "Collections" ], "services": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/PhpArchitecture\/Services.html#services", + "CodingGuidelines\/PhpArchitecture\/Services.html#cgl-services", "Services" ], "database-structure": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Database.html#database-structure", + "ApiOverview\/Fal\/Architecture\/Database.html#fal-architecture-database", "Database structure" ], "sql-sys-file": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Database.html#sql-sys-file", + "ApiOverview\/Fal\/Architecture\/Database.html#fal-architecture-database-sys-file", "sys_file" ], "sql-sys-file-metadata": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Database.html#sql-sys-file-metadata", + "ApiOverview\/Fal\/Architecture\/Database.html#fal-architecture-database-sys-file-metadata", "sys_file_metadata" ], "sql-sys-file-reference": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Database.html#sql-sys-file-reference", + "ApiOverview\/Fal\/Architecture\/Database.html#fal-architecture-database-sys-file-reference", "sys_file_reference" ], "sql-sys-file-processedfile": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Database.html#sql-sys-file-processedfile", + "ApiOverview\/Fal\/Architecture\/Database.html#fal-architecture-database-sys-file-processedfile", "sys_file_processedfile" ], "sql-sys-file-collection": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Database.html#sql-sys-file-collection", + "ApiOverview\/Fal\/Architecture\/Database.html#fal-architecture-database-sys-file-collection", "sys_file_collection" ], "sql-sys-file-storage": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Database.html#sql-sys-file-storage", + "ApiOverview\/Fal\/Architecture\/Database.html#fal-architecture-database-sys-file-storage", "sys_file_storage" ], "sql-sys-filemounts": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Database.html#sql-sys-filemounts", + "ApiOverview\/Fal\/Architecture\/Database.html#fal-architecture-database-sys-filemounts", "sys_filemounts" ], "php-typo3-cms-core-resource-defaultuploadfolderresolver": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Events.html#php-typo3-cms-core-resource-defaultuploadfolderresolver", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events-default-upload-folder-resolver", "\\TYPO3\\CMS\\Core\\Resource\\DefaultUploadFolderResolver" ], "php-typo3-cms-core-resource-onlinemedia-processing-previewprocessing": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Events.html#php-typo3-cms-core-resource-onlinemedia-processing-previewprocessing", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events-preview-processing", "\\TYPO3\\CMS\\Core\\Resource\\OnlineMedia\\Processing\\PreviewProcessing" ], "php-typo3-cms-core-resource-resourcestorage": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Events.html#php-typo3-cms-core-resource-resourcestorage", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events-resource-storage", "\\TYPO3\\CMS\\Core\\Resource\\ResourceStorage" ], "php-typo3-cms-core-resource-storagerepository": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Events.html#php-typo3-cms-core-resource-storagerepository", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events-storage-repository", "\\TYPO3\\CMS\\Core\\Resource\\StorageRepository" ], "php-typo3-cms-core-resource-index-fileindexrepository": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Events.html#php-typo3-cms-core-resource-index-fileindexrepository", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events-file-index-repository", "\\TYPO3\\CMS\\Core\\Resource\\Index\\FileIndexRepository" ], "php-typo3-cms-core-resource-index-metadatarepository": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Events.html#php-typo3-cms-core-resource-index-metadatarepository", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events-metadata-repository", "\\TYPO3\\CMS\\Core\\Resource\\Index\\MetaDataRepository" ], "php-typo3-cms-core-resource-service-fileprocessingservice": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Events.html#php-typo3-cms-core-resource-service-fileprocessingservice", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events-file-processing-service", "\\TYPO3\\CMS\\Core\\Resource\\Service\\FileProcessingService" ], "php-typo3-cms-core-utility-file-extendedfileutility": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Events.html#php-typo3-cms-core-utility-file-extendedfileutility", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events-extended-file-utility", "\\TYPO3\\CMS\\Core\\Utility\\File\\ExtendedFileUtility" ], "folders": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Folders.html#folders", + "ApiOverview\/Fal\/Architecture\/Folders.html#architecture-folders", "Folders" ], "architecture": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Architecture\/Index.html#architecture", + "ApiOverview\/Fal\/Architecture\/Index.html#fal-architecture", "Architecture" ], "file-collections": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Collections\/Index.html#file-collections", + "ApiOverview\/Fal\/Collections\/Index.html#collections-files", "File collections" ], "collections-api": [ @@ -36367,43 +36445,43 @@ "basic-concepts": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Concepts\/Index.html#basic-concepts", + "ApiOverview\/Fal\/Concepts\/Index.html#fal-concepts", "Basic concepts" ], "storages-and-drivers": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Concepts\/Index.html#storages-and-drivers", + "ApiOverview\/Fal\/Concepts\/Index.html#fal-concepts-storages-drivers", "Storages and drivers" ], "files-and-metadata": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Concepts\/Index.html#files-and-metadata", + "ApiOverview\/Fal\/Concepts\/Index.html#fal-concepts-files-metadata", "Files and metadata" ], "file-abstraction-layer-fal": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/Index.html#file-abstraction-layer-fal", + "ApiOverview\/Fal\/Index.html#fal_introduction", "File abstraction layer (FAL)" ], "working-with-collections": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesCollection.html#working-with-collections", + "ApiOverview\/Fal\/UsingFal\/ExamplesCollection.html#fal-using-fal-examples-collections", "Working with collections" ], "working-with-files-folders-and-file-references": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#working-with-files-folders-and-file-references", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder", "Working with files, folders and file references" ], "getting-a-file": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#getting-a-file", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-get-file", "Getting a file" ], "by-uid": [ @@ -36433,61 +36511,61 @@ "copying-a-file": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#copying-a-file", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-copy-file", "Copying a file" ], "deleting-a-file": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#deleting-a-file", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-delete-file", "Deleting a file" ], "adding-a-file": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#adding-a-file", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-add-file", "Adding a file" ], "creating-a-file-reference": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#creating-a-file-reference", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-create-reference", "Creating a file reference" ], "in-backend-context": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#in-backend-context", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-create-reference-backend", "In backend context" ], "in-frontend-context": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#in-frontend-context", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-create-reference-frontend", "In frontend context" ], "getting-referenced-files": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#getting-referenced-files", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-get-references", "Getting referenced files" ], "get-files-in-a-folder": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#get-files-in-a-folder", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-list-files", "Get files in a folder" ], "dumping-a-file-via-eid-script": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#dumping-a-file-via-eid-script", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-eid", "Dumping a file via eID script" ], "searching-for-files": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileSearch.html#searching-for-files", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileSearch.html#fal-using-fal-examples-file-search", "Searching for files" ], "searching-for-files-in-a-folder": [ @@ -36517,37 +36595,37 @@ "the-storagerepository-class": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesStorageRepository.html#the-storagerepository-class", + "ApiOverview\/Fal\/UsingFal\/ExamplesStorageRepository.html#fal-using-fal-examples-storage-repository", "The StorageRepository class" ], "getting-the-default-storage": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesStorageRepository.html#getting-the-default-storage", + "ApiOverview\/Fal\/UsingFal\/ExamplesStorageRepository.html#fal-using-fal-examples-storage-repository-default-storage", "Getting the default storage" ], "getting-any-storage": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesStorageRepository.html#getting-any-storage", + "ApiOverview\/Fal\/UsingFal\/ExamplesStorageRepository.html#fal-using-fal-examples-storage-repository-getting-storage", "Getting any storage" ], "using-fal-in-the-frontend": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/UsingFal\/Frontend.html#using-fal-in-the-frontend", + "ApiOverview\/Fal\/UsingFal\/Frontend.html#fal-using-fal-frontend", "Using FAL in the frontend" ], "fluid": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-custom-viewhelper-fluid", "Fluid" ], "the-imageviewhelper": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/UsingFal\/Frontend.html#the-imageviewhelper", + "ApiOverview\/Fal\/UsingFal\/Frontend.html#fal-using-fal-frontend-fluid-image", "The ImageViewHelper" ], "get-file-properties": [ @@ -36565,13 +36643,13 @@ "using-fal-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/UsingFal\/Index.html#using-fal-1", + "ApiOverview\/Fal\/UsingFal\/Index.html#using-fal", "Using FAL" ], "tca-definition": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fal\/UsingFal\/Tca.html#tca-definition", + "ApiOverview\/Fal\/UsingFal\/Tca.html#fal-using-fal-tca", "TCA definition" ], "migration-from-php-extensionmanagementutility-getfilefieldtcaconfig": [ @@ -36583,31 +36661,31 @@ "custom-file-processors": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FileProcessing\/Index.html#custom-file-processors", + "ApiOverview\/FileProcessing\/Index.html#file_processing", "Custom file processors" ], "create-a-new-processor-class": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FileProcessing\/Index.html#create-a-new-processor-class", + "ApiOverview\/FileProcessing\/Index.html#file_processing-create", "Create a new processor class" ], "register-the-file-processor": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FileProcessing\/Index.html#register-the-file-processor", + "ApiOverview\/FileProcessing\/Index.html#file_processing-register", "Register the file processor" ], "flash-messages-in-extbase": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FlashMessages\/Extbase.html#flash-messages-in-extbase", + "ApiOverview\/FlashMessages\/Extbase.html#flash-messages-extbase", "Flash messages in Extbase" ], "flash-messages-api-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FlashMessages\/FlashMessagesApi.html#flash-messages-api-1", + "ApiOverview\/FlashMessages\/FlashMessagesApi.html#flash-messages-api", "Flash messages API" ], "instantiate-a-flash-message": [ @@ -36631,13 +36709,13 @@ "flash-messages-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FlashMessages\/Index.html#flash-messages-1", + "ApiOverview\/FlashMessages\/Index.html#flash-messages", "Flash messages" ], "javascript-based-flash-messages-notification-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FlashMessages\/NotificationApi.html#javascript-based-flash-messages-notification-api", + "ApiOverview\/FlashMessages\/NotificationApi.html#notification_api", "JavaScript-based flash messages (Notification API)" ], "actions": [ @@ -36649,25 +36727,25 @@ "immediate-action": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FlashMessages\/NotificationApi.html#immediate-action", + "ApiOverview\/FlashMessages\/NotificationApi.html#notification_api_immediate_action", "Immediate action" ], "deferred-action": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FlashMessages\/NotificationApi.html#deferred-action", + "ApiOverview\/FlashMessages\/NotificationApi.html#notification_api_deferred_action", "Deferred action" ], "flash-messages-renderer-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FlashMessages\/Render.html#flash-messages-renderer-1", + "ApiOverview\/FlashMessages\/Render.html#flash-messages-renderer", "Flash messages renderer" ], "flexforms-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FlexForms\/Index.html#flexforms-1", + "ApiOverview\/FlexForms\/Index.html#flexforms", "FlexForms" ], "example-use-cases": [ @@ -36697,55 +36775,55 @@ "populate-a-select-field-with-a-php-function-itemsprocfunc": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FlexForms\/Index.html#populate-a-select-field-with-a-php-function-itemsprocfunc", + "ApiOverview\/FlexForms\/Index.html#flexforms-itemsProcFunc", "Populate a select field with a PHP Function (itemsProcFunc)" ], "display-fields-conditionally-displaycond": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FlexForms\/Index.html#display-fields-conditionally-displaycond", + "ApiOverview\/FlexForms\/Index.html#flexformDisplayCond", "Display fields conditionally (displayCond)" ], "reload-on-change": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FlexForms\/Index.html#reload-on-change", + "ApiOverview\/FlexForms\/Index.html#flexformReload", "Reload on change" ], "how-to-read-flexforms-from-an-extbase-controller-action": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FlexForms\/Index.html#how-to-read-flexforms-from-an-extbase-controller-action", + "ApiOverview\/FlexForms\/Index.html#read-flexforms-extbase", "How to read FlexForms from an Extbase controller action" ], "read-flexforms-values-in-php": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FlexForms\/Index.html#read-flexforms-values-in-php", + "ApiOverview\/FlexForms\/Index.html#read-flexforms-php", "Read FlexForms values in PHP" ], "how-to-modify-flexforms-from-php": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FlexForms\/Index.html#how-to-modify-flexforms-from-php", + "ApiOverview\/FlexForms\/Index.html#modify-flexforms-php", "How to modify FlexForms from PHP" ], "how-to-access-flexforms-from-typoscript": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FlexForms\/Index.html#how-to-access-flexforms-from-typoscript", + "ApiOverview\/FlexForms\/Index.html#read-flexforms-ts", "How to access FlexForms From TypoScript" ], "providing-default-values-for-flexforms-attributes": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FlexForms\/Index.html#providing-default-values-for-flexforms-attributes", + "ApiOverview\/FlexForms\/Index.html#default-flexforms-attribute", "Providing default values for FlexForms attributes" ], "how-to-access-flexforms-from-fluid": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FlexForms\/Index.html#how-to-access-flexforms-from-fluid", + "ApiOverview\/FlexForms\/Index.html#read-flexforms-fluid", "How to access FlexForms from Fluid" ], "steps-to-perform-editor": [ @@ -36757,37 +36835,37 @@ "t3datastructure": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FlexForms\/T3datastructure\/Index.html#t3datastructure", + "ApiOverview\/FlexForms\/T3datastructure\/Index.html#t3ds", "T3DataStructure" ], "elements": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FlexForms\/T3datastructure\/Elements\/Index.html#elements", + "ApiOverview\/FlexForms\/T3datastructure\/Elements\/Index.html#t3ds-elements", "Elements" ], "elements-nesting-other-elements-array-elements": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FlexForms\/T3datastructure\/Elements\/Index.html#elements-nesting-other-elements-array-elements", + "ApiOverview\/FlexForms\/T3datastructure\/Elements\/Index.html#t3ds-elements-array", "Elements Nesting Other Elements (\"Array\" Elements)" ], "elements-containing-values-value-elements": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FlexForms\/T3datastructure\/Elements\/Index.html#elements-containing-values-value-elements", + "ApiOverview\/FlexForms\/T3datastructure\/Elements\/Index.html#t3ds-elements-value", "Elements Containing Values (\"Value\" Elements)" ], "parsing-a-data-structure": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FlexForms\/T3datastructure\/Parsing\/Index.html#parsing-a-data-structure", + "ApiOverview\/FlexForms\/T3datastructure\/Parsing\/Index.html#t3ds-parsing", "Parsing a Data Structure" ], "sheet-references": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FlexForms\/T3datastructure\/SheetReferences\/Index.html#sheet-references", + "ApiOverview\/FlexForms\/T3datastructure\/SheetReferences\/Index.html#t3ds-sheet-references", "Sheet References" ], "property-additionalattributes": [ @@ -36799,31 +36877,31 @@ "developing-a-custom-viewhelper": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#developing-a-custom-viewhelper", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-custom-viewhelper", "Developing a custom ViewHelper" ], "abstractviewhelper-implementation": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#abstractviewhelper-implementation", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-custom-viewhelper-implementation", "AbstractViewHelper implementation" ], "php-abstractviewhelper": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#php-abstractviewhelper", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-custom-viewhelper-AbstractViewHelper", "AbstractViewHelper" ], "disable-escaping-the-output": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#disable-escaping-the-output", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-viewhelper-custom-escaping-of-output", "Disable escaping the output" ], "php-initializearguments": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#php-initializearguments", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-viewhelper-custom-initializeArguments", "initializeArguments()" ], "render": [ @@ -36835,49 +36913,49 @@ "creating-html-xml-tags-with-the-php-abstracttagbasedviewhelper": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#creating-html-xml-tags-with-the-php-abstracttagbasedviewhelper", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#creating-html-tags-using-tagbasedviewhelper", "Creating HTML\/XML tags with the AbstractTagBasedViewHelper" ], "abstracttagbasedviewhelper": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#abstracttagbasedviewhelper", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#AbstractTagBasedViewHelper", "AbstractTagBasedViewHelper" ], "php-tagname": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#php-tagname", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#AbstractTagBasedViewHelper-tagname", "$tagName" ], "php-this-tag-addattribute": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#php-this-tag-addattribute", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#AbstractTagBasedViewHelper-addAttribute", "$this->tag->addAttribute()" ], "php-this-tag-render": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#php-this-tag-render", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#AbstractTagBasedViewHelper-render", "$this->tag->render()" ], "php-this-registertagattribute": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#php-this-registertagattribute", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#AbstractTagBasedViewHelper-registerTagAttribute", "$this->registerTagAttribute()" ], "migration-remove-registeruniversaltagattributes-and-registertagattribute": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#migration-remove-registeruniversaltagattributes-and-registertagattribute", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#AbstractTagBasedViewHelper-registerTagAttribute-migration", "Migration: Remove registerUniversalTagAttributes and registerTagAttribute" ], "insert-optional-arguments-with-default-values": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#insert-optional-arguments-with-default-values", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#insert-optional-arguments", "Insert optional arguments with default values" ], "prepare-viewhelper-for-inline-syntax": [ @@ -36919,19 +36997,19 @@ "migration-remove-deprecated-compliling-traits": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#migration-remove-deprecated-compliling-traits", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-custom-viewhelper-migration", "Migration: Remove deprecated compliling traits" ], "migration-remove-deprecated-trait-compilewithrenderstatic": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#migration-remove-deprecated-trait-compilewithrenderstatic", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-viewhelper-custom-renderStatic", "Migration: Remove deprecated trait CompileWithRenderStatic" ], "migration-remove-deprecated-trait-compilewithcontentargumentandrenderstatic": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#migration-remove-deprecated-trait-compilewithcontentargumentandrenderstatic", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-custom-viewhelper-CompileWithContentArgumentAndRenderStatic-migration", "Migration: Remove deprecated trait CompileWithContentArgumentAndRenderStatic" ], "remove-calls-to-removed-renderstatic-method-of-another-viewhelper": [ @@ -36943,103 +37021,103 @@ "fluid-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/Index.html#fluid-1", + "ApiOverview\/Fluid\/Index.html#fluid", "Fluid" ], "introduction-to-fluid": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/Introduction.html#introduction-to-fluid", + "ApiOverview\/Fluid\/Introduction.html#fluid-introduction", "Introduction to Fluid" ], "example-fluid-snippet": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/Introduction.html#example-fluid-snippet", + "ApiOverview\/Fluid\/Introduction.html#fluid-introduction-example", "Example Fluid snippet" ], "directory-structure": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/Introduction.html#directory-structure", + "ApiOverview\/Fluid\/Introduction.html#fluid-directory-structure", "Directory structure" ], "file-templates": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/Introduction.html#file-templates", + "ApiOverview\/Fluid\/Introduction.html#fluid-templates", "Templates" ], "file-layouts": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/Introduction.html#file-layouts", + "ApiOverview\/Fluid\/Introduction.html#fluid-layouts", "Layouts" ], "file-partials": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/Introduction.html#file-partials", + "ApiOverview\/Fluid\/Introduction.html#fluid-partials", "Partials" ], "example-using-fluid-to-create-a-theme": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/Introduction.html#example-using-fluid-to-create-a-theme", + "ApiOverview\/Fluid\/Introduction.html#fluid-theme-example", "Example: Using Fluid to create a theme" ], "fluid-syntax-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/Syntax.html#fluid-syntax-1", + "ApiOverview\/Fluid\/Syntax.html#fluid-syntax", "Fluid syntax" ], "variables": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/Syntax.html#variables", + "ApiOverview\/Fluid\/Syntax.html#fluid-variables", "Variables" ], "reserved-variables-in-fluid": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/Syntax.html#reserved-variables-in-fluid", + "ApiOverview\/Fluid\/Syntax.html#fluid-variables-reserved", "Reserved variables in Fluid" ], "arrays-and-objects": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/Syntax.html#arrays-and-objects", + "ApiOverview\/Fluid\/Syntax.html#fluid-arrays", "Arrays and objects" ], "accessing-dynamic-keys-properties": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/Syntax.html#accessing-dynamic-keys-properties", + "ApiOverview\/Fluid\/Syntax.html#fluid-dynamic-properties", "Accessing dynamic keys\/properties" ], "viewhelpers": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/Syntax.html#viewhelpers", + "ApiOverview\/Fluid\/Syntax.html#fluid-syntax-viewhelpers", "ViewHelpers" ], "import-viewhelper-namespaces": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/Syntax.html#import-viewhelper-namespaces", + "ApiOverview\/Fluid\/Syntax.html#fluid-syntax-viewhelpers-import-namespaces", "Import ViewHelper namespaces" ], "viewhelper-attributes": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/Syntax.html#viewhelper-attributes", + "ApiOverview\/Fluid\/Syntax.html#fluid-viewhelper-attributes", "ViewHelper attributes" ], "simple": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/Syntax.html#simple", + "ApiOverview\/Fluid\/Syntax.html#fluid-viewhelper-attributes-simple", "Simple" ], "fluid-inline-notation": [ @@ -37051,7 +37129,7 @@ "boolean-conditions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/Syntax.html#boolean-conditions", + "ApiOverview\/Fluid\/Syntax.html#fluid-syntax-boolean-conditions", "Boolean conditions" ], "comments": [ @@ -37063,7 +37141,7 @@ "using-fluid-in-typo3": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Fluid\/UsingFluidInTypo3.html#using-fluid-in-typo3", + "ApiOverview\/Fluid\/UsingFluidInTypo3.html#fluid-usage-in-typo3", "Using Fluid in TYPO3" ], "cobject-viewhelper": [ @@ -37075,7 +37153,7 @@ "data-compiling": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FormEngine\/DataCompiling\/Index.html#data-compiling", + "ApiOverview\/FormEngine\/DataCompiling\/Index.html#FormEngine-DataCompiling", "Data compiling" ], "data-groups-and-providers": [ @@ -37105,37 +37183,37 @@ "formengine": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FormEngine\/Index.html#formengine", + "ApiOverview\/FormEngine\/Index.html#FormEngine", "FormEngine" ], "main-rendering-workflow": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FormEngine\/Overview\/Index.html#main-rendering-workflow", + "ApiOverview\/FormEngine\/Overview\/Index.html#FormEngine-Overview", "Main rendering workflow" ], "rendering": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FormEngine\/Rendering\/Index.html#rendering", + "ApiOverview\/FormEngine\/Rendering\/Index.html#FormEngine-Rendering", "Rendering" ], "class-inheritance": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FormEngine\/Rendering\/Index.html#class-inheritance", + "ApiOverview\/FormEngine\/Rendering\/Index.html#FormEngine-Rendering-ClassInheritance", "Class Inheritance" ], "nodefactory": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FormEngine\/Rendering\/Index.html#nodefactory", + "ApiOverview\/FormEngine\/Rendering\/Index.html#FormEngine-Rendering-NodeFactory", "NodeFactory" ], "result-array": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FormEngine\/Rendering\/Index.html#result-array", + "ApiOverview\/FormEngine\/Rendering\/Index.html#FormEngine-Rendering-ResultArray", "Result Array" ], "adding-javascript-modules": [ @@ -37153,7 +37231,7 @@ "node-expansion": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FormEngine\/Rendering\/Index.html#node-expansion", + "ApiOverview\/FormEngine\/Rendering\/Index.html#FormEngine-Rendering-NodeExpansion", "Node Expansion" ], "add-fieldcontrol-example": [ @@ -37165,13 +37243,13 @@ "form-protection-tool": [ "TYPO3 Explained", "12.4", - "ApiOverview\/FormProtection\/Index.html#form-protection-tool", + "ApiOverview\/FormProtection\/Index.html#csrf-backend", "Form protection tool" ], "constants": [ "TYPO3 Explained", "12.4", - "ApiOverview\/GlobalValues\/Constants\/Index.html#constants", + "ApiOverview\/GlobalValues\/Constants\/Index.html#globals-constants", "Constants" ], "paths": [ @@ -37213,13 +37291,13 @@ "global-values": [ "TYPO3 Explained", "12.4", - "ApiOverview\/GlobalValues\/Index.html#global-values", + "ApiOverview\/GlobalValues\/Index.html#globals-values", "Global values" ], "icon-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Icon\/Index.html#icon-api", + "ApiOverview\/Icon\/Index.html#icon", "Icon API" ], "icon-provider": [ @@ -37231,7 +37309,7 @@ "using-icons-in-your-code": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Icon\/Index.html#using-icons-in-your-code", + "ApiOverview\/Icon\/Index.html#icon-usage", "Using icons in your code" ], "the-php-way": [ @@ -37273,13 +37351,13 @@ "api-a-z": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Index.html#api-a-z", + "ApiOverview\/Index.html#api", "API A-Z" ], "link-handler-configuration-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/Configuration.html#link-handler-configuration-1", + "ApiOverview\/LinkHandling\/Configuration.html#link-handler-configuration", "Link handler configuration" ], "record-link-handler-configuration": [ @@ -37297,19 +37375,19 @@ "core-link-handler-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/CoreLinkHandler.html#core-link-handler-1", + "ApiOverview\/LinkHandling\/CoreLinkHandler.html#core-link-handler", "Core link handler" ], "link-handling": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/Index.html#link-handling", + "ApiOverview\/LinkHandling\/Index.html#LinkHandling", "Link handling" ], "linkbrowser-api-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/LinkBrowserApi\/Index.html#linkbrowser-api-1", + "ApiOverview\/LinkHandling\/LinkBrowserApi\/Index.html#LinkBrowser", "LinkBrowser API" ], "description": [ @@ -37321,31 +37399,31 @@ "tab-registration": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/LinkBrowserApi\/Index.html#tab-registration", + "ApiOverview\/LinkHandling\/LinkBrowserApi\/Index.html#linkbrowser-api-tab-registration", "Tab registration" ], "frontend-link-builder": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/LinkBuilder.html#frontend-link-builder", + "ApiOverview\/LinkHandling\/LinkBuilder.html#link-builder", "Frontend link builder" ], "implementing-a-custom-linkhandler": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/Linkhandler\/CustomLinkHandlers.html#implementing-a-custom-linkhandler", + "ApiOverview\/LinkHandling\/Linkhandler\/CustomLinkHandlers.html#customlinkhandler", "Implementing a custom LinkHandler" ], "implementing-the-linkhandler": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/Linkhandler\/CustomLinkHandlers.html#implementing-the-linkhandler", + "ApiOverview\/LinkHandling\/Linkhandler\/CustomLinkHandlers.html#customlinkhandler-implementation", "Implementing the LinkHandler" ], "events-to-modify-link-handler": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/Linkhandler\/Events.html#events-to-modify-link-handler", + "ApiOverview\/LinkHandling\/Linkhandler\/Events.html#modifyLinkHandlers", "Events to modify link handler" ], "supporting-both-typo3-v12-and-v11-to-modify-the-available-link-handlers": [ @@ -37357,13 +37435,13 @@ "the-linkhandler-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/Linkhandler\/Index.html#the-linkhandler-api", + "ApiOverview\/LinkHandling\/Linkhandler\/Index.html#linkhandler", "The LinkHandler API" ], "linkhandler-page-tsconfig-options": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/Linkhandler\/Index.html#linkhandler-page-tsconfig-options", + "ApiOverview\/LinkHandling\/Linkhandler\/Index.html#linkhandler-pagetsconfig", "LinkHandler page TSconfig options" ], "example-news-records-from-one-storage-pid": [ @@ -37375,7 +37453,7 @@ "linkhandler-typoscript-options": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/Linkhandler\/RecordLinkHandler.html#linkhandler-typoscript-options", + "ApiOverview\/LinkHandling\/Linkhandler\/RecordLinkHandler.html#linkhandler-typoscript_options", "LinkHandler TypoScript options" ], "example-news-records-displayed-on-fixed-detail-page": [ @@ -37387,7 +37465,7 @@ "the-pagelinkhandler": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/Linkhandler\/PageLinkHandler.html#the-pagelinkhandler", + "ApiOverview\/LinkHandling\/Linkhandler\/PageLinkHandler.html#pagelinkhandler", "The PageLinkHandler" ], "enable-direct-input-of-the-page-id": [ @@ -37399,31 +37477,31 @@ "the-recordlinkhandler": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/Linkhandler\/RecordLinkHandler.html#the-recordlinkhandler", + "ApiOverview\/LinkHandling\/Linkhandler\/RecordLinkHandler.html#recordlinkhandler", "The RecordLinkHandler" ], "recordlinkhandler-page-tsconfig-options": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/Linkhandler\/RecordLinkHandler.html#recordlinkhandler-page-tsconfig-options", + "ApiOverview\/LinkHandling\/Linkhandler\/RecordLinkHandler.html#linkhandler-pagetsconfig_options", "RecordLinkHandler page TSconfig options" ], "create-a-custom-link-browser": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#create-a-custom-link-browser", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial-github-link-handler", "Create a custom link browser" ], "1-register-the-custom-link-browser-tab-in-page-tsconfig": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#1-register-the-custom-link-browser-tab-in-page-tsconfig", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial_backend_link_handler-tsconfig", "1. Register the custom link browser tab in page TSconfig" ], "2-create-a-link-browser-tab": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#2-create-a-link-browser-tab", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial_backend_link_handler", "2. Create a link browser tab" ], "initialization-and-dependencies": [ @@ -37441,49 +37519,49 @@ "render-the-link-browser-tab": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#render-the-link-browser-tab", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial_backend_link_handler_render", "Render the link browser tab" ], "set-the-link-via-javascript": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#set-the-link-via-javascript", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial_backend_link_handler_javascript", "Set the link via JavaScript" ], "can-we-handle-this-link": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#can-we-handle-this-link", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial_backend_link_handler_canHandleLink", "Can we handle this link?" ], "format-current-url": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#format-current-url", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial_backend_link_handler_formatCurrentUrl", "Format current URL" ], "3-introduce-the-custom-link-format": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#3-introduce-the-custom-link-format", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial-core-link-handler", "3. Introduce the custom link format" ], "4-render-the-custom-link-format-in-the-frontend": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#4-render-the-custom-link-format-in-the-frontend", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial-typolink-builder", "4. Render the custom link format in the frontend" ], "linkbrowser-tutorials": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/Tutorials\/Index.html#linkbrowser-tutorials", + "ApiOverview\/LinkHandling\/Tutorials\/Index.html#LinkBrowserTutorials", "LinkBrowser Tutorials" ], "browse-records-of-a-table": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LinkHandling\/Tutorials\/RecordLinkBrowser.html#browse-records-of-a-table", + "ApiOverview\/LinkHandling\/Tutorials\/RecordLinkBrowser.html#TableRecordLinkBrowserTutorials", "Browse records of a table" ], "backend-configure-the-link-browser-with-page-tsconfig": [ @@ -37501,13 +37579,13 @@ "localization-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/Index.html#localization-1", + "ApiOverview\/Localization\/Index.html#localization", "Localization" ], "supported-languages": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/Languages.html#supported-languages", + "ApiOverview\/Localization\/Languages.html#i18n_languages", "Supported languages" ], "localization-api": [ @@ -37519,7 +37597,7 @@ "languageservice": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/LocalizationApi\/LanguageService.html#languageservice", + "ApiOverview\/Localization\/LocalizationApi\/LanguageService.html#LanguageService-api", "LanguageService" ], "example-use": [ @@ -37531,55 +37609,55 @@ "languageservicefactory": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/LocalizationApi\/LanguageServiceFactory.html#languageservicefactory", + "ApiOverview\/Localization\/LocalizationApi\/LanguageServiceFactory.html#LanguageServiceFactory-api", "LanguageServiceFactory" ], "locale": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/LocalizationApi\/Locale.html#locale", + "ApiOverview\/Localization\/LocalizationApi\/Locale.html#Locale-api", "Locale" ], "localizationutility-extbase": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/LocalizationApi\/LocalizationUtility.html#localizationutility-extbase", + "ApiOverview\/Localization\/LocalizationApi\/LocalizationUtility.html#extbase-localization-utility-api", "LocalizationUtility (Extbase)" ], "managing-translations": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/ManagingTranslations.html#managing-translations", + "ApiOverview\/Localization\/ManagingTranslations.html#managing-translating", "Managing translations" ], "fetching-translations": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/ManagingTranslations.html#fetching-translations", + "ApiOverview\/Localization\/ManagingTranslations.html#xliff-translating-fetch", "Fetching translations" ], "local-translations": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/ManagingTranslations.html#local-translations", + "ApiOverview\/Localization\/ManagingTranslations.html#xliff-translating-local", "Local translations" ], "custom-translations": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/ManagingTranslations.html#custom-translations", + "ApiOverview\/Localization\/ManagingTranslations.html#xliff-translating-custom", "Custom translations" ], "custom-languages": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/ManagingTranslations.html#custom-languages", + "ApiOverview\/Localization\/ManagingTranslations.html#xliff-translating-languages", "Custom languages" ], "extension-integration": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#extension-integration", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#crowdin-extension-integration", "Extension integration" ], "integration": [ @@ -37591,31 +37669,31 @@ "step-by-step-instructions-for-github": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#step-by-step-instructions-for-github", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#crowdin-extension-integration-github", "Step-by-step instructions for GitHub" ], "step-1-create-a-crowdin-configuration-file": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#step-1-create-a-crowdin-configuration-file", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#crowdin-extension-integration-github-crowdin-config", "Step 1: Create a Crowdin configuration file" ], "step-2-configure-the-github-integration": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#step-2-configure-the-github-integration", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#crowdin-extension-integration-github-configure", "Step 2: Configure the GitHub integration" ], "step-3-import-existing-translations": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#step-3-import-existing-translations", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#crowdin-extension-integration-github-import", "Step 3: Import existing translations" ], "frequently-asked-questions-faq": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#frequently-asked-questions-faq", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq", "Frequently asked questions (FAQ)" ], "general-questions": [ @@ -37627,25 +37705,25 @@ "my-favorite-extension-is-not-available-on-crowdin": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#my-favorite-extension-is-not-available-on-crowdin", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq-extension-missing", "My favorite extension is not available on Crowdin" ], "my-favorite-language-is-not-available-for-an-extension": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#my-favorite-language-is-not-available-for-an-extension", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq-extension-language-missing", "My favorite language is not available for an extension" ], "will-the-old-translation-server-be-disabled": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#will-the-old-translation-server-be-disabled", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq-pootle", "Will the old translation server be disabled?" ], "how-to-convert-to-the-new-language-xliff-file-format": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#how-to-convert-to-the-new-language-xliff-file-format", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq-language-xlf-format", "How to convert to the new language XLIFF file format" ], "questions-about-extension-integration": [ @@ -37657,31 +37735,31 @@ "why-does-crowdin-show-me-translations-in-source-language": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#why-does-crowdin-show-me-translations-in-source-language", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq-duplicated-labels", "Why does Crowdin show me translations in source language?" ], "can-i-upload-translated-xliff-files": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#can-i-upload-translated-xliff-files", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq-upload-xliff-files", "Can I upload translated XLIFF files?" ], "how-can-i-disable-the-pushing-of-changes": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#how-can-i-disable-the-pushing-of-changes", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq-disable-push-changes", "How can I disable the pushing of changes?" ], "how-can-i-migrate-translations-from-pootle": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#how-can-i-migrate-translations-from-pootle", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#migrate-from-pootle", "How can I migrate translations from Pootle?" ], "crowdin-yml-crowdin-yml-or-crowdin-yaml": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-yml-crowdin-yml-or-crowdin-yaml", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq-crowdin-yml", "crowdin.yml, .crowdin.yml or crowdin.yaml?" ], "questions-about-typo3-core-integration": [ @@ -37699,7 +37777,7 @@ "online-translation-with-crowdin": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/OnlineTranslation.html#online-translation-with-crowdin", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/OnlineTranslation.html#crowdin-crowdin-translation", "Online translation with Crowdin" ], "getting-started": [ @@ -37795,7 +37873,7 @@ "localization-with-crowdin": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin.html#localization-with-crowdin", + "ApiOverview\/Localization\/TranslationServer\/Crowdin.html#xliff-translating-server-crowdin", "Localization with Crowdin" ], "what-is-crowdin": [ @@ -37819,25 +37897,25 @@ "custom-translation-servers": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/TranslationServer\/Custom.html#custom-translation-servers", + "ApiOverview\/Localization\/TranslationServer\/Custom.html#custom-translation-server", "Custom translation servers" ], "translation-servers": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/TranslationServer\/Index.html#translation-servers", + "ApiOverview\/Localization\/TranslationServer\/Index.html#xliff-translating-servers", "Translation servers" ], "localization-with-pootle": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/TranslationServer\/Pootle.html#localization-with-pootle", + "ApiOverview\/Localization\/TranslationServer\/Pootle.html#xliff-translating-server-pootle", "Localization with Pootle" ], "working-with-xliff-files": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/XliffApi.html#working-with-xliff-files", + "ApiOverview\/Localization\/XliffApi.html#xliff_api", "Working with XLIFF files" ], "access-labels": [ @@ -37861,31 +37939,31 @@ "xliff-format": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/XliffFormat.html#xliff-format", + "ApiOverview\/Localization\/XliffFormat.html#xliff", "XLIFF Format" ], "basics": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/XliffFormat.html#basics", + "ApiOverview\/Localization\/XliffFormat.html#xliff-basics", "Basics" ], "file-locations-and-naming": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/XliffFormat.html#file-locations-and-naming", + "ApiOverview\/Localization\/XliffFormat.html#xliff-files", "File locations and naming" ], "id-naming": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/XliffFormat.html#id-naming", + "ApiOverview\/Localization\/XliffFormat.html#xliff-id-naming", "ID naming" ], "separate-by-dots": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/XliffFormat.html#separate-by-dots", + "ApiOverview\/Localization\/XliffFormat.html#xliff-id-naming-dots", "Separate by dots" ], "namespace": [ @@ -37897,13 +37975,13 @@ "lowercamelcase": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Localization\/XliffFormat.html#lowercamelcase", + "ApiOverview\/Localization\/XliffFormat.html#xliff-id-naming-lower-camel", "lowerCamelCase" ], "locking-api-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LockingApi\/Index.html#locking-api-1", + "ApiOverview\/LockingApi\/Index.html#locking-api", "Locking API" ], "locking-strategies": [ @@ -37933,13 +38011,13 @@ "extend-locking-in-extensions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LockingApi\/Index.html#extend-locking-in-extensions", + "ApiOverview\/LockingApi\/Index.html#use-locking-api-in-extensions", "Extend locking in Extensions" ], "caveats": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LockingApi\/Index.html#caveats", + "ApiOverview\/LockingApi\/Index.html#locking-api-caveats", "Caveats" ], "filelockstrategy-nfs": [ @@ -37957,61 +38035,61 @@ "related-information": [ "TYPO3 Explained", "12.4", - "ApiOverview\/LockingApi\/Index.html#related-information", + "ApiOverview\/LockingApi\/Index.html#locking-api-more-info", "Related Information" ], "configuration-of-the-logging-system": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Configuration\/Index.html#configuration-of-the-logging-system", + "ApiOverview\/Logging\/Configuration\/Index.html#logging-configuration", "Configuration of the logging system" ], "writer-configuration": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Configuration\/Index.html#writer-configuration", + "ApiOverview\/Logging\/Configuration\/Index.html#logging-configuration-writer", "Writer configuration" ], "processor-configuration": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Configuration\/Index.html#processor-configuration", + "ApiOverview\/Logging\/Configuration\/Index.html#logging-configuration-processor", "Processor configuration" ], "disable-all-logging": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Configuration\/Index.html#disable-all-logging", + "ApiOverview\/Logging\/Configuration\/Index.html#logging-configuration-disable", "Disable all logging" ], "logging-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Index.html#logging-1", + "ApiOverview\/Logging\/Index.html#logging", "Logging" ], "logger": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Logger\/Index.html#logger", + "ApiOverview\/Logging\/Logger\/Index.html#logging-logger", "Logger" ], "the-log-method": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Logger\/Index.html#the-log-method", + "ApiOverview\/Logging\/Logger\/Index.html#logging-logger-log", "The log() method" ], "log-levels-and-shorthand-methods": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Logger\/Index.html#log-levels-and-shorthand-methods", + "ApiOverview\/Logging\/Logger\/Index.html#logging-logger-shortcuts", "Log levels and shorthand methods" ], "channels": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Logger\/Index.html#channels", + "ApiOverview\/Logging\/Logger\/Index.html#logging-channels", "Channels" ], "using-the-channel": [ @@ -38053,61 +38131,61 @@ "the-logrecord-model": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Model\/Index.html#the-logrecord-model", + "ApiOverview\/Logging\/Model\/Index.html#logging-model", "The LogRecord model" ], "log-processors": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Processors\/Index.html#log-processors", + "ApiOverview\/Logging\/Processors\/Index.html#logging-processors", "Log processors" ], "built-in-log-processors": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Processors\/Index.html#built-in-log-processors", + "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-builtin", "Built-in log processors" ], "introspectionprocessor": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Processors\/Index.html#introspectionprocessor", + "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-introspection", "IntrospectionProcessor" ], "memoryusageprocessor": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Processors\/Index.html#memoryusageprocessor", + "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-memory", "MemoryUsageProcessor" ], "memorypeakusageprocessor": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Processors\/Index.html#memorypeakusageprocessor", + "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-memory-peak", "MemoryPeakUsageProcessor" ], "webprocessor": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Processors\/Index.html#webprocessor", + "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-web", "WebProcessor" ], "custom-log-processors": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Processors\/Index.html#custom-log-processors", + "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-custom", "Custom log processors" ], "quickstart": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Quickstart\/Index.html#quickstart", + "ApiOverview\/Logging\/Quickstart\/Index.html#logging-quickstart", "Quickstart" ], "instantiate-a-logger-for-the-current-class": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Quickstart\/Index.html#instantiate-a-logger-for-the-current-class", + "ApiOverview\/Logging\/Quickstart\/Index.html#logging-quicksart-instantiate-logger", "Instantiate a logger for the current class" ], "set-logging-output": [ @@ -38119,55 +38197,55 @@ "log-writers": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Writers\/Index.html#log-writers", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers", "Log writers" ], "built-in-log-writers": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Writers\/Index.html#built-in-log-writers", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers-builtin", "Built-in log writers" ], "databasewriter": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Writers\/Index.html#databasewriter", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers-database", "DatabaseWriter" ], "filewriter": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Writers\/Index.html#filewriter", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers-FileWriter", "FileWriter" ], "phperrorlogwriter": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Writers\/Index.html#phperrorlogwriter", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers-php", "PhpErrorLogWriter" ], "syslogwriter": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Writers\/Index.html#syslogwriter", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers-syslog", "SyslogWriter" ], "custom-log-writers": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Writers\/Index.html#custom-log-writers", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers-custom", "Custom log writers" ], "usage-in-a-custom-class": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Writers\/Index.html#usage-in-a-custom-class", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers-usage", "Usage in a custom class" ], "mail-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Mail\/Index.html#mail-api", + "ApiOverview\/Mail\/Index.html#mail", "Mail API" ], "format": [ @@ -38179,49 +38257,55 @@ "fluid-paths": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Mail\/Index.html#fluid-paths", + "ApiOverview\/Mail\/Index.html#mail-configuration-fluid", "Fluid paths" ], + "minimal-example-for-a-fluid-based-email-template": [ + "TYPO3 Explained", + "12.4", + "ApiOverview\/Mail\/Index.html#mail-configuration-fluid-example", + "Minimal example for a Fluid-based email template" + ], "transport": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Mail\/Index.html#transport", + "ApiOverview\/Mail\/Index.html#mail-configuration-transport", "transport" ], "smtp": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Mail\/Index.html#smtp", + "ApiOverview\/Mail\/Index.html#mail-configuration-smtp", "smtp" ], "sendmail": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Mail\/Index.html#sendmail", + "ApiOverview\/Mail\/Index.html#mail-configuration-sendmail", "sendmail" ], "mbox": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Mail\/Index.html#mbox", + "ApiOverview\/Mail\/Index.html#mail-configuration-mbox", "mbox" ], "classname": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Mail\/Index.html#classname", + "ApiOverview\/Mail\/Index.html#mail-configuration-classname", "<classname>" ], "validators": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Mail\/Index.html#validators", + "ApiOverview\/Mail\/Index.html#mail-validators", "Validators" ], "spooling": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Mail\/Index.html#spooling", + "ApiOverview\/Mail\/Index.html#mail-spooling", "Spooling" ], "spooling-in-memory": [ @@ -38245,49 +38329,49 @@ "how-to-create-and-send-emails": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Mail\/Index.html#how-to-create-and-send-emails", + "ApiOverview\/Mail\/Index.html#mail-create", "How to create and send emails" ], "send-email-with-fluidemail": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Mail\/Index.html#send-email-with-fluidemail", + "ApiOverview\/Mail\/Index.html#mail-fluid-email", "Send email with FluidEmail" ], "set-the-current-request-object-for-fluidemail": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Mail\/Index.html#set-the-current-request-object-for-fluidemail", + "ApiOverview\/Mail\/Index.html#mail-fluid-email-set-request", "Set the current request object for FluidEmail" ], "send-email-with-mailmessage": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Mail\/Index.html#send-email-with-mailmessage", + "ApiOverview\/Mail\/Index.html#mail-mail-message", "Send email with MailMessage" ], "how-to-add-attachments": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Mail\/Index.html#how-to-add-attachments", + "ApiOverview\/Mail\/Index.html#mail-attachments", "How to add attachments" ], "how-to-add-inline-media": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Mail\/Index.html#how-to-add-inline-media", + "ApiOverview\/Mail\/Index.html#mail-inline", "How to add inline media" ], "how-to-set-and-use-a-default-sender": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Mail\/Index.html#how-to-set-and-use-a-default-sender", + "ApiOverview\/Mail\/Index.html#mail-sender", "How to set and use a default sender" ], "register-a-custom-mailer": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Mail\/Index.html#register-a-custom-mailer", + "ApiOverview\/Mail\/Index.html#register-custom-mailer", "Register a custom mailer" ], "psr-14-events-on-sending-messages": [ @@ -38299,13 +38383,13 @@ "symfony-mail-documentation": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Mail\/Index.html#symfony-mail-documentation", + "ApiOverview\/Mail\/Index.html#mail-symfony-mime", "Symfony mail documentation" ], "message-bus-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/MessageBus\/Index.html#message-bus-1", + "ApiOverview\/MessageBus\/Index.html#message-bus", "Message bus" ], "everyday-usage-as-a-developer": [ @@ -38329,13 +38413,13 @@ "everyday-usage-as-a-system-administrator-integrator": [ "TYPO3 Explained", "12.4", - "ApiOverview\/MessageBus\/Index.html#everyday-usage-as-a-system-administrator-integrator", + "ApiOverview\/MessageBus\/Index.html#message-bus-routing", "\"Everyday\" usage - as a system administrator\/integrator" ], "async-message-handling-the-consume-command": [ "TYPO3 Explained", "12.4", - "ApiOverview\/MessageBus\/Index.html#async-message-handling-the-consume-command", + "ApiOverview\/MessageBus\/Index.html#message-bus-consume-command", "Async message handling - The consume command" ], "advanced-usage": [ @@ -38347,7 +38431,7 @@ "configure-a-custom-transport-senders-receivers": [ "TYPO3 Explained", "12.4", - "ApiOverview\/MessageBus\/Index.html#configure-a-custom-transport-senders-receivers", + "ApiOverview\/MessageBus\/Index.html#message-bus-custom-transport", "Configure a custom transport (Senders\/Receivers)" ], "inmemorytransport-for-testing": [ @@ -38365,7 +38449,7 @@ "mount-points": [ "TYPO3 Explained", "12.4", - "ApiOverview\/MountPoints\/Index.html#mount-points", + "ApiOverview\/MountPoints\/Index.html#MountPoints", "Mount points" ], "simple-usage-example": [ @@ -38383,7 +38467,7 @@ "limitations": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Xclasses\/Index.html#limitations", + "ApiOverview\/Xclasses\/Index.html#xclasses-limitations", "Limitations" ], "see-also": [ @@ -38395,37 +38479,37 @@ "namespaces-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Namespaces\/Index.html#namespaces-1", + "ApiOverview\/Namespaces\/Index.html#namespaces", "Namespaces" ], "core-example": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Namespaces\/Index.html#core-example", + "ApiOverview\/Namespaces\/Index.html#namespaces-example", "Core example" ], "usage-in-extensions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Namespaces\/Index.html#usage-in-extensions", + "ApiOverview\/Namespaces\/Index.html#namespaces-extensions", "Usage in extensions" ], "namespaces-in-extbase": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Namespaces\/Index.html#namespaces-in-extbase", + "ApiOverview\/Namespaces\/Index.html#namespaces-extbase", "Namespaces in Extbase" ], "namespaces-for-test-classes": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Namespaces\/Index.html#namespaces-for-test-classes", + "ApiOverview\/Namespaces\/Index.html#namespaces-test", "Namespaces for test classes" ], "creating-instances": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Namespaces\/Index.html#creating-instances", + "ApiOverview\/Namespaces\/Index.html#namespaces-instances", "Creating Instances" ], "include-and-required": [ @@ -38437,19 +38521,19 @@ "references": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SessionStorageFramework\/SessionStorage.html#references", + "ApiOverview\/SessionStorageFramework\/SessionStorage.html#sessions-references", "References" ], "create-new-page-type": [ "TYPO3 Explained", "12.4", - "ApiOverview\/PageTypes\/CreateNewPageType.html#create-new-page-type", + "ApiOverview\/PageTypes\/CreateNewPageType.html#page-types-example", "Create new Page Type" ], "page-types-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/PageTypes\/Index.html#page-types-1", + "ApiOverview\/PageTypes\/Index.html#page-types", "Page types" ], "the-globals-page-types-array": [ @@ -38467,13 +38551,13 @@ "types-of-pages": [ "TYPO3 Explained", "12.4", - "ApiOverview\/PageTypes\/TypesOfPages.html#types-of-pages", + "ApiOverview\/PageTypes\/TypesOfPages.html#list-of-page-types", "Types of pages" ], "pagination-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Pagination\/Index.html#pagination-1", + "ApiOverview\/Pagination\/Index.html#pagination", "Pagination" ], "sliding-window-pagination": [ @@ -38485,43 +38569,43 @@ "parsing-html-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ParsingHtml\/Index.html#parsing-html-1", + "ApiOverview\/ParsingHtml\/Index.html#parsing-html", "Parsing HTML" ], "extracting-blocks-from-an-html-document": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ParsingHtml\/Index.html#extracting-blocks-from-an-html-document", + "ApiOverview\/ParsingHtml\/Index.html#parsing-html-extraction-blocks", "Extracting Blocks From an HTML Document" ], "extracting-single-tags": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ParsingHtml\/Index.html#extracting-single-tags", + "ApiOverview\/ParsingHtml\/Index.html#parsing-html-extraction-single", "Extracting Single Tags" ], "cleaning-html-content": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ParsingHtml\/Index.html#cleaning-html-content", + "ApiOverview\/ParsingHtml\/Index.html#parsing-html-cleanup", "Cleaning HTML Content" ], "advanced-processing": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ParsingHtml\/Index.html#advanced-processing", + "ApiOverview\/ParsingHtml\/Index.html#parsing-html-advanced", "Advanced Processing" ], "password-hashing-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/PasswordHashing\/Index.html#password-hashing-1", + "ApiOverview\/PasswordHashing\/Index.html#password-hashing", "Password hashing" ], "basic-knowledge": [ "TYPO3 Explained", "12.4", - "ApiOverview\/PasswordHashing\/Index.html#basic-knowledge", + "ApiOverview\/PasswordHashing\/Index.html#password-hashing-basic-knowledge", "Basic knowledge" ], "what-does-it-look-like": [ @@ -38539,7 +38623,7 @@ "available-hash-algorithms": [ "TYPO3 Explained", "12.4", - "ApiOverview\/PasswordHashing\/Index.html#available-hash-algorithms", + "ApiOverview\/PasswordHashing\/Index.html#password-hashing-available-algorithms", "Available hash algorithms" ], "argon2i-argon2id": [ @@ -38581,7 +38665,7 @@ "php-api": [ "TYPO3 Explained", "12.4", - "Configuration\/TypoScript\/PhpApi\/Index.html#php-api", + "Configuration\/TypoScript\/PhpApi\/Index.html#typoscript-syntax-custom-typoscript", "PHP API" ], "creating-a-hash": [ @@ -38641,13 +38725,13 @@ "password-policies-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/PasswordPolicies\/Index.html#password-policies-1", + "ApiOverview\/PasswordPolicies\/Index.html#password-policies", "Password policies" ], "configuring-password-policies": [ "TYPO3 Explained", "12.4", - "ApiOverview\/PasswordPolicies\/Index.html#configuring-password-policies", + "ApiOverview\/PasswordPolicies\/Index.html#configure-password-policies", "Configuring password policies" ], "password-policy-validators": [ @@ -38671,7 +38755,7 @@ "third-party-validators": [ "TYPO3 Explained", "12.4", - "ApiOverview\/PasswordPolicies\/Index.html#third-party-validators", + "ApiOverview\/PasswordPolicies\/Index.html#password-policies-third-party-validators", "Third-party validators" ], "disable-password-policies-globally": [ @@ -38683,7 +38767,7 @@ "custom-password-validator": [ "TYPO3 Explained", "12.4", - "ApiOverview\/PasswordPolicies\/Index.html#custom-password-validator", + "ApiOverview\/PasswordPolicies\/Index.html#password-policies-custom-validator", "Custom password validator" ], "validate-a-password-manually": [ @@ -38701,7 +38785,7 @@ "bootstrapping-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#bootstrapping-1", + "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#bootstrapping", "Bootstrapping" ], "applications": [ @@ -38737,7 +38821,7 @@ "initialization": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#initialization", + "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#backend-initialization", "Initialization" ], "1-initialize-the-class-loader": [ @@ -38779,205 +38863,205 @@ "custom-contexts": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#custom-contexts", + "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#bootstrapping-context-custom", "Custom contexts" ], "usage-example": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#usage-example", + "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#bootstrapping-context-example", "Usage example" ], "request-life-cycle-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/Index.html#request-life-cycle-1", + "ApiOverview\/RequestLifeCycle\/Index.html#request-life-cycle", "Request Life Cycle" ], "middlewares-request-handling": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#middlewares-request-handling", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling", "Middlewares (Request handling)" ], "basic-concept": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#basic-concept", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-basic-concept", "Basic concept" ], "typo3-implementation": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#typo3-implementation", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-typo3-implementation", "TYPO3 implementation" ], "middlewares": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#middlewares", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-middlewares", "Middlewares" ], "using-extbase": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#using-extbase", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-middlewares-extbase", "Using Extbase" ], "middleware-examples": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#middleware-examples", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-middleware-examples", "Middleware examples" ], "returning-a-custom-response": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#returning-a-custom-response", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-returning-custom-response", "Returning a custom response" ], "enriching-the-request": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#enriching-the-request", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-enriching-request", "Enriching the request" ], "enriching-the-response": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#enriching-the-response", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-enriching-response", "Enriching the response" ], "configuring-middlewares": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#configuring-middlewares", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-configuring-middlewares", "Configuring middlewares" ], "override-ordering-of-middlewares": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#override-ordering-of-middlewares", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-configuring-middlewares-override", "Override ordering of middlewares" ], "creating-new-request-response-objects": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#creating-new-request-response-objects", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-psr-17", "Creating new request \/ response objects" ], "executing-http-requests-in-middlewares": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#executing-http-requests-in-middlewares", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-psr-18", "Executing HTTP requests in middlewares" ], "example-usage": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#example-usage", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-psr-18-example", "Example usage" ], "application-type": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/ApplicationType.html#application-type", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/ApplicationType.html#typo3-request-attribute-application-type", "Application type" ], "current-content-object": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/CurrentContentObject.html#current-content-object", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/CurrentContentObject.html#typo3-request-attribute-current-content-object", "Current content object" ], "frontend-controller": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendController.html#frontend-controller", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendController.html#typo3-request-attribute-frontend-controller", "Frontend controller" ], "frontend-typoscript": [ "TYPO3 Explained", "12.4", - "Configuration\/TypoScript\/PhpApi\/Index.html#frontend-typoscript", + "Configuration\/TypoScript\/PhpApi\/Index.html#typoscript-access_frontend_typoscript", "Frontend TypoScript" ], "frontend-user": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendUser.html#frontend-user", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendUser.html#typo3-request-attribute-frontend-user", "Frontend user" ], "typo3-request-attributes": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Index.html#typo3-request-attributes", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Index.html#request-attributes", "TYPO3 request attributes" ], "language": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Language.html#language", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Language.html#typo3-request-attribute-language", "Language" ], "module": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Module.html#module", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Module.html#typo3-request-attribute-module", "Module" ], "moduledata": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/ModuleData.html#moduledata", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/ModuleData.html#typo3-request-attribute-module-data", "ModuleData" ], "normalized-parameters": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/NormalizedParams.html#normalized-parameters", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/NormalizedParams.html#typo3-request-attribute-normalizedParams", "Normalized parameters" ], "migrating-from-php-generalutility-getindpenv": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/NormalizedParams.html#migrating-from-php-generalutility-getindpenv", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/NormalizedParams.html#GeneralUtility-getIndpEnv-migration", "Migrating from GeneralUtility::getIndpEnv()" ], "route": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Route.html#route", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Route.html#typo3-request-attribute-route", "Route" ], "routing": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Routing.html#routing", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Routing.html#typo3-request-attribute-routing", "Routing" ], "site": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Site.html#site", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Site.html#typo3-request-attribute-site", "Site" ], "target": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Target.html#target", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Target.html#typo3-request-attribute-target", "Target" ], "typo3-request-object": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/Typo3Request.html#typo3-request-object", + "ApiOverview\/RequestLifeCycle\/Typo3Request.html#typo3-request", "TYPO3 request object" ], "getting-the-psr-7-request-object": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/Typo3Request.html#getting-the-psr-7-request-object", + "ApiOverview\/RequestLifeCycle\/Typo3Request.html#getting-typo3-request-object", "Getting the PSR-7 request object" ], "extbase-controller": [ @@ -39001,49 +39085,49 @@ "last-resort-global-variable": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/Typo3Request.html#last-resort-global-variable", + "ApiOverview\/RequestLifeCycle\/Typo3Request.html#typo3-request-global-variable", "Last resort: global variable" ], "attributes": [ "TYPO3 Explained", "12.4", - "ApiOverview\/RequestLifeCycle\/Typo3Request.html#attributes", + "ApiOverview\/RequestLifeCycle\/Typo3Request.html#typo3-request-attributes", "Attributes" ], "advanced-routing-configuration-for-extensions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#advanced-routing-configuration-for-extensions", + "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#routing-advanced-routing-configuration", "Advanced routing configuration (for extensions)" ], "enhancers": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#enhancers", + "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#routing-advanced-routing-configuration-enhancers", "Enhancers" ], "simple-enhancer": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#simple-enhancer", + "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#routing-simple-enhancer", "Simple enhancer" ], "plugin-enhancer": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#plugin-enhancer", + "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#routing-plugin-enhancer", "Plugin enhancer" ], "extbase-plugin-enhancer": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#extbase-plugin-enhancer", + "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#routing-extbase-plugin-enhancer", "Extbase plugin enhancer" ], "pagetype-decorator": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#pagetype-decorator", + "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#routing-pagetype-decorator", "PageType decorator" ], "staticvaluemapper": [ @@ -39097,7 +39181,7 @@ "collection-of-various-routing-examples": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Routing\/Examples.html#collection-of-various-routing-examples", + "ApiOverview\/Routing\/Examples.html#routing-examples", "Collection of various routing examples" ], "ext-news": [ @@ -39175,7 +39259,7 @@ "extending-routing": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Routing\/ExtendingRouting.html#extending-routing", + "ApiOverview\/Routing\/ExtendingRouting.html#routing-extending-routing", "Extending Routing" ], "writing-custom-aspects": [ @@ -39205,13 +39289,13 @@ "routing-speaking-urls-in-typo3": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Routing\/Index.html#routing-speaking-urls-in-typo3", + "ApiOverview\/Routing\/Index.html#routing", "Routing - \"Speaking URLs\" in TYPO3" ], "introduction-to-routing": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Routing\/Introduction.html#introduction-to-routing", + "ApiOverview\/Routing\/Introduction.html#routing-introduction", "Introduction to Routing" ], "what-is-routing": [ @@ -39223,19 +39307,19 @@ "key-terminology": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Routing\/Introduction.html#key-terminology", + "ApiOverview\/Routing\/Introduction.html#routing-terminology", "Key Terminology" ], "routing-in-typo3": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Routing\/Introduction.html#routing-in-typo3", + "ApiOverview\/Routing\/Introduction.html#routing-terminology-symfony", "Routing in TYPO3" ], "tips": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Routing\/Introduction.html#tips", + "ApiOverview\/Routing\/Introduction.html#routing-tips", "Tips" ], "using-imports-in-yaml-files": [ @@ -39247,7 +39331,7 @@ "page-based-routing": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Routing\/PageBasedRouting.html#page-based-routing", + "ApiOverview\/Routing\/PageBasedRouting.html#routing-page-based-routing", "Page based Routing" ], "upgrading": [ @@ -39259,61 +39343,61 @@ "historical-perspective-on-rte-transformations": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Rte\/HistoricalRteTransformations\/Index.html#historical-perspective-on-rte-transformations", + "ApiOverview\/Rte\/HistoricalRteTransformations\/Index.html#appendix-a", "Historical Perspective on RTE Transformations" ], "properties-and-transformations": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Rte\/HistoricalRteTransformations\/PropertiesAndTransformations.html#properties-and-transformations", + "ApiOverview\/Rte\/HistoricalRteTransformations\/PropertiesAndTransformations.html#appendix-a-properties", "Properties and Transformations" ], "rte-transformations-in-content-elements": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Rte\/HistoricalRteTransformations\/RteTransformationsInContentElements.html#rte-transformations-in-content-elements", + "ApiOverview\/Rte\/HistoricalRteTransformations\/RteTransformationsInContentElements.html#appendix-a-content-elements", "RTE Transformations in Content Elements" ], "conclusion": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Rte\/HistoricalRteTransformations\/RteTransformationsInContentElements.html#conclusion", + "ApiOverview\/Rte\/HistoricalRteTransformations\/RteTransformationsInContentElements.html#appendix-a-content-elements-conclusion", "Conclusion" ], "rich-text-editors-rte": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Rte\/Index.html#rich-text-editors-rte", + "ApiOverview\/Rte\/Index.html#rte", "Rich text editors (RTE)" ], "rich-text-editors-in-the-typo3-backend": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Rte\/InTheBackend\/Index.html#rich-text-editors-in-the-typo3-backend", + "ApiOverview\/Rte\/InTheBackend\/Index.html#rte-backend", "Rich text editors in the TYPO3 backend" ], "plugging-in-a-custom-rte": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Rte\/InTheBackend\/PlugRte.html#plugging-in-a-custom-rte", + "ApiOverview\/Rte\/InTheBackend\/PlugRte.html#rte-plug", "Plugging in a custom RTE" ], "api-for-rich-text-editors": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Rte\/InTheBackend\/PlugRte.html#api-for-rich-text-editors", + "ApiOverview\/Rte\/InTheBackend\/PlugRte.html#rte-api", "API for rich text editors" ], "rich-text-editors-rte-in-the-typo3-frontend": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Rte\/InTheFrontend\/Index.html#rich-text-editors-rte-in-the-typo3-frontend", + "ApiOverview\/Rte\/InTheFrontend\/Index.html#rte-frontend", "Rich Text Editors (RTE) in the TYPO3 frontend" ], "including-a-rich-text-editor-rte-in-the-frontend": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Rte\/InTheFrontend\/Introduction.html#including-a-rich-text-editor-rte-in-the-frontend", + "ApiOverview\/Rte\/InTheFrontend\/Introduction.html#rte-frontend-introduction", "Including a Rich Text Editor (RTE) in the frontend" ], "the-optional-features": [ @@ -39337,7 +39421,7 @@ "rendering-in-the-frontend": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Rte\/RenderingInTheFrontend\/Index.html#rendering-in-the-frontend", + "ApiOverview\/Rte\/RenderingInTheFrontend\/Index.html#rte-rendering-frontend", "Rendering in the Frontend" ], "fluid-templates": [ @@ -39355,62 +39439,62 @@ "ckeditor-rich-text-editor": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Rte\/RteCkeditorSysext.html#ckeditor-rich-text-editor", + "ApiOverview\/Rte\/RteCkeditorSysext.html#rte_ckeditor", "CKEditor Rich Text Editor" ], "rte-transformations": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Rte\/Transformations\/Index.html#rte-transformations", + "ApiOverview\/Rte\/Transformations\/Index.html#transformations", "RTE Transformations" ], "hybrid-modes": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Rte\/Transformations\/Introduction.html#hybrid-modes", + "ApiOverview\/Rte\/Transformations\/Introduction.html#transformations-hybrid-modes", "Hybrid modes" ], "in-the-database": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Rte\/Transformations\/Introduction.html#in-the-database", + "ApiOverview\/Rte\/Transformations\/Introduction.html#transformations-hybrid-modes-db", "In the database" ], "in-rte": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Rte\/Transformations\/Introduction.html#in-rte", + "ApiOverview\/Rte\/Transformations\/Introduction.html#transformations-hybrid-modes-rte", "In RTE" ], "where-transformations-are-performed": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Rte\/Transformations\/Introduction.html#where-transformations-are-performed", + "ApiOverview\/Rte\/Transformations\/Introduction.html#transformations-where", "Where transformations are performed" ], "transformation-overview": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Rte\/Transformations\/Overview.html#transformation-overview", + "ApiOverview\/Rte\/Transformations\/Overview.html#transformations-tsconfig-processing-user", "Transformation overview" ], "transformation-filters": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Rte\/Transformations\/Overview.html#transformation-filters", + "ApiOverview\/Rte\/Transformations\/Overview.html#transformations-overview-filters", "Transformation filters" ], "canonical-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Seo\/CanonicalApi.html#canonical-api", + "ApiOverview\/Seo\/CanonicalApi.html#canonicalapi", "Canonical API" ], - "excluding-arguments-from-the-generation": [ + "including-specific-arguments-for-the-url-generation": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Seo\/CanonicalApi.html#excluding-arguments-from-the-generation", - "Excluding arguments from the generation" + "ApiOverview\/Seo\/CanonicalApi.html#canonicalapi-additionalparameters", + "Including specific arguments for the URL generation" ], "using-an-event-to-define-the-url": [ "TYPO3 Explained", @@ -39421,37 +39505,37 @@ "search-engine-optimization-seo": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Seo\/Index.html#search-engine-optimization-seo", + "ApiOverview\/Seo\/Index.html#seo", "Search engine optimization (SEO)" ], "metatag-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Seo\/MetaTagApi.html#metatag-api", + "ApiOverview\/Seo\/MetaTagApi.html#metatagapi", "MetaTag API" ], "using-the-metatag-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Seo\/MetaTagApi.html#using-the-metatag-api", + "ApiOverview\/Seo\/MetaTagApi.html#metatagapi-usage", "Using the MetaTag API" ], "creating-your-own-metatagmanager": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Seo\/MetaTagApi.html#creating-your-own-metatagmanager", + "ApiOverview\/Seo\/MetaTagApi.html#metatagapi-create-your-own", "Creating Your Own MetaTagManager" ], "typoscript-and-php": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Seo\/MetaTagApi.html#typoscript-and-php", + "ApiOverview\/Seo\/MetaTagApi.html#metatagapi-configuration", "TypoScript and PHP" ], "page-title-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Seo\/PageTitleApi.html#page-title-api", + "ApiOverview\/Seo\/PageTitleApi.html#pagetitle", "Page title API" ], "create-your-own-page-title-provider": [ @@ -39481,7 +39565,7 @@ "xml-sitemap": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Seo\/XmlSitemap.html#xml-sitemap", + "ApiOverview\/Seo\/XmlSitemap.html#xmlsitemap", "XML sitemap" ], "how-to-access-your-xml-sitemap": [ @@ -39517,7 +39601,7 @@ "change-frequency-and-priority": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Seo\/XmlSitemap.html#change-frequency-and-priority", + "ApiOverview\/Seo\/XmlSitemap.html#xmlsitemap-changefreq-priority", "Change frequency and priority" ], "sitemap-of-records-without-sorting-field": [ @@ -39535,37 +39619,37 @@ "use-a-customized-sitemap-xsl-file": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Seo\/XmlSitemap.html#use-a-customized-sitemap-xsl-file", + "ApiOverview\/Seo\/XmlSitemap.html#sitemap-xslFile", "Use a customized sitemap XSL file" ], "override-service-registration": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Services\/Configuration\/RegistrationChanges.html#override-service-registration", + "ApiOverview\/Services\/Configuration\/RegistrationChanges.html#services-configuration-registration-changes", "Override service registration" ], "service-configuration": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Services\/Configuration\/ServiceConfiguration.html#service-configuration", + "ApiOverview\/Services\/Configuration\/ServiceConfiguration.html#services-configuration-service-configuration", "Service configuration" ], "service-type-configuration": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Services\/Configuration\/ServiceTypeConfiguration.html#service-type-configuration", + "ApiOverview\/Services\/Configuration\/ServiceTypeConfiguration.html#services-configuration-service-type-configuration", "Service type configuration" ], "implementing-a-service": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Services\/Developer\/Implementing.html#implementing-a-service", + "ApiOverview\/Services\/Developer\/Implementing.html#services-developer-implementing", "Implementing a service" ], "service-registration": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Services\/Developer\/Implementing.html#service-registration", + "ApiOverview\/Services\/Developer\/Implementing.html#services-developer-implementing-registration", "Service registration" ], "php-class": [ @@ -39577,151 +39661,151 @@ "developer-s-guide": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Services\/Developer\/Index.html#developer-s-guide", + "ApiOverview\/Services\/Developer\/Index.html#services-developer", "Developer's Guide" ], "introducing-a-new-service-type": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Services\/Developer\/NewServiceType.html#introducing-a-new-service-type", + "ApiOverview\/Services\/Developer\/NewServiceType.html#services-developer-new-service-type", "Introducing a new service type" ], "service-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Services\/Developer\/ServiceApi.html#service-api", + "ApiOverview\/Services\/Developer\/ServiceApi.html#services-developer-service-api", "Service API" ], "service-implementation": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Services\/Developer\/ServiceApi.html#service-implementation", + "ApiOverview\/Services\/Developer\/ServiceApi.html#services-developer-service-api-implementation", "Service Implementation" ], "getter-methods-for-service-information": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Services\/Developer\/ServiceApi.html#getter-methods-for-service-information", + "ApiOverview\/Services\/Developer\/ServiceApi.html#services-developer-service-api-getters", "Getter Methods for Service Information" ], "general-service-functions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Services\/Developer\/ServiceApi.html#general-service-functions", + "ApiOverview\/Services\/Developer\/ServiceApi.html#services-developer-service-api-general", "General Service Functions" ], "i-o-tools": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Services\/Developer\/ServiceApi.html#i-o-tools", + "ApiOverview\/Services\/Developer\/ServiceApi.html#services-developer-service-api-io-tools", "I\/O Tools" ], "i-o-input-and-i-o-output": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Services\/Developer\/ServiceApi.html#i-o-input-and-i-o-output", + "ApiOverview\/Services\/Developer\/ServiceApi.html#services-developer-service-api-io-input-output", "I\/O Input and I\/O Output" ], "services-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Services\/Developer\/ServiceRelatedApi.html#services-api", + "ApiOverview\/Services\/Developer\/ServiceRelatedApi.html#services-developer-service-related-api", "Services API" ], "typo3-cms-core-utility-extensionmanagementutility": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Services\/Developer\/ServiceRelatedApi.html#typo3-cms-core-utility-extensionmanagementutility", + "ApiOverview\/Services\/Developer\/ServiceRelatedApi.html#services-developer-service-related-api-extension-management-utility", "\\TYPO3\\CMS\\Core\\Utility\\ExtensionManagementUtility" ], "typo3-cms-core-utility-generalutility": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Services\/Developer\/ServiceRelatedApi.html#typo3-cms-core-utility-generalutility", + "ApiOverview\/Services\/Developer\/ServiceRelatedApi.html#services-developer-service-related-api-general-utility", "\\TYPO3\\CMS\\Core\\Utility\\GeneralUtility" ], "services-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Services\/Index.html#services-1", + "ApiOverview\/Services\/Index.html#services", "Services" ], "reasons-for-using-the-services-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Services\/Introduction\/Index.html#reasons-for-using-the-services-api", + "ApiOverview\/Services\/Introduction\/Index.html#services-introduction-good-reasons-extensibility", "Reasons for using the Services API" ], "using-services": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Services\/UsingServices\/Index.html#using-services", + "ApiOverview\/Services\/UsingServices\/Index.html#services-using-services", "Using Services" ], "calling-a-chain-of-services": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Services\/UsingServices\/ServiceChain.html#calling-a-chain-of-services", + "ApiOverview\/Services\/UsingServices\/ServiceChain.html#services-using-services-service-chain", "Calling a chain of services" ], "service-precedence": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Services\/UsingServices\/ServicePrecedence.html#service-precedence", + "ApiOverview\/Services\/UsingServices\/ServicePrecedence.html#services-using-services-precedence", "Service precedence" ], "simple-usage": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Services\/UsingServices\/SimpleUse.html#simple-usage", + "ApiOverview\/Services\/UsingServices\/SimpleUse.html#services-using-services-simple", "Simple usage" ], "use-with-subtypes": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Services\/UsingServices\/UseWithSubtypes.html#use-with-subtypes", + "ApiOverview\/Services\/UsingServices\/UseWithSubtypes.html#services-using-services-subtypes", "Use with subtypes" ], "session-handling-in-typo3": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SessionStorageFramework\/Index.html#session-handling-in-typo3", + "ApiOverview\/SessionStorageFramework\/Index.html#sessions", "Session handling in TYPO3" ], "session-storage-framework": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SessionStorageFramework\/SessionStorage.html#session-storage-framework", + "ApiOverview\/SessionStorageFramework\/SessionStorage.html#session-storage", "Session storage framework" ], "database-storage-backend": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SessionStorageFramework\/SessionStorage.html#database-storage-backend", + "ApiOverview\/SessionStorageFramework\/SessionStorage.html#sessions-database", "Database storage backend" ], "using-redis-to-store-sessions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SessionStorageFramework\/SessionStorage.html#using-redis-to-store-sessions", + "ApiOverview\/SessionStorageFramework\/SessionStorage.html#sessions-redis", "Using Redis to store sessions" ], "writing-your-own-session-storage": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SessionStorageFramework\/SessionStorage.html#writing-your-own-session-storage", + "ApiOverview\/SessionStorageFramework\/SessionStorage.html#sessions-custom", "Writing your own session storage" ], "php-sessionmanager-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SessionStorageFramework\/SessionStorage.html#php-sessionmanager-api", + "ApiOverview\/SessionStorageFramework\/SessionStorage.html#sessions-manager", "SessionManager API" ], "user-session-management": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SessionStorageFramework\/UserSessionManagement.html#user-session-management", + "ApiOverview\/SessionStorageFramework\/UserSessionManagement.html#session-management", "User session management" ], "public-api-of-php-usersessionmanager": [ @@ -39739,7 +39823,7 @@ "php-api-accessing-site-configuration": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/AccessingSiteConfiguration.html#php-api-accessing-site-configuration", + "ApiOverview\/SiteHandling\/AccessingSiteConfiguration.html#sitehandling-php-api", "PHP API: accessing site configuration" ], "accessing-the-current-site-object": [ @@ -39751,19 +39835,19 @@ "finding-a-site-object-with-the-php-sitefinder-class": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/AccessingSiteConfiguration.html#finding-a-site-object-with-the-php-sitefinder-class", + "ApiOverview\/SiteHandling\/AccessingSiteConfiguration.html#sitehandling-sitefinder-object", "Finding a site object with the SiteFinder class" ], "the-php-site-object": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/AccessingSiteConfiguration.html#the-php-site-object", + "ApiOverview\/SiteHandling\/AccessingSiteConfiguration.html#sitehandling-site-object", "The Site object" ], "the-php-sitelanguage-object": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/AccessingSiteConfiguration.html#the-php-sitelanguage-object", + "ApiOverview\/SiteHandling\/AccessingSiteConfiguration.html#sitehandling-sitelanguage-object", "The SiteLanguage object" ], "the-php-sitesettings-object": [ @@ -39775,25 +39859,25 @@ "adding-languages": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#adding-languages", + "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addingLanguages", "Adding Languages" ], "configuration-properties": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#configuration-properties", + "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addingLanguages-properties", "Configuration properties" ], "base-variants": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/BaseVariants.html#base-variants", + "ApiOverview\/SiteHandling\/BaseVariants.html#sitehandling-baseVariants", "Base variants" ], "properties": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/ComposerJson.html#properties", + "ExtensionArchitecture\/FileStructure\/ComposerJson.html#ext-composer-json-properties", "Properties" ], "functions": [ @@ -39805,25 +39889,25 @@ "site-handling-basics": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/Basics.html#site-handling-basics", + "ApiOverview\/SiteHandling\/Basics.html#sitehandling-basics", "Site handling basics" ], "site-configuration-storage": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/Basics.html#site-configuration-storage", + "ApiOverview\/SiteHandling\/Basics.html#site-storage", "Site configuration storage" ], "the-configuration-file": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/Basics.html#the-configuration-file", + "ApiOverview\/SiteHandling\/Basics.html#site-configuration-file", "The configuration file" ], "site-identifier": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/Basics.html#site-identifier", + "ApiOverview\/SiteHandling\/Basics.html#sitehandling-basics-site-identifier", "Site identifier" ], "root-page-id": [ @@ -39835,7 +39919,7 @@ "websitetitle": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/Basics.html#websitetitle", + "ApiOverview\/SiteHandling\/Basics.html#sitehandling-basics-websiteTitle", "websiteTitle" ], "base": [ @@ -39871,7 +39955,7 @@ "cli-tools-for-site-handling": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/CliTools.html#cli-tools-for-site-handling", + "ApiOverview\/SiteHandling\/CliTools.html#sitehandling-cliTools", "CLI tools for site handling" ], "list-all-configured-sites": [ @@ -39889,19 +39973,19 @@ "creating-a-new-site-configuration": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/CreateNew.html#creating-a-new-site-configuration", + "ApiOverview\/SiteHandling\/CreateNew.html#sitehandling-create-new", "Creating a new site configuration" ], "fluid-based-error-handler": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/ErrorHandling\/FluidErrorHandler.html#fluid-based-error-handler", + "ApiOverview\/SiteHandling\/ErrorHandling\/FluidErrorHandler.html#sitehandling-errorHandling_fluid", "Fluid-based error handler" ], "page-based-error-handler": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/ErrorHandling\/PageErrorHandler.html#page-based-error-handler", + "ApiOverview\/SiteHandling\/ErrorHandling\/PageErrorHandler.html#sitehandling-errorHandling_page", "Page-based error handler" ], "internal-error-page": [ @@ -39919,7 +40003,7 @@ "writing-a-custom-page-error-handler": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/ErrorHandling\/WriteCustomErrorHandler.html#writing-a-custom-page-error-handler", + "ApiOverview\/SiteHandling\/ErrorHandling\/WriteCustomErrorHandler.html#sitehandling-customErrorHandler", "Writing a custom page error handler" ], "example-for-a-simple-404-error-handler": [ @@ -39931,7 +40015,7 @@ "extending-site-configuration": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/ExtendingSiteConfig.html#extending-site-configuration", + "ApiOverview\/SiteHandling\/ExtendingSiteConfig.html#sitehandling-extendingSiteConfiguration", "Extending site configuration" ], "adding-custom-project-specific-options-to-site-configuration": [ @@ -39949,31 +40033,31 @@ "site-handling": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/Index.html#site-handling", + "ApiOverview\/SiteHandling\/Index.html#sitehandling", "Site handling" ], "site-settings": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/SiteSettings.html#site-settings", + "ApiOverview\/SiteHandling\/SiteSettings.html#sitehandling-settings", "Site settings" ], "adding-site-settings": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/SiteSettings.html#adding-site-settings", + "ApiOverview\/SiteHandling\/SiteSettings.html#sitehandling-settings-add", "Adding site settings" ], "accessing-site-settings-in-page-tsconfig-or-typoscript": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/SiteSettings.html#accessing-site-settings-in-page-tsconfig-or-typoscript", + "ApiOverview\/SiteHandling\/SiteSettings.html#sitehandling-settings-access", "Accessing site settings in page TSconfig or TypoScript" ], "static-routes": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/StaticRoutes.html#static-routes", + "ApiOverview\/SiteHandling\/StaticRoutes.html#sitehandling-staticRoutes", "Static routes" ], "yaml-statictext": [ @@ -39991,7 +40075,7 @@ "using-site-configuration-in-conditions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/UseSiteInConditions.html#using-site-configuration-in-conditions", + "ApiOverview\/SiteHandling\/UseSiteInConditions.html#sitehandling-inConditions", "Using site configuration in conditions" ], "typoscript-examples": [ @@ -40009,7 +40093,7 @@ "using-site-configuration-in-tca-foreign-table-where": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/UseSiteInTCA.html#using-site-configuration-in-tca-foreign-table-where", + "ApiOverview\/SiteHandling\/UseSiteInTCA.html#sitehandling-inTCA", "Using site configuration in TCA foreign_table_where" ], "tca-foreign-table-where": [ @@ -40021,7 +40105,7 @@ "using-site-configuration-in-typoscript-and-fluid-templates": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/UseSiteInTypoScript.html#using-site-configuration-in-typoscript-and-fluid-templates", + "ApiOverview\/SiteHandling\/UseSiteInTypoScript.html#sitehandling-inTypoScript", "Using site configuration in TypoScript and Fluid templates" ], "gettext": [ @@ -40033,19 +40117,19 @@ "using-environment-variables-in-the-site-configuration": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/UsingEnvVars.html#using-environment-variables-in-the-site-configuration", + "ApiOverview\/SiteHandling\/UsingEnvVars.html#sitehandling-using-env-vars", "Using environment variables in the site configuration" ], "soft-references-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SoftReferences\/Index.html#soft-references-1", + "ApiOverview\/SoftReferences\/Index.html#soft-references", "Soft references" ], "default-soft-reference-parsers": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SoftReferences\/Index.html#default-soft-reference-parsers", + "ApiOverview\/SoftReferences\/Index.html#soft-references-default-parsers", "Default soft reference parsers" ], "property-php-content": [ @@ -40063,7 +40147,7 @@ "user-defined-soft-reference-parsers": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SoftReferences\/Index.html#user-defined-soft-reference-parsers", + "ApiOverview\/SoftReferences\/Index.html#soft-references-custom-parsers", "User-defined soft reference parsers" ], "using-the-soft-reference-parser": [ @@ -40075,7 +40159,7 @@ "symfony-expression-language-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SymfonyExpressionLanguage\/Index.html#symfony-expression-language-1", + "ApiOverview\/SymfonyExpressionLanguage\/Index.html#symfony-expression-language", "Symfony expression language" ], "main-api": [ @@ -40087,67 +40171,67 @@ "registering-new-provider": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SymfonyExpressionLanguage\/Index.html#registering-new-provider", + "ApiOverview\/SymfonyExpressionLanguage\/Index.html#sel-ts-registering-new-provider-within-extension", "Registering new provider" ], "implementing-a-provider": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SymfonyExpressionLanguage\/Index.html#implementing-a-provider", + "ApiOverview\/SymfonyExpressionLanguage\/Index.html#sel-ts-implement-provider-within-extension", "Implementing a provider" ], "additional-variables": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SymfonyExpressionLanguage\/Index.html#additional-variables", + "ApiOverview\/SymfonyExpressionLanguage\/Index.html#sel-ts-additional-variables", "Additional variables" ], "additional-functions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SymfonyExpressionLanguage\/Index.html#additional-functions", + "ApiOverview\/SymfonyExpressionLanguage\/Index.html#sel-ts-additional-functions", "Additional functions" ], "system-overview-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SystemOverview\/Index.html#system-overview-1", + "ApiOverview\/SystemOverview\/Index.html#overview", "System Overview" ], "application-layer": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SystemOverview\/Index.html#application-layer", + "ApiOverview\/SystemOverview\/Index.html#system-overview-application", "Application layer" ], "user-interface-layer": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SystemOverview\/Index.html#user-interface-layer", + "ApiOverview\/SystemOverview\/Index.html#system-overview-ui", "User interface layer" ], "system-registry": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SystemRegistry\/Index.html#system-registry", + "ApiOverview\/SystemRegistry\/Index.html#registry", "System registry" ], "the-registry-api": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SystemRegistry\/Index.html#the-registry-api", + "ApiOverview\/SystemRegistry\/Index.html#registry-api", "The registry API" ], "the-registry-table-sys-registry": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SystemRegistry\/Index.html#the-registry-table-sys-registry", + "ApiOverview\/SystemRegistry\/Index.html#registry-table", "The registry table (sys_registry)" ], "tsfe-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/TSFE\/Index.html#tsfe-1", + "ApiOverview\/TSFE\/Index.html#tsfe", "TSFE" ], "what-is-tsfe": [ @@ -40171,43 +40255,43 @@ "access-contentobjectrenderer": [ "TYPO3 Explained", "12.4", - "ApiOverview\/TSFE\/Index.html#access-contentobjectrenderer", + "ApiOverview\/TSFE\/Index.html#tsfe_ContentObjectRenderer", "Access ContentObjectRenderer" ], "access-current-page-id": [ "TYPO3 Explained", "12.4", - "ApiOverview\/TSFE\/Index.html#access-current-page-id", + "ApiOverview\/TSFE\/Index.html#tsfe_pageId", "Access current page ID" ], "access-frontend-user-information": [ "TYPO3 Explained", "12.4", - "ApiOverview\/TSFE\/Index.html#access-frontend-user-information", + "ApiOverview\/TSFE\/Index.html#tsfe_frontendUser", "Access frontend user information" ], "get-current-base-url": [ "TYPO3 Explained", "12.4", - "ApiOverview\/TSFE\/Index.html#get-current-base-url", + "ApiOverview\/TSFE\/Index.html#tsfe_baseURL", "Get current base URL" ], "webhooks-and-reactions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Webhooks\/Index.html#webhooks-and-reactions", + "ApiOverview\/Webhooks\/Index.html#webhooks", "Webhooks and reactions" ], "versioning-and-workspaces": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Workspaces\/Index.html#versioning-and-workspaces", + "ApiOverview\/Workspaces\/Index.html#workspaces", "Versioning and Workspaces" ], "frontend-challenges-in-general": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Workspaces\/Index.html#frontend-challenges-in-general", + "ApiOverview\/Workspaces\/Index.html#workspaces-frontend", "Frontend challenges in general" ], "summary": [ @@ -40219,49 +40303,49 @@ "frontend-implementation-guidelines": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Workspaces\/Index.html#frontend-implementation-guidelines", + "ApiOverview\/Workspaces\/Index.html#workspaces-frontend-guidelines", "Frontend implementation guidelines" ], "frontend-scenarios-impossible-to-preview": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Workspaces\/Index.html#frontend-scenarios-impossible-to-preview", + "ApiOverview\/Workspaces\/Index.html#workspaces-frontend-problems", "Frontend scenarios impossible to preview" ], "backend-challenges": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Workspaces\/Index.html#backend-challenges", + "ApiOverview\/Workspaces\/Index.html#workspaces-backend", "Backend challenges" ], "workspace-related-api-for-backend-modules": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Workspaces\/Index.html#workspace-related-api-for-backend-modules", + "ApiOverview\/Workspaces\/Index.html#workspaces-backend-api", "Workspace-related API for backend modules" ], "backend-module-access": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Workspaces\/Index.html#backend-module-access", + "ApiOverview\/Workspaces\/Index.html#workspaces-backend-acess", "Backend module access" ], "detecting-current-workspace": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Workspaces\/Index.html#detecting-current-workspace", + "ApiOverview\/Workspaces\/Index.html#workspaces-detection", "Detecting current workspace" ], "using-datahandler-with-workspaces": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Workspaces\/Index.html#using-datahandler-with-workspaces", + "ApiOverview\/Workspaces\/Index.html#workspaces-tcemain", "Using DataHandler with workspaces" ], "moving-in-workspaces": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Workspaces\/Index.html#moving-in-workspaces", + "ApiOverview\/Workspaces\/Index.html#workspaces-moving", "Moving in workspaces" ], "persistence-in-depth-scenarios": [ @@ -40333,31 +40417,31 @@ "xclasses-extending-classes": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Xclasses\/Index.html#xclasses-extending-classes", + "ApiOverview\/Xclasses\/Index.html#xclasses", "XCLASSes (Extending Classes)" ], "how-does-it-work": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Xclasses\/Index.html#how-does-it-work", + "ApiOverview\/Xclasses\/Index.html#xclasses-mechanism", "How does it work?" ], "declaration": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Xclasses\/Index.html#declaration", + "ApiOverview\/Xclasses\/Index.html#xclasses-declaration", "Declaration" ], "coding-practices": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Xclasses\/Index.html#coding-practices", + "ApiOverview\/Xclasses\/Index.html#xclasses-coding", "Coding practices" ], "javascript-coding-guidelines": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/CglJavaScript\/Index.html#javascript-coding-guidelines", + "CodingGuidelines\/CglJavaScript\/Index.html#cgl-javascript", "JavaScript coding guidelines" ], "directories-and-filenames": [ @@ -40369,7 +40453,7 @@ "file-structure": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Index.html#file-structure", + "ExtensionArchitecture\/FileStructure\/Index.html#extension-reserved-folders-legacy", "File structure" ], "copyright-notice": [ @@ -40399,7 +40483,7 @@ "general-requirements-for-php-files": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/CglPhp\/GeneralRequirementsForPhpFiles.html#general-requirements-for-php-files", + "CodingGuidelines\/CglPhp\/GeneralRequirementsForPhpFiles.html#cgl-general-requirements-for-php-files", "General requirements for PHP files" ], "typo3-coding-standards": [ @@ -40441,13 +40525,13 @@ "php-coding-guidelines": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/CglPhp\/Index.html#php-coding-guidelines", + "CodingGuidelines\/CglPhp\/Index.html#cgl-php", "PHP coding guidelines" ], "php-syntax-formatting": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/CglPhp\/PhpSyntaxFormatting.html#php-syntax-formatting", + "CodingGuidelines\/CglPhp\/PhpSyntaxFormatting.html#cgl-php-syntax-formatting", "PHP syntax formatting" ], "identifiers": [ @@ -40525,7 +40609,7 @@ "using-phpdoc": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/CglPhp\/UsingPhpdoc.html#using-phpdoc", + "CodingGuidelines\/CglPhp\/UsingPhpdoc.html#cgl-using-phpdoc", "Using phpDoc" ], "function-information-block": [ @@ -40543,7 +40627,7 @@ "restructuredtext-rest": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/CglRest\/Index.html#restructuredtext-rest", + "CodingGuidelines\/CglRest\/Index.html#cgl-rest", "reStructuredText (reST)" ], "directory-and-file-names": [ @@ -40555,13 +40639,13 @@ "tsconfig-coding-guidelines": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/CglTsConfig.html#tsconfig-coding-guidelines", + "CodingGuidelines\/CglTsConfig.html#cgl-tsconfig", "TSconfig coding guidelines" ], "typescript-coding-guidelines": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/CglTypeScript\/Index.html#typescript-coding-guidelines", + "CodingGuidelines\/CglTypeScript\/Index.html#cgl-typescript", "TypeScript coding guidelines" ], "directories-and-file-names": [ @@ -40573,19 +40657,19 @@ "typoscript-coding-guidelines": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/CglTypoScript\/Index.html#typoscript-coding-guidelines", + "CodingGuidelines\/CglTypoScript\/Index.html#cgl-typoscript", "TypoScript coding guidelines" ], "xliff-coding-guidelines": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/CglXliff\/Index.html#xliff-coding-guidelines", + "CodingGuidelines\/CglXliff\/Index.html#cgl-xliff", "XLIFF coding guidelines" ], "language-keys": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/CglXliff\/Index.html#language-keys", + "CodingGuidelines\/CglXliff\/Index.html#cgl-xliff-language-keys", "Language keys" ], "defining-localized-strings": [ @@ -40597,37 +40681,31 @@ "yaml-coding-guidelines": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/CglYaml.html#yaml-coding-guidelines", + "CodingGuidelines\/CglYaml.html#cgl-yaml", "YAML coding guidelines" ], - "accessing-the-database": [ - "TYPO3 Explained", - "12.4", - "CodingGuidelines\/CodingBestPractices\/AccessingTheDatabase.html#accessing-the-database", - "Accessing the database" - ], "namespaces-and-class-names-of-user-files": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/CodingBestPractices\/ClassNamesOfUserFiles.html#namespaces-and-class-names-of-user-files", + "CodingGuidelines\/CodingBestPractices\/ClassNamesOfUserFiles.html#cgl-namespaces-class-names", "Namespaces and class names of user files" ], "handling-deprecations": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/CodingBestPractices\/HandlingDeprecations.html#handling-deprecations", + "CodingGuidelines\/CodingBestPractices\/HandlingDeprecations.html#cgl-deprecation", "Handling deprecations" ], "php-best-practices": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/CodingBestPractices\/Index.html#php-best-practices", + "CodingGuidelines\/CodingBestPractices\/Index.html#cgl-best-practices", "PHP best practices" ], "named-arguments": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#named-arguments", + "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#cgl-named-arguments", "Named arguments" ], "named-arguments-in-public-apis": [ @@ -40651,7 +40729,7 @@ "leveraging-named-arguments-in-pcpp-value-objects": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#leveraging-named-arguments-in-pcpp-value-objects", + "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#cgl-named-arguments-pcpp-value-objects", "Leveraging Named Arguments in PCPP Value Objects" ], "invoking-2nd-party-non-core-library-dependency-methods": [ @@ -40681,85 +40759,49 @@ "singletons": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/CodingBestPractices\/Singletons.html#singletons", + "CodingGuidelines\/CodingBestPractices\/Singletons.html#cgl-singletons", "Singletons" ], - "static-methods": [ - "TYPO3 Explained", - "12.4", - "CodingGuidelines\/CodingBestPractices\/StaticMethods.html#static-methods", - "Static methods" - ], - "unit-tests": [ - "TYPO3 Explained", - "12.4", - "Testing\/ExtensionTesting.html#unit-tests", - "Unit tests" - ], - "unit-test-files": [ - "TYPO3 Explained", - "12.4", - "CodingGuidelines\/CodingBestPractices\/UnitTests.html#unit-test-files", - "Unit test files" - ], - "using-unit-tests": [ - "TYPO3 Explained", - "12.4", - "CodingGuidelines\/CodingBestPractices\/UnitTests.html#using-unit-tests", - "Using unit tests" - ], - "adding-unit-tests": [ - "TYPO3 Explained", - "12.4", - "CodingGuidelines\/CodingBestPractices\/UnitTests.html#adding-unit-tests", - "Adding unit tests" - ], - "conventions-for-unit-tests": [ - "TYPO3 Explained", - "12.4", - "CodingGuidelines\/CodingBestPractices\/UnitTests.html#conventions-for-unit-tests", - "Conventions for unit tests" - ], "coding-guidelines": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/Index.html#coding-guidelines", + "CodingGuidelines\/Index.html#cgl", "Coding guidelines" ], "introduction-to-the-typo3-coding-guidelines-cgl": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/Introduction.html#introduction-to-the-typo3-coding-guidelines-cgl", + "CodingGuidelines\/Introduction.html#cgl-introduction", "Introduction to the TYPO3 coding guidelines (CGL)" ], "the-cgl-as-a-means-of-quality-assurance": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/Introduction.html#the-cgl-as-a-means-of-quality-assurance", + "CodingGuidelines\/Introduction.html#cgl-quality-assurance", "The CGL as a means of quality assurance" ], "general-recommendations": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/Introduction.html#general-recommendations", + "CodingGuidelines\/Introduction.html#cgl-general-recommendations", "General recommendations" ], "setup-ide-editor": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/Introduction.html#setup-ide-editor", + "CodingGuidelines\/Introduction.html#cgl-ide", "Setup IDE \/ editor" ], "editorconfig": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/Introduction.html#editorconfig", + "CodingGuidelines\/Introduction.html#cgl-editorconfig", ".editorconfig" ], "php-architecture": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/PhpArchitecture\/Index.html#php-architecture", + "CodingGuidelines\/PhpArchitecture\/Index.html#cgl-php-architecture", "PHP architecture" ], "characteristics": [ @@ -40783,7 +40825,7 @@ "static-methods-static-classes-utility-classes": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/PhpArchitecture\/StaticMethods.html#static-methods-static-classes-utility-classes", + "CodingGuidelines\/PhpArchitecture\/StaticMethods.html#cgl-static-methods", "Static Methods, static Classes, Utility Classes" ], "characteristica": [ @@ -40801,13 +40843,13 @@ "traits": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/PhpArchitecture\/Traits.html#traits", + "CodingGuidelines\/PhpArchitecture\/Traits.html#cgl-traits", "Traits" ], "working-with-exceptions": [ "TYPO3 Explained", "12.4", - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html#working-with-exceptions", + "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html#cgl-working-with-exceptions", "Working with exceptions" ], "exception-types": [ @@ -40855,19 +40897,19 @@ "configuration-files-1": [ "TYPO3 Explained", "12.4", - "Configuration\/ConfigurationFiles.html#configuration-files-1", + "Configuration\/ConfigurationFiles.html#configuration-files", "Configuration files" ], "history": [ "TYPO3 Explained", "12.4", - "Testing\/History.html#history", + "Testing\/History.html#testing-history", "History" ], "configuration-module": [ "TYPO3 Explained", "12.4", - "Configuration\/ConfigurationModule\/Index.html#configuration-module", + "Configuration\/ConfigurationModule\/Index.html#config-module", "Configuration module" ], "extending-the-configuration-module": [ @@ -40897,13 +40939,13 @@ "blinding-configuration-options": [ "TYPO3 Explained", "12.4", - "Configuration\/ConfigurationModule\/Index.html#blinding-configuration-options", + "Configuration\/ConfigurationModule\/Index.html#config-module-blind-options", "Blinding configuration options" ], "configuration-overview": [ "TYPO3 Explained", "12.4", - "Configuration\/ConfigurationOverview.html#configuration-overview", + "Configuration\/ConfigurationOverview.html#config-overview", "Configuration overview" ], "configuration-overview-files": [ @@ -40933,7 +40975,7 @@ "configuration-methods": [ "TYPO3 Explained", "12.4", - "Configuration\/Glossary.html#configuration-methods", + "Configuration\/Glossary.html#classification-config-methods", "Configuration methods" ], "ref-tsconfig-t3tsref-typoscript-syntax-using-setting": [ @@ -40969,7 +41011,7 @@ "feature-toggles-1": [ "TYPO3 Explained", "12.4", - "Configuration\/FeatureToggles.html#feature-toggles-1", + "Configuration\/FeatureToggles.html#feature-toggles", "Feature toggles" ], "naming-of-feature-toggles": [ @@ -40981,19 +41023,19 @@ "using-the-api-as-extension-author": [ "TYPO3 Explained", "12.4", - "Configuration\/FeatureToggles.html#using-the-api-as-extension-author", + "Configuration\/FeatureToggles.html#feature-toggles-api", "Using the API as extension author" ], "core-feature-toggles": [ "TYPO3 Explained", "12.4", - "Configuration\/FeatureToggles.html#core-feature-toggles", + "Configuration\/FeatureToggles.html#feature-toggles-core", "Core feature toggles" ], "enable-disable-feature-toggle": [ "TYPO3 Explained", "12.4", - "Configuration\/FeatureToggles.html#enable-disable-feature-toggle", + "Configuration\/FeatureToggles.html#feature-toggles-enable", "Enable \/ disable feature toggle" ], "feature-toggles-in-typoscript": [ @@ -41005,25 +41047,25 @@ "flag-files-1": [ "TYPO3 Explained", "12.4", - "Configuration\/FlagFiles\/Index.html#flag-files-1", + "Configuration\/FlagFiles\/Index.html#flag-files", "Flag files" ], "globals": [ "TYPO3 Explained", "12.4", - "Configuration\/GlobalVariables.html#globals", + "Configuration\/GlobalVariables.html#globals-variables", "$GLOBALS" ], "exploring-global-variables": [ "TYPO3 Explained", "12.4", - "Configuration\/GlobalVariables.html#exploring-global-variables", + "Configuration\/GlobalVariables.html#globals-exploring", "Exploring global variables" ], "glossary": [ "TYPO3 Explained", "12.4", - "Configuration\/Glossary.html#glossary", + "Configuration\/Glossary.html#configuration-classification", "Glossary" ], "configuration-vs-settings": [ @@ -41053,97 +41095,97 @@ "configuration-1": [ "TYPO3 Explained", "12.4", - "Configuration\/Index.html#configuration-1", + "Configuration\/Index.html#configuration", "Configuration" ], "be-backend-configuration": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#be-backend-configuration", + "Configuration\/Typo3ConfVars\/BE.html#typo3ConfVars_be", "BE - backend configuration" ], "db-database-connections": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/DB.html#db-database-connections", + "Configuration\/Typo3ConfVars\/DB.html#typo3ConfVars_db", "DB - Database connections" ], "ext-extension-manager-configuration": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/EXT.html#ext-extension-manager-configuration", + "Configuration\/Typo3ConfVars\/EXT.html#typo3ConfVars_ext", "EXT - Extension manager configuration" ], "fe-frontend-configuration": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#fe-frontend-configuration", + "Configuration\/Typo3ConfVars\/FE.html#typo3ConfVars_fe", "FE - frontend configuration" ], "gfx-graphics-configuration": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/GFX.html#gfx-graphics-configuration", + "Configuration\/Typo3ConfVars\/GFX.html#typo3ConfVars_gfx", "GFX - graphics configuration" ], "http-tune-requests": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/HTTP.html#http-tune-requests", + "Configuration\/Typo3ConfVars\/HTTP.html#typo3ConfVars_http", "HTTP - tune requests" ], "typo3-conf-vars": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/Index.html#typo3-conf-vars", + "Configuration\/Typo3ConfVars\/Index.html#typo3ConfVars", "TYPO3_CONF_VARS" ], "file-file-config-system-settings-php": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/Index.html#file-file-config-system-settings-php", + "Configuration\/Typo3ConfVars\/Index.html#typo3ConfVars-localConfiguration", "File config\/system\/settings.php" ], "file-config-system-additional-php": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/Index.html#file-config-system-additional-php", + "Configuration\/Typo3ConfVars\/Index.html#typo3ConfVars-additionalConfiguration", "File config\/system\/additional.php" ], "file-defaultconfiguration-php": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/Index.html#file-defaultconfiguration-php", + "Configuration\/Typo3ConfVars\/Index.html#typo3ConfVars-defaultConfiguration", "File DefaultConfiguration.php" ], "log-logging-configuration": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/LOG.html#log-logging-configuration", + "Configuration\/Typo3ConfVars\/LOG.html#typo3ConfVars_log", "LOG - Logging configuration" ], "mail-settings": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#mail-settings", + "Configuration\/Typo3ConfVars\/MAIL.html#typo3ConfVars_mail", "MAIL settings" ], "sys-system-configuration": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#sys-system-configuration", + "Configuration\/Typo3ConfVars\/SYS.html#typo3ConfVars_sys", "SYS - System configuration" ], "global-meta-information-about-typo3": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3Information.html#global-meta-information-about-typo3", + "Configuration\/Typo3Information.html#typo3Information", "Global meta information about TYPO3" ], "general-information": [ "TYPO3 Explained", "12.4", - "Security\/GeneralInformation\/Index.html#general-information", + "Security\/GeneralInformation\/Index.html#security-general-information", "General Information" ], "version-information": [ @@ -41155,7 +41197,7 @@ "typoscript-1": [ "TYPO3 Explained", "12.4", - "Configuration\/TypoScript\/Index.html#typoscript-1", + "Configuration\/TypoScript\/Index.html#typoscript", "TypoScript" ], "what-is-typoscript": [ @@ -41167,73 +41209,73 @@ "typoscript-parsing": [ "TYPO3 Explained", "12.4", - "Configuration\/TypoScript\/Introduction\/Index.html#typoscript-parsing", + "Configuration\/TypoScript\/Introduction\/Index.html#typoscript-syntax-parsed-php-array", "TypoScript parsing" ], "myths-and-faq": [ "TYPO3 Explained", "12.4", - "Configuration\/TypoScript\/MythsFaq\/Index.html#myths-and-faq", + "Configuration\/TypoScript\/MythsFaq\/Index.html#typoscript-syntax-details", "Myths and FAQ" ], "myth-typoscript-is-a-scripting-language": [ "TYPO3 Explained", "12.4", - "Configuration\/TypoScript\/MythsFaq\/Index.html#myth-typoscript-is-a-scripting-language", + "Configuration\/TypoScript\/MythsFaq\/Index.html#typoscript-syntax-myth-scripting-language", "Myth: \"TypoScript Is a scripting language\"" ], "myth-typoscript-has-the-same-syntax-as-javascript": [ "TYPO3 Explained", "12.4", - "Configuration\/TypoScript\/MythsFaq\/Index.html#myth-typoscript-has-the-same-syntax-as-javascript", + "Configuration\/TypoScript\/MythsFaq\/Index.html#typoscript-syntax-myth-javascript", "Myth: \"TypoScript has the same syntax as JavaScript\"" ], "myth-typoscript-is-a-proprietary-standard": [ "TYPO3 Explained", "12.4", - "Configuration\/TypoScript\/MythsFaq\/Index.html#myth-typoscript-is-a-proprietary-standard", + "Configuration\/TypoScript\/MythsFaq\/Index.html#typoscript-syntax-myth-proprietary", "Myth: \"TypoScript is a proprietary standard\"" ], "myth-typoscript-is-very-complex": [ "TYPO3 Explained", "12.4", - "Configuration\/TypoScript\/MythsFaq\/Index.html#myth-typoscript-is-very-complex", + "Configuration\/TypoScript\/MythsFaq\/Index.html#typoscript-syntax-myth-complex", "Myth: \"TypoScript is very complex\"" ], "faq-why-not-xml-instead": [ "TYPO3 Explained", "12.4", - "Configuration\/TypoScript\/MythsFaq\/Index.html#faq-why-not-xml-instead", + "Configuration\/TypoScript\/MythsFaq\/Index.html#typoscript-syntax-xml", "FAQ: \"Why not XML Instead?\"" ], "syntax": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#syntax", + "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#extension-options-syntax", "Syntax" ], "tsconfig-1": [ "TYPO3 Explained", "12.4", - "Configuration\/TypoScript\/TSconfig\/Index.html#tsconfig-1", + "Configuration\/TypoScript\/TSconfig\/Index.html#tsconfig", "TSconfig" ], "view-the-configuration": [ "TYPO3 Explained", "12.4", - "Configuration\/UserSettingsConfiguration\/Checking.html#view-the-configuration", + "Configuration\/UserSettingsConfiguration\/Checking.html#user-settings-checking", "View the configuration" ], "columns-section": [ "TYPO3 Explained", "12.4", - "Configuration\/UserSettingsConfiguration\/Columns.html#columns-section", + "Configuration\/UserSettingsConfiguration\/Columns.html#user-settings-columns", "['columns'] Section" ], "extending-the-user-settings": [ "TYPO3 Explained", "12.4", - "Configuration\/UserSettingsConfiguration\/Extending.html#extending-the-user-settings", + "Configuration\/UserSettingsConfiguration\/Extending.html#user-settings-extending", "Extending the user settings" ], "on-click-on-confirmation-javascript-callbacks": [ @@ -41245,31 +41287,31 @@ "user-settings-configuration": [ "TYPO3 Explained", "12.4", - "Configuration\/UserSettingsConfiguration\/Index.html#user-settings-configuration", + "Configuration\/UserSettingsConfiguration\/Index.html#user-settings", "User settings configuration" ], "showitem-section": [ "TYPO3 Explained", "12.4", - "Configuration\/UserSettingsConfiguration\/Showitem.html#showitem-section", + "Configuration\/UserSettingsConfiguration\/Showitem.html#user-settings-showitem", "['showitem'] section" ], "services-yaml": [ "TYPO3 Explained", "12.4", - "Configuration\/Yaml\/ServicesYaml.html#services-yaml", + "Configuration\/Yaml\/ServicesYaml.html#ServicesYaml", "Services.yaml" ], "yaml-api-1": [ "TYPO3 Explained", "12.4", - "Configuration\/Yaml\/YamlApi.html#yaml-api-1", + "Configuration\/Yaml\/YamlApi.html#yaml-api", "YAML API" ], "yamlfileloader": [ "TYPO3 Explained", "12.4", - "Configuration\/Yaml\/YamlApi.html#yamlfileloader", + "Configuration\/Yaml\/YamlApi.html#yamlFileLoader", "YamlFileLoader" ], "custom-placeholder-processing": [ @@ -41281,25 +41323,25 @@ "yaml-syntax-1": [ "TYPO3 Explained", "12.4", - "Configuration\/Yaml\/YamlSyntax.html#yaml-syntax-1", + "Configuration\/Yaml\/YamlSyntax.html#yaml-syntax", "YAML syntax" ], "configuration-files-ext-tables-php-ext-localconf-php": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/BestPractises\/ConfigurationFiles.html#configuration-files-ext-tables-php-ext-localconf-php", + "ExtensionArchitecture\/BestPractises\/ConfigurationFiles.html#extension-conventions-configuration-files", "Configuration Files (ext_tables.php & ext_localconf.php)" ], "rules-and-best-practices": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/BestPractises\/ConfigurationFiles.html#rules-and-best-practices", + "ExtensionArchitecture\/BestPractises\/ConfigurationFiles.html#rules_ext_tables_localconf_php", "Rules and best practices" ], "choosing-an-extension-key": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/BestPractises\/ExtensionKey.html#choosing-an-extension-key", + "ExtensionArchitecture\/BestPractises\/ExtensionKey.html#extension-key", "Choosing an extension key" ], "rules-for-the-extension-key": [ @@ -41311,37 +41353,37 @@ "about-gpl-and-extensions": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/BestPractises\/ExtensionKey.html#about-gpl-and-extensions", + "ExtensionArchitecture\/BestPractises\/ExtensionKey.html#extension-license", "About GPL and extensions" ], "registering-an-extension-key": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/BestPractises\/ExtensionKey.html#registering-an-extension-key", + "ExtensionArchitecture\/BestPractises\/ExtensionKey.html#extension-key-registration", "Registering an extension key" ], "best-practises-and-conventions": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/BestPractises\/Index.html#best-practises-and-conventions", + "ExtensionArchitecture\/BestPractises\/Index.html#extension-Best-practises", "Best practises and conventions" ], "naming-conventions": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#naming-conventions", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#extension-naming", "Naming conventions" ], "abbreviations-glossary": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#abbreviations-glossary", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#extension-naming-extensionName", "Abbreviations & Glossary" ], "extension-key-extkey": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#extension-key-extkey", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#naming-conventions-extkey", "Extension key (extkey)" ], "vendor-name": [ @@ -41353,19 +41395,19 @@ "database-table-name": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#database-table-name", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#naming-tables", "Database table name" ], "extbase-domain-model-tables": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#extbase-domain-model-tables", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#naming-tables-extbase", "Extbase domain model tables" ], "mm-tables-for-multiple-multiple-relations-between-tables": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#mm-tables-for-multiple-multiple-relations-between-tables", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#naming-tables-mm", "MM-tables for multiple-multiple relations between tables" ], "database-column-name": [ @@ -41377,7 +41419,7 @@ "backend-module-key-modkey": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#backend-module-key-modkey", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#BackendModuleKey", "Backend module key (modkey)" ], "backend-module-signature": [ @@ -41389,7 +41431,7 @@ "plugin-signature": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#plugin-signature", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#naming-conventions-plugin-signature", "Plugin signature" ], "example-register-and-configure-a-non-extbase-plugin": [ @@ -41425,25 +41467,25 @@ "note-on-old-extensions": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#note-on-old-extensions", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#extension-old-extensions", "Note on \"old\" extensions" ], "software-design-principles": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/BestPractises\/SoftwareDesignPrinciples.html#software-design-principles", + "ExtensionArchitecture\/BestPractises\/SoftwareDesignPrinciples.html#extension-software-design-principles", "Software Design Principles" ], "dto-data-transfer-objects": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/BestPractises\/SoftwareDesignPrinciples.html#dto-data-transfer-objects", + "ExtensionArchitecture\/BestPractises\/SoftwareDesignPrinciples.html#concept-dto", "DTO \/ Data Transfer Objects" ], "concepts": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Concepts\/Index.html#concepts", + "ExtensionArchitecture\/Concepts\/Index.html#extension-concepts", "Concepts" ], "types-of-extensions": [ @@ -41461,37 +41503,37 @@ "extensions-and-the-core": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Concepts\/Introduction.html#extensions-and-the-core", + "ExtensionArchitecture\/Concepts\/Introduction.html#extensions-and-core", "Extensions and the Core" ], "notable-system-extensions": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Concepts\/Introduction.html#notable-system-extensions", + "ExtensionArchitecture\/Concepts\/Introduction.html#extensions-core", "Notable system extensions" ], "system-third-party-and-custom-extensions": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Concepts\/SystemAndLocalExtensions.html#system-third-party-and-custom-extensions", + "ExtensionArchitecture\/Concepts\/SystemAndLocalExtensions.html#extension-scope", "System, third-party and custom extensions" ], "third-party-and-custom-extensions": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Concepts\/SystemAndLocalExtensions.html#third-party-and-custom-extensions", + "ExtensionArchitecture\/Concepts\/SystemAndLocalExtensions.html#extension-local", "Third-party and custom extensions" ], "system-extensions": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Concepts\/SystemAndLocalExtensions.html#system-extensions", + "ExtensionArchitecture\/Concepts\/SystemAndLocalExtensions.html#extension-system", "System Extensions" ], "extbase-examples": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Examples\/Index.html#extbase-examples", + "ExtensionArchitecture\/Extbase\/Examples\/Index.html#extbase_examples", "Extbase Examples" ], "example-extensions": [ @@ -41533,13 +41575,13 @@ "extbase-1": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Index.html#extbase-1", + "ExtensionArchitecture\/Extbase\/Index.html#extbase", "Extbase" ], "extbase-introduction-1": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Introduction\/Index.html#extbase-introduction-1", + "ExtensionArchitecture\/Extbase\/Introduction\/Index.html#extbase-introduction", "Extbase introduction" ], "what-is-extbase": [ @@ -41557,7 +41599,7 @@ "annotations": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#annotations", + "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#extbase-annotations", "Annotations" ], "annotations-provided-by-extbase": [ @@ -41569,67 +41611,67 @@ "validate": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#validate", + "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#extbase-annotation-validate", "Validate" ], "ignorevalidation": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#ignorevalidation", + "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#extbase-annotation-ignore-validation", "IgnoreValidation" ], "orm-object-relational-model-annotations": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#orm-object-relational-model-annotations", + "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#extbase-annotation-orm", "ORM (object relational model) annotations" ], "cascade": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#cascade", + "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#extbase-annotation-cascade", "Cascade" ], "transient": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#transient", + "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#extbase-annotation-transient", "Transient" ], "lazy": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#lazy", + "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#extbase-annotation-lazy", "Lazy" ], "combining-annotations": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#combining-annotations", + "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#extbase-annotation-combine", "Combining annotations" ], "actioncontroller": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ActionController.html#actioncontroller", + "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ActionController.html#extbase-action-controller", "ActionController" ], "define-initialization-code": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ActionController.html#define-initialization-code", + "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ActionController.html#extbase_class_hierarchy-define_initialization_code", "Define initialization code" ], "catching-validation-errors-with-erroraction": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ActionController.html#catching-validation-errors-with-erroraction", + "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ActionController.html#extbase_class_hierarchy-catching_validation_errors_with_error_action", "Catching validation errors with errorAction" ], "forward-to-a-different-controller": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ActionController.html#forward-to-a-different-controller", + "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ActionController.html#extbase-action-controller-forward", "Forward to a different controller" ], "stop-further-processing-in-a-controller-s-action": [ @@ -41641,19 +41683,19 @@ "error-action": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ErrorAction.html#error-action", + "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ErrorAction.html#extbase_error_action", "Error action" ], "controller": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Controller.html#controller", + "ExtensionArchitecture\/Tutorials\/Tea\/Controller.html#extbase_tutorial_tea_controller", "Controller" ], "property-mapping": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Controller\/PropertyMapping.html#property-mapping", + "ExtensionArchitecture\/Extbase\/Reference\/Controller\/PropertyMapping.html#extbase_property_mapping", "Property mapping" ], "how-to-use-property-mappers": [ @@ -41665,7 +41707,7 @@ "type-converters": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Controller\/TypeConverter.html#type-converters", + "ExtensionArchitecture\/Extbase\/Reference\/Controller\/TypeConverter.html#extbase_Type_converters", "Type converters" ], "custom-type-converters": [ @@ -41677,13 +41719,13 @@ "model-domain": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Index.html#model-domain", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Index.html#extbase-domain", "Model \/ Domain" ], "model": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#model", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#extbase-model", "Model" ], "connecting-the-model-to-the-database": [ @@ -41707,7 +41749,7 @@ "nullable-relations": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#nullable-relations", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#extbase-model-nullable-relations", "Nullable relations" ], "1-1-relationship": [ @@ -41737,7 +41779,7 @@ "hydrating-objects": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#hydrating-objects", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#extbase-model-hydrating", "Hydrating objects" ], "creating-objects-with-constructor-arguments": [ @@ -41785,7 +41827,7 @@ "identifiers-in-localized-models": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#identifiers-in-localized-models", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#extbase-model-localizedUid", "Identifiers in localized models" ], "extending-existing-models": [ @@ -41797,13 +41839,13 @@ "use-arbitrary-database-tables-with-an-extbase-model": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Persistence.html#use-arbitrary-database-tables-with-an-extbase-model", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Persistence.html#extbase_manual_mapping", "Use arbitrary database tables with an Extbase model" ], "record-types-and-persistence": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Persistence.html#record-types-and-persistence", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Persistence.html#extbase-persistance-record-types", "Record types and persistence" ], "create-a-custom-model-for-a-core-table": [ @@ -41815,55 +41857,55 @@ "repository": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Repository.html#repository", + "ExtensionArchitecture\/Tutorials\/Tea\/Repository.html#extbase_tutorial_tea_repositoy", "Repository" ], "find-methods": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#find-methods", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#extbase-repository-find-methods", "Find methods" ], "custom-find-methods": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#custom-find-methods", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#extbase-repository-find-by-custom", "Custom find methods" ], "magic-find-methods": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#magic-find-methods", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#extbase-repository-find-by-magic", "Magic find methods" ], "query-settings": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#query-settings", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#extbase-repository-query-setting", "Query settings" ], "repository-api": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#repository-api", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#extbase-repository-api", "Repository API" ], "typo3querysettings-and-localization": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#typo3querysettings-and-localization", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#extbase-repository-localization", "Typo3QuerySettings and localization" ], "debugging-an-extbase-query": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#debugging-an-extbase-query", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#extbase-repository-debug-query", "Debugging an Extbase query" ], "validator": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Validator.html#validator", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Validator.html#extbase_domain_validator", "Validator" ], "custom-validator-for-a-property-of-the-domain-model": [ @@ -41887,61 +41929,61 @@ "file-upload": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#file-upload", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload", "File upload" ], "accessing-a-file-reference-in-an-extbase-domain-model": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#accessing-a-file-reference-in-an-extbase-domain-model", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_accessing", "Accessing a file reference in an Extbase domain model" ], "writing-filereference-entries": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#writing-filereference-entries", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_writing", "Writing FileReference entries" ], "manual-handling": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#manual-handling", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_writing-manual", "Manual handling" ], "registration-of-frontend-plugins": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/FrontendPlugins.html#registration-of-frontend-plugins", + "ExtensionArchitecture\/Extbase\/Reference\/FrontendPlugins.html#extbase_registration_of_frontend_plugins", "Registration of frontend plugins" ], "frontend-plugin-as-content-element": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/FrontendPlugins.html#frontend-plugin-as-content-element", + "ExtensionArchitecture\/Extbase\/Reference\/FrontendPlugins.html#extbase_frontend_plugin_content_element", "Frontend plugin as content element" ], "frontend-plugin-as-pure-typoscript": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/FrontendPlugins.html#frontend-plugin-as-pure-typoscript", + "ExtensionArchitecture\/Extbase\/Reference\/FrontendPlugins.html#extbase_frontend_plugin_typoscript", "Frontend plugin as pure TypoScript" ], "extbase-reference": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Index.html#extbase-reference", + "ExtensionArchitecture\/Extbase\/Reference\/Index.html#extbase_reference", "Extbase reference" ], "localization": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/Localization\/Index.html#localization", + "ExtensionArchitecture\/HowTo\/Localization\/Index.html#extension_localization", "Localization" ], "typoscript-configuration": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/TypoScriptConfiguration.html#typoscript-configuration", + "ExtensionArchitecture\/Extbase\/Reference\/TypoScriptConfiguration.html#extbase_typoscript_configuration", "TypoScript configuration" ], "plugin-configuration": [ @@ -41959,7 +42001,7 @@ "uri-builder-extbase": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/UriBuilder.html#uri-builder-extbase", + "ExtensionArchitecture\/Extbase\/Reference\/UriBuilder.html#extbase-uri-builder", "URI builder (Extbase)" ], "usage-in-an-extbase-controller": [ @@ -41977,13 +42019,13 @@ "example-in-extbase-viewhelper": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/UriBuilder.html#example-in-extbase-viewhelper", + "ExtensionArchitecture\/Extbase\/Reference\/UriBuilder.html#extbase-uri-builder-viewhelper", "Example in Extbase ViewHelper" ], "validation": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/Validation.html#validation", + "ExtensionArchitecture\/Extbase\/Reference\/Validation.html#extbase_validation", "Validation" ], "why-is-validation-needed": [ @@ -42025,7 +42067,7 @@ "view": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/View\/Index.html#view", + "ExtensionArchitecture\/Extbase\/Reference\/View\/Index.html#extbase-view", "View" ], "view-configuration": [ @@ -42037,7 +42079,7 @@ "responses": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Extbase\/Reference\/View\/Index.html#responses", + "ExtensionArchitecture\/Extbase\/Reference\/View\/Index.html#extbase_responses", "Responses" ], "html-response": [ @@ -42061,13 +42103,13 @@ "file-classes": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Classes\/Index.html#file-classes", + "ExtensionArchitecture\/FileStructure\/Classes\/Index.html#extension-classes", "Classes" ], "file-composer-json": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/ComposerJson.html#file-composer-json", + "ExtensionArchitecture\/FileStructure\/ComposerJson.html#files-composer-json", "composer.json" ], "about-the-composer-json-file": [ @@ -42079,13 +42121,13 @@ "minimal-composer-json": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/ComposerJson.html#minimal-composer-json", + "ExtensionArchitecture\/FileStructure\/ComposerJson.html#ext-composer-json-minimal", "Minimal composer.json" ], "extended-composer-json": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/ComposerJson.html#extended-composer-json", + "ExtensionArchitecture\/FileStructure\/ComposerJson.html#ext-composer-json-extended", "Extended composer.json" ], "name": [ @@ -42097,7 +42139,7 @@ "type": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/ComposerJson.html#type", + "ExtensionArchitecture\/FileStructure\/ComposerJson.html#ext-composer-json-property-type", "type" ], "license": [ @@ -42127,7 +42169,7 @@ "extra-typo3-cms-extension-key": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/ComposerJson.html#extra-typo3-cms-extension-key", + "ExtensionArchitecture\/FileStructure\/ComposerJson.html#ext-composer-json-property-extension-key", "extra.typo3\/cms.extension-key" ], "properties-no-longer-used": [ @@ -42151,37 +42193,37 @@ "file-ajaxroutes-php": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/Backend\/Index.html#file-ajaxroutes-php", + "ExtensionArchitecture\/FileStructure\/Configuration\/Backend\/Index.html#extension-configuration-backend-ajaxroutes", "AjaxRoutes.php" ], "file-routes-php": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/Backend\/Index.html#file-routes-php", + "ExtensionArchitecture\/FileStructure\/Configuration\/Backend\/Index.html#extension-configuration-backend-routes", "Routes.php" ], "file-modules-php": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/Backend\/Index.html#file-modules-php", + "ExtensionArchitecture\/FileStructure\/Configuration\/Backend\/Index.html#extension-configuration-backend-modules", "Modules.php" ], "file-contentsecuritypolicies-php": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/ContentSecurityPolicies.html#file-contentsecuritypolicies-php", + "ExtensionArchitecture\/FileStructure\/Configuration\/ContentSecurityPolicies.html#extension-configuration-ContentSecurityPolicies-php", "ContentSecurityPolicies.php" ], "file-extbase": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/Extbase\/Index.html#file-extbase", + "ExtensionArchitecture\/FileStructure\/Configuration\/Extbase\/Index.html#extension-configuration-extbase", "Extbase" ], "file-persistence": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/Extbase\/Persistence\/Index.html#file-persistence", + "ExtensionArchitecture\/FileStructure\/Configuration\/Extbase\/Persistence\/Index.html#extension-configuration-extbase-persistence", "Persistence" ], "file-classes-php": [ @@ -42193,37 +42235,37 @@ "file-icons-php": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/Icons.html#file-icons-php", + "ExtensionArchitecture\/FileStructure\/Configuration\/Icons.html#extension-configuration-Icons-php", "Icons.php" ], "file-configuration": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/Index.html#file-configuration", + "ExtensionArchitecture\/FileStructure\/Configuration\/Index.html#extension-configuration-files", "Configuration" ], "file-page-tsconfig": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/PageTsconfig.html#file-page-tsconfig", + "ExtensionArchitecture\/FileStructure\/Configuration\/PageTsconfig.html#extension-configuration-page_tsconfig", "page.tsconfig" ], "file-requestmiddlewares-php": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/RequestMiddlewaresPhp.html#file-requestmiddlewares-php", + "ExtensionArchitecture\/FileStructure\/Configuration\/RequestMiddlewaresPhp.html#extension-configuration-RequestMiddlewares-php", "RequestMiddlewares.php" ], "file-services-yaml": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/ServicesYaml.html#file-services-yaml", + "ExtensionArchitecture\/FileStructure\/Configuration\/ServicesYaml.html#extension-configuration-services-yaml", "Services.yaml" ], "file-tca": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/TCA\/Index.html#file-tca", + "ExtensionArchitecture\/FileStructure\/Configuration\/TCA\/Index.html#extension-configuration-tca", "TCA" ], "file-tablename-php": [ @@ -42235,55 +42277,55 @@ "file-overrides": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/TCA\/Index.html#file-overrides", + "ExtensionArchitecture\/FileStructure\/Configuration\/TCA\/Index.html#extension-configuration-tca-overrides", "Overrides" ], "file-tsconfig": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/TsConfig\/Index.html#file-tsconfig", + "ExtensionArchitecture\/FileStructure\/Configuration\/TsConfig\/Index.html#extension-configuration-tsconfig", "TsConfig" ], "file-typoscript": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/TypoScript\/Index.html#file-typoscript", + "ExtensionArchitecture\/FileStructure\/Configuration\/TypoScript\/Index.html#extension-configuration-typoscript", "TypoScript" ], "file-documentation": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Documentation\/Index.html#file-documentation", + "ExtensionArchitecture\/FileStructure\/Documentation\/Index.html#extension-files-documentation", "Documentation" ], "file-ext-conf-template-txt": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#file-ext-conf-template-txt", + "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#extension-options", "ext_conf_template.txt" ], "available-option-types": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#available-option-types", + "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#extension-options-available-option-types", "Available option types" ], "accessing-saved-options": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#accessing-saved-options", + "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#extension-options-api", "Accessing saved options" ], "nested-structure": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#nested-structure", + "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#extension-options-nested-structure", "Nested structure" ], "file-ext-emconf-php": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/ExtEmconf.html#file-ext-emconf-php", + "ExtensionArchitecture\/FileStructure\/ExtEmconf.html#ext_emconf-php", "ext_emconf.php" ], "deprecated-configuration": [ @@ -42295,7 +42337,7 @@ "file-ext-localconf-php": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/ExtLocalconf.html#file-ext-localconf-php", + "ExtensionArchitecture\/FileStructure\/ExtLocalconf.html#ext-localconf-php", "ext_localconf.php" ], "should-not-be-used-for": [ @@ -42325,85 +42367,85 @@ "file-ext-tables-php": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/ExtTables.html#file-ext-tables-php", + "ExtensionArchitecture\/FileStructure\/ExtTables.html#ext-tables-php", "ext_tables.php" ], "registering-a-scheduler-task": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/ExtTables.html#registering-a-scheduler-task", + "ExtensionArchitecture\/FileStructure\/ExtTables.html#extension-configuration-files-scheduler", "Registering a scheduler task" ], "registering-a-backend-module": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/ExtTables.html#registering-a-backend-module", + "ExtensionArchitecture\/FileStructure\/ExtTables.html#extension-configuration-files-backend-module", "Registering a backend module" ], "allowing-a-tables-records-to-be-added-to-standard-pages": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/ExtTables.html#allowing-a-tables-records-to-be-added-to-standard-pages", + "ExtensionArchitecture\/FileStructure\/ExtTables.html#extension-configuration-files-allow-table-standard", "Allowing a tables records to be added to Standard pages" ], "file-ext-tables-sql": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#file-ext-tables-sql", + "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#ext_tables-sql", "ext_tables.sql" ], "auto-generated-structure": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#auto-generated-structure", + "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#auto-generated-db-structure", "Auto-generated structure" ], "file-ext-tables-static-adt-sql": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/ExtTablesStaticAdtSql.html#file-ext-tables-static-adt-sql", + "ExtensionArchitecture\/FileStructure\/ExtTablesStaticAdtSql.html#ext_tables_static+adt.sql", "ext_tables_static+adt.sql" ], "file-ext-typoscript-constants-typoscript": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/ExtTyposcriptConstantsTyposcript.html#file-ext-typoscript-constants-typoscript", + "ExtensionArchitecture\/FileStructure\/ExtTyposcriptConstantsTyposcript.html#ext_typoscript_constants_typoscript", "ext_typoscript_constants.typoscript" ], "file-ext-typoscript-setup-typoscript": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/ExtTyposcriptSetupTyposcript.html#file-ext-typoscript-setup-typoscript", + "ExtensionArchitecture\/FileStructure\/ExtTyposcriptSetupTyposcript.html#ext_typoscript_setup_typoscript", "ext_typoscript_setup.typoscript" ], "reserved-file-names": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Index.html#reserved-file-names", + "ExtensionArchitecture\/FileStructure\/Index.html#extension-reserved-filenames", "Reserved file names" ], "reserved-folders": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Index.html#reserved-folders", + "ExtensionArchitecture\/FileStructure\/Index.html#extension-reserved-folders", "Reserved Folders" ], "file-resources": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Resources\/Index.html#file-resources", + "ExtensionArchitecture\/FileStructure\/Resources\/Index.html#extension-Resources", "Resources" ], "file-private": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Resources\/Private\/Index.html#file-private", + "ExtensionArchitecture\/FileStructure\/Resources\/Private\/Index.html#extension-Resources-Private", "Private" ], "file-language": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/FileStructure\/Resources\/Private\/Language.html#file-language", + "ExtensionArchitecture\/FileStructure\/Resources\/Private\/Language.html#extension-Resources-Private-Language", "Language" ], "locallang-xlf": [ @@ -42451,13 +42493,13 @@ "create-a-backend-module-with-core-functionality": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModule.html#create-a-backend-module-with-core-functionality", + "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModule.html#backend-modules-template-without-extbase", "Create a backend module with Core functionality" ], "basic-controller": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModule.html#basic-controller", + "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModule.html#backend-modules-template-without-extbase-manual-tagging", "Basic controller" ], "main-entry-point": [ @@ -42469,31 +42511,31 @@ "the-docheader": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModule.html#the-docheader", + "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModule.html#backend-modules-template-without-extbase-docheader", "The DocHeader" ], "template-example": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModule.html#template-example", - "Template example" + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations.html#template-example", + "Template Example" ], "create-a-backend-module-with-extbase": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModuleWithExtbase.html#create-a-backend-module-with-extbase", + "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModuleWithExtbase.html#backend-modules-template", "Create a backend module with Extbase" ], "backend-modules": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/BackendModule\/Index.html#backend-modules", + "ExtensionArchitecture\/HowTo\/BackendModule\/Index.html#backend-modules-how-to", "Backend modules" ], "backend-module-configuration-examples": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/BackendModule\/ModuleConfiguration.html#backend-module-configuration-examples", + "ExtensionArchitecture\/HowTo\/BackendModule\/ModuleConfiguration.html#backend-modules-configuration-examples", "Backend module configuration examples" ], "example-register-two-backend-modules": [ @@ -42505,13 +42547,43 @@ "check-if-the-modules-have-been-properly-registered": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/BackendModule\/ModuleConfiguration.html#check-if-the-modules-have-been-properly-registered", + "ExtensionArchitecture\/HowTo\/BackendModule\/ModuleConfiguration.html#backend-modules-configuration-example-debug", "Check if the modules have been properly registered" ], + "security-considerations": [ + "TYPO3 Explained", + "12.4", + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations.html#backend-modules-security", + "Security Considerations" + ], + "cross-site-request-forgery-csrf": [ + "TYPO3 Explained", + "12.4", + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations.html#cross-site-request-forgery-csrf", + "Cross-Site-Request-Forgery (CSRF)" + ], + "asserting-http-methods-in-custom-module-controllers": [ + "TYPO3 Explained", + "12.4", + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations.html#asserting-http-methods-in-custom-module-controllers", + "Asserting HTTP Methods in Custom Module Controllers" + ], + "enforcing-http-methods": [ + "TYPO3 Explained", + "12.4", + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations.html#enforcing-http-methods", + "Enforcing HTTP Methods" + ], + "asserting-http-methods-in-extbase-controllers": [ + "TYPO3 Explained", + "12.4", + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations.html#asserting-http-methods-in-extbase-controllers", + "Asserting HTTP Methods in Extbase Controllers" + ], "tutorial-backend-module-registration": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/BackendModule\/Tutorials.html#tutorial-backend-module-registration", + "ExtensionArchitecture\/HowTo\/BackendModule\/Tutorials.html#backend-modules-tutorials", "Tutorial - Backend Module Registration" ], "typoscript-and-constants": [ @@ -42547,61 +42619,61 @@ "creating-a-new-distribution": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#creating-a-new-distribution", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution", "Creating a new distribution" ], "concept-of-distributions": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#concept-of-distributions", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution_concept", "Concept of distributions" ], "kickstarting-the-distribution": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#kickstarting-the-distribution", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution-kickstart", "Kickstarting the Distribution" ], "configuring-the-distribution-display-in-the-em": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#configuring-the-distribution-display-in-the-em", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution-kickstart-image", "Configuring the Distribution Display in the EM" ], "fileadmin-files": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#fileadmin-files", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution-kickstart-fileadmin", "Fileadmin Files" ], "site-configuration": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#site-configuration", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution-kickstart-site", "Site configuration" ], "database-data": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#database-data", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution-kickstart-database", "Database Data" ], "distribution-configuration": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution-configuration", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution-kickstart-configuration", "Distribution Configuration" ], "test-your-distribution": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#test-your-distribution", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution-testing", "Test Your Distribution" ], "creating-a-new-extension": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/CreateNewExtension.html#creating-a-new-extension", + "ExtensionArchitecture\/HowTo\/CreateNewExtension.html#extension-create-new", "Creating a new extension" ], "kickstarting-the-extension": [ @@ -42619,25 +42691,25 @@ "custom-extension-repository-1": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/CustomExtensionRepository.html#custom-extension-repository-1", + "ExtensionArchitecture\/HowTo\/CustomExtensionRepository.html#custom-extension-repository", "Custom Extension Repository" ], "adding-documentation": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/Documentation.html#adding-documentation", + "ExtensionArchitecture\/HowTo\/Documentation.html#extension-documentation-readme", "Adding documentation" ], "tools": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/Documentation.html#tools", + "ExtensionArchitecture\/HowTo\/Documentation.html#extension-documentation-tools", "Tools" ], "listen-to-an-event": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/Events\/Index.html#listen-to-an-event", + "ExtensionArchitecture\/HowTo\/Events\/Index.html#extension-development-event-listener", "Listen to an event" ], "dispatch-an-event": [ @@ -42649,7 +42721,7 @@ "extending-an-extbase-model": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-an-extbase-model", + "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-extbase-model", "Extending an Extbase model" ], "quick-overview": [ @@ -42667,43 +42739,43 @@ "are-you-the-only-one-trying-to-extend-that-model": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#are-you-the-only-one-trying-to-extend-that-model", + "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-extbase-model_find_other_extending_models", "Are you the only one trying to extend that model?" ], "find-the-original-model": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#find-the-original-model", + "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-extbase-model_find_original_model", "Find the original model" ], "find-the-original-repository": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#find-the-original-repository", + "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-extbase-model_find_original_repository", "Find the original repository" ], "extend-the-original-model": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extend-the-original-model", + "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-extbase-model_extend_original_model", "Extend the original model" ], "register-the-extended-model": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#register-the-extended-model", + "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-extbase-model_register_extended_model", "Register the extended model" ], "extend-the-original-repository": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extend-the-original-repository", + "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-extbase-model_extend_original_repository", "Extend the original repository" ], "register-the-extended-repository": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#register-the-extended-repository", + "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-extbase-model_register_extended_repository", "Register the extended repository" ], "alternative-strategies-to-extend-extbase-models": [ @@ -42715,55 +42787,55 @@ "customization-examples": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/Examples\/Index.html#customization-examples", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/Examples\/Index.html#extending-examples", "Customization Examples" ], "example-1-extending-the-fe-users-table": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/Examples\/Index.html#example-1-extending-the-fe-users-table", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/Examples\/Index.html#extending-examples-feusers", "Example 1: Extending the fe_users table" ], "example-2-extending-the-tt-content-table": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/Examples\/Index.html#example-2-extending-the-tt-content-table", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/Examples\/Index.html#extending-examples-ttcontent", "Example 2: Extending the tt_content Table" ], "extending-the-tca-array": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/Index.html#extending-the-tca-array", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/Index.html#extending-tca", "Extending the TCA array" ], "storing-the-changes": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/StoringChanges\/Index.html#storing-the-changes", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/StoringChanges\/Index.html#storing-changes", "Storing the changes" ], "storing-in-extensions": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/StoringChanges\/Index.html#storing-in-extensions", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/StoringChanges\/Index.html#storing-changes-extension", "Storing in extensions" ], "storing-in-the-file-overrides-folder": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/StoringChanges\/Index.html#storing-in-the-file-overrides-folder", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/StoringChanges\/Index.html#storing-changes-extension-overrides", "Storing in the Overrides\/ folder" ], "changing-the-tca-on-the-fly": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/StoringChanges\/Index.html#changing-the-tca-on-the-fly", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/StoringChanges\/Index.html#storing-changes-on-the-fly", "Changing the TCA \"on the fly\"" ], "verifying-the-tca": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/Verifying\/Index.html#verifying-the-tca", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/Verifying\/Index.html#verifying", "Verifying the TCA" ], "abstractplugin": [ @@ -42775,31 +42847,31 @@ "frontend-plugin": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/FrontendPlugin\/Index.html#frontend-plugin", + "ExtensionArchitecture\/HowTo\/FrontendPlugin\/Index.html#frontend_plugin", "Frontend plugin" ], "howto": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/Index.html#howto", + "ExtensionArchitecture\/HowTo\/Index.html#extension-howto", "Howto" ], "multi-language-fluid-templates": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#multi-language-fluid-templates", + "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#extension-localization-fluid", "Multi-language Fluid templates" ], "the-translation-viewhelper-html-f-translate": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#the-translation-viewhelper-html-f-translate", + "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#f-translate", "The translation ViewHelper f:translate" ], "the-translation-viewhelper-in-extbase": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#the-translation-viewhelper-in-extbase", + "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#f-translate-extbase", "The translation ViewHelper in Extbase" ], "source-of-the-language-file": [ @@ -42811,7 +42883,7 @@ "insert-arguments-into-translated-strings": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#insert-arguments-into-translated-strings", + "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#extension-localization-fluid-arguments", "Insert arguments into translated strings" ], "argument-types": [ @@ -42829,13 +42901,13 @@ "localization-of-date-output": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#localization-of-date-output", + "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#extension-localization-fluid-date", "Localization of date output" ], "localization-in-php": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/Localization\/Php.html#localization-in-php", + "ExtensionArchitecture\/HowTo\/Localization\/Php.html#extension-localization-php", "Localization in PHP" ], "localization-in-plain-php": [ @@ -42865,79 +42937,79 @@ "localization-in-extbase": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/Localization\/Php.html#localization-in-extbase", + "ExtensionArchitecture\/HowTo\/Localization\/Php.html#extension-localization-extbase", "Localization in Extbase" ], "provide-localized-strings-via-json-by-a-middleware": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/Localization\/Php.html#provide-localized-strings-via-json-by-a-middleware", + "ExtensionArchitecture\/HowTo\/Localization\/Php.html#example-localization-middleware", "Provide localized strings via JSON by a middleware" ], "output-localized-strings-with-typoscript": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/Localization\/TypoScript.html#output-localized-strings-with-typoscript", + "ExtensionArchitecture\/HowTo\/Localization\/TypoScript.html#extension-localization-typoscript-gettext", "Output localized strings with Typoscript" ], "typoscript-conditions-based-on-the-current-language": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/Localization\/TypoScript.html#typoscript-conditions-based-on-the-current-language", + "ExtensionArchitecture\/HowTo\/Localization\/TypoScript.html#extension-localization-typoscript-conditions", "TypoScript conditions based on the current language" ], "changing-localized-terms-using-typoscript": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/Localization\/TypoScript.html#changing-localized-terms-using-typoscript", + "ExtensionArchitecture\/HowTo\/Localization\/TypoScript.html#localization-typoscript-LOCAL_LANG", "Changing localized terms using TypoScript" ], "typoscript-stdwrap-lang": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/Localization\/TypoScript.html#typoscript-stdwrap-lang", + "ExtensionArchitecture\/HowTo\/Localization\/TypoScript.html#localization-typoscript-stdWrap.lang", "stdWrap.lang" ], "publish-your-extension": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#publish-your-extension", + "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#publish-extension", "Publish your extension" ], "git": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#git", + "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#publishExtensionGit", "Git" ], "packagist": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#packagist", + "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#publishExtensionPackagist", "Packagist" ], "ter": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#ter", + "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#publishExtensionTer", "TER" ], "documentation": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#documentation", + "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#publishExtensionDocumentation", "Documentation" ], "crowdin": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#crowdin", + "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#publishExtensionTranslation", "Crowdin" ], "publish-your-extension-in-the-ter": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/PublishExtension\/PublishToTER\/Index.html#publish-your-extension-in-the-ter", + "ExtensionArchitecture\/HowTo\/PublishExtension\/PublishToTER\/Index.html#publish-to-ter", "Publish your extension in the TER" ], "before-publishing-extension-think-about": [ @@ -42967,13 +43039,13 @@ "http-requests-to-external-sources": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/RestRequests\/Index.html#http-requests-to-external-sources", + "ExtensionArchitecture\/HowTo\/RestRequests\/Index.html#http", "HTTP requests to external sources" ], "custom-middleware-handlers": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/RestRequests\/Index.html#custom-middleware-handlers", + "ExtensionArchitecture\/HowTo\/RestRequests\/Index.html#http-custom-handlers", "Custom middleware handlers" ], "http-utility-methods": [ @@ -42997,7 +43069,7 @@ "extension-scanner-1": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/ExtensionScanner.html#extension-scanner-1", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/ExtensionScanner.html#extension-scanner", "Extension scanner" ], "goals-and-non-goals": [ @@ -43033,13 +43105,13 @@ "update-your-extension-for-new-typo3-versions": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/Index.html#update-your-extension-for-new-typo3-versions", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/Index.html#update-extension", "Update your extension for new TYPO3 versions" ], "the-concept-of-upgrade-wizards": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Concept.html#the-concept-of-upgrade-wizards", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Concept.html#upgrade-wizards-concept", "The concept of upgrade wizards" ], "best-practice": [ @@ -43051,55 +43123,55 @@ "creating-upgrade-wizards": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#creating-upgrade-wizards", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#upgrade-wizard-interface", "Creating upgrade wizards" ], "upgradewizardinterface": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#upgradewizardinterface", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#upgrade-wizards-interface", "UpgradeWizardInterface" ], "wizard-identifier": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#wizard-identifier", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#upgrade-wizards-identifier", "Wizard identifier" ], "marking-wizard-as-done": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#marking-wizard-as-done", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#repeatable-interface", "Marking wizard as done" ], "generating-output": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#generating-output", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#uprade-wizards-chatty-interface", "Generating output" ], "executing-the-wizard": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#executing-the-wizard", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#upgrade_wizard_execute", "Executing the wizard" ], "upgrade-wizards-1": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Index.html#upgrade-wizards-1", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Index.html#upgrade-wizards", "Upgrade wizards" ], "extension-development-1": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Index.html#extension-development-1", + "ExtensionArchitecture\/Index.html#extension-development", "Extension development" ], "site-package-1": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/SitePackage\/Index.html#site-package-1", + "ExtensionArchitecture\/SitePackage\/Index.html#site-package", "Site package" ], "site-package-tutorial": [ @@ -43111,13 +43183,13 @@ "site-package-builder": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/SitePackage\/Index.html#site-package-builder", + "ExtensionArchitecture\/SitePackage\/Index.html#extension-sitepackage-builder", "Site package builder" ], "introduction-into-using-site-packages": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/SitePackage\/Introduction.html#introduction-into-using-site-packages", + "ExtensionArchitecture\/SitePackage\/Introduction.html#site-package-introduction", "Introduction into using site packages" ], "site-package-benefits": [ @@ -43129,37 +43201,37 @@ "encapsulation": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/SitePackage\/Introduction.html#encapsulation", + "ExtensionArchitecture\/SitePackage\/Introduction.html#site-package-encapsulation", "Encapsulation" ], "dependency-management": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/SitePackage\/Introduction.html#dependency-management", + "ExtensionArchitecture\/SitePackage\/Introduction.html#site-package-di", "Dependency management" ], "clean-separation-from-the-userspace": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/SitePackage\/Introduction.html#clean-separation-from-the-userspace", + "ExtensionArchitecture\/SitePackage\/Introduction.html#site-package-separation", "Clean separation from the userspace" ], "deployment": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/SitePackage\/Introduction.html#deployment", + "ExtensionArchitecture\/SitePackage\/Introduction.html#site-package-deployment", "Deployment" ], "distributable": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/SitePackage\/Introduction.html#distributable", + "ExtensionArchitecture\/SitePackage\/Introduction.html#site-package-distributable", "Distributable" ], "creating-a-new-database-model": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/ComponentsOfTYPO3Extension\/CreatingDatabaseModel.html#creating-a-new-database-model", + "ExtensionArchitecture\/Tutorials\/ComponentsOfTYPO3Extension\/CreatingDatabaseModel.html#creating-database-model", "Creating a new database model" ], "create-sql-database-schema": [ @@ -43177,13 +43249,13 @@ "components-of-a-typo3-extension": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/ComponentsOfTYPO3Extension\/Index.html#components-of-a-typo3-extension", + "ExtensionArchitecture\/Tutorials\/ComponentsOfTYPO3Extension\/Index.html#extension-components", "Components of a TYPO3 extension" ], "making-data-persistable-by-extbase": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/ComponentsOfTYPO3Extension\/MakingDataPersistable.html#making-data-persistable-by-extbase", + "ExtensionArchitecture\/Tutorials\/ComponentsOfTYPO3Extension\/MakingDataPersistable.html#making-data-persistable", "Making data persistable by Extbase" ], "create-an-entity-class-and-repository": [ @@ -43195,7 +43267,7 @@ "making-the-extension-installable-1": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/ComponentsOfTYPO3Extension\/MakingTheExtensionInstallable.html#making-the-extension-installable-1", + "ExtensionArchitecture\/Tutorials\/ComponentsOfTYPO3Extension\/MakingTheExtensionInstallable.html#making-the-extension-installable", "Making the extension installable" ], "add-example-extension-composer-json": [ @@ -43213,31 +43285,31 @@ "extension-development-with-extbase": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/Extbase.html#extension-development-with-extbase", + "ExtensionArchitecture\/Tutorials\/Extbase.html#extbase_tutorials", "Extension development with Extbase" ], "tutorials": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/Index.html#tutorials", + "ExtensionArchitecture\/Tutorials\/Index.html#extension-tutorials", "Tutorials" ], "kickstart-an-extension": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/Kickstart\/Index.html#kickstart-an-extension", + "ExtensionArchitecture\/Tutorials\/Kickstart\/Index.html#extension-kickstart", "Kickstart an extension" ], "create-a-new-backend-controller": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/Kickstart\/Make\/BackendController.html#create-a-new-backend-controller", + "ExtensionArchitecture\/Tutorials\/Kickstart\/Make\/BackendController.html#extension-make-backend-controller", "Create a new backend controller" ], "create-a-new-console-command": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/Kickstart\/Make\/ConsoleCommand.html#create-a-new-console-command", + "ExtensionArchitecture\/Tutorials\/Kickstart\/Make\/ConsoleCommand.html#extension-make-console-command", "Create a new console command" ], "have-a-look-at-the-created-files": [ @@ -43255,13 +43327,13 @@ "make": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/Kickstart\/Make\/Index.html#make", + "ExtensionArchitecture\/Tutorials\/Kickstart\/Make\/Index.html#extension-make", "Make" ], "kickstart-a-typo3-extension-with-make": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/Kickstart\/Make\/Index.html#kickstart-a-typo3-extension-with-make", + "ExtensionArchitecture\/Tutorials\/Kickstart\/Make\/Index.html#extension-make-kickstart", "Kickstart a TYPO3 Extension with \"Make\"" ], "1-install-make": [ @@ -43303,7 +43375,7 @@ "create-a-directory-structure": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/Tea\/DirectoryStructure.html#create-a-directory-structure", + "ExtensionArchitecture\/Tutorials\/Tea\/DirectoryStructure.html#extbase_tutorial_tea_directory_structure", "Create a directory structure" ], "directory-file-classes": [ @@ -43339,7 +43411,7 @@ "create-an-extension": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/Tea\/ExtensionConfiguration.html#create-an-extension", + "ExtensionArchitecture\/Tutorials\/Tea\/ExtensionConfiguration.html#extbase_tutorial_tea_extension_configuration", "Create an extension" ], "install-the-extension-locally": [ @@ -43351,61 +43423,61 @@ "tea-in-a-nutshell": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Index.html#tea-in-a-nutshell", + "ExtensionArchitecture\/Tutorials\/Tea\/Index.html#extbase_tutorial_tea", "Tea in a nutshell" ], "model-a-bag-of-tea": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#model-a-bag-of-tea", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model", "Model: a bag of tea" ], "the-database-model": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#the-database-model", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_database", "The database model" ], "tca-php-ctrl-settings-for-the-complete-table": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#tca-php-ctrl-settings-for-the-complete-table", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_ctrl", "TCA ctrl - Settings for the complete table" ], "php-title": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#php-title", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_ctrl_title", "title" ], "php-label": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#php-label", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_ctrl_label", "label" ], "php-tstamp-php-deleted": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#php-tstamp-php-deleted", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_ctrl_others", "tstamp, deleted, ..." ], "tca-php-columns-defining-the-fields": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#tca-php-columns-defining-the-fields", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_columns", "TCA columns - Defining the fields" ], "the-php-image-field": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#the-php-image-field", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_columns_image", "The image field" ], "tca-php-types-configure-the-input-form": [ "TYPO3 Explained", "12.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#tca-php-types-configure-the-input-form", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_types", "TCA types - Configure the input form" ], "result-the-complete-tca": [ @@ -43429,127 +43501,127 @@ "typo3-explained": [ "TYPO3 Explained", "12.4", - "Index.html#typo3-explained", + "Index.html#api-overview", "TYPO3 Explained" ], "introduction-1": [ "TYPO3 Explained", "12.4", - "Introduction\/Index.html#introduction-1", + "Introduction\/Index.html#introduction", "Introduction" ], "a-basic-typo3-installation": [ "TYPO3 Explained", "12.4", - "Introduction\/Index.html#a-basic-typo3-installation", + "Introduction\/Index.html#introduction-installation", "A basic TYPO3 installation" ], "a-basic-site-package": [ "TYPO3 Explained", "12.4", - "Introduction\/Index.html#a-basic-site-package", + "Introduction\/Index.html#introduction-site-package", "A basic site package" ], "getting-help-with-typo3": [ "TYPO3 Explained", "12.4", - "Introduction\/Index.html#getting-help-with-typo3", + "Introduction\/Index.html#introduction-getting-help", "Getting help with TYPO3" ], "backup-strategy": [ "TYPO3 Explained", "12.4", - "Security\/Backups\/Index.html#backup-strategy", + "Security\/Backups\/Index.html#security-backups", "Backup strategy" ], "components-included-in-the-backups": [ "TYPO3 Explained", "12.4", - "Security\/Backups\/Index.html#components-included-in-the-backups", + "Security\/Backups\/Index.html#security-backup-components", "Components included in the backups" ], "time-plan-and-retention-time": [ "TYPO3 Explained", "12.4", - "Security\/Backups\/Index.html#time-plan-and-retention-time", + "Security\/Backups\/Index.html#security-backups-time-plan", "Time plan and retention time" ], "backup-location": [ "TYPO3 Explained", "12.4", - "Security\/Backups\/Index.html#backup-location", + "Security\/Backups\/Index.html#security-backup-location", "Backup location" ], "further-considerations": [ "TYPO3 Explained", "12.4", - "Security\/Backups\/Index.html#further-considerations", + "Security\/Backups\/Index.html#security-backups-further-considerations", "Further considerations" ], "general-guidelines": [ "TYPO3 Explained", "12.4", - "Security\/GeneralGuidelines\/Index.html#general-guidelines", + "Security\/GeneralGuidelines\/Index.html#security-general-guidelines", "General guidelines" ], "secure-passwords": [ "TYPO3 Explained", "12.4", - "Security\/GeneralGuidelines\/Index.html#secure-passwords", + "Security\/GeneralGuidelines\/Index.html#security-secure-passwords", "Secure passwords" ], "operating-system-and-browser-version": [ "TYPO3 Explained", "12.4", - "Security\/GeneralGuidelines\/Index.html#operating-system-and-browser-version", + "Security\/GeneralGuidelines\/Index.html#security-update-browser", "Operating System and Browser Version" ], "communication": [ "TYPO3 Explained", "12.4", - "Security\/GeneralGuidelines\/Index.html#communication", + "Security\/GeneralGuidelines\/Index.html#security-communication", "Communication" ], "react-quickly": [ "TYPO3 Explained", "12.4", - "Security\/GeneralGuidelines\/Index.html#react-quickly", + "Security\/GeneralGuidelines\/Index.html#security-react-quickly", "React Quickly" ], "keep-the-typo3-core-up-to-date": [ "TYPO3 Explained", "12.4", - "Security\/GeneralGuidelines\/Index.html#keep-the-typo3-core-up-to-date", + "Security\/GeneralGuidelines\/Index.html#security-updating-typo3", "Keep the TYPO3 Core up-to-date" ], "keep-typo3-extensions-up-to-date": [ "TYPO3 Explained", "12.4", - "Security\/GeneralGuidelines\/Index.html#keep-typo3-extensions-up-to-date", + "Security\/GeneralGuidelines\/Index.html#security-updating-extensions", "Keep TYPO3 Extensions Up-to-date" ], "use-staging-servers-for-developments-and-tests": [ "TYPO3 Explained", "12.4", - "Security\/GeneralGuidelines\/Index.html#use-staging-servers-for-developments-and-tests", + "Security\/GeneralGuidelines\/Index.html#security-staging-servers", "Use staging servers for developments and tests" ], "typo3-versions-and-lifecycle": [ "TYPO3 Explained", "12.4", - "Security\/GeneralInformation\/Index.html#typo3-versions-and-lifecycle", + "Security\/GeneralInformation\/Index.html#security-typo3-versions", "TYPO3 versions and lifecycle" ], "difference-between-core-and-extensions": [ "TYPO3 Explained", "12.4", - "Security\/GeneralInformation\/Index.html#difference-between-core-and-extensions", + "Security\/GeneralInformation\/Index.html#security-difference-core-extensions", "Difference between Core and extensions" ], "announcement-of-updates-and-security-fixes": [ "TYPO3 Explained", "12.4", - "Security\/GeneralInformation\/Index.html#announcement-of-updates-and-security-fixes", + "Security\/GeneralInformation\/Index.html#security-announcement-updates", "Announcement of updates and security fixes" ], "security-bulletins": [ @@ -43573,13 +43645,13 @@ "content-security-policy": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesAdministrators\/ContentSecurityPolicy.html#content-security-policy", + "Security\/GuidelinesAdministrators\/ContentSecurityPolicy.html#security-content-security-policy", "Content security policy" ], "database-access": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesAdministrators\/DatabaseAccess.html#database-access", + "Security\/GuidelinesAdministrators\/DatabaseAccess.html#security-database-access", "Database access" ], "secure-passwords-and-minimum-access-privileges-with-mysql": [ @@ -43609,7 +43681,7 @@ "disable-directory-indexing": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesAdministrators\/DirectoryIndexing.html#disable-directory-indexing", + "Security\/GuidelinesAdministrators\/DirectoryIndexing.html#security-directory-indexing", "Disable directory indexing" ], "apache-web-server": [ @@ -43633,7 +43705,7 @@ "encrypted-client-server-communication": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesAdministrators\/EncryptedCommunication.html#encrypted-client-server-communication", + "Security\/GuidelinesAdministrators\/EncryptedCommunication.html#security-encrypted-client-server-connection", "Encrypted Client\/server Communication" ], "data-classification": [ @@ -43651,19 +43723,19 @@ "file-directory-permissions": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesAdministrators\/FileDirectoryPermissions.html#file-directory-permissions", + "Security\/GuidelinesAdministrators\/FileDirectoryPermissions.html#security-file-directory-permissions", "File\/directory permissions" ], "file-extension-handling": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesAdministrators\/FileExtensionHandling.html#file-extension-handling", + "Security\/GuidelinesAdministrators\/FileExtensionHandling.html#security-file-extension-handling", "File extension handling" ], "further-actions": [ "TYPO3 Explained", "12.4", - "Security\/HackedSite\/FurtherActions.html#further-actions", + "Security\/HackedSite\/FurtherActions.html#security-further-actions", "Further actions" ], "hosting-environment": [ @@ -43687,19 +43759,19 @@ "defending-against-clickjacking": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesAdministrators\/FurtherActions.html#defending-against-clickjacking", + "Security\/GuidelinesAdministrators\/FurtherActions.html#security-administrators-furtheractions-clickjacking", "Defending Against Clickjacking" ], "guidelines-for-system-administrators": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesAdministrators\/Index.html#guidelines-for-system-administrators", + "Security\/GuidelinesAdministrators\/Index.html#security-administrators", "Guidelines for System Administrators" ], "general-rules": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/Index.html#general-rules", + "Security\/GuidelinesIntegrators\/Index.html#security-integrator-rules", "General rules" ], "further-topics": [ @@ -43711,19 +43783,19 @@ "integrity-of-typo3-packages": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesAdministrators\/IntegrityOfTypo3Packages.html#integrity-of-typo3-packages", + "Security\/GuidelinesAdministrators\/IntegrityOfTypo3Packages.html#security-integrity-packages", "Integrity of TYPO3 Packages" ], "other-services": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesAdministrators\/OtherServices.html#other-services", + "Security\/GuidelinesAdministrators\/OtherServices.html#security-other-services", "Other Services" ], "restrict-access-to-files-on-a-server-level": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesAdministrators\/RestrictAccessToFiles.html#restrict-access-to-files-on-a-server-level", + "Security\/GuidelinesAdministrators\/RestrictAccessToFiles.html#security-restrict-access-server-level", "Restrict access to files on a server-level" ], "verification-of-access-restrictions": [ @@ -43747,19 +43819,19 @@ "role-definition": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/Index.html#role-definition", + "Security\/GuidelinesIntegrators\/Index.html#security-integrator-definition", "Role definition" ], "guidelines-for-editors": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesEditors\/Index.html#guidelines-for-editors", + "Security\/GuidelinesEditors\/Index.html#security-editors", "Guidelines for editors" ], "backend-access": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesEditors\/Index.html#backend-access", + "Security\/GuidelinesEditors\/Index.html#security-backend-access", "Backend access" ], "username": [ @@ -43795,25 +43867,25 @@ "restriction-to-required-functions": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesEditors\/Index.html#restriction-to-required-functions", + "Security\/GuidelinesEditors\/Index.html#security-restrict-to-required-functions", "Restriction to required functions" ], "secure-connection": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesEditors\/Index.html#secure-connection", + "Security\/GuidelinesEditors\/Index.html#security-secure-connection", "Secure connection" ], "logout": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesEditors\/Index.html#logout", + "Security\/GuidelinesEditors\/Index.html#security-logout", "Logout" ], "guidelines-for-extension-development": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesExtensionDevelopment\/Index.html#guidelines-for-extension-development", + "Security\/GuidelinesExtensionDevelopment\/Index.html#security-extension-development", "Guidelines for extension development" ], "never-trust-user-input": [ @@ -43831,7 +43903,7 @@ "trusted-properties-extbase-only": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesExtensionDevelopment\/Index.html#trusted-properties-extbase-only", + "Security\/GuidelinesExtensionDevelopment\/Index.html#trusted-properties", "Trusted properties (Extbase Only)" ], "prevent-cross-site-scripting": [ @@ -43843,19 +43915,19 @@ "users-and-access-privileges": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/AccessPrivileges.html#users-and-access-privileges", + "Security\/GuidelinesIntegrators\/AccessPrivileges.html#security-access-privileges", "Users and access privileges" ], "content-elements": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/ContentElements.html#content-elements", + "Security\/GuidelinesIntegrators\/ContentElements.html#security-content-elements", "Content elements" ], "typo3-extensions": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/Extensions.html#typo3-extensions", + "Security\/GuidelinesIntegrators\/Extensions.html#security-extensions", "TYPO3 extensions" ], "stable-and-reviewed-extensions": [ @@ -43879,7 +43951,7 @@ "low-level-extensions": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/Extensions.html#low-level-extensions", + "Security\/GuidelinesIntegrators\/Extensions.html#security-extensions-low-level", "Low-level extensions" ], "check-for-extension-updates-regularly": [ @@ -43897,79 +43969,79 @@ "global-typo3-configuration-options": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#global-typo3-configuration-options", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options", "Global TYPO3 configuration options" ], "displayerrors": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#displayerrors", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-displayErrors", "displayErrors" ], "devipmask": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#devipmask", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-devIpMask", "devIPmask" ], "filedenypattern": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#filedenypattern", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-fileDenyPattern", "fileDenyPattern" ], "ipmasklist": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#ipmasklist", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-IPmaskList", "IPmaskList" ], "lockip-lockipv6": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#lockip-lockipv6", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-lockIP", "lockIP \/ lockIPv6" ], "lockssl": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#lockssl", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-lockSSL", "lockSSL" ], "trustedhostspattern": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#trustedhostspattern", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-trustedHostsPattern", "trustedHostsPattern" ], "warning-email-addr": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#warning-email-addr", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-warning-email-addr", "warning_email_addr" ], "warning-mode": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#warning-mode", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-warning-mode", "warning_mode" ], "guidelines-for-typo3-integrators": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/Index.html#guidelines-for-typo3-integrators", + "Security\/GuidelinesIntegrators\/Index.html#security-integrators", "Guidelines for TYPO3 integrators" ], "install-tool": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/InstallTool.html#install-tool", + "Security\/GuidelinesIntegrators\/InstallTool.html#security-install-tool", "Install tool" ], "the-install-tool-password": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/InstallTool.html#the-install-tool-password", + "Security\/GuidelinesIntegrators\/InstallTool.html#security-install-tool-password", "The Install Tool password" ], "typo3-core-updates": [ @@ -43981,31 +44053,31 @@ "encryption-key": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/InstallTool.html#encryption-key", + "Security\/GuidelinesIntegrators\/InstallTool.html#security-encryption-key", "Encryption key" ], "reports-and-logs": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/ReportsAndLogs.html#reports-and-logs", + "Security\/GuidelinesIntegrators\/ReportsAndLogs.html#security-reports-logs", "Reports and logs" ], "security-related-warnings-after-login": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/SecurityWarningsAfterLogin.html#security-related-warnings-after-login", + "Security\/GuidelinesIntegrators\/SecurityWarningsAfterLogin.html#security-security-warnings", "Security-related warnings after login" ], "sql-injection": [ "TYPO3 Explained", "12.4", - "Security\/TypesOfThreats\/Index.html#sql-injection", + "Security\/TypesOfThreats\/Index.html#security-sql-injection", "SQL injection" ], "cross-site-scripting-xss": [ "TYPO3 Explained", "12.4", - "Security\/TypesOfThreats\/Index.html#cross-site-scripting-xss", + "Security\/TypesOfThreats\/Index.html#security-xss", "Cross-site scripting (XSS)" ], "external-file-inclusion": [ @@ -44017,31 +44089,31 @@ "clickjacking": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/Typoscript.html#clickjacking", + "Security\/GuidelinesIntegrators\/Typoscript.html#security-typoscript-clickjacking", "Clickjacking" ], "integrity-of-external-javascript-files": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/Typoscript.html#integrity-of-external-javascript-files", + "Security\/GuidelinesIntegrators\/Typoscript.html#security-typoscript-integrity-js", "Integrity of external JavaScript files" ], "risk-of-externally-hosted-javascript-libraries": [ "TYPO3 Explained", "12.4", - "Security\/GuidelinesIntegrators\/Typoscript.html#risk-of-externally-hosted-javascript-libraries", + "Security\/GuidelinesIntegrators\/Typoscript.html#security-typoscript-risk-external-js", "Risk of externally hosted JavaScript libraries" ], "analyzing-a-hacked-site": [ "TYPO3 Explained", "12.4", - "Security\/HackedSite\/Analyze.html#analyzing-a-hacked-site", + "Security\/HackedSite\/Analyze.html#security-analyze", "Analyzing a hacked site" ], "detect-a-hacked-website": [ "TYPO3 Explained", "12.4", - "Security\/HackedSite\/Detect.html#detect-a-hacked-website", + "Security\/HackedSite\/Detect.html#security-detect", "Detect a hacked website" ], "manipulated-frontpage": [ @@ -44071,13 +44143,13 @@ "reports-from-visitors-or-users": [ "TYPO3 Explained", "12.4", - "Security\/HackedSite\/Detect.html#reports-from-visitors-or-users", + "Security\/HackedSite\/Detect.html#security-detect-reports-from-visitors", "Reports from visitors or users" ], "search-engines-or-browsers-warn-about-your-site": [ "TYPO3 Explained", "12.4", - "Security\/HackedSite\/Detect.html#search-engines-or-browsers-warn-about-your-site", + "Security\/HackedSite\/Detect.html#security-detect-reports-from-search-engines", "Search engines or browsers warn about your site" ], "leaked-credentials": [ @@ -44089,7 +44161,7 @@ "detect-analyze-and-repair-a-hacked-site": [ "TYPO3 Explained", "12.4", - "Security\/HackedSite\/Index.html#detect-analyze-and-repair-a-hacked-site", + "Security\/HackedSite\/Index.html#security-detect-analyze-repair", "Detect, analyze and repair a hacked site" ], "steps-to-take-when-a-site-got-hacked": [ @@ -44101,25 +44173,25 @@ "repair-restore": [ "TYPO3 Explained", "12.4", - "Security\/HackedSite\/RepairRestore.html#repair-restore", + "Security\/HackedSite\/RepairRestore.html#security-repair-restore", "Repair\/restore" ], "take-the-website-offline": [ "TYPO3 Explained", "12.4", - "Security\/HackedSite\/TakeOffline.html#take-the-website-offline", + "Security\/HackedSite\/TakeOffline.html#security-take-offline", "Take the website offline" ], "security-guidelines": [ "TYPO3 Explained", "12.4", - "Security\/Index.html#security-guidelines", + "Security\/Index.html#security", "Security guidelines" ], "reporting-a-security-issue": [ "TYPO3 Explained", "12.4", - "Security\/SecurityTeam\/Index.html#reporting-a-security-issue", + "Security\/SecurityTeam\/Index.html#security-team-contact", "Reporting a security issue" ], "target-audience": [ @@ -44131,7 +44203,7 @@ "the-typo3-security-team": [ "TYPO3 Explained", "12.4", - "Security\/SecurityTeam\/Index.html#the-typo3-security-team", + "Security\/SecurityTeam\/Index.html#security-team", "The TYPO3 Security Team" ], "extension-review": [ @@ -44143,7 +44215,7 @@ "incident-handling": [ "TYPO3 Explained", "12.4", - "Security\/SecurityTeam\/Index.html#incident-handling", + "Security\/SecurityTeam\/Index.html#security-incident-handling", "Incident handling" ], "security-issues-in-the-typo3-core": [ @@ -44161,37 +44233,37 @@ "types-of-security-threats": [ "TYPO3 Explained", "12.4", - "Security\/TypesOfThreats\/Index.html#types-of-security-threats", + "Security\/TypesOfThreats\/Index.html#security-threats", "Types of Security Threats" ], "information-disclosure": [ "TYPO3 Explained", "12.4", - "Security\/TypesOfThreats\/Index.html#information-disclosure", + "Security\/TypesOfThreats\/Index.html#security-information-disclosure", "Information disclosure" ], "identity-theft": [ "TYPO3 Explained", "12.4", - "Security\/TypesOfThreats\/Index.html#identity-theft", + "Security\/TypesOfThreats\/Index.html#security-identity-theft", "Identity theft" ], "code-injection": [ "TYPO3 Explained", "12.4", - "Security\/TypesOfThreats\/Index.html#code-injection", + "Security\/TypesOfThreats\/Index.html#security-code-injection", "Code injection" ], "authentication-bypass": [ "TYPO3 Explained", "12.4", - "Security\/TypesOfThreats\/Index.html#authentication-bypass", + "Security\/TypesOfThreats\/Index.html#security-authorization-bypass", "Authentication bypass" ], "cross-site-request-forgery-xsrf": [ "TYPO3 Explained", "12.4", - "Security\/TypesOfThreats\/Index.html#cross-site-request-forgery-xsrf", + "Security\/TypesOfThreats\/Index.html#security-xsrf", "Cross-site request forgery (XSRF)" ], "sitemap": [ @@ -44203,307 +44275,313 @@ "acceptance-testing-with-the-typo3-testing-framework": [ "TYPO3 Explained", "12.4", - "Testing\/AcceptanceTesting\/Index.html#acceptance-testing-with-the-typo3-testing-framework", + "Testing\/AcceptanceTesting\/Index.html#testing-writing-acceptance", "Acceptance testing with the TYPO3 testing framework" ], "set-up": [ "TYPO3 Explained", "12.4", - "Testing\/AcceptanceTesting\/Index.html#set-up", + "Testing\/AcceptanceTesting\/Index.html#testing-writing-acceptance-setup", "Set up" ], "backend-login": [ "TYPO3 Explained", "12.4", - "Testing\/AcceptanceTesting\/Index.html#backend-login", + "Testing\/AcceptanceTesting\/Index.html#testing-writing-acceptance-login", "Backend login" ], "frames": [ "TYPO3 Explained", "12.4", - "Testing\/AcceptanceTesting\/Index.html#frames", + "Testing\/AcceptanceTesting\/Index.html#testing-writing-acceptance-frames", "Frames" ], "pagetree": [ "TYPO3 Explained", "12.4", - "Testing\/AcceptanceTesting\/Index.html#pagetree", + "Testing\/AcceptanceTesting\/Index.html#testing-writing-acceptance-pagetree", "PageTree" ], "modaldialog": [ "TYPO3 Explained", "12.4", - "Testing\/AcceptanceTesting\/Index.html#modaldialog", + "Testing\/AcceptanceTesting\/Index.html#testing-writing-acceptance-modal", "ModalDialog" ], "core-testing": [ "TYPO3 Explained", "12.4", - "Testing\/CoreTesting.html#core-testing", + "Testing\/CoreTesting.html#testing-core", "Core testing" ], "extension-testing": [ "TYPO3 Explained", "12.4", - "Testing\/ExtensionTesting.html#extension-testing", + "Testing\/ExtensionTesting.html#testing-extensions", "Extension testing" ], "linting": [ "TYPO3 Explained", "12.4", - "Testing\/ExtensionTesting.html#linting", + "Testing\/ExtensionTesting.html#testing-extensions-linting", "Linting" ], "coding-guidelines-cgl": [ "TYPO3 Explained", "12.4", - "Testing\/ExtensionTesting.html#coding-guidelines-cgl", + "Testing\/ExtensionTesting.html#testing-extensions-cgl", "Coding guidelines (CGL)" ], "static-code-analysis": [ "TYPO3 Explained", "12.4", - "Testing\/ExtensionTesting.html#static-code-analysis", + "Testing\/ExtensionTesting.html#testing-extensions-static", "Static code analysis" ], + "unit-tests": [ + "TYPO3 Explained", + "12.4", + "Testing\/ExtensionTesting.html#testing-extensions-unit", + "Unit tests" + ], "functional-tests": [ "TYPO3 Explained", "12.4", - "Testing\/ExtensionTesting.html#functional-tests", + "Testing\/ExtensionTesting.html#testing-extensions-functional", "Functional tests" ], "acceptance-tests": [ "TYPO3 Explained", "12.4", - "Testing\/ExtensionTesting.html#acceptance-tests", + "Testing\/ExtensionTesting.html#testing-extensions-acceptance", "Acceptance tests" ], "organizing-and-storing-the-commands": [ "TYPO3 Explained", "12.4", - "Testing\/ProjectTesting.html#organizing-and-storing-the-commands", + "Testing\/ProjectTesting.html#testing-projects-organization", "Organizing and storing the commands" ], "functional-testing-with-the-typo3-testing-framework": [ "TYPO3 Explained", "12.4", - "Testing\/FunctionalTesting\/Index.html#functional-testing-with-the-typo3-testing-framework", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional", "Functional testing with the TYPO3 testing framework" ], "simple-example": [ "TYPO3 Explained", "12.4", - "Testing\/FunctionalTesting\/Index.html#simple-example", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional-example-simple", "Simple Example" ], "extending-setup": [ "TYPO3 Explained", "12.4", - "Testing\/FunctionalTesting\/Index.html#extending-setup", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional-setup", "Extending setUp" ], "loaded-extensions": [ "TYPO3 Explained", "12.4", - "Testing\/FunctionalTesting\/Index.html#loaded-extensions", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional-load-extensions", "Loaded extensions" ], "database-fixtures": [ "TYPO3 Explained", "12.4", - "Testing\/FunctionalTesting\/Index.html#database-fixtures", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional-fixtures", "Database fixtures" ], "asserting-database": [ "TYPO3 Explained", "12.4", - "Testing\/FunctionalTesting\/Index.html#asserting-database", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional-assert-database", "Asserting database" ], "loading-files": [ "TYPO3 Explained", "12.4", - "Testing\/FunctionalTesting\/Index.html#loading-files", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional-load-files", "Loading files" ], "setting-typo3-conf-vars": [ "TYPO3 Explained", "12.4", - "Testing\/FunctionalTesting\/Index.html#setting-typo3-conf-vars", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional-TYPO3_CONF_VARS", "Setting TYPO3_CONF_VARS" ], "frontend-tests": [ "TYPO3 Explained", "12.4", - "Testing\/FunctionalTesting\/Index.html#frontend-tests", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional-frontend", "Frontend tests" ], "introduction-to-functional-tests": [ "TYPO3 Explained", "12.4", - "Testing\/FunctionalTesting\/Introduction.html#introduction-to-functional-tests", + "Testing\/FunctionalTesting\/Introduction.html#testing-writing-functional-introduction", "Introduction to functional tests" ], "testing-1": [ "TYPO3 Explained", "12.4", - "Testing\/Index.html#testing-1", + "Testing\/Index.html#testing", "Testing" ], "project-testing": [ "TYPO3 Explained", "12.4", - "Testing\/ProjectTesting.html#project-testing", + "Testing\/ProjectTesting.html#testing-projects", "Project testing" ], "differences-between-project-and-extension-testing": [ "TYPO3 Explained", "12.4", - "Testing\/ProjectTesting.html#differences-between-project-and-extension-testing", + "Testing\/ProjectTesting.html#testing-projects-differences", "Differences between project and extension testing" ], "project-structure": [ "TYPO3 Explained", "12.4", - "Testing\/ProjectTesting.html#project-structure", + "Testing\/ProjectTesting.html#testing-projects-structure", "Project structure" ], "install-testing-dependencies": [ "TYPO3 Explained", "12.4", - "Testing\/ProjectTesting.html#install-testing-dependencies", + "Testing\/ProjectTesting.html#testing-projects-installation", "Install testing dependencies" ], "test-configuration-on-project-level": [ "TYPO3 Explained", "12.4", - "Testing\/ProjectTesting.html#test-configuration-on-project-level", + "Testing\/ProjectTesting.html#testing-projects-configuration", "Test configuration on project level" ], "code-style-tests-and-fixing": [ "TYPO3 Explained", "12.4", - "Testing\/ProjectTesting.html#code-style-tests-and-fixing", + "Testing\/ProjectTesting.html#testing-projects-configuration-cs", "Code style tests and fixing" ], "phpstan-static-php-analysis": [ "TYPO3 Explained", "12.4", - "Testing\/ProjectTesting.html#phpstan-static-php-analysis", + "Testing\/ProjectTesting.html#testing-projects-configuration-phpstan", "PHPstan - Static PHP analysis" ], "unit-and-functional-test-configuration": [ "TYPO3 Explained", "12.4", - "Testing\/ProjectTesting.html#unit-and-functional-test-configuration", + "Testing\/ProjectTesting.html#testing-projects-configuration-phpunit", "Unit and Functional test configuration" ], "running-the-tests-locally": [ "TYPO3 Explained", "12.4", - "Testing\/ProjectTesting.html#running-the-tests-locally", + "Testing\/ProjectTesting.html#testing-projects-execution", "Running the tests locally" ], "run-the-php-cs-fixer": [ "TYPO3 Explained", "12.4", - "Testing\/ProjectTesting.html#run-the-php-cs-fixer", + "Testing\/ProjectTesting.html#testing-projects-execution-cs", "Run the php-cs-fixer" ], "run-phpstan": [ "TYPO3 Explained", "12.4", - "Testing\/ProjectTesting.html#run-phpstan", + "Testing\/ProjectTesting.html#testing-projects-execution-phpstan", "Run PHPstan" ], "run-unit-tests": [ "TYPO3 Explained", "12.4", - "Testing\/ProjectTesting.html#run-unit-tests", + "Testing\/ProjectTesting.html#testing-projects-execution-phpunit", "Run Unit tests" ], "run-functional-tests-using-sqlite-and-ddev": [ "TYPO3 Explained", "12.4", - "Testing\/ProjectTesting.html#run-functional-tests-using-sqlite-and-ddev", + "Testing\/ProjectTesting.html#testing-projects-execution-functional-sqlite", "Run Functional tests using sqlite and DDEV" ], "run-functional-tests-using-mysqli-and-ddev": [ "TYPO3 Explained", "12.4", - "Testing\/ProjectTesting.html#run-functional-tests-using-mysqli-and-ddev", + "Testing\/ProjectTesting.html#testing-projects-execution-functional-mysqli", "Run Functional tests using mysqli and DDEV" ], "test-runners-organize-and-execute-tests": [ "TYPO3 Explained", "12.4", - "Testing\/TestRunners.html#test-runners-organize-and-execute-tests", + "Testing\/TestRunners.html#testing-organization", "Test Runners: Organize and execute tests" ], "what-are-test-runners-and-why-do-we-need-them": [ "TYPO3 Explained", "12.4", - "Testing\/TestRunners.html#what-are-test-runners-and-why-do-we-need-them", + "Testing\/TestRunners.html#testing-organization-why", "What are test runners and why do we need them" ], "use-a-bash-alias": [ "TYPO3 Explained", "12.4", - "Testing\/TestRunners.html#use-a-bash-alias", + "Testing\/TestRunners.html#testing-organization-bash-alias", "Use a bash alias" ], "write-a-bash-script": [ "TYPO3 Explained", "12.4", - "Testing\/TestRunners.html#write-a-bash-script", + "Testing\/TestRunners.html#testing-organization-bash-script", "Write a bash script" ], "introduce-custom-ddev-commands": [ "TYPO3 Explained", "12.4", - "Testing\/TestRunners.html#introduce-custom-ddev-commands", + "Testing\/TestRunners.html#testing-organization-ddev", "Introduce custom DDEV commands" ], "introduce-a-composer-script": [ "TYPO3 Explained", "12.4", - "Testing\/TestRunners.html#introduce-a-composer-script", + "Testing\/TestRunners.html#testing-organization-composer", "Introduce a Composer script" ], "create-a-makefile": [ "TYPO3 Explained", "12.4", - "Testing\/TestRunners.html#create-a-makefile", + "Testing\/TestRunners.html#testing-organization-makefile", "Create a Makefile" ], "use-dedicated-tools-like-just": [ "TYPO3 Explained", "12.4", - "Testing\/TestRunners.html#use-dedicated-tools-like-just", + "Testing\/TestRunners.html#testing-organization-just", "Use dedicated tools like just" ], "use-the-file-runtests-sh-script-based-on-the-typo3-core": [ "TYPO3 Explained", "12.4", - "Testing\/TestRunners.html#use-the-file-runtests-sh-script-based-on-the-typo3-core", + "Testing\/TestRunners.html#testing-organization-runtests-core", "Use the runTests.sh script based on the TYPO3-Core" ], "use-a-customized-file-runtests-sh-script-based-on-blog-example": [ "TYPO3 Explained", "12.4", - "Testing\/TestRunners.html#use-a-customized-file-runtests-sh-script-based-on-blog-example", + "Testing\/TestRunners.html#testing-organization-runtests-blog", "Use a customized runTests.sh script based on blog_example" ], "use-a-generator": [ "TYPO3 Explained", "12.4", - "Testing\/TestRunners.html#use-a-generator", + "Testing\/TestRunners.html#testing-organization-generator", "Use a generator" ], "acceptance-testing-of-site-introduction": [ "TYPO3 Explained", "12.4", - "Testing\/Tutorial\/Acceptance.html#acceptance-testing-of-site-introduction", + "Testing\/Tutorial\/Acceptance.html#testing-tutorial-acceptance", "Acceptance testing of site_introduction" ], "project-site-introduction": [ @@ -44521,163 +44599,163 @@ "github-actions": [ "TYPO3 Explained", "12.4", - "Testing\/Tutorial\/Enetcache.html#github-actions", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-github2", "Github Actions" ], "testing-enetcache": [ "TYPO3 Explained", "12.4", - "Testing\/Tutorial\/Enetcache.html#testing-enetcache", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-testing", "Testing enetcache" ], "scope": [ "TYPO3 Explained", "12.4", - "Testing\/Tutorial\/Enetcache.html#scope", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-scope", "Scope" ], "general-strategy": [ "TYPO3 Explained", "12.4", - "Testing\/Tutorial\/Enetcache.html#general-strategy", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-strategy", "General strategy" ], "starting-point": [ "TYPO3 Explained", "12.4", - "Testing\/Tutorial\/Enetcache.html#starting-point", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-start", "Starting point" ], "preparing-composer-json": [ "TYPO3 Explained", "12.4", - "Testing\/Tutorial\/Enetcache.html#preparing-composer-json", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-composer-json", "Preparing composer.json" ], "runtests-sh-and-docker-compose-yml": [ "TYPO3 Explained", "12.4", - "Testing\/Tutorial\/Enetcache.html#runtests-sh-and-docker-compose-yml", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-runtests", "runTests.sh and docker-compose.yml" ], "testing-styleguide": [ "TYPO3 Explained", "12.4", - "Testing\/Tutorial\/Enetcache.html#testing-styleguide", + "Testing\/Tutorial\/Enetcache.html#testing-extensions-styleguide", "Testing styleguide" ], "basic-setup": [ "TYPO3 Explained", "12.4", - "Testing\/Tutorial\/Enetcache.html#basic-setup", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-setup", "Basic setup" ], "functional-testing": [ "TYPO3 Explained", "12.4", - "Testing\/Tutorial\/Enetcache.html#functional-testing", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-functional", "Functional testing" ], "acceptance-testing": [ "TYPO3 Explained", "12.4", - "Testing\/Tutorial\/Enetcache.html#acceptance-testing", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-acceptance", "Acceptance testing" ], "testing-tutorials": [ "TYPO3 Explained", "12.4", - "Testing\/Tutorial\/Index.html#testing-tutorials", + "Testing\/Tutorial\/Index.html#testing-tutorial", "Testing tutorials" ], "unit-testing-with-the-typo3-testing-framework": [ "TYPO3 Explained", "12.4", - "Testing\/UnitTesting\/Index.html#unit-testing-with-the-typo3-testing-framework", + "Testing\/UnitTesting\/Index.html#testing-writing-unit", "Unit testing with the TYPO3 testing framework" ], "unit-test-conventions": [ "TYPO3 Explained", "12.4", - "Testing\/UnitTesting\/Index.html#unit-test-conventions", + "Testing\/UnitTesting\/Index.html#cgl-unit-tests", "Unit test conventions" ], "extending-unittestcase": [ "TYPO3 Explained", "12.4", - "Testing\/UnitTesting\/Index.html#extending-unittestcase", + "Testing\/UnitTesting\/Index.html#testing-writing-unit-extending", "Extending UnitTestCase" ], "general-hints": [ "TYPO3 Explained", "12.4", - "Testing\/UnitTesting\/Index.html#general-hints", + "Testing\/UnitTesting\/Index.html#testing-writing-unit-hints", "General hints" ], "a-casual-data-provider": [ "TYPO3 Explained", "12.4", - "Testing\/UnitTesting\/Index.html#a-casual-data-provider", + "Testing\/UnitTesting\/Index.html#testing-writing-unit-data-provider", "A casual data provider" ], "mocking": [ "TYPO3 Explained", "12.4", - "Testing\/UnitTesting\/Index.html#mocking", + "Testing\/UnitTesting\/Index.html#testing-writing-unit-mocking", "Mocking" ], "static-dependencies": [ "TYPO3 Explained", "12.4", - "Testing\/UnitTesting\/Index.html#static-dependencies", + "Testing\/UnitTesting\/Index.html#testing-writing-unit-dependencies", "Static dependencies" ], "exception-handling": [ "TYPO3 Explained", "12.4", - "Testing\/UnitTesting\/Index.html#exception-handling", + "Testing\/UnitTesting\/Index.html#testing-writing-unit-exception", "Exception handling" ], "introduction-to-unit-tests": [ "TYPO3 Explained", "12.4", - "Testing\/UnitTesting\/Introduction.html#introduction-to-unit-tests", + "Testing\/UnitTesting\/Introduction.html#testing-writing-unit-introduction", "Introduction to unit tests" ], "when-to-unit-test": [ "TYPO3 Explained", "12.4", - "Testing\/UnitTesting\/Introduction.html#when-to-unit-test", + "Testing\/UnitTesting\/Introduction.html#testing-writing-unit-when", "When to unit test" ], "when-not-to-unit-test": [ "TYPO3 Explained", "12.4", - "Testing\/UnitTesting\/Introduction.html#when-not-to-unit-test", + "Testing\/UnitTesting\/Introduction.html#testing-writing-unit-when-not", "When not to unit test" ], "keep-it-simple": [ "TYPO3 Explained", "12.4", - "Testing\/UnitTesting\/Introduction.html#keep-it-simple", + "Testing\/UnitTesting\/Introduction.html#testing-writing-unit-simple", "Keep it simple" ], "running-unit-tests": [ "TYPO3 Explained", "12.4", - "Testing\/UnitTesting\/Running.html#running-unit-tests", + "Testing\/UnitTesting\/Running.html#testing-unit-run", "Running Unit tests" ], "install-phpunit-and-the-typo3-testing-framework": [ "TYPO3 Explained", "12.4", - "Testing\/UnitTesting\/Running.html#install-phpunit-and-the-typo3-testing-framework", + "Testing\/UnitTesting\/Running.html#testing-unit-run-install", "Install PHPUnit and the TYPO3 testing framework" ], "provide-configuration-files-for-unit-tests": [ "TYPO3 Explained", "12.4", - "Testing\/UnitTesting\/Running.html#provide-configuration-files-for-unit-tests", + "Testing\/UnitTesting\/Running.html#testing-unit-run-configure", "Provide configuration files for unit tests" ], "run-the-unit-tests-on-your-system-or-with-ddev": [ @@ -44697,2269 +44775,2269 @@ "opcache-save-comments": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/TuneTYPO3.html#opcache-save-comments", + "Administration\/Installation\/TuneTYPO3.html#confval-opcache-save-comments", "opcache.save_comments" ], "opcache-use-cwd": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/TuneTYPO3.html#opcache-use-cwd", + "Administration\/Installation\/TuneTYPO3.html#confval-opcache-use-cwd", "opcache.use_cwd" ], "opcache-validate-timestamps": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/TuneTYPO3.html#opcache-validate-timestamps", + "Administration\/Installation\/TuneTYPO3.html#confval-opcache-validate-timestamps", "opcache.validate_timestamps" ], "opcache-revalidate-freq": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/TuneTYPO3.html#opcache-revalidate-freq", + "Administration\/Installation\/TuneTYPO3.html#confval-opcache-revalidate-freq", "opcache.revalidate_freq" ], "opcache-revalidate-path": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/TuneTYPO3.html#opcache-revalidate-path", + "Administration\/Installation\/TuneTYPO3.html#confval-opcache-revalidate-path", "opcache.revalidate_path" ], "opcache-max-accelerated-files": [ "TYPO3 Explained", "12.4", - "Administration\/Installation\/TuneTYPO3.html#opcache-max-accelerated-files", + "Administration\/Installation\/TuneTYPO3.html#confval-opcache-max-accelerated-files", "opcache.max_accelerated_files" ], "backend-module-parent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-parent", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-parent", "parent" ], "backend-module-path": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-path", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-path", "path" ], "backend-module-access": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-access", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-access", "access" ], "backend-module-workspaces": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-workspaces", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-workspaces", "workspaces" ], "backend-module-position": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-position", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-position", "position" ], "backend-module-appearance": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-appearance", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-appearance", "appearance" ], "backend-module-appearance-renderinmodulemenu": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-appearance-renderinmodulemenu", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-appearance-renderinmodulemenu", "appearance.renderInModuleMenu" ], "backend-module-iconidentifier": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-iconidentifier", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-iconidentifier", "iconIdentifier" ], "backend-module-icon": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-icon", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-icon", "icon" ], "backend-module-labels": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-labels", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-labels", "labels" ], "backend-module-component": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-component", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-component", "component" ], "backend-module-navigationcomponent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-navigationcomponent", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-navigationcomponent", "navigationComponent" ], "backend-module-navigationcomponentid": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-navigationcomponentid", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-navigationcomponentid", "navigationComponentId" ], "backend-module-inheritnavigationcomponentfrommainmodule": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-inheritnavigationcomponentfrommainmodule", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-inheritnavigationcomponentfrommainmodule", "inheritNavigationComponentFromMainModule" ], "backend-module-moduledata": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-moduledata", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-moduledata", "moduleData" ], "backend-module-aliases": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-aliases", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-aliases", "aliases" ], "backend-module-routeoptions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-routeoptions", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-routeoptions", "routeOptions" ], "backend-module-routes": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-routes", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-routes", "routes" ], "backend-module-extensionname": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-extensionname", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-extensionname", "extensionName" ], "backend-module-controlleractions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-controlleractions", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-controlleractions", "controllerActions" ], "modules-modals-settings-title": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-settings-title", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-settings-title", "title" ], "modules-modals-settings-content": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-settings-content", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-settings-content", "content" ], "modules-modals-settings-severity": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-settings-severity", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-settings-severity", "severity" ], "modules-modals-settings-buttons": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-settings-buttons", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-settings-buttons", "buttons" ], "modules-modals-settings-staticbackdrop": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-settings-staticbackdrop", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-settings-staticbackdrop", "staticBackdrop" ], "modules-modals-button-settings-text": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-button-settings-text", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-button-settings-text", "text" ], "modules-modals-button-settings-trigger": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-button-settings-trigger", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-button-settings-trigger", "trigger \/ action" ], "modules-modals-button-settings-active": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-button-settings-active", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-button-settings-active", "active" ], "modules-modals-button-settings-btnclass": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-button-settings-btnclass", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-button-settings-btnclass", "btnClass" ], "cachedparameterswhitelist": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/Index.html#cachedparameterswhitelist", + "ApiOverview\/CachingFramework\/Index.html#confval-cachedparameterswhitelist", "cachedParametersWhiteList" ], "requirecachehashpresenceparameters": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/Index.html#requirecachehashpresenceparameters", + "ApiOverview\/CachingFramework\/Index.html#confval-requirecachehashpresenceparameters", "requireCacheHashPresenceParameters" ], "excludedparameters": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/Index.html#excludedparameters", + "ApiOverview\/CachingFramework\/Index.html#confval-excludedparameters", "excludedParameters" ], "excludedparametersifempty": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/Index.html#excludedparametersifempty", + "ApiOverview\/CachingFramework\/Index.html#confval-excludedparametersifempty", "excludedParametersIfEmpty" ], "excludeallemptyparameters": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/Index.html#excludeallemptyparameters", + "ApiOverview\/CachingFramework\/Index.html#confval-excludeallemptyparameters", "excludeAllEmptyParameters" ], "enforcevalidation": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CachingFramework\/Index.html#enforcevalidation", + "ApiOverview\/CachingFramework\/Index.html#confval-enforcevalidation", "enforceValidation" ], "content-security-policy-mode-append": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-mode-append", + "ApiOverview\/ContentSecurityPolicy\/Index.html#confval-content-security-policy-mode-append", "append" ], "content-security-policy-mode-extend": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-mode-extend", + "ApiOverview\/ContentSecurityPolicy\/Index.html#confval-content-security-policy-mode-extend", "extend" ], "content-security-policy-mode-inherit-again": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-mode-inherit-again", + "ApiOverview\/ContentSecurityPolicy\/Index.html#confval-content-security-policy-mode-inherit-again", "inherit-again" ], "content-security-policy-mode-inherit-once": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-mode-inherit-once", + "ApiOverview\/ContentSecurityPolicy\/Index.html#confval-content-security-policy-mode-inherit-once", "inherit-once" ], "content-security-policy-mode-reduce": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-mode-reduce", + "ApiOverview\/ContentSecurityPolicy\/Index.html#confval-content-security-policy-mode-reduce", "reduce" ], "content-security-policy-mode-remove": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-mode-remove", + "ApiOverview\/ContentSecurityPolicy\/Index.html#confval-content-security-policy-mode-remove", "remove" ], "content-security-policy-mode-set": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-mode-set", + "ApiOverview\/ContentSecurityPolicy\/Index.html#confval-content-security-policy-mode-set", "set" ], "datetime-aspect-timestamp": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#datetime-aspect-timestamp", + "ApiOverview\/Context\/Index.html#confval-datetime-aspect-timestamp", "timestamp" ], "datetime-aspect-timezone": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#datetime-aspect-timezone", + "ApiOverview\/Context\/Index.html#confval-datetime-aspect-timezone", "timezone" ], "datetime-aspect-iso": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#datetime-aspect-iso", + "ApiOverview\/Context\/Index.html#confval-datetime-aspect-iso", "iso" ], "datetime-aspect-full": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#datetime-aspect-full", + "ApiOverview\/Context\/Index.html#confval-datetime-aspect-full", "full" ], "language-aspect-id": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#language-aspect-id", + "ApiOverview\/Context\/Index.html#confval-language-aspect-id", "id" ], "language-aspect-contentid": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#language-aspect-contentid", + "ApiOverview\/Context\/Index.html#confval-language-aspect-contentid", "contentId" ], "language-aspect-fallbackchain": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#language-aspect-fallbackchain", + "ApiOverview\/Context\/Index.html#confval-language-aspect-fallbackchain", "fallbackChain" ], "language-aspect-overlaytype": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#language-aspect-overlaytype", + "ApiOverview\/Context\/Index.html#confval-language-aspect-overlaytype", "overlayType" ], "language-aspect-legacylanguagemode": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#language-aspect-legacylanguagemode", + "ApiOverview\/Context\/Index.html#confval-language-aspect-legacylanguagemode", "legacyLanguageMode" ], "language-aspect-legacyoverlaytype": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#language-aspect-legacyoverlaytype", + "ApiOverview\/Context\/Index.html#confval-language-aspect-legacyoverlaytype", "legacyOverlayType" ], "preview-aspect-ispreview": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#preview-aspect-ispreview", + "ApiOverview\/Context\/Index.html#confval-preview-aspect-ispreview", "isPreview" ], "typoscript-aspect-forcedtemplateparsing": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#typoscript-aspect-forcedtemplateparsing", + "ApiOverview\/Context\/Index.html#confval-typoscript-aspect-forcedtemplateparsing", "forcedTemplateParsing" ], "user-aspect-id": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#user-aspect-id", + "ApiOverview\/Context\/Index.html#confval-user-aspect-id", "id" ], "user-aspect-username": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#user-aspect-username", + "ApiOverview\/Context\/Index.html#confval-user-aspect-username", "username" ], "user-aspect-isloggedin": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#user-aspect-isloggedin", + "ApiOverview\/Context\/Index.html#confval-user-aspect-isloggedin", "isLoggedIn" ], "user-aspect-isadmin": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#user-aspect-isadmin", + "ApiOverview\/Context\/Index.html#confval-user-aspect-isadmin", "isAdmin" ], "user-aspect-groupids": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#user-aspect-groupids", + "ApiOverview\/Context\/Index.html#confval-user-aspect-groupids", "groupIds" ], "user-aspect-groupnames": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#user-aspect-groupnames", + "ApiOverview\/Context\/Index.html#confval-user-aspect-groupnames", "groupNames" ], "visibility-aspect-includehiddenpages": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#visibility-aspect-includehiddenpages", + "ApiOverview\/Context\/Index.html#confval-visibility-aspect-includehiddenpages", "includeHiddenPages" ], "visibility-aspect-includehiddencontent": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#visibility-aspect-includehiddencontent", + "ApiOverview\/Context\/Index.html#confval-visibility-aspect-includehiddencontent", "includeHiddenContent" ], "visibility-aspect-includedeletedrecords": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#visibility-aspect-includedeletedrecords", + "ApiOverview\/Context\/Index.html#confval-visibility-aspect-includedeletedrecords", "includeDeletedRecords" ], "workspace-aspect-id": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#workspace-aspect-id", + "ApiOverview\/Context\/Index.html#confval-workspace-aspect-id", "id" ], "workspace-aspect-islive": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#workspace-aspect-islive", + "ApiOverview\/Context\/Index.html#confval-workspace-aspect-islive", "isLive" ], "workspace-aspect-isoffline": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Context\/Index.html#workspace-aspect-isoffline", + "ApiOverview\/Context\/Index.html#confval-workspace-aspect-isoffline", "isOffline" ], "datahandler-cmd-tablename": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-tablename", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-tablename", "tablename" ], "datahandler-cmd-uid": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-uid", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-uid", "uid" ], "datahandler-cmd-command": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-command", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-command", "command" ], "datahandler-cmd-value": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-value", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-value", "value" ], "datahandler-cmd-copy": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-copy", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-copy", "copy" ], "datahandler-cmd-move": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-move", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-move", "move" ], "datahandler-cmd-delete": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-delete", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-delete", "delete" ], "datahandler-cmd-undelete": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-undelete", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-undelete", "undelete" ], "datahandler-cmd-localize": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-localize", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-localize", "localize" ], "datahandler-cmd-copytolanguage": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-copytolanguage", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-copytolanguage", "copyToLanguage" ], "datahandler-cmd-inlinelocalizesynchronize": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-inlinelocalizesynchronize", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-inlinelocalizesynchronize", "inlineLocalizeSynchronize" ], "datahandler-cmd-version": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-version", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-version", "version" ], "datahandler-data-tablename": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-data-tablename", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-data-tablename", "tablename" ], "datahandler-data-uid": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-data-uid", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-data-uid", "uid" ], "datahandler-data-fieldname": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-data-fieldname", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-data-fieldname", "fieldname" ], "datahandler-data-value": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-data-value", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-data-value", "value" ], "datahandler-clear-cachecmd-integer": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-clear-cachecmd-integer", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-clear-cachecmd-integer", "[integer]" ], "datahandler-clear-cachecmd-all": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-clear-cachecmd-all", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-clear-cachecmd-all", "\"all\"" ], "datahandler-clear-cachecmd-pages": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-clear-cachecmd-pages", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-clear-cachecmd-pages", "\"pages\"" ], "datahandler-flags-copytree": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-flags-copytree", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-flags-copytree", "->copyTree" ], "datahandler-flags-reverseorder": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-flags-reverseorder", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-flags-reverseorder", "->reverseOrder" ], "datahandler-flags-copywhichtables": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-flags-copywhichtables", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-flags-copywhichtables", "->copyWhichTables" ], "datahandler-commit-data": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/TceDb\/Index.html#datahandler-commit-data", + "ApiOverview\/DataHandler\/TceDb\/Index.html#confval-datahandler-commit-data", "data" ], "datahandler-commit-cmd": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/TceDb\/Index.html#datahandler-commit-cmd", + "ApiOverview\/DataHandler\/TceDb\/Index.html#confval-datahandler-commit-cmd", "cmd" ], "datahandler-commit-cachecmd": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/TceDb\/Index.html#datahandler-commit-cachecmd", + "ApiOverview\/DataHandler\/TceDb\/Index.html#confval-datahandler-commit-cachecmd", "cacheCmd" ], "datahandler-commit-redirect": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/TceDb\/Index.html#datahandler-commit-redirect", + "ApiOverview\/DataHandler\/TceDb\/Index.html#confval-datahandler-commit-redirect", "redirect" ], "datahandler-commit-flags": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/TceDb\/Index.html#datahandler-commit-flags", + "ApiOverview\/DataHandler\/TceDb\/Index.html#confval-datahandler-commit-flags", "flags" ], "datahandler-commit-mirror": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/TceDb\/Index.html#datahandler-commit-mirror", + "ApiOverview\/DataHandler\/TceDb\/Index.html#confval-datahandler-commit-mirror", "mirror" ], "datahandler-commit-cb": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/TceDb\/Index.html#datahandler-commit-cb", + "ApiOverview\/DataHandler\/TceDb\/Index.html#confval-datahandler-commit-cb", "CB" ], "datahandler-commit-vc": [ "TYPO3 Explained", "12.4", - "ApiOverview\/DataHandler\/TceDb\/Index.html#datahandler-commit-vc", + "ApiOverview\/DataHandler\/TceDb\/Index.html#confval-datahandler-commit-vc", "vC" ], "logger-log-level": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Logger\/Index.html#logger-log-level", + "ApiOverview\/Logging\/Logger\/Index.html#confval-logger-log-level", "$level" ], "logger-log-message": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Logger\/Index.html#logger-log-message", + "ApiOverview\/Logging\/Logger\/Index.html#confval-logger-log-message", "$message" ], "logger-log-data": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Logger\/Index.html#logger-log-data", + "ApiOverview\/Logging\/Logger\/Index.html#confval-logger-log-data", "$data" ], "logging-processors-introspection-appendfullbacktrace": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-introspection-appendfullbacktrace", + "ApiOverview\/Logging\/Processors\/Index.html#confval-logging-processors-introspection-appendfullbacktrace", "appendFullBackTrace" ], "logging-processors-introspection-shiftbacktracelevel": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-introspection-shiftbacktracelevel", + "ApiOverview\/Logging\/Processors\/Index.html#confval-logging-processors-introspection-shiftbacktracelevel", "shiftBackTraceLevel" ], "logging-processors-memory-realmemoryusage": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-memory-realmemoryusage", + "ApiOverview\/Logging\/Processors\/Index.html#confval-logging-processors-memory-realmemoryusage", "realMemoryUsage" ], "logging-processors-memory-formatsize": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-memory-formatsize", + "ApiOverview\/Logging\/Processors\/Index.html#confval-logging-processors-memory-formatsize", "formatSize" ], "logging-processors-memory-peak-realmemoryusage": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-memory-peak-realmemoryusage", + "ApiOverview\/Logging\/Processors\/Index.html#confval-logging-processors-memory-peak-realmemoryusage", "realMemoryUsage" ], "logging-processors-memory-peak-formatsize": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-memory-peak-formatsize", + "ApiOverview\/Logging\/Processors\/Index.html#confval-logging-processors-memory-peak-formatsize", "formatSize" ], "database-writer-logtable": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Writers\/Index.html#database-writer-logtable", + "ApiOverview\/Logging\/Writers\/Index.html#confval-database-writer-logtable", "logTable" ], "file-writer-logfile": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Writers\/Index.html#file-writer-logfile", + "ApiOverview\/Logging\/Writers\/Index.html#confval-file-writer-logfile", "logFile" ], "file-writer-logfileinfix": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Writers\/Index.html#file-writer-logfileinfix", + "ApiOverview\/Logging\/Writers\/Index.html#confval-file-writer-logfileinfix", "logFileInfix" ], "syslog-writer-facility": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Logging\/Writers\/Index.html#syslog-writer-facility", + "ApiOverview\/Logging\/Writers\/Index.html#confval-syslog-writer-facility", "facility" ], "minimumlength": [ "TYPO3 Explained", "12.4", - "ApiOverview\/PasswordPolicies\/Index.html#minimumlength", + "ApiOverview\/PasswordPolicies\/Index.html#confval-minimumlength", "minimumLength" ], "uppercasecharacterrequired": [ "TYPO3 Explained", "12.4", - "ApiOverview\/PasswordPolicies\/Index.html#uppercasecharacterrequired", + "ApiOverview\/PasswordPolicies\/Index.html#confval-uppercasecharacterrequired", "upperCaseCharacterRequired" ], "lowercasecharacterrequired": [ "TYPO3 Explained", "12.4", - "ApiOverview\/PasswordPolicies\/Index.html#lowercasecharacterrequired", + "ApiOverview\/PasswordPolicies\/Index.html#confval-lowercasecharacterrequired", "lowerCaseCharacterRequired" ], "digitcharacterrequired": [ "TYPO3 Explained", "12.4", - "ApiOverview\/PasswordPolicies\/Index.html#digitcharacterrequired", + "ApiOverview\/PasswordPolicies\/Index.html#confval-digitcharacterrequired", "digitCharacterRequired" ], "specialcharacterrequired": [ "TYPO3 Explained", "12.4", - "ApiOverview\/PasswordPolicies\/Index.html#specialcharacterrequired", + "ApiOverview\/PasswordPolicies\/Index.html#confval-specialcharacterrequired", "specialCharacterRequired" ], "css-transform": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Rte\/Transformations\/Overview.html#css-transform", + "ApiOverview\/Rte\/Transformations\/Overview.html#confval-css-transform", "css_transform" ], "ts-links": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Rte\/Transformations\/Overview.html#ts-links", + "ApiOverview\/Rte\/Transformations\/Overview.html#confval-ts-links", "ts_links" ], "sitehandling-addinglanguages-enabled": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-enabled", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-enabled", "enabled" ], "sitehandling-addinglanguages-languageid": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-languageid", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-languageid", "languageId" ], "sitehandling-addinglanguages-title": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-title", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-title", "title" ], "sitehandling-addinglanguages-websitetitle": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-websitetitle", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-websitetitle", "websiteTitle" ], "sitehandling-addinglanguages-navigationtitle": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-navigationtitle", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-navigationtitle", "navigationTitle" ], "sitehandling-addinglanguages-base": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-base", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-base", "base" ], "sitehandling-addinglanguages-basevariants": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-basevariants", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-basevariants", "baseVariants" ], "sitehandling-addinglanguages-locale": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-locale", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-locale", "locale" ], "sitehandling-addinglanguages-iso-639-1": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-iso-639-1", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-iso-639-1", "iso-639-1" ], "sitehandling-addinglanguages-hreflang": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-hreflang", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-hreflang", "hreflang" ], "sitehandling-addinglanguages-direction": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-direction", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-direction", "direction" ], "sitehandling-addinglanguages-typo3language": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-typo3language", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-typo3language", "typo3Language" ], "sitehandling-addinglanguages-flag": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-flag", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-flag", "flag" ], "sitehandling-addinglanguages-fallbacktype": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-fallbacktype", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-fallbacktype", "fallbackType" ], "sitehandling-addinglanguages-fallbacks": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-fallbacks", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-fallbacks", "fallbacks" ], "sys-registry-uid": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SystemRegistry\/Index.html#sys-registry-uid", + "ApiOverview\/SystemRegistry\/Index.html#confval-sys-registry-uid", "uid" ], "sys-registry-entry-namespace": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SystemRegistry\/Index.html#sys-registry-entry-namespace", + "ApiOverview\/SystemRegistry\/Index.html#confval-sys-registry-entry-namespace", "entry_namespace" ], "sys-registry-entry-key": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SystemRegistry\/Index.html#sys-registry-entry-key", + "ApiOverview\/SystemRegistry\/Index.html#confval-sys-registry-entry-key", "entry_key" ], "sys-registry-entry-value": [ "TYPO3 Explained", "12.4", - "ApiOverview\/SystemRegistry\/Index.html#sys-registry-entry-value", + "ApiOverview\/SystemRegistry\/Index.html#confval-sys-registry-entry-value", "entry_value" ], "flag-file-lock-backend": [ "TYPO3 Explained", "12.4", - "Configuration\/FlagFiles\/Index.html#flag-file-lock-backend", + "Configuration\/FlagFiles\/Index.html#confval-flag-file-lock-backend", "LOCK_BACKEND" ], "flag-file-first-install": [ "TYPO3 Explained", "12.4", - "Configuration\/FlagFiles\/Index.html#flag-file-first-install", + "Configuration\/FlagFiles\/Index.html#confval-flag-file-first-install", "FIRST_INSTALL" ], "flag-file-enable-install-tool": [ "TYPO3 Explained", "12.4", - "Configuration\/FlagFiles\/Index.html#flag-file-enable-install-tool", + "Configuration\/FlagFiles\/Index.html#confval-flag-file-enable-install-tool", "ENABLE_INSTALL_TOOL" ], "globals-typo3-conf-vars": [ "TYPO3 Explained", "12.4", - "Configuration\/GlobalVariables.html#globals-typo3-conf-vars", + "Configuration\/GlobalVariables.html#confval-globals-typo3-conf-vars", "TYPO3_CONF_VARS" ], "globals-tca": [ "TYPO3 Explained", "12.4", - "Configuration\/GlobalVariables.html#globals-tca", + "Configuration\/GlobalVariables.html#confval-globals-tca", "TCA" ], "globals-t3-services": [ "TYPO3 Explained", "12.4", - "Configuration\/GlobalVariables.html#globals-t3-services", + "Configuration\/GlobalVariables.html#confval-globals-t3-services", "T3_SERVICES" ], "tbe-styles": [ "TYPO3 Explained", "12.4", - "Configuration\/GlobalVariables.html#tbe-styles", + "Configuration\/GlobalVariables.html#confval-tbe-styles", "TBE_STYLES" ], "globals-tsfe": [ "TYPO3 Explained", "12.4", - "Configuration\/GlobalVariables.html#globals-tsfe", + "Configuration\/GlobalVariables.html#confval-globals-tsfe", "TSFE" ], "globals-typo3-user-settings": [ "TYPO3 Explained", "12.4", - "Configuration\/GlobalVariables.html#globals-typo3-user-settings", + "Configuration\/GlobalVariables.html#confval-globals-typo3-user-settings", "TYPO3_USER_SETTINGS" ], "globals-pages-types": [ "TYPO3 Explained", "12.4", - "Configuration\/GlobalVariables.html#globals-pages-types", + "Configuration\/GlobalVariables.html#confval-globals-pages-types", "PAGES_TYPES" ], "globals-be-users": [ "TYPO3 Explained", "12.4", - "Configuration\/GlobalVariables.html#globals-be-users", + "Configuration\/GlobalVariables.html#confval-globals-be-users", "BE_USER" ], "globals-exec-time": [ "TYPO3 Explained", "12.4", - "Configuration\/GlobalVariables.html#globals-exec-time", + "Configuration\/GlobalVariables.html#confval-globals-exec-time", "EXEC_TIME" ], "globals-sim-exec-time": [ "TYPO3 Explained", "12.4", - "Configuration\/GlobalVariables.html#globals-sim-exec-time", + "Configuration\/GlobalVariables.html#confval-globals-sim-exec-time", "SIM_EXEC_TIME" ], "globals-lang": [ "TYPO3 Explained", "12.4", - "Configuration\/GlobalVariables.html#globals-lang", + "Configuration\/GlobalVariables.html#confval-globals-lang", "LANG" ], "globals-typo3-conf-vars-be-languagedebug": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-languagedebug", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-languagedebug", "languageDebug" ], "globals-typo3-conf-vars-be-fileadmindir": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-fileadmindir", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-fileadmindir", "fileadminDir" ], "globals-typo3-conf-vars-be-lockrootpath": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-lockrootpath", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-lockrootpath", "lockRootPath" ], "globals-typo3-conf-vars-be-userhomepath": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-userhomepath", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-userhomepath", "userHomePath" ], "globals-typo3-conf-vars-be-grouphomepath": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-grouphomepath", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-grouphomepath", "groupHomePath" ], "globals-typo3-conf-vars-be-useruploaddir": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-useruploaddir", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-useruploaddir", "userUploadDir" ], "globals-typo3-conf-vars-be-warning-email-addr": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-warning-email-addr", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-warning-email-addr", "warning_email_addr" ], "globals-typo3-conf-vars-be-warning-mode": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-warning-mode", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-warning-mode", "warning_mode" ], "globals-typo3-conf-vars-be-passwordreset": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-passwordreset", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-passwordreset", "passwordReset" ], "globals-typo3-conf-vars-be-passwordresetforadmins": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-passwordresetforadmins", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-passwordresetforadmins", "passwordResetForAdmins" ], "globals-typo3-conf-vars-be-requiremfa": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-requiremfa", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-requiremfa", "requireMfa" ], "globals-typo3-conf-vars-be-recommendedmfaprovider": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-recommendedmfaprovider", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-recommendedmfaprovider", "recommendedMfaProvider" ], "globals-typo3-conf-vars-be-loginratelimit": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-loginratelimit", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-loginratelimit", "loginRateLimit" ], "globals-typo3-conf-vars-be-loginratelimitinterval": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-loginratelimitinterval", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-loginratelimitinterval", "loginRateLimitInterval" ], "globals-typo3-conf-vars-be-loginratelimitipexcludelist": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-loginratelimitipexcludelist", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-loginratelimitipexcludelist", "loginRateLimitIpExcludeList" ], "globals-typo3-conf-vars-be-lockip": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-lockip", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-lockip", "lockIP" ], "globals-typo3-conf-vars-be-lockipv6": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-lockipv6", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-lockipv6", "lockIPv6" ], "globals-typo3-conf-vars-be-sessiontimeout": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-sessiontimeout", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-sessiontimeout", "sessionTimeout" ], "globals-typo3-conf-vars-be-ipmasklist": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-ipmasklist", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-ipmasklist", "IPmaskList" ], "globals-typo3-conf-vars-be-lockssl": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-lockssl", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-lockssl", "lockSSL" ], "globals-typo3-conf-vars-be-locksslport": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-locksslport", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-locksslport", "lockSSLPort" ], "globals-typo3-conf-vars-be-cookiedomain": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-cookiedomain", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-cookiedomain", "cookieDomain" ], "globals-typo3-conf-vars-be-cookiename": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-cookiename", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-cookiename", "cookieName" ], "globals-typo3-conf-vars-be-cookiesamesite": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-cookiesamesite", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-cookiesamesite", "cookieSameSite" ], "globals-typo3-conf-vars-be-showrefreshloginpopup": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-showrefreshloginpopup", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-showrefreshloginpopup", "showRefreshLoginPopup" ], "globals-typo3-conf-vars-be-adminonly": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-adminonly", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-adminonly", "adminOnly" ], "globals-typo3-conf-vars-be-disable-exec-function": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-disable-exec-function", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-disable-exec-function", "disable_exec_function" ], "globals-typo3-conf-vars-be-compressionlevel": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-compressionlevel", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-compressionlevel", "compressionLevel" ], "globals-typo3-conf-vars-be-installtoolpassword": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-installtoolpassword", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-installtoolpassword", "installToolPassword" ], "globals-typo3-conf-vars-be-checkstoredrecords": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-checkstoredrecords", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-checkstoredrecords", "checkStoredRecords" ], "globals-typo3-conf-vars-be-checkstoredrecordsloose": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-checkstoredrecordsloose", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-checkstoredrecordsloose", "checkStoredRecordsLoose" ], "globals-typo3-conf-vars-be-defaultusertsconfig": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-defaultusertsconfig", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-defaultusertsconfig", "defaultUserTSconfig" ], "globals-typo3-conf-vars-be-defaultpagetsconfig": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-defaultpagetsconfig", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-defaultpagetsconfig", "defaultPageTSconfig" ], "globals-typo3-conf-vars-be-defaultpermissions": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-defaultpermissions", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-defaultpermissions", "defaultPermissions" ], "globals-typo3-conf-vars-be-defaultuc": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-defaultuc", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-defaultuc", "defaultUC" ], "globals-typo3-conf-vars-be-custompermoptions": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-custompermoptions", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-custompermoptions", "customPermOptions" ], "globals-typo3-conf-vars-be-filedenypattern": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-filedenypattern", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-filedenypattern", "fileDenyPattern" ], "globals-typo3-conf-vars-be-interfaces": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-interfaces", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-interfaces", "interfaces" ], "globals-typo3-conf-vars-be-explicitadmode": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-explicitadmode", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-explicitadmode", "explicitADmode" ], "globals-typo3-conf-vars-be-flexformforcecdata": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-flexformforcecdata", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-flexformforcecdata", "flexformForceCDATA" ], "globals-typo3-conf-vars-be-versionnumberinfilename": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-versionnumberinfilename", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-versionnumberinfilename", "versionNumberInFilename" ], "globals-typo3-conf-vars-be-debug": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-debug", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-debug", "debug" ], "globals-typo3-conf-vars-be-toolbaritems": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-toolbaritems", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-toolbaritems", "toolbarItems" ], "globals-typo3-conf-vars-be-http": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-http", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-http", "HTTP" ], "globals-typo3-conf-vars-be-passwordhashing": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-passwordhashing", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-passwordhashing", "passwordHashing" ], "globals-typo3-conf-vars-be-passwordhashing-classname": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-passwordhashing-classname", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-passwordhashing-classname", "className" ], "globals-typo3-conf-vars-be-passwordhashing-options": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-passwordhashing-options", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-passwordhashing-options", "options" ], "globals-typo3-conf-vars-be-passwordpolicy": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-passwordpolicy", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-passwordpolicy", "passwordPolicy" ], "globals-typo3-conf-vars-be-stylesheets": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-stylesheets", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-stylesheets", "stylesheets" ], "globals-typo3-conf-vars-be-contentsecuritypolicyreportingurl": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-contentsecuritypolicyreportingurl", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-contentsecuritypolicyreportingurl", "contentSecurityPolicyReportingUrl" ], "typo3-conf-vars-db-additionalqueryrestrictions": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-additionalqueryrestrictions", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-additionalqueryrestrictions", "additionalQueryRestrictions" ], "typo3-conf-vars-db-connections": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connections", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connections", "Connections" ], "typo3-conf-vars-db-connection-name-charset": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-charset", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-charset", "charset" ], "typo3-conf-vars-db-connection-name-dbname": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-dbname", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-dbname", "dbname" ], "typo3-conf-vars-db-connection-name-driver": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-driver", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-driver", "driver" ], "typo3-conf-vars-db-connection-name-host": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-host", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-host", "host" ], "typo3-conf-vars-db-connection-name-password": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-password", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-password", "password" ], "typo3-conf-vars-db-connection-name-path": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-path", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-path", "path" ], "typo3-conf-vars-db-connection-name-port": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-port", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-port", "port" ], "typo3-conf-vars-db-connection-name-tableoptions": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-tableoptions", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-tableoptions", "tableoptions" ], "typo3-conf-vars-db-connection-name-unix-socket": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-unix-socket", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-unix-socket", "unix_socket" ], "typo3-conf-vars-db-connection-name-user": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-user", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-user", "user" ], "globals-typo3-conf-vars-db-tablemapping": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/DB.html#globals-typo3-conf-vars-db-tablemapping", + "Configuration\/Typo3ConfVars\/DB.html#confval-globals-typo3-conf-vars-db-tablemapping", "TableMapping" ], "globals-typo3-conf-vars-excludeforpackaging": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/EXT.html#globals-typo3-conf-vars-excludeforpackaging", + "Configuration\/Typo3ConfVars\/EXT.html#confval-globals-typo3-conf-vars-excludeforpackaging", "excludeForPackaging" ], "typo3-conf-vars-fe-addallowedpaths": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-addallowedpaths", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-addallowedpaths", "addAllowedPaths" ], "typo3-conf-vars-fe-debug": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-debug", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-debug", "debug" ], "typo3-conf-vars-fe-compressionlevel": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-compressionlevel", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-compressionlevel", "compressionLevel" ], "typo3-conf-vars-fe-pagenotfoundonchasherror": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-pagenotfoundonchasherror", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-pagenotfoundonchasherror", "pageNotFoundOnCHashError" ], "typo3-conf-vars-fe-pageunavailable-force": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-pageunavailable-force", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-pageunavailable-force", "pageUnavailable_force" ], "typo3-conf-vars-fe-addrootlinefields": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-addrootlinefields", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-addrootlinefields", "addRootLineFields" ], "typo3-conf-vars-fe-checkfeuserpid": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-checkfeuserpid", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-checkfeuserpid", "checkFeUserPid" ], "typo3-conf-vars-fe-loginratelimit": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-loginratelimit", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-loginratelimit", "loginRateLimit" ], "typo3-conf-vars-fe-loginratelimitinterval": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-loginratelimitinterval", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-loginratelimitinterval", "loginRateLimitInterval" ], "typo3-conf-vars-fe-loginratelimitipexcludelist": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-loginratelimitipexcludelist", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-loginratelimitipexcludelist", "loginRateLimitIpExcludeList" ], "typo3-conf-vars-fe-lockip": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-lockip", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-lockip", "lockIP" ], "typo3-conf-vars-fe-lockipv6": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-lockipv6", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-lockipv6", "lockIPv6" ], "typo3-conf-vars-fe-lifetime": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-lifetime", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-lifetime", "lifetime" ], "typo3-conf-vars-fe-sessiontimeout": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-sessiontimeout", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-sessiontimeout", "sessionTimeout" ], "typo3-conf-vars-fe-sessiondatalifetime": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-sessiondatalifetime", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-sessiondatalifetime", "sessionDataLifetime" ], "typo3-conf-vars-fe-permalogin": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-permalogin", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-permalogin", "permalogin" ], "typo3-conf-vars-fe-cookiedomain": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cookiedomain", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cookiedomain", "cookieDomain" ], "typo3-conf-vars-fe-cookiename": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cookiename", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cookiename", "cookieName" ], "typo3-conf-vars-fe-cookiesamesite": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cookiesamesite", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cookiesamesite", "cookieSameSite" ], "typo3-conf-vars-fe-defaulttyposcript-defaultusertsconfig": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-defaulttyposcript-defaultusertsconfig", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-defaulttyposcript-defaultusertsconfig", "defaultUserTSconfig" ], "typo3-conf-vars-fe-defaulttyposcript-constants": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-defaulttyposcript-constants", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-defaulttyposcript-constants", "defaultTypoScript_constants" ], "typo3-conf-vars-fe-defaulttyposcript-setup": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-defaulttyposcript-setup", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-defaulttyposcript-setup", "defaultTypoScript_setup" ], "typo3-conf-vars-fe-additionalabsrefprefixdirectories": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-additionalabsrefprefixdirectories", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-additionalabsrefprefixdirectories", "additionalAbsRefPrefixDirectories" ], "typo3-conf-vars-fe-enable-mount-pids": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-enable-mount-pids", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-enable-mount-pids", "enable_mount_pids" ], "typo3-conf-vars-fe-hidepagesifnottranslatedbydefault": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-hidepagesifnottranslatedbydefault", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-hidepagesifnottranslatedbydefault", "hidePagesIfNotTranslatedByDefault" ], "typo3-conf-vars-fe-eid-include": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-eid-include", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-eid-include", "eID_include" ], "typo3-conf-vars-fe-disablenocacheparameter": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-disablenocacheparameter", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-disablenocacheparameter", "disableNoCacheParameter" ], "typo3-conf-vars-fe-additionalcanonicalizedurlparameters": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-additionalcanonicalizedurlparameters", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-additionalcanonicalizedurlparameters", "additionalCanonicalizedUrlParameters" ], "typo3-conf-vars-fe-cachehash": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cachehash", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cachehash", "cacheHash" ], "typo3-conf-vars-fe-cachehash-cachedparameterswhitelist": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cachehash-cachedparameterswhitelist", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cachehash-cachedparameterswhitelist", "cachedParametersWhiteList" ], "typo3-conf-vars-fe-cachehash-requirecachehashpresenceparameters": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cachehash-requirecachehashpresenceparameters", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cachehash-requirecachehashpresenceparameters", "requireCacheHashPresenceParameters" ], "typo3-conf-vars-fe-cachehash-excludedparameters": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cachehash-excludedparameters", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cachehash-excludedparameters", "excludedParameters" ], "typo3-conf-vars-fe-cachehash-excludedparametersifempty": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cachehash-excludedparametersifempty", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cachehash-excludedparametersifempty", "excludedParametersIfEmpty" ], "typo3-conf-vars-fe-cachehash-excludeallemptyparameters": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cachehash-excludeallemptyparameters", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cachehash-excludeallemptyparameters", "excludeAllEmptyParameters" ], "typo3-conf-vars-fe-cachehash-enforcevalidation": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cachehash-enforcevalidation", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cachehash-enforcevalidation", "enforceValidation" ], "typo3-conf-vars-fe-workspacepreviewlogouttemplate": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-workspacepreviewlogouttemplate", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-workspacepreviewlogouttemplate", "workspacePreviewLogoutTemplate" ], "typo3-conf-vars-fe-versionnumberinfilename": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-versionnumberinfilename", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-versionnumberinfilename", "versionNumberInFilename" ], "typo3-conf-vars-fe-contentrenderingtemplates": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-contentrenderingtemplates", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-contentrenderingtemplates", "contentRenderingTemplates" ], "typo3-conf-vars-fe-contentobjects": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-contentobjects", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-contentobjects", "ContentObjects" ], "typo3-conf-vars-fe-typolinkbuilder": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-typolinkbuilder", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-typolinkbuilder", "typolinkBuilder" ], "passwordhashing": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#passwordhashing", + "Configuration\/Typo3ConfVars\/FE.html#confval-passwordhashing", "passwordHashing" ], "typo3-conf-vars-fe-classname": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-classname", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-classname", "className" ], "typo3-conf-vars-fe-options": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-options", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-options", "options" ], "passwordpolicy": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#passwordpolicy", + "Configuration\/Typo3ConfVars\/FE.html#confval-passwordpolicy", "passwordPolicy" ], "typo3-conf-vars-fe-passwordpolicy": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-passwordpolicy", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-passwordpolicy", "$GLOBALS['TYPO3_CONF_VARS']['FE']['passwordPolicy']" ], "typo3-conf-vars-fe-exposeredirectinformation": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-exposeredirectinformation", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-exposeredirectinformation", "exposeRedirectInformation" ], "contentsecuritypolicyreportingurl": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#contentsecuritypolicyreportingurl", + "Configuration\/Typo3ConfVars\/FE.html#confval-contentsecuritypolicyreportingurl", "contentSecurityPolicyReportingUrl" ], "globals-typo3-conf-vars-sys-gfx-thumbnails": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-thumbnails", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-thumbnails", "thumbnails" ], "globals-typo3-conf-vars-sys-gfx-thumbnails-png": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-thumbnails-png", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-thumbnails-png", "thumbnails_png" ], "globals-typo3-conf-vars-sys-gfx-gif-compress": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-gif-compress", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-gif-compress", "gif_compress" ], "globals-typo3-conf-vars-sys-gfx-imagefile-ext": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-imagefile-ext", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-imagefile-ext", "imagefile_ext" ], "globals-typo3-conf-vars-gfx-imagefile-ext": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-gfx-imagefile-ext", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-gfx-imagefile-ext", "$GLOBALS['TYPO3_CONF_VARS']['GFX']['imagefile_ext']" ], "globals-typo3-conf-vars-sys-gfx-gdlib": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-gdlib", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-gdlib", "gdlib" ], "globals-typo3-conf-vars-sys-gfx-gdlib-png": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-gdlib-png", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-gdlib-png", "gdlib_png" ], "globals-typo3-conf-vars-sys-gfx-processor-enabled": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-enabled", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-enabled", "processor_enabled" ], "globals-typo3-conf-vars-sys-gfx-processor-path": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-path", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-path", "processor_path" ], "globals-typo3-conf-vars-sys-gfx-processor": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor", "processor" ], "globals-typo3-conf-vars-sys-gfx-processor-effects": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-effects", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-effects", "processor_effects" ], "globals-typo3-conf-vars-sys-gfx-processor-allowupscaling": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-allowupscaling", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-allowupscaling", "processor_allowUpscaling" ], "globals-typo3-conf-vars-sys-gfx-processor-allowframeselection": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-allowframeselection", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-allowframeselection", "processor_allowFrameSelection" ], "globals-typo3-conf-vars-sys-gfx-processor-allowtemporarymasksaspng": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-allowtemporarymasksaspng", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-allowtemporarymasksaspng", "processor_allowTemporaryMasksAsPng" ], "globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofilebydefault": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofilebydefault", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofilebydefault", "processor_stripColorProfileByDefault" ], "globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofilecommand": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofilecommand", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofilecommand", "processor_stripColorProfileCommand" ], "globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofileparameters": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofileparameters", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofileparameters", "processor_stripColorProfileParameters" ], "globals-typo3-conf-vars-sys-gfx-processor-colorspace": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-colorspace", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-colorspace", "processor_colorspace" ], "globals-typo3-conf-vars-sys-gfx-processor-interlace": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-interlace", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-interlace", "processor_interlace" ], "globals-typo3-conf-vars-sys-gfx-jpg-quality": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-jpg-quality", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-jpg-quality", "jpg_quality" ], "globals-typo3-conf-vars-sys-http-allow-redirects": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-allow-redirects", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-allow-redirects", "allow_redirects" ], "globals-typo3-conf-vars-sys-http-allow-redirects-strict": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-allow-redirects-strict", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-allow-redirects-strict", "strict" ], "globals-typo3-conf-vars-sys-http-allow-redirects-max": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-allow-redirects-max", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-allow-redirects-max", "max" ], "globals-typo3-conf-vars-sys-http-cert": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-cert", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-cert", "cert" ], "globals-typo3-conf-vars-sys-http-connect-timeout": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-connect-timeout", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-connect-timeout", "connect_timeout" ], "globals-typo3-conf-vars-sys-http-proxy": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-proxy", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-proxy", "proxy" ], "globals-typo3-conf-vars-sys-http-ssl-key": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-ssl-key", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-ssl-key", "ssl_key" ], "globals-typo3-conf-vars-sys-http-timeout": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-timeout", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-timeout", "timeout" ], "globals-typo3-conf-vars-sys-http-verify": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-verify", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-verify", "verify" ], "globals-typo3-conf-vars-sys-http-version": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-version", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-version", "version" ], "globals-typo3-conf-vars-mail-format": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-format", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-format", "format" ], "globals-typo3-conf-vars-mail-layoutrootpaths": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-layoutrootpaths", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-layoutrootpaths", "layoutRootPaths" ], "globals-typo3-conf-vars-mail-partialrootpaths": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-partialrootpaths", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-partialrootpaths", "partialRootPaths" ], "globals-typo3-conf-vars-mail-templaterootpaths": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-templaterootpaths", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-templaterootpaths", "templateRootPaths" ], "globals-typo3-conf-vars-mail-validators": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-validators", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-validators", "validators" ], "globals-typo3-conf-vars-mail-transport": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport", "transport" ], "globals-typo3-conf-vars-mail-transport-smtp": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp", "transport_smtp_*" ], "globals-typo3-conf-vars-mail-transport-smtp-server": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-server", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-server", "transport_smtp_server" ], "globals-typo3-conf-vars-mail-transport-smtp-domain": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-domain", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-domain", "transport_smtp_domain" ], "globals-typo3-conf-vars-mail-transport-smtp-stream-options": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-stream-options", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-stream-options", "transport_smtp_stream_options" ], "globals-typo3-conf-vars-mail-transport-smtp-encrypt": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-encrypt", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-encrypt", "transport_smtp_encrypt" ], "globals-typo3-conf-vars-mail-transport-smtp-username": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-username", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-username", "transport_smtp_username" ], "globals-typo3-conf-vars-mail-transport-smtp-password": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-password", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-password", "transport_smtp_password" ], "globals-typo3-conf-vars-mail-transport-smtp-restart-threshold": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-restart-threshold", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-restart-threshold", "transport_smtp_restart_threshold" ], "globals-typo3-conf-vars-mail-transport-smtp-restart-threshold-sleep": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-restart-threshold-sleep", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-restart-threshold-sleep", "transport_smtp_restart_threshold_sleep" ], "globals-typo3-conf-vars-mail-transport-smtp-ping-threshold": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-ping-threshold", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-ping-threshold", "transport_smtp_ping_threshold" ], "globals-typo3-conf-vars-mail-transport-sendmail": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-sendmail", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-sendmail", "transport_sendmail_*" ], "globals-typo3-conf-vars-mail-transport-sendmail-command": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-sendmail-command", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-sendmail-command", "transport_sendmail_command" ], "globals-typo3-conf-vars-mail-transport-mbox": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-mbox", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-mbox", "transport_mbox_*" ], "globals-typo3-conf-vars-mail-transport-mbox-file": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-mbox-file", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-mbox-file", "transport_mbox_file" ], "globals-typo3-conf-vars-mail-transport-spool": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-spool", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-spool", "transport_spool_*" ], "globals-typo3-conf-vars-mail-transport-spool-type": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-spool-type", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-spool-type", "transport_spool_type" ], "globals-typo3-conf-vars-mail-transport-spool-filepath": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-spool-filepath", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-spool-filepath", "transport_spool_filepath" ], "globals-typo3-conf-vars-mail-dsn": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-dsn", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-dsn", "dsn" ], "globals-typo3-conf-vars-mail-defaultmailfromaddress": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-defaultmailfromaddress", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-defaultmailfromaddress", "defaultMailFromAddress" ], "globals-typo3-conf-vars-mail-defaultmailfromname": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-defaultmailfromname", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-defaultmailfromname", "defaultMailFromName" ], "globals-typo3-conf-vars-mail-defaultmailreplytoaddress": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-defaultmailreplytoaddress", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-defaultmailreplytoaddress", "defaultMailReplyToAddress" ], "globals-typo3-conf-vars-mail-defaultmailreplytoname": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-defaultmailreplytoname", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-defaultmailreplytoname", "defaultMailReplyToName" ], "globals-typo3-conf-vars-sys-filecreatemask": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-filecreatemask", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-filecreatemask", "fileCreateMask" ], "globals-typo3-conf-vars-sys-foldercreatemask": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-foldercreatemask", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-foldercreatemask", "folderCreateMask" ], "globals-typo3-conf-vars-sys-creategroup": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-creategroup", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-creategroup", "createGroup" ], "globals-typo3-conf-vars-sys-sitename": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-sitename", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-sitename", "sitename" ], "globals-typo3-conf-vars-sys-defaultscheme": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-defaultscheme", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-defaultscheme", "defaultScheme" ], "globals-typo3-conf-vars-sys-encryptionkey": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-encryptionkey", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-encryptionkey", "encryptionKey" ], "globals-typo3-conf-vars-sys-cookiedomain": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-cookiedomain", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-cookiedomain", "cookieDomain" ], "globals-typo3-conf-vars-sys-trustedhostspattern": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-trustedhostspattern", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-trustedhostspattern", "trustedHostsPattern" ], "globals-typo3-conf-vars-sys-devipmask": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-devipmask", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-devipmask", "devIPmask" ], "globals-typo3-conf-vars-sys-ddmmyy": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-ddmmyy", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-ddmmyy", "ddmmyy" ], "globals-typo3-conf-vars-sys-hhmm": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-hhmm", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-hhmm", "hhmm" ], "globals-typo3-conf-vars-sys-logincopyrightwarrantyprovider": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-logincopyrightwarrantyprovider", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-logincopyrightwarrantyprovider", "loginCopyrightWarrantyProvider" ], "globals-typo3-conf-vars-sys-logincopyrightwarrantyurl": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-logincopyrightwarrantyurl", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-logincopyrightwarrantyurl", "loginCopyrightWarrantyURL" ], "globals-typo3-conf-vars-sys-textfile-ext": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-textfile-ext", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-textfile-ext", "textfile_ext" ], "globals-typo3-conf-vars-sys-mediafile-ext": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-mediafile-ext", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-mediafile-ext", "mediafile_ext" ], "globals-typo3-conf-vars-sys-binpath": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-binpath", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-binpath", "binPath" ], "globals-typo3-conf-vars-sys-binsetup": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-binsetup", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-binsetup", "binSetup" ], "globals-typo3-conf-vars-sys-setmemorylimit": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-setmemorylimit", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-setmemorylimit", "setMemoryLimit" ], "globals-typo3-conf-vars-sys-phptimezone": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-phptimezone", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-phptimezone", "phpTimeZone" ], "globals-typo3-conf-vars-sys-utf8filesystem": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-utf8filesystem", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-utf8filesystem", "UTF8filesystem" ], "globals-typo3-conf-vars-sys-systemlocale": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-systemlocale", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-systemlocale", "systemLocale" ], "globals-typo3-conf-vars-sys-reverseproxyip": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-reverseproxyip", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-reverseproxyip", "reverseProxyIP" ], "globals-typo3-conf-vars-sys-reverseproxyheadermultivalue": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-reverseproxyheadermultivalue", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-reverseproxyheadermultivalue", "reverseProxyHeaderMultiValue" ], "globals-typo3-conf-vars-sys-reverseproxyprefix": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-reverseproxyprefix", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-reverseproxyprefix", "reverseProxyPrefix" ], "globals-typo3-conf-vars-sys-reverseproxyssl": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-reverseproxyssl", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-reverseproxyssl", "reverseProxySSL" ], "globals-typo3-conf-vars-sys-reverseproxyprefixssl": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-reverseproxyprefixssl", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-reverseproxyprefixssl", "reverseProxyPrefixSSL" ], "globals-typo3-conf-vars-sys-displayerrors": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-displayerrors", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-displayerrors", "displayErrors" ], "globals-typo3-conf-vars-sys-productionexceptionhandler": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-productionexceptionhandler", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-productionexceptionhandler", "productionExceptionHandler" ], "globals-typo3-conf-vars-sys-debugexceptionhandler": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-debugexceptionhandler", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-debugexceptionhandler", "debugExceptionHandler" ], "globals-typo3-conf-vars-sys-errorhandler": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-errorhandler", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-errorhandler", "errorHandler" ], "globals-typo3-conf-vars-sys-errorhandlererrors": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-errorhandlererrors", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-errorhandlererrors", "errorHandlerErrors" ], "globals-typo3-conf-vars-sys-exceptionalerrors": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-exceptionalerrors", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-exceptionalerrors", "exceptionalErrors" ], "globals-typo3-conf-vars-sys-belogerrorreporting": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-belogerrorreporting", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-belogerrorreporting", "belogErrorReporting" ], "globals-typo3-conf-vars-sys-generateapachehtaccess": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-generateapachehtaccess", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-generateapachehtaccess", "generateApacheHtaccess" ], "globals-typo3-conf-vars-sys-ipanonymization": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-ipanonymization", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-ipanonymization", "ipAnonymization" ], "globals-typo3-conf-vars-sys-systemmaintainers": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-systemmaintainers", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-systemmaintainers", "systemMaintainers" ], "globals-typo3-conf-vars-sys-features": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features", "features" ], "globals-typo3-conf-vars-sys-features-form-legacyuploadmimetypes": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features-form-legacyuploadmimetypes", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features-form-legacyuploadmimetypes", "form.legacyUploadMimeTypes" ], "globals-typo3-conf-vars-sys-features-redirects-hitcount": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features-redirects-hitcount", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features-redirects-hitcount", "redirects.hitCount" ], "globals-typo3-conf-vars-sys-features-security-backend-enforcereferrer": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features-security-backend-enforcereferrer", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features-security-backend-enforcereferrer", "security.backend.enforceReferrer" ], "globals-typo3-conf-vars-sys-features-security-backend-enforcecontentsecuritypolicy": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features-security-backend-enforcecontentsecuritypolicy", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features-security-backend-enforcecontentsecuritypolicy", "security.backend.enforceContentSecurityPolicy" ], "globals-typo3-conf-vars-sys-features-security-frontend-enforcecontentsecuritypolicy": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features-security-frontend-enforcecontentsecuritypolicy", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features-security-frontend-enforcecontentsecuritypolicy", "security.frontend.enforceContentSecurityPolicy" ], "globals-typo3-conf-vars-sys-features-security-frontend-reportcontentsecuritypolicy": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features-security-frontend-reportcontentsecuritypolicy", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features-security-frontend-reportcontentsecuritypolicy", "security.frontend.reportContentSecurityPolicy" ], "globals-typo3-conf-vars-sys-features-security-frontend-allowinsecureframeoptioninshowimagecontroller": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features-security-frontend-allowinsecureframeoptioninshowimagecontroller", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features-security-frontend-allowinsecureframeoptioninshowimagecontroller", "security.frontend.allowInsecureFrameOptionInShowImageController" ], "globals-typo3-conf-vars-sys-features-security-frontend-allowinsecuresiteresolutionbyqueryparameters": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features-security-frontend-allowinsecuresiteresolutionbyqueryparameters", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features-security-frontend-allowinsecuresiteresolutionbyqueryparameters", "security.frontend.allowInsecureSiteResolutionByQueryParameters" ], "globals-typo3-conf-vars-sys-features-security-usepasswordpolicyforfrontendusers": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features-security-usepasswordpolicyforfrontendusers", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features-security-usepasswordpolicyforfrontendusers", "security.usePasswordPolicyForFrontendUsers" ], "globals-typo3-conf-vars-sys-availablepasswordhashalgorithms": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-availablepasswordhashalgorithms", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-availablepasswordhashalgorithms", "availablePasswordHashAlgorithms" ], "globals-typo3-conf-vars-sys-linkhandler": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-linkhandler", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-linkhandler", "$GLOBALS['TYPO3_CONF_VARS']['SYS']['linkHandler']" ], "globals-typo3-conf-vars-sys-lang": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-lang", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-lang", "lang" ], "globals-typo3-conf-vars-sys-lang-requireapprovedlocalizations": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-lang-requireapprovedlocalizations", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-lang-requireapprovedlocalizations", "requireApprovedLocalizations" ], "globals-typo3-conf-vars-sys-messenger": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-messenger", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-messenger", "messenger" ], "globals-typo3-conf-vars-sys-messenger-routing": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-messenger-routing", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-messenger-routing", "routing" ], "globals-typo3-conf-vars-sys-fileinfo": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-fileinfo", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-fileinfo", "FileInfo" ], "globals-typo3-conf-vars-sys-fileinfo-fileextensiontomimetype": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-fileinfo-fileextensiontomimetype", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-fileinfo-fileextensiontomimetype", "fileExtensionToMimeType" ] }, @@ -55107,91 +55185,91 @@ "backend-module": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-menu-backend-module", "" ], "backend-module-default": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-default", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-menu-backend-module-default", "" ], "backend-module-extbase": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-extbase", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-menu-backend-module-extbase", "" ], "modules-modals-settings": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-settings", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-menu-modules-modals-settings", "" ], "modules-modals-button-settings": [ "TYPO3 Explained", "12.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-button-settings", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-menu-modules-modals-button-settings", "" ], "content-security-policy-modes": [ "TYPO3 Explained", "12.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-modes", + "ApiOverview\/ContentSecurityPolicy\/Index.html#confval-menu-content-security-policy-modes", "" ], "configuration-flagfiles-index": [ "TYPO3 Explained", "12.4", - "Configuration\/FlagFiles\/Index.html#configuration-flagfiles-index", + "Configuration\/FlagFiles\/Index.html#confval-menu-configuration-flagfiles-index", "" ], "globals-typo3-conf-vars-be": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be", + "Configuration\/Typo3ConfVars\/BE.html#confval-menu-globals-typo3-conf-vars-be", "" ], "globals-typo3-conf-vars-db": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/DB.html#globals-typo3-conf-vars-db", + "Configuration\/Typo3ConfVars\/DB.html#confval-menu-globals-typo3-conf-vars-db", "" ], "globals-typo3-conf-vars-ext": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/EXT.html#globals-typo3-conf-vars-ext", + "Configuration\/Typo3ConfVars\/EXT.html#confval-menu-globals-typo3-conf-vars-ext", "" ], "globals-typo3-conf-vars-fe": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/FE.html#globals-typo3-conf-vars-fe", + "Configuration\/Typo3ConfVars\/FE.html#confval-menu-globals-typo3-conf-vars-fe", "" ], "globals-typo3-conf-vars-gfx": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-gfx", + "Configuration\/Typo3ConfVars\/GFX.html#confval-menu-globals-typo3-conf-vars-gfx", "" ], "globals-typo3-conf-vars-http": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-http", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-menu-globals-typo3-conf-vars-http", "" ], "globals-typo3-conf-vars-mail": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-menu-globals-typo3-conf-vars-mail", "" ], "globals-typo3-conf-vars-sys": [ "TYPO3 Explained", "12.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys", + "Configuration\/Typo3ConfVars\/SYS.html#confval-menu-globals-typo3-conf-vars-sys", "" ] }, @@ -55401,7 +55479,7 @@ "vendor-bin-typo3-command-typo3-sysext-core-bin-typo3-command-ddev-typo3-command": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#vendor-bin-typo3-command-typo3-sysext-core-bin-typo3-command-ddev-typo3-command", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-list-vendor-bin-typo3-command-typo3-sysext-core-bin-typo3-command-ddev-typo3-command", "vendor\/bin\/typo3 <command> | typo3\/sysext\/core\/bin\/typo3 <command> | ddev typo3 <command>" ] }, @@ -55409,217 +55487,217 @@ "completion": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#completion", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-completion", "completion" ], "help": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#help", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-help", "help" ], "list": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#list", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-list", "list" ], "setup": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#setup", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-setup", "setup" ], "backend-lock": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#backend-lock", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-backend-lock", "backend:lock" ], "backend-resetpassword": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#backend-resetpassword", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-backend-resetpassword", "backend:resetpassword" ], "backend-unlock": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#backend-unlock", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-backend-unlock", "backend:unlock" ], "backend-user-create": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#backend-user-create", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-backend-user-create", "backend:user:create" ], "cache-flush": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#cache-flush", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cache-flush", "cache:flush" ], "cache-warmup": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#cache-warmup", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cache-warmup", "cache:warmup" ], "cleanup-deletedrecords": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#cleanup-deletedrecords", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cleanup-deletedrecords", "cleanup:deletedrecords" ], "cleanup-flexforms": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#cleanup-flexforms", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cleanup-flexforms", "cleanup:flexforms" ], "cleanup-localprocessedfiles": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#cleanup-localprocessedfiles", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cleanup-localprocessedfiles", "cleanup:localprocessedfiles" ], "cleanup-missingrelations": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#cleanup-missingrelations", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cleanup-missingrelations", "cleanup:missingrelations" ], "cleanup-orphanrecords": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#cleanup-orphanrecords", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cleanup-orphanrecords", "cleanup:orphanrecords" ], "cleanup-previewlinks": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#cleanup-previewlinks", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cleanup-previewlinks", "cleanup:previewlinks" ], "cleanup-versions": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#cleanup-versions", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cleanup-versions", "cleanup:versions" ], "extension-list": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#extension-list", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-extension-list", "extension:list" ], "extension-setup": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#extension-setup", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-extension-setup", "extension:setup" ], "impexp-export": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#impexp-export", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-impexp-export", "impexp:export" ], "impexp-import": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#impexp-import", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-impexp-import", "impexp:import" ], "language-update": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#language-update", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-language-update", "language:update" ], "mailer-spool-send": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#mailer-spool-send", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-mailer-spool-send", "mailer:spool:send" ], "messenger-consume": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#messenger-consume", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-messenger-consume", "messenger:consume" ], "redirects-checkintegrity": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#redirects-checkintegrity", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-redirects-checkintegrity", "redirects:checkintegrity" ], "redirects-cleanup": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#redirects-cleanup", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-redirects-cleanup", "redirects:cleanup" ], "referenceindex-update": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#referenceindex-update", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-referenceindex-update", "referenceindex:update" ], "scheduler-execute": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#scheduler-execute", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-scheduler-execute", "scheduler:execute" ], "scheduler-list": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#scheduler-list", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-scheduler-list", "scheduler:list" ], "scheduler-run": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#scheduler-run", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-scheduler-run", "scheduler:run" ], "site-list": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#site-list", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-site-list", "site:list" ], "site-show": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#site-show", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-site-show", "site:show" ], "syslog-list": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#syslog-list", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-syslog-list", "syslog:list" ], "upgrade-list": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#upgrade-list", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-upgrade-list", "upgrade:list" ], "upgrade-run": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#upgrade-run", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-upgrade-run", "upgrade:run" ], "workspace-autopublish": [ "TYPO3 Explained", "12.4", - "ApiOverview\/CommandControllers\/ListCommands.html#workspace-autopublish", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-workspace-autopublish", "workspace:autopublish" ] }, diff --git a/legacy_hook/tests/Unit/Fixtures/Permalinks/m/typo3/reference-coreapi/13.4/en-us/objects.inv.json b/legacy_hook/tests/Unit/Fixtures/Permalinks/m/typo3/reference-coreapi/13.4/en-us/objects.inv.json index 72205016..e50bea1d 100644 --- a/legacy_hook/tests/Unit/Fixtures/Permalinks/m/typo3/reference-coreapi/13.4/en-us/objects.inv.json +++ b/legacy_hook/tests/Unit/Fixtures/Permalinks/m/typo3/reference-coreapi/13.4/en-us/objects.inv.json @@ -126,6 +126,18 @@ "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html", "Setting up backend user groups" ], + "Administration\/SystemSettings\/Index": [ + "TYPO3 Explained", + "13.4", + "Administration\/SystemSettings\/Index.html", + "TYPO3 system settings for administrators" + ], + "Administration\/SystemSettings\/MaintenanceMode\/Index": [ + "TYPO3 Explained", + "13.4", + "Administration\/SystemSettings\/MaintenanceMode\/Index.html", + "Maintenance mode: Prevent backend logins during upgrade" + ], "Administration\/Troubleshooting\/Database": [ "TYPO3 Explained", "13.4", @@ -648,6 +660,12 @@ "ApiOverview\/Backend\/LoginProvider.html", "Backend login form API" ], + "ApiOverview\/Backend\/PageTree": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Backend\/PageTree.html", + "The page tree in the TYPO3 backend" + ], "ApiOverview\/Backend\/UriBuilder": [ "TYPO3 Explained", "13.4", @@ -1536,6 +1554,12 @@ "ApiOverview\/Events\/Events\/Core\/Domain\/RecordAccessGrantedEvent.html", "RecordAccessGrantedEvent" ], + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html", + "RecordCreationEvent" + ], "ApiOverview\/Events\/Events\/Core\/Html\/AfterTransformTextForPersistenceEvent": [ "TYPO3 Explained", "13.4", @@ -2196,6 +2220,12 @@ "ApiOverview\/Events\/Events\/Frontend\/AfterCachedPageIsPersistedEvent.html", "AfterCachedPageIsPersistedEvent" ], + "ApiOverview\/Events\/Events\/Frontend\/AfterContentHasBeenFetchedEvent": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Frontend\/AfterContentHasBeenFetchedEvent.html", + "AfterContentHasBeenFetchedEvent" + ], "ApiOverview\/Events\/Events\/Frontend\/AfterContentObjectRendererInitializedEvent": [ "TYPO3 Explained", "13.4", @@ -3510,6 +3540,18 @@ "ApiOverview\/Seo\/CanonicalApi.html", "Canonical API" ], + "ApiOverview\/Seo\/Configuration\/Index": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html", + "Suggested configuration options for improved SEO in TYPO3" + ], + "ApiOverview\/Seo\/GeneralRecommendations\/Index": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/GeneralRecommendations\/Index.html", + "General SEO Recommendations for TYPO3 projects" + ], "ApiOverview\/Seo\/Index": [ "TYPO3 Explained", "13.4", @@ -3786,12 +3828,6 @@ "ApiOverview\/SymfonyExpressionLanguage\/Index.html", "Symfony expression language" ], - "ApiOverview\/SystemOverview\/Index": [ - "TYPO3 Explained", - "13.4", - "ApiOverview\/SystemOverview\/Index.html", - "System Overview" - ], "ApiOverview\/SystemRegistry\/Index": [ "TYPO3 Explained", "13.4", @@ -3894,54 +3930,6 @@ "CodingGuidelines\/CglYaml.html", "YAML coding guidelines" ], - "CodingGuidelines\/CodingBestPractices\/AccessingTheDatabase": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/AccessingTheDatabase.html", - "Accessing the database" - ], - "CodingGuidelines\/CodingBestPractices\/ClassNamesOfUserFiles": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/ClassNamesOfUserFiles.html", - "Namespaces and class names of user files" - ], - "CodingGuidelines\/CodingBestPractices\/HandlingDeprecations": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/HandlingDeprecations.html", - "Handling deprecations" - ], - "CodingGuidelines\/CodingBestPractices\/Index": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/Index.html", - "PHP best practices" - ], - "CodingGuidelines\/CodingBestPractices\/NamedArguments": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html", - "Named arguments" - ], - "CodingGuidelines\/CodingBestPractices\/Singletons": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/Singletons.html", - "Singletons" - ], - "CodingGuidelines\/CodingBestPractices\/StaticMethods": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/StaticMethods.html", - "Static methods" - ], - "CodingGuidelines\/CodingBestPractices\/UnitTests": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/UnitTests.html", - "Unit Tests" - ], "CodingGuidelines\/Index": [ "TYPO3 Explained", "13.4", @@ -3954,36 +3942,6 @@ "CodingGuidelines\/Introduction.html", "Introduction to the TYPO3 coding guidelines (CGL)" ], - "CodingGuidelines\/PhpArchitecture\/Index": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/Index.html", - "PHP architecture" - ], - "CodingGuidelines\/PhpArchitecture\/Services": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/Services.html", - "Services" - ], - "CodingGuidelines\/PhpArchitecture\/StaticMethods": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/StaticMethods.html", - "Static Methods, static Classes, Utility Classes" - ], - "CodingGuidelines\/PhpArchitecture\/Traits": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/Traits.html", - "Traits" - ], - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html", - "Working with exceptions" - ], "Configuration\/ApplicationContext": [ "TYPO3 Explained", "13.4", @@ -4614,6 +4572,12 @@ "ExtensionArchitecture\/HowTo\/BackendModule\/ModuleConfiguration.html", "Backend module configuration examples" ], + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations": [ + "TYPO3 Explained", + "13.4", + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations.html", + "Security Considerations" + ], "ExtensionArchitecture\/HowTo\/BackendModule\/Tutorials": [ "TYPO3 Explained", "13.4", @@ -4902,6 +4866,48 @@ "Introduction\/Index.html", "Introduction" ], + "PhpArchitecture\/Index": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/Index.html", + "PHP architecture" + ], + "PhpArchitecture\/NamedArguments": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/NamedArguments.html", + "Named arguments" + ], + "PhpArchitecture\/Services": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/Services.html", + "Services" + ], + "PhpArchitecture\/Singletons": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/Singletons.html", + "Singletons" + ], + "PhpArchitecture\/StaticMethods": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/StaticMethods.html", + "Static Methods, static Classes, Utility Classes" + ], + "PhpArchitecture\/Traits": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/Traits.html", + "Traits" + ], + "PhpArchitecture\/WorkingWithExceptions": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/WorkingWithExceptions.html", + "Working with exceptions" + ], "Security\/Backups\/Index": [ "TYPO3 Explained", "13.4", @@ -5672,6 +5678,30 @@ "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#describe-naming-conventions-in-tca", "Describe the naming conventions in the TCA" ], + "system-settings": [ + "TYPO3 Explained", + "13.4", + "Administration\/SystemSettings\/Index.html#system-settings", + "TYPO3 system settings for administrators" + ], + "maintenance-mode": [ + "TYPO3 Explained", + "13.4", + "Administration\/SystemSettings\/MaintenanceMode\/Index.html#maintenance-mode", + "Maintenance mode: Prevent backend logins during upgrade" + ], + "maintenance-mode-total": [ + "TYPO3 Explained", + "13.4", + "Administration\/SystemSettings\/MaintenanceMode\/Index.html#maintenance-mode-total", + "Total shutdown for maintenance purposes" + ], + "maintenance-mode-editors": [ + "TYPO3 Explained", + "13.4", + "Administration\/SystemSettings\/MaintenanceMode\/Index.html#maintenance-mode-editors", + "Lock the TYPO3 backend for editors" + ], "troubleshooting-database": [ "TYPO3 Explained", "13.4", @@ -6308,6 +6338,12 @@ "ApiOverview\/Assets\/Index.html#assets-rendering-order", "Rendering order" ], + "assets-examples": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Assets\/Index.html#assets-examples", + "Examples" + ], "assets-events": [ "TYPO3 Explained", "13.4", @@ -7208,6 +7244,24 @@ "ApiOverview\/Backend\/LoginProvider.html#login-provider-examples", "Examples" ], + "page-tree": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Backend\/PageTree.html#page-tree", + "The page tree in the TYPO3 backend" + ], + "page-tree-events": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Backend\/PageTree.html#page-tree-events", + "PSR-14 events to influence the functionality of the page tree" + ], + "page-tree-tsconfig": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Backend\/PageTree.html#page-tree-tsconfig", + "TsConfig settings to influence the page tree" + ], "edit-links": [ "TYPO3 Explained", "13.4", @@ -8234,6 +8288,12 @@ "ApiOverview\/CropVariants\/Index.html#cropvariants", "Crop Variants for Images" ], + "cgl-database-access": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Database\/BasicCrud\/Index.html#cgl-database-access", + "Basic create, read, update, and delete operations (CRUD)" + ], "database-basic-crud": [ "TYPO3 Explained", "13.4", @@ -9158,6 +9218,12 @@ "ApiOverview\/Deprecation\/Index.html#deprecation", "Deprecation" ], + "cgl-deprecation": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Deprecation\/Index.html#cgl-deprecation", + "Introduction" + ], "deprecation-introduction": [ "TYPO3 Explained", "13.4", @@ -9668,6 +9734,30 @@ "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#AfterPageTreeItemsPreparedEvent", "AfterPageTreeItemsPreparedEvent" ], + "afterpagetreeitemspreparedevent-labels": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#AfterPageTreeItemsPreparedEvent-labels", + "Labels" + ], + "afterpagetreeitemspreparedevent-status": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#AfterPageTreeItemsPreparedEvent-status", + "Status information" + ], + "afterpagetreeitemspreparedevent-example": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#AfterPageTreeItemsPreparedEvent-example", + "Example" + ], + "afterpagetreeitemspreparedevent-api": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#AfterPageTreeItemsPreparedEvent-api", + "API" + ], "afterrawpagerowpreparedevent": [ "TYPO3 Explained", "13.4", @@ -10220,6 +10310,24 @@ "ApiOverview\/Events\/Events\/Core\/Domain\/RecordAccessGrantedEvent.html#RecordAccessGrantedEvent", "RecordAccessGrantedEvent" ], + "recordcreationevent": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#RecordCreationEvent", + "RecordCreationEvent" + ], + "recordcreationevent-example": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#RecordCreationEvent-example", + "Example" + ], + "recordcreationevent-api": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#RecordCreationEvent-api", + "API" + ], "aftertransformtextforpersistenceevent": [ "TYPO3 Explained", "13.4", @@ -10346,6 +10454,18 @@ "ApiOverview\/Events\/Events\/Core\/Mail\/BeforeMailerSentMessageEvent.html#BeforeMailerSentMessageEvent", "BeforeMailerSentMessageEvent" ], + "beforemailersentmessageevent-example": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Mail\/BeforeMailerSentMessageEvent.html#BeforeMailerSentMessageEvent-example", + "Example" + ], + "beforemailersentmessageevent-api": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Mail\/BeforeMailerSentMessageEvent.html#BeforeMailerSentMessageEvent-api", + "API" + ], "eventlist-core-mail": [ "TYPO3 Explained", "13.4", @@ -10922,6 +11042,24 @@ "ApiOverview\/Events\/Events\/Frontend\/AfterCachedPageIsPersistedEvent.html#AfterCachedPageIsPersistedEvent", "AfterCachedPageIsPersistedEvent" ], + "aftercontenthasbeenfetchedevent": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Frontend\/AfterContentHasBeenFetchedEvent.html#AfterContentHasBeenFetchedEvent", + "AfterContentHasBeenFetchedEvent" + ], + "aftercontenthasbeenfetchedevent-example": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Frontend\/AfterContentHasBeenFetchedEvent.html#AfterContentHasBeenFetchedEvent-example", + "Example" + ], + "aftercontenthasbeenfetchedevent-api": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Frontend\/AfterContentHasBeenFetchedEvent.html#AfterContentHasBeenFetchedEvent-api", + "API" + ], "aftercontentobjectrendererinitializedevent": [ "TYPO3 Explained", "13.4", @@ -13292,6 +13430,12 @@ "ApiOverview\/Mail\/Index.html#mail-configuration-fluid", "Fluid paths" ], + "mail-configuration-fluid-example": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Mail\/Index.html#mail-configuration-fluid-example", + "Minimal example for a Fluid-based email template" + ], "mail-configuration-transport": [ "TYPO3 Explained", "13.4", @@ -14324,6 +14468,132 @@ "ApiOverview\/Seo\/CanonicalApi.html#canonicalapi", "Canonical API" ], + "canonicalapi-additionalparameters": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/CanonicalApi.html#canonicalapi-additionalparameters", + "Including specific arguments for the URL generation" + ], + "seo-configuration": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration", + "Suggested configuration options for improved SEO in TYPO3" + ], + "seo-configuration-site": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-site", + "Site configuration" + ], + "seo-configuration-site-entry-point": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-site-entry-point", + "Entry Point" + ], + "seo-configuration-site-languages": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-site-languages", + "Languages" + ], + "seo-configuration-site-error-handling": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-site-error-handling", + "Error Handling" + ], + "seo-configuration-site-robots-txt": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-site-robots-txt", + "robots.txt" + ], + "seo-configuration-site-routes": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-site-routes", + "Static Routes and redirects" + ], + "config-tags": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#config-tags", + "Tags for SEO purposes in the HTML header" + ], + "config-hreflang-tags": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#config-hreflang-tags", + "Hreflang link-tags" + ], + "config-canonical-tag": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#config-canonical-tag", + "Canonical Tag" + ], + "seo-configuration-links": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-links", + "Working links" + ], + "seo-configuration-typoscript-examples": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-typoscript-examples", + "TypoScript examples" + ], + "seo-configuration-title": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-title", + "Influencing the title tag in the HTML head" + ], + "seo-configuration-typoscript-examples-og": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-typoscript-examples-og", + "Setting missing OpenGraph meta tags" + ], + "seo-configuration-typoscript-examples-metatags": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-typoscript-examples-metatags", + "Setting fallbacks for meta tags" + ], + "seo-configuration-typoscript-examples-og-fallback": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-typoscript-examples-og-fallback", + "Setting fallbacks for og:image and twitter:image" + ], + "seo-configuration-typoscript-examples-author": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-typoscript-examples-author", + "Setting defaults for the author on meta tags" + ], + "seo-recommendations": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/GeneralRecommendations\/Index.html#seo-recommendations", + "General SEO Recommendations for TYPO3 projects" + ], + "seo-recommendations-extensions": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/GeneralRecommendations\/Index.html#seo-recommendations-extensions", + "Recommendations for additional SEO extensions" + ], + "seo-recommendations-field-description": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/GeneralRecommendations\/Index.html#seo-recommendations-field-description", + "Recommendations for the description field" + ], "seo": [ "TYPO3 Explained", "13.4", @@ -15074,30 +15344,6 @@ "ApiOverview\/SymfonyExpressionLanguage\/Index.html#sel-ts-additional-functions", "Additional functions" ], - "overview": [ - "TYPO3 Explained", - "13.4", - "ApiOverview\/SystemOverview\/Index.html#overview", - "System Overview" - ], - "system-overview": [ - "TYPO3 Explained", - "13.4", - "ApiOverview\/SystemOverview\/Index.html#system-overview", - "System Overview" - ], - "system-overview-application": [ - "TYPO3 Explained", - "13.4", - "ApiOverview\/SystemOverview\/Index.html#system-overview-application", - "Application layer" - ], - "system-overview-ui": [ - "TYPO3 Explained", - "13.4", - "ApiOverview\/SystemOverview\/Index.html#system-overview-ui", - "User interface layer" - ], "registry": [ "TYPO3 Explained", "13.4", @@ -15362,60 +15608,6 @@ "CodingGuidelines\/CglYaml.html#cgl-yaml", "YAML coding guidelines" ], - "cgl-database-access": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/AccessingTheDatabase.html#cgl-database-access", - "Accessing the database" - ], - "cgl-namespaces-class-names": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/ClassNamesOfUserFiles.html#cgl-namespaces-class-names", - "Namespaces and class names of user files" - ], - "cgl-deprecation": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/HandlingDeprecations.html#cgl-deprecation", - "Handling deprecations" - ], - "cgl-best-practices": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/Index.html#cgl-best-practices", - "PHP best practices" - ], - "cgl-named-arguments": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#cgl-named-arguments", - "Named arguments" - ], - "cgl-named-arguments-pcpp-value-objects": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#cgl-named-arguments-pcpp-value-objects", - "Leveraging Named Arguments in PCPP Value Objects" - ], - "cgl-singletons": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/Singletons.html#cgl-singletons", - "Singletons" - ], - "cgl-static-methods": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/StaticMethods.html#cgl-static-methods", - "Static methods" - ], - "cgl-unit-tests": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/UnitTests.html#cgl-unit-tests", - "Unit Tests" - ], "cgl": [ "TYPO3 Explained", "13.4", @@ -15452,42 +15644,6 @@ "CodingGuidelines\/Introduction.html#cgl-editorconfig", ".editorconfig" ], - "cgl-php-architecture": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/Index.html#cgl-php-architecture", - "PHP architecture" - ], - "cgl-modeling-cross-cutting-concerns": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/Index.html#cgl-modeling-cross-cutting-concerns", - "PHP architecture" - ], - "cgl-services": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/Services.html#cgl-services", - "Services" - ], - "cgl-model-static-methods": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/StaticMethods.html#cgl-model-static-methods", - "Static Methods, static Classes, Utility Classes" - ], - "cgl-traits": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/Traits.html#cgl-traits", - "Traits" - ], - "cgl-working-with-exceptions": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html#cgl-working-with-exceptions", - "Working with exceptions" - ], "application-context": [ "TYPO3 Explained", "13.4", @@ -18428,6 +18584,12 @@ "ExtensionArchitecture\/HowTo\/BackendModule\/ModuleConfiguration.html#backend-modules-configuration-example-debug", "Check if the modules have been properly registered" ], + "backend-modules-security": [ + "TYPO3 Explained", + "13.4", + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations.html#backend-modules-security", + "Security Considerations" + ], "backend-modules-tutorials": [ "TYPO3 Explained", "13.4", @@ -19220,6 +19382,72 @@ "Introduction\/Index.html#introduction-getting-help", "Getting help with TYPO3" ], + "cgl-best-practices": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/Index.html#cgl-best-practices", + "PHP architecture" + ], + "cgl-php-architecture": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/Index.html#cgl-php-architecture", + "PHP architecture" + ], + "cgl-modeling-cross-cutting-concerns": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/Index.html#cgl-modeling-cross-cutting-concerns", + "PHP architecture" + ], + "cgl-named-arguments": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/NamedArguments.html#cgl-named-arguments", + "Named arguments" + ], + "cgl-named-arguments-pcpp-value-objects": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/NamedArguments.html#cgl-named-arguments-pcpp-value-objects", + "Leveraging Named Arguments in PCPP Value Objects" + ], + "cgl-services": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/Services.html#cgl-services", + "Services" + ], + "cgl-singletons": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/Singletons.html#cgl-singletons", + "Singletons" + ], + "cgl-static-methods": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/StaticMethods.html#cgl-static-methods", + "Static Methods, static Classes, Utility Classes" + ], + "cgl-model-static-methods": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/StaticMethods.html#cgl-model-static-methods", + "Static Methods, static Classes, Utility Classes" + ], + "cgl-traits": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/Traits.html#cgl-traits", + "Traits" + ], + "cgl-working-with-exceptions": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/WorkingWithExceptions.html#cgl-working-with-exceptions", + "Working with exceptions" + ], "security-backups": [ "TYPO3 Explained", "13.4", @@ -20252,6 +20480,12 @@ "Testing\/UnitTesting\/Index.html#testing-writing-unit", "Unit testing with the TYPO3 testing framework" ], + "cgl-unit-tests": [ + "TYPO3 Explained", + "13.4", + "Testing\/UnitTesting\/Index.html#cgl-unit-tests", + "Unit test conventions" + ], "testing-writing-unit-conventions": [ "TYPO3 Explained", "13.4", @@ -25070,6 +25304,78 @@ "ApiOverview\/Events\/Events\/Core\/Domain\/RecordAccessGrantedEvent.html#typo3-cms-core-domain-access-recordaccessgrantedevent-getcontext", "\\TYPO3\\CMS\\Core\\Domain\\Access\\RecordAccessGrantedEvent::getContext" ], + "typo3-cms-core-domain-event-recordcreationevent": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent" + ], + "typo3-cms-core-domain-event-recordcreationevent-setrecord": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-setrecord", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::setRecord" + ], + "typo3-cms-core-domain-event-recordcreationevent-ispropagationstopped": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-ispropagationstopped", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::isPropagationStopped" + ], + "typo3-cms-core-domain-event-recordcreationevent-hasproperty": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-hasproperty", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::hasProperty" + ], + "typo3-cms-core-domain-event-recordcreationevent-setproperty": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-setproperty", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::setProperty" + ], + "typo3-cms-core-domain-event-recordcreationevent-setproperties": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-setproperties", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::setProperties" + ], + "typo3-cms-core-domain-event-recordcreationevent-unsetproperty": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-unsetproperty", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::unsetProperty" + ], + "typo3-cms-core-domain-event-recordcreationevent-getproperty": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-getproperty", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::getProperty" + ], + "typo3-cms-core-domain-event-recordcreationevent-getproperties": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-getproperties", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::getProperties" + ], + "typo3-cms-core-domain-event-recordcreationevent-getrawrecord": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-getrawrecord", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::getRawRecord" + ], + "typo3-cms-core-domain-event-recordcreationevent-getsystemproperties": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-getsystemproperties", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::getSystemProperties" + ], + "typo3-cms-core-domain-event-recordcreationevent-getcontext": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-getcontext", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::getContext" + ], "typo3-cms-core-html-event-aftertransformtextforpersistenceevent": [ "TYPO3 Explained", "13.4", @@ -25376,18 +25682,6 @@ "ApiOverview\/Events\/Events\/Core\/LinkHandling\/BeforeTypoLinkEncodedEvent.html#typo3-cms-core-linkhandling-event-beforetypolinkencodedevent-getemptyvaluesymbol", "\\TYPO3\\CMS\\Core\\LinkHandling\\Event\\BeforeTypoLinkEncodedEvent::getEmptyValueSymbol" ], - "typo3-cms-core-mail-event-aftermailerinitializationevent": [ - "TYPO3 Explained", - "13.4", - "ApiOverview\/Events\/Events\/Core\/Mail\/AfterMailerInitializationEvent.html#typo3-cms-core-mail-event-aftermailerinitializationevent", - "\\TYPO3\\CMS\\Core\\Mail\\Event\\AfterMailerInitializationEvent" - ], - "typo3-cms-core-mail-event-aftermailerinitializationevent-getmailer": [ - "TYPO3 Explained", - "13.4", - "ApiOverview\/Events\/Events\/Core\/Mail\/AfterMailerInitializationEvent.html#typo3-cms-core-mail-event-aftermailerinitializationevent-getmailer", - "\\TYPO3\\CMS\\Core\\Mail\\Event\\AfterMailerInitializationEvent::getMailer" - ], "typo3-cms-core-mail-event-aftermailersentmessageevent": [ "TYPO3 Explained", "13.4", @@ -27350,6 +27644,24 @@ "ApiOverview\/Events\/Events\/Frontend\/AfterCachedPageIsPersistedEvent.html#typo3-cms-frontend-event-aftercachedpageispersistedevent-getcachelifetime", "\\TYPO3\\CMS\\Frontend\\Event\\AfterCachedPageIsPersistedEvent::getCacheLifetime" ], + "typo3-cms-frontend-event-aftercontenthasbeenfetchedevent": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Frontend\/AfterContentHasBeenFetchedEvent.html#typo3-cms-frontend-event-aftercontenthasbeenfetchedevent", + "\\TYPO3\\CMS\\Frontend\\Event\\AfterContentHasBeenFetchedEvent" + ], + "typo3-cms-frontend-event-aftercontenthasbeenfetchedevent-groupedcontent": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Frontend\/AfterContentHasBeenFetchedEvent.html#typo3-cms-frontend-event-aftercontenthasbeenfetchedevent-groupedcontent", + "\\TYPO3\\CMS\\Frontend\\Event\\AfterContentHasBeenFetchedEvent::groupedContent" + ], + "typo3-cms-frontend-event-aftercontenthasbeenfetchedevent-request": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Frontend\/AfterContentHasBeenFetchedEvent.html#typo3-cms-frontend-event-aftercontenthasbeenfetchedevent-request", + "\\TYPO3\\CMS\\Frontend\\Event\\AfterContentHasBeenFetchedEvent::request" + ], "typo3-cms-frontend-contentobject-event-aftercontentobjectrendererinitializedevent": [ "TYPO3 Explained", "13.4", @@ -32827,13 +33139,13 @@ "about-this-manual": [ "TYPO3 Explained", "13.4", - "About.html#about-this-manual", + "About.html#about", "About This Manual" ], "intended-audience": [ "TYPO3 Explained", "13.4", - "About.html#intended-audience", + "About.html#audience", "Intended Audience" ], "code-examples": [ @@ -32845,7 +33157,7 @@ "feedback-and-contribute": [ "TYPO3 Explained", "13.4", - "About.html#feedback-and-contribute", + "About.html#feedback", "Feedback and Contribute" ], "credits": [ @@ -32863,55 +33175,55 @@ "typo3-administration": [ "TYPO3 Explained", "13.4", - "Administration\/Index.html#typo3-administration", + "Administration\/Index.html#administration", "TYPO3 administration" ], "deployer": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/Deployer\/Index.html#deployer", + "Administration\/Installation\/Deployer\/Index.html#deployment-deployer", "Deployer" ], "deploying-typo3": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/DeployTYPO3.html#deploying-typo3", + "Administration\/Installation\/DeployTYPO3.html#deployment", "Deploying TYPO3" ], "general-deployment-steps": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/DeployTYPO3.html#general-deployment-steps", + "Administration\/Installation\/DeployTYPO3.html#deployment-steps", "General Deployment Steps" ], "deployment-automation": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/DeployTYPO3.html#deployment-automation", + "Administration\/Installation\/DeployTYPO3.html#deployment-automatic", "Deployment Automation" ], "configuring-environments": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/EnvironmentConfiguration.html#configuring-environments", + "Administration\/Installation\/EnvironmentConfiguration.html#environment-configuration", "Configuring environments" ], "env-dotenv-files": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/EnvironmentConfiguration.html#env-dotenv-files", + "Administration\/Installation\/EnvironmentConfiguration.html#environment-dotenv", ".env \/ dotenv files" ], "helhum-dotenv-connect": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/EnvironmentConfiguration.html#helhum-dotenv-connect", + "Administration\/Installation\/EnvironmentConfiguration.html#environment-helhum-dotenv", "helhum\/dotenv-connect" ], "plain-php-configuration-files": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/EnvironmentConfiguration.html#plain-php-configuration-files", + "Administration\/Installation\/EnvironmentConfiguration.html#environment-phpconfig", "Plain PHP configuration files" ], "installation": [ @@ -32923,7 +33235,7 @@ "installing-typo3": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/Install.html#installing-typo3", + "Administration\/Installation\/Install.html#installation", "Installing TYPO3" ], "pre-installation-checklist": [ @@ -32959,7 +33271,7 @@ "access-typo3-via-a-web-browser": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/Install.html#access-typo3-via-a-web-browser", + "Administration\/Installation\/Install.html#install-access-typo3-via-a-web-browser", "Access TYPO3 via a web browser" ], "scan-environment": [ @@ -32995,55 +33307,55 @@ "installing-extensions-legacy-guide": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/LegacyExtensionInstallation.html#installing-extensions-legacy-guide", + "Administration\/Installation\/LegacyExtensionInstallation.html#extensions-legacy-management", "Installing Extensions - Legacy Guide" ], "installing-an-extension-using-the-extension-manager": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/LegacyExtensionInstallation.html#installing-an-extension-using-the-extension-manager", + "Administration\/Installation\/LegacyExtensionInstallation.html#extension-install", "Installing an Extension using the Extension Manager" ], "uninstall-an-extension-without-composer": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/LegacyExtensionInstallation.html#uninstall-an-extension-without-composer", + "Administration\/Installation\/LegacyExtensionInstallation.html#uninstall-extension-without-composer", "Uninstall an Extension Without Composer" ], "check-dependencies": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/LegacyExtensionInstallation.html#check-dependencies", + "Administration\/Installation\/LegacyExtensionInstallation.html#uninstall-extension-without-composer-dependencies", "Check Dependencies" ], "uninstall-deactivate-extension-via-typo3-backend": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/LegacyExtensionInstallation.html#uninstall-deactivate-extension-via-typo3-backend", + "Administration\/Installation\/LegacyExtensionInstallation.html#uninstall-extension-backend", "Uninstall \/ Deactivate Extension via TYPO3 Backend" ], "remove-an-extension-via-the-typo3-backend": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/LegacyExtensionInstallation.html#remove-an-extension-via-the-typo3-backend", + "Administration\/Installation\/LegacyExtensionInstallation.html#remove-extension-backend", "Remove an Extension via the TYPO3 Backend" ], "uninstalling-an-extension-manually": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/LegacyExtensionInstallation.html#uninstalling-an-extension-manually", + "Administration\/Installation\/LegacyExtensionInstallation.html#uninstall-extension-manually", "Uninstalling an Extension Manually" ], "removing-an-extension-manually": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/LegacyExtensionInstallation.html#removing-an-extension-manually", + "Administration\/Installation\/LegacyExtensionInstallation.html#remove-extension-manually", "Removing an extension manually" ], "legacy-installation": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/LegacyInstallation.html#legacy-installation", + "Administration\/Installation\/LegacyInstallation.html#legacyinstallation", "Legacy Installation" ], "installing-on-a-unix-server": [ @@ -33067,19 +33379,19 @@ "magallanes": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/Magallanes\/Index.html#magallanes", + "Administration\/Installation\/Magallanes\/Index.html#deployment-magallanes", "Magallanes" ], "production-settings-1": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/ProductionSettings.html#production-settings-1", + "Administration\/Installation\/ProductionSettings.html#production-settings", "Production Settings" ], "typo3-release-integrity": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/ReleaseIntegrity.html#typo3-release-integrity", + "Administration\/Installation\/ReleaseIntegrity.html#release_integrity", "TYPO3 release integrity" ], "release-contents": [ @@ -33115,43 +33427,43 @@ "typo3-surf": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/Surf\/Index.html#typo3-surf", + "Administration\/Installation\/Surf\/Index.html#deployment-typo3-surf", "TYPO3 Surf" ], "system-requirements-1": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/SystemRequirements\/Index.html#system-requirements-1", + "Administration\/Installation\/SystemRequirements\/Index.html#system-requirements", "System Requirements" ], "php": [ "TYPO3 Explained", "13.4", - "Configuration\/ApplicationContext.html#php", + "Configuration\/ApplicationContext.html#read-application-context-php", "PHP" ], "configure": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/SystemRequirements\/Index.html#configure", + "Administration\/Installation\/SystemRequirements\/Index.html#system-requirements-php-configuration", "Configure" ], "required-extensions": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/SystemRequirements\/Index.html#required-extensions", + "Administration\/Installation\/SystemRequirements\/Index.html#system-requirements-php-extensions", "Required Extensions" ], "required-database-extensions": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/SystemRequirements\/Index.html#required-database-extensions", + "Administration\/Installation\/SystemRequirements\/Index.html#system-requirements-php-database-extensions", "Required Database Extensions" ], "web-server": [ "TYPO3 Explained", "13.4", - "Administration\/Troubleshooting\/WebServer.html#web-server", + "Administration\/Troubleshooting\/WebServer.html#troubleshooting-webserver", "Web Server" ], "htaccess": [ @@ -33163,7 +33475,7 @@ "virtual-host-record": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/SystemRequirements\/Index.html#virtual-host-record", + "Administration\/Installation\/SystemRequirements\/Index.html#vhost-records", "Virtual Host Record" ], "apache-modules": [ @@ -33175,13 +33487,13 @@ "database": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Database\/Index.html#database", + "ApiOverview\/Events\/Events\/Core\/Database\/Index.html#eventlist-core-database", "Database" ], "required-database-privileges": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/SystemRequirements\/Index.html#required-database-privileges", + "Administration\/Installation\/SystemRequirements\/Index.html#system-requirements-database", "Required Database Privileges" ], "composer": [ @@ -33193,7 +33505,7 @@ "tuning-typo3": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/TuneTYPO3.html#tuning-typo3", + "Administration\/Installation\/TuneTYPO3.html#tunetypo3", "Tuning TYPO3" ], "opcache": [ @@ -33217,43 +33529,43 @@ "example-configuration-of-backend-user-groups": [ "TYPO3 Explained", "13.4", - "Administration\/PermissionsManagement\/ExampleConfiguration\/Index.html#example-configuration-of-backend-user-groups", + "Administration\/PermissionsManagement\/ExampleConfiguration\/Index.html#example-configuration", "Example configuration of backend user groups" ], "backend-groups-structure-for-a-small-project": [ "TYPO3 Explained", "13.4", - "Administration\/PermissionsManagement\/ExampleConfiguration\/Index.html#backend-groups-structure-for-a-small-project", + "Administration\/PermissionsManagement\/ExampleConfiguration\/Index.html#single-site-structure", "Backend groups\u2019 structure for a small project" ], "backend-group-structure-for-a-multi-site-project": [ "TYPO3 Explained", "13.4", - "Administration\/PermissionsManagement\/ExampleConfiguration\/Index.html#backend-group-structure-for-a-multi-site-project", + "Administration\/PermissionsManagement\/ExampleConfiguration\/Index.html#multisite-structure", "Backend group structure for a multi-site project" ], "general-recommendations-1": [ "TYPO3 Explained", "13.4", - "Administration\/PermissionsManagement\/GeneralRecommendations\/Index.html#general-recommendations-1", + "Administration\/PermissionsManagement\/GeneralRecommendations\/Index.html#general-recommendations", "General recommendations" ], "create-user-specific-accounts": [ "TYPO3 Explained", "13.4", - "Administration\/PermissionsManagement\/GeneralRecommendations\/Index.html#create-user-specific-accounts", + "Administration\/PermissionsManagement\/GeneralRecommendations\/Index.html#user-specific-accounts", "Create user-specific accounts" ], "how-to-ensure-safety": [ "TYPO3 Explained", "13.4", - "Administration\/PermissionsManagement\/GeneralRecommendations\/Index.html#how-to-ensure-safety", + "Administration\/PermissionsManagement\/GeneralRecommendations\/Index.html#ensure-safety", "How to ensure safety" ], "set-permissions-via-groups-not-user-records": [ "TYPO3 Explained", "13.4", - "Administration\/PermissionsManagement\/GeneralRecommendations\/Index.html#set-permissions-via-groups-not-user-records", + "Administration\/PermissionsManagement\/GeneralRecommendations\/Index.html#permissions-via-groups", "Set permissions via groups, not user records" ], "file-mounts-and-files-management": [ @@ -33265,37 +33577,37 @@ "groups-inheritance-1": [ "TYPO3 Explained", "13.4", - "Administration\/PermissionsManagement\/GroupsInheritance\/Index.html#groups-inheritance-1", + "Administration\/PermissionsManagement\/GroupsInheritance\/Index.html#groups-inheritance", "Groups inheritance" ], "permissions-management-1": [ "TYPO3 Explained", "13.4", - "Administration\/PermissionsManagement\/Index.html#permissions-management-1", + "Administration\/PermissionsManagement\/Index.html#permissions-management", "Permissions management" ], "introduction": [ "TYPO3 Explained", "13.4", - "Testing\/Tutorial\/Enetcache.html#introduction", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-introduction", "Introduction" ], "what-access-options-can-be-set-within-typo3": [ "TYPO3 Explained", "13.4", - "Administration\/PermissionsManagement\/Index.html#what-access-options-can-be-set-within-typo3", + "Administration\/PermissionsManagement\/Index.html#available-acl-options", "What access options can be set within TYPO3?" ], "permissions-synchronization-1": [ "TYPO3 Explained", "13.4", - "Administration\/PermissionsManagement\/PermissionsSynchronization\/Index.html#permissions-synchronization-1", + "Administration\/PermissionsManagement\/PermissionsSynchronization\/Index.html#permissions-synchronization", "Permissions synchronization" ], "managing-database-configurations-importing-and-exporting": [ "TYPO3 Explained", "13.4", - "Administration\/PermissionsManagement\/PermissionsSynchronization\/Index.html#managing-database-configurations-importing-and-exporting", + "Administration\/PermissionsManagement\/PermissionsSynchronization\/Index.html#permissions-import-export", "Managing database configurations: importing and exporting" ], "deployable-permissions": [ @@ -33307,7 +33619,7 @@ "setting-up-backend-user-groups-1": [ "TYPO3 Explained", "13.4", - "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#setting-up-backend-user-groups-1", + "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#setting-up-backend-user-groups", "Setting up backend user groups" ], "system-groups": [ @@ -33319,25 +33631,25 @@ "access-control-list-acl-groups": [ "TYPO3 Explained", "13.4", - "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#access-control-list-acl-groups", + "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#acl-groups", "Access Control List (ACL) groups" ], "role-groups-as-an-aggregation-of-specific-role-permissions": [ "TYPO3 Explained", "13.4", - "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#role-groups-as-an-aggregation-of-specific-role-permissions", + "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#role-groups", "Role groups as an aggregation of specific role permissions" ], "implementing-naming-conventions-for-easy-group-management": [ "TYPO3 Explained", "13.4", - "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#implementing-naming-conventions-for-easy-group-management", + "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#naming-convention", "Implementing naming conventions for easy group management" ], "role-group": [ "TYPO3 Explained", "13.4", - "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#role-group", + "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#role-group:", "Role Group" ], "page-group": [ @@ -33379,13 +33691,13 @@ "limit-to-languages": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/GroupPermissions\/Index.html#limit-to-languages", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-language-limit", "Limit to Languages" ], "describe-the-naming-conventions-in-the-tca": [ "TYPO3 Explained", "13.4", - "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#describe-the-naming-conventions-in-the-tca", + "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#describe-naming-conventions-in-tca", "Describe the naming conventions in the TCA" ], "use-the-notes-field-to-describe-the-purpose-of-the-group": [ @@ -33394,6 +33706,30 @@ "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#use-the-notes-field-to-describe-the-purpose-of-the-group", "Use the Notes field to describe the purpose of the group" ], + "typo3-system-settings-for-administrators": [ + "TYPO3 Explained", + "13.4", + "Administration\/SystemSettings\/Index.html#system-settings", + "TYPO3 system settings for administrators" + ], + "maintenance-mode-prevent-backend-logins-during-upgrade": [ + "TYPO3 Explained", + "13.4", + "Administration\/SystemSettings\/MaintenanceMode\/Index.html#maintenance-mode", + "Maintenance mode: Prevent backend logins during upgrade" + ], + "total-shutdown-for-maintenance-purposes": [ + "TYPO3 Explained", + "13.4", + "Administration\/SystemSettings\/MaintenanceMode\/Index.html#maintenance-mode-total", + "Total shutdown for maintenance purposes" + ], + "lock-the-typo3-backend-for-editors": [ + "TYPO3 Explained", + "13.4", + "Administration\/SystemSettings\/MaintenanceMode\/Index.html#maintenance-mode-editors", + "Lock the TYPO3 backend for editors" + ], "mysql": [ "TYPO3 Explained", "13.4", @@ -33409,25 +33745,25 @@ "troubleshooting": [ "TYPO3 Explained", "13.4", - "ApiOverview\/PasswordHashing\/Troubleshooting.html#troubleshooting", + "ApiOverview\/PasswordHashing\/Troubleshooting.html#password-hashing_troubleshooting", "Troubleshooting" ], "missing-php-modules": [ "TYPO3 Explained", "13.4", - "Administration\/Troubleshooting\/PHP.html#missing-php-modules", + "Administration\/Troubleshooting\/PHP.html#troubleshooting-php-modules", "Missing PHP Modules" ], "php-caches-extension-classes-etc": [ "TYPO3 Explained", "13.4", - "Administration\/Troubleshooting\/PHP.html#php-caches-extension-classes-etc", + "Administration\/Troubleshooting\/PHP.html#troubleshooting-php-caches-extension-classes-etc", "PHP Caches, Extension Classes etc." ], "opcode-cache-messages": [ "TYPO3 Explained", "13.4", - "Administration\/Troubleshooting\/PHP.html#opcode-cache-messages", + "Administration\/Troubleshooting\/PHP.html#troubleshooting-php-troubleshooting_opcode", "Opcode cache messages" ], "no-php-opcode-cache-loaded": [ @@ -33457,121 +33793,121 @@ "system-modules": [ "TYPO3 Explained", "13.4", - "Administration\/Troubleshooting\/SystemModules.html#system-modules", + "Administration\/Troubleshooting\/SystemModules.html#troubleshooting-system_modules", "System Modules" ], "log": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Quickstart\/Index.html#log", + "ApiOverview\/Logging\/Quickstart\/Index.html#logging-quickstart-log", "Log" ], "db-check": [ "TYPO3 Explained", "13.4", - "Administration\/Troubleshooting\/SystemModules.html#db-check", + "Administration\/Troubleshooting\/SystemModules.html#troubleshooting-system-modules-dbcheck", "DB Check" ], "configuration": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/Configuration.html#configuration", + "ExtensionArchitecture\/HowTo\/Configuration.html#extension_configuration", "Configuration" ], "reports": [ "TYPO3 Explained", "13.4", - "Administration\/Troubleshooting\/SystemModules.html#reports", + "Administration\/Troubleshooting\/SystemModules.html#troubleshooting-system-modules-reports", "Reports" ], "typo3": [ "TYPO3 Explained", "13.4", - "ApiOverview\/GlobalValues\/Constants\/Index.html#typo3", + "ApiOverview\/GlobalValues\/Constants\/Index.html#globals-constants-typo3", "TYPO3" ], "resetting-passwords": [ "TYPO3 Explained", "13.4", - "Administration\/Troubleshooting\/TYPO3.html#resetting-passwords", + "Administration\/Troubleshooting\/TYPO3.html#troubleshooting-typo3-password-reset", "Resetting Passwords" ], "backend-administrator-password": [ "TYPO3 Explained", "13.4", - "Administration\/Troubleshooting\/TYPO3.html#backend-administrator-password", + "Administration\/Troubleshooting\/TYPO3.html#troubleshooting-backend-admin-password", "Backend Administrator Password" ], "install-tool-password": [ "TYPO3 Explained", "13.4", - "Administration\/Troubleshooting\/TYPO3.html#install-tool-password", + "Administration\/Troubleshooting\/TYPO3.html#troubleshooting-install-tool-password", "Install Tool Password" ], "debug-settings": [ "TYPO3 Explained", "13.4", - "Administration\/Troubleshooting\/TYPO3.html#debug-settings", + "Administration\/Troubleshooting\/TYPO3.html#troubleshooting-debug-mode", "Debug Settings" ], "caching": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Caching.html#caching", + "ExtensionArchitecture\/Extbase\/Reference\/Caching.html#extbase_caching", "Caching" ], "cached-files-in-typo3temp": [ "TYPO3 Explained", "13.4", - "Administration\/Troubleshooting\/TYPO3.html#cached-files-in-typo3temp", + "Administration\/Troubleshooting\/TYPO3.html#troubleshooting-caching-typo3temp", "Cached Files in typo3temp\/" ], "possible-problems-with-the-cached-files": [ "TYPO3 Explained", "13.4", - "Administration\/Troubleshooting\/TYPO3.html#possible-problems-with-the-cached-files", + "Administration\/Troubleshooting\/TYPO3.html#troubleshooting-possible-problems-with-the-cached-files", "Possible Problems With the Cached Files" ], "changing-the-absolute-path-to-typo3": [ "TYPO3 Explained", "13.4", - "Administration\/Troubleshooting\/TYPO3.html#changing-the-absolute-path-to-typo3", + "Administration\/Troubleshooting\/TYPO3.html#troubleshooting-changing-the-absolute-path-to-typo3", "Changing the absolute path to TYPO3" ], "changing-image-processing-settings": [ "TYPO3 Explained", "13.4", - "Administration\/Troubleshooting\/TYPO3.html#changing-image-processing-settings", + "Administration\/Troubleshooting\/TYPO3.html#troubleshooting-changing-image-processing-settings", "Changing Image Processing Settings" ], "apache": [ "TYPO3 Explained", "13.4", - "Configuration\/ApplicationContext.html#apache", + "Configuration\/ApplicationContext.html#set-application-context-apache", "Apache" ], "enable-mod-rewrite": [ "TYPO3 Explained", "13.4", - "Administration\/Troubleshooting\/WebServer.html#enable-mod-rewrite", + "Administration\/Troubleshooting\/WebServer.html#troubleshooting-enable-mod_rewrite", "Enable mod_rewrite" ], "adjust-threadstacksize-on-windows": [ "TYPO3 Explained", "13.4", - "Administration\/Troubleshooting\/WebServer.html#adjust-threadstacksize-on-windows", + "Administration\/Troubleshooting\/WebServer.html#troubleshooting-adjust-threadstacksize-on-windows", "Adjust ThreadStackSize on Windows" ], "applying-core-patches-1": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/ApplyingCorePatches\/Index.html#applying-core-patches-1", + "Administration\/Upgrade\/ApplyingCorePatches\/Index.html#applying-core-patches", "Applying Core patches" ], "automatic-patch-application-with-cweagans-composer-patches": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/ApplyingCorePatches\/Index.html#automatic-patch-application-with-cweagans-composer-patches", + "Administration\/Upgrade\/ApplyingCorePatches\/Index.html#cweagans-composer-patches", "Automatic patch application with cweagans\/composer-patches" ], "creating-a-diff-from-a-core-change": [ @@ -33583,25 +33919,25 @@ "apply-a-core-patch-manually": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/ApplyingCorePatches\/Index.html#apply-a-core-patch-manually", + "Administration\/Upgrade\/ApplyingCorePatches\/Index.html#apply-core-patch-manually", "Apply a core patch manually" ], "apply-a-core-patch-automatically-via-gilbertsoft-typo3-core-patches": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/ApplyingCorePatches\/Index.html#apply-a-core-patch-automatically-via-gilbertsoft-typo3-core-patches", + "Administration\/Upgrade\/ApplyingCorePatches\/Index.html#apply-core-patch-automatically", "Apply a core patch automatically via gilbertsoft\/typo3-core-patches" ], "upgrading-the-typo3-core-and-extensions": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/Index.html#upgrading-the-typo3-core-and-extensions", + "Administration\/Upgrade\/Index.html#upgrading", "Upgrading the TYPO3 Core and extensions" ], "legacy-upgrade": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/Legacy\/Index.html#legacy-upgrade", + "Administration\/Upgrade\/Legacy\/Index.html#legacy", "Legacy Upgrade" ], "minor-upgrades-using-the-core-updater": [ @@ -33613,7 +33949,7 @@ "major-upgrades-symlink-the-core": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/Legacy\/Index.html#major-upgrades-symlink-the-core", + "Administration\/Upgrade\/Legacy\/Index.html#install-manually", "Major Upgrades - Symlink The Core" ], "disabling-the-core-updater": [ @@ -33631,67 +33967,67 @@ "major-upgrade": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/Major\/Index.html#major-upgrade", + "Administration\/Upgrade\/Major\/Index.html#major", "Major upgrade" ], "post-upgrade-tasks": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#post-upgrade-tasks", + "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#postupgradetasks", "Post-upgrade tasks" ], "run-the-upgrade-wizard": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#run-the-upgrade-wizard", + "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#run_upgrade_wizard", "Run the upgrade wizard" ], "run-the-database-analyser": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#run-the-database-analyser", + "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#run_the_database_analyser", "Run the database analyser" ], "clear-user-settings": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#clear-user-settings", + "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#clear_user_settings", "Clear user settings" ], "clear-caches": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#clear-caches", + "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#post_upgrade_clear_caches", "Clear caches" ], "update-backend-translations": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#update-backend-translations", + "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#update_backend_translation", "Update backend translations" ], "verify-webserver-configuration-htaccess": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#verify-webserver-configuration-htaccess", + "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#maintain-htaccess", "Verify webserver configuration (.htaccess)" ], "pre-upgrade-tasks": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#pre-upgrade-tasks", + "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#preupgradetasks", "Pre-upgrade tasks" ], "make-a-backup": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#make-a-backup", + "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#preupgradetasks_make_a_backup", "Make A Backup" ], "update-reference-index": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#update-reference-index", + "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#update_reference_index", "Update Reference Index" ], "with-command-line-recommended": [ @@ -33709,19 +34045,19 @@ "check-the-changelog": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#check-the-changelog", + "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#check-the-changelog-and-news-md", "Check the ChangeLog" ], "resolve-deprecations": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#resolve-deprecations", + "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#deprecations", "Resolve Deprecations" ], "upgrade-the-core": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/Major\/UpgradeCore.html#upgrade-the-core", + "Administration\/Upgrade\/Major\/UpgradeCore.html#upgradecore", "Upgrade the Core" ], "upgrading-to-a-major-release-using-composer": [ @@ -33757,13 +34093,13 @@ "migrate-content": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/MigrateContent\/Index.html#migrate-content", + "Administration\/Upgrade\/MigrateContent\/Index.html#migratecontent", "Migrate content" ], "prerequisites": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Routing\/Introduction.html#prerequisites", + "ApiOverview\/Routing\/Introduction.html#routing-prerequisites", "Prerequisites" ], "export-your-data": [ @@ -33805,19 +34141,19 @@ "migrating-and-accessing-public-web-assets-from-typo3conf-ext-to-public-assets": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/MigrateToComposer\/AssetMigration.html#migrating-and-accessing-public-web-assets-from-typo3conf-ext-to-public-assets", + "Administration\/Upgrade\/MigrateToComposer\/AssetMigration.html#migrate-public-assets", "Migrating and accessing public web assets from typo3conf\/ext\/ to public\/_assets" ], "migration": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#migration", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#extbase-repository-find-by-magic-migration", "Migration" ], "migrate-a-typo3-project-to-composer": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/MigrateToComposer\/Index.html#migrate-a-typo3-project-to-composer", + "Administration\/Upgrade\/MigrateToComposer\/Index.html#migratetocomposer", "Migrate a TYPO3 project to Composer" ], "migration-steps": [ @@ -33847,7 +34183,7 @@ "install-the-core": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/MigrateToComposer\/MigrationSteps.html#install-the-core", + "Administration\/Upgrade\/MigrateToComposer\/MigrationSteps.html#composer-migration-require-subtree-packages", "Install the Core" ], "install-extensions-from-packagist": [ @@ -33877,13 +34213,13 @@ "install-extension-from-version-control-system-e-g-github-gitlab": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/MigrateToComposer\/MigrationSteps.html#install-extension-from-version-control-system-e-g-github-gitlab", + "Administration\/Upgrade\/MigrateToComposer\/MigrationSteps.html#composer-require-repository", "Install extension from version control system (e.g. GitHub, Gitlab, ...)" ], "include-individual-extensions-like-site-packages": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/MigrateToComposer\/MigrationSteps.html#include-individual-extensions-like-site-packages", + "Administration\/Upgrade\/MigrateToComposer\/MigrationSteps.html#mig-composer-include-individual-extensions", "Include individual extensions like site packages" ], "new-file-locations": [ @@ -33925,7 +34261,7 @@ "version-control": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/SitePackage\/Introduction.html#version-control", + "ExtensionArchitecture\/SitePackage\/Introduction.html#site-package-version-controll", "Version control" ], "add-to-version-control-system": [ @@ -33949,7 +34285,7 @@ "patch-bugfix-update": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/Minor\/Index.html#patch-bugfix-update", + "Administration\/Upgrade\/Minor\/Index.html#minor", "Patch\/Bugfix update" ], "what-are-patch-bugfix-updates": [ @@ -33985,7 +34321,7 @@ "third-party-tools": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/Tools\/Index.html#third-party-tools", + "Administration\/Upgrade\/Tools\/Index.html#tools", "Third-party tools" ], "rector-for-typo3": [ @@ -34015,7 +34351,7 @@ "upgrading-extensions": [ "TYPO3 Explained", "13.4", - "Administration\/Upgrade\/UpgradingExtensions\/Index.html#upgrading-extensions", + "Administration\/Upgrade\/UpgradingExtensions\/Index.html#upgradingextensions", "Upgrading extensions" ], "list-extensions": [ @@ -34045,7 +34381,7 @@ "changing-the-backend-language": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/BackendLanguages.html#changing-the-backend-language", + "Administration\/UserManagement\/BackendLanguages.html#backendlanguages", "Changing the backend language" ], "install-an-additional-language-pack": [ @@ -34069,25 +34405,25 @@ "backend-privileges": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/BackendPrivileges\/Index.html#backend-privileges", + "Administration\/UserManagement\/BackendPrivileges\/Index.html#privileges", "Backend Privileges" ], "admin": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/BackendPrivileges\/Index.html#admin", + "Administration\/UserManagement\/BackendPrivileges\/Index.html#admin-user", "Admin" ], "system-maintainers": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/BackendPrivileges\/Index.html#system-maintainers", + "Administration\/UserManagement\/BackendPrivileges\/Index.html#system-maintainer", "System Maintainers" ], "create-default-users": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/BackendUsers\/CreateDefaultEditors.html#create-default-users", + "Administration\/UserManagement\/BackendUsers\/CreateDefaultEditors.html#user-management-create-default-editors", "Create Default Users" ], "create-simple-editor": [ @@ -34117,7 +34453,7 @@ "backend-users": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/AccessControl\/OtherOptions\/Index.html#backend-users", + "ApiOverview\/Backend\/AccessControl\/OtherOptions\/Index.html#access-other-options-users", "Backend users" ], "default-editors-in-the-introduction-package": [ @@ -34135,25 +34471,25 @@ "simple-editor": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/BackendUsers\/Index.html#simple-editor", + "Administration\/UserManagement\/BackendUsers\/Index.html#user-management-simple-editor", "\"simple_editor\"" ], "advanced-editor": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/BackendUsers\/Index.html#advanced-editor", + "Administration\/UserManagement\/BackendUsers\/Index.html#user-management-advanced-editor", "\"advanced_editor\"" ], "adding-backend-users": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/BackendUsers.html#adding-backend-users", + "Administration\/UserManagement\/BackendUsers.html#backendusers", "Adding Backend Users" ], "setting-up-user-permissions-1": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/GroupPermissions\/Index.html#setting-up-user-permissions-1", + "Administration\/UserManagement\/GroupPermissions\/Index.html#setting-up-user-permissions", "Setting up User Permissions" ], "general": [ @@ -34165,121 +34501,121 @@ "access-lists": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/AccessControl\/AccessControlOptions\/Index.html#access-lists", + "ApiOverview\/Backend\/AccessControl\/AccessControlOptions\/Index.html#access-options-access-lists", "Access Lists" ], "modules": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/GroupPermissions\/Index.html#modules", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-modules", "Modules" ], "tables": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/GroupPermissions\/Index.html#tables", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-tables", "Tables" ], "page-types": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/GroupPermissions\/Index.html#page-types", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-page-types", "Page Types" ], "allowed-excludefields": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/GroupPermissions\/Index.html#allowed-excludefields", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-allowed-excludefields", "Allowed Excludefields" ], "explicitly-allow-or-deny-field-values": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/GroupPermissions\/Index.html#explicitly-allow-or-deny-field-values", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-explicitly-allow-deny-field-values", "Explicitly Allow or Deny Field Values" ], "mounts-and-workspaces": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/GroupPermissions\/Index.html#mounts-and-workspaces", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-mounts", "Mounts and Workspaces" ], "db-mounts": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/GroupPermissions\/Index.html#db-mounts", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-db-mounts", "DB Mounts" ], "file-mounts": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Administration\/Permissions.html#file-mounts", + "ApiOverview\/Fal\/Administration\/Permissions.html#fal-administration-permissions-mounts", "File mounts" ], "fileoperation-permissions": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/GroupPermissions\/Index.html#fileoperation-permissions", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-file-permissions", "Fileoperation Permissions" ], "category-mounts": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/GroupPermissions\/Index.html#category-mounts", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-category-permissions", "Category mounts" ], "backend-user-groups": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/Groups\/Index.html#backend-user-groups", + "Administration\/UserManagement\/Groups\/Index.html#groups", "Backend user groups" ], "console-command-to-create-backend-user-groups-from-presets": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/Groups\/Index.html#console-command-to-create-backend-user-groups-from-presets", + "Administration\/UserManagement\/Groups\/Index.html#groups-console", "Console command to create backend user groups from presets" ], "using-the-backend-users-module": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/Groups\/Index.html#using-the-backend-users-module", + "Administration\/UserManagement\/Groups\/Index.html#groups-module", "Using the \"Backend Users\" module" ], "backend-user-management": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/Index.html#backend-user-management", + "Administration\/UserManagement\/Index.html#user-management", "Backend user management" ], "page-permissions-1": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/PagePermissions\/Index.html#page-permissions-1", + "Administration\/UserManagement\/PagePermissions\/Index.html#page-permissions", "Page permissions" ], "setting-up-a-user": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/UserSetup\/Index.html#setting-up-a-user", + "Administration\/UserManagement\/UserSetup\/Index.html#creating-a-new-user-for-the-introduction-site", "Setting up a User" ], "step-1-create-a-new-group": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/UserSetup\/Index.html#step-1-create-a-new-group", + "Administration\/UserManagement\/UserSetup\/Index.html#step-create-a-new-group", "Step 1: Create a New Group" ], "step-2-create-the-user": [ "TYPO3 Explained", "13.4", - "Administration\/UserManagement\/UserSetup\/Index.html#step-2-create-the-user", + "Administration\/UserManagement\/UserSetup\/Index.html#step-create-the-user", "Step 2: Create the User" ], "assets-css-javascript-media": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Assets\/Index.html#assets-css-javascript-media", + "ApiOverview\/Assets\/Index.html#assets", "Assets (CSS, JavaScript, Media)" ], "asset-collector": [ @@ -34291,19 +34627,19 @@ "the-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Assets\/Index.html#the-api", + "ApiOverview\/Assets\/Index.html#asset-collector-api", "The API" ], "viewhelper": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Typo3Request.html#viewhelper", + "ApiOverview\/RequestLifeCycle\/Typo3Request.html#typo3-request-viewhelper", "ViewHelper" ], "rendering-order": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Assets\/Index.html#rendering-order", + "ApiOverview\/Assets\/Index.html#assets-rendering-order", "Rendering order" ], "examples": [ @@ -34315,97 +34651,97 @@ "events": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/Events\/Index.html#events", + "ExtensionArchitecture\/HowTo\/Events\/Index.html#extension-development-events", "Events" ], "former-methods-to-add-assets": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Assets\/Index.html#former-methods-to-add-assets", + "ApiOverview\/Assets\/Index.html#assets-other-methods", "Former methods to add assets" ], "using-the-page-renderer": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Assets\/Index.html#using-the-page-renderer", + "ApiOverview\/Assets\/Index.html#assets-page-renderer", "Using the page renderer" ], "using-the-typoscriptfrontendcontroller": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Assets\/Index.html#using-the-typoscriptfrontendcontroller", + "ApiOverview\/Assets\/Index.html#assets-TypoScriptFrontendController", "Using the TypoScriptFrontendController" ], "csrf-like-request-token-handling": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Authentication\/CSRFlikeRequestTokenHandling.html#csrf-like-request-token-handling", + "ApiOverview\/Authentication\/CSRFlikeRequestTokenHandling.html#authentication-request-token", "CSRF-like request token handling" ], "workflow": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Workflow.html#workflow", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Workflow.html#crowdin-workflow", "Workflow" ], "authentication-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Authentication\/Index.html#authentication-1", + "ApiOverview\/Authentication\/Index.html#authentication", "Authentication" ], "why-use-services": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Authentication\/Index.html#why-use-services", + "ApiOverview\/Authentication\/Index.html#authentication-why-services", "Why Use Services?" ], "the-authentication-process": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Authentication\/Index.html#the-authentication-process", + "ApiOverview\/Authentication\/Index.html#authentication-process", "The Authentication Process" ], "the-login-data": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Authentication\/Index.html#the-login-data", + "ApiOverview\/Authentication\/Index.html#authentication-data", "The login data" ], "the-auth-services-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Authentication\/Index.html#the-auth-services-api", + "ApiOverview\/Authentication\/Index.html#authentication-api", "The \"auth\" services API" ], "the-service-chain": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Authentication\/Index.html#the-service-chain", + "ApiOverview\/Authentication\/Index.html#authentication-service-chain", "The service chain" ], "developing-an-authentication-service": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Authentication\/Index.html#developing-an-authentication-service", + "ApiOverview\/Authentication\/Index.html#authentication-service-development", "Developing an authentication service" ], "advanced-options": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Authentication\/Index.html#advanced-options", + "ApiOverview\/Authentication\/Index.html#authentication-advanced-options", "Advanced Options" ], "multi-factor-authentication-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Authentication\/MultiFactorAuthentication.html#multi-factor-authentication-1", + "ApiOverview\/Authentication\/MultiFactorAuthentication.html#multi-factor-authentication", "Multi-factor authentication" ], "included-mfa-providers": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Authentication\/MultiFactorAuthentication.html#included-mfa-providers", + "ApiOverview\/Authentication\/MultiFactorAuthentication.html#multi-factor-authentication-included-providers", "Included MFA providers" ], "time-based-one-time-password-totp": [ @@ -34465,7 +34801,7 @@ "composerclassloader": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Autoloading\/Background.html#composerclassloader", + "ApiOverview\/Autoloading\/Background.html#composer-class-loader", "ComposerClassLoader" ], "integrating-composer-class-loader-into-typo3": [ @@ -34519,7 +34855,7 @@ "autoloading": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Autoloading\/Index.html#autoloading", + "ApiOverview\/Autoloading\/Index.html#autoload", "Autoloading" ], "about-php-makeinstance": [ @@ -34531,103 +34867,103 @@ "autoloading-classes": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Autoloading\/Index.html#autoloading-classes", + "ApiOverview\/Autoloading\/Index.html#autoloading_classes", "Autoloading classes" ], "loading-classes-with-composer-mode": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Autoloading\/Index.html#loading-classes-with-composer-mode", + "ApiOverview\/Autoloading\/Index.html#autoloading_with_composer_mode", "Loading classes with Composer mode" ], "loading-classes-without-composer-mode": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Autoloading\/Index.html#loading-classes-without-composer-mode", + "ApiOverview\/Autoloading\/Index.html#autoloading_without_composer_mode", "Loading classes without Composer mode" ], "best-practices": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Logger\/Index.html#best-practices", + "ApiOverview\/Logging\/Logger\/Index.html#logging-logger-best-practices", "Best practices" ], "further-reading": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#further-reading", - "Further reading" + "PhpArchitecture\/Traits.html#further-reading", + "Further Reading" ], "access-control-options": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/AccessControl\/AccessControlOptions\/Index.html#access-control-options", + "ApiOverview\/Backend\/AccessControl\/AccessControlOptions\/Index.html#access-options", "Access Control Options" ], "mounts": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/AccessControl\/AccessControlOptions\/Index.html#mounts", + "ApiOverview\/Backend\/AccessControl\/AccessControlOptions\/Index.html#access-options-mounts", "Mounts" ], "page-permissions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/AccessControl\/AccessControlOptions\/Index.html#page-permissions", + "ApiOverview\/Backend\/AccessControl\/AccessControlOptions\/Index.html#access-options-page-permissions", "Page Permissions" ], "user-tsconfig": [ "TYPO3 Explained", "13.4", - "Configuration\/TypoScript\/TSconfig\/Index.html#user-tsconfig", + "Configuration\/TypoScript\/TSconfig\/Index.html#tsconfig-user", "User TSconfig" ], "access-control-in-the-backend-users-and-groups": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/AccessControl\/Index.html#access-control-in-the-backend-users-and-groups", + "ApiOverview\/Backend\/AccessControl\/Index.html#access", "Access control in the backend (users and groups)" ], "more-about-file-mounts": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/AccessControl\/MoreAboutFileMounts\/Index.html#more-about-file-mounts", + "ApiOverview\/Backend\/AccessControl\/MoreAboutFileMounts\/Index.html#access-filemounts-more", "More about file mounts" ], "create-a-new-filemount": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/AccessControl\/MoreAboutFileMounts\/Index.html#create-a-new-filemount", + "ApiOverview\/Backend\/AccessControl\/MoreAboutFileMounts\/Index.html#access-filemounts-create", "Create a new filemount" ], "paths-for-local-driver-storage": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/AccessControl\/MoreAboutFileMounts\/Index.html#paths-for-local-driver-storage", + "ApiOverview\/Backend\/AccessControl\/MoreAboutFileMounts\/Index.html#access-filemounts-more-local-driver", "Paths for local driver storage" ], "home-directories": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/AccessControl\/MoreAboutFileMounts\/Index.html#home-directories", + "ApiOverview\/Backend\/AccessControl\/MoreAboutFileMounts\/Index.html#access-filemounts-home-directories", "Home directories" ], "other-options": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/AccessControl\/OtherOptions\/Index.html#other-options", + "ApiOverview\/Backend\/AccessControl\/OtherOptions\/Index.html#access-other-options", "Other Options" ], "backend-groups": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/AccessControl\/OtherOptions\/Index.html#backend-groups", + "ApiOverview\/Backend\/AccessControl\/OtherOptions\/Index.html#access-other-options-groups", "Backend Groups" ], "backend-users-module": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/AccessControl\/OverviewOfUsers\/Index.html#backend-users-module", + "ApiOverview\/Backend\/AccessControl\/OverviewOfUsers\/Index.html#access-backend-users-module", "Backend users module" ], "comparing-users-or-groups": [ @@ -34645,7 +34981,7 @@ "password-reset-functionality": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/AccessControl\/PasswordReset\/Index.html#password-reset-functionality", + "ApiOverview\/Backend\/AccessControl\/PasswordReset\/Index.html#access-password-reset", "Password reset functionality" ], "notes-on-security": [ @@ -34681,37 +35017,37 @@ "users-and-groups": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#users-and-groups", + "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#access-users-groups", "Users and groups" ], "users": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#users", + "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#access-users-groups-users", "Users" ], "groups": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#groups", + "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#access-users-groups-groups", "Groups" ], "the-admin-user": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#the-admin-user", + "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#access-users-groups-admin", "The \"admin\" user" ], "location-of-users-and-groups": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#location-of-users-and-groups", + "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#access-users-groups-location", "Location of users and groups" ], "ajax-in-the-backend": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/Ajax.html#ajax-in-the-backend", + "ApiOverview\/Backend\/Ajax.html#ajax-backend", "Ajax in the backend" ], "create-a-controller": [ @@ -34735,109 +35071,109 @@ "backend-layout": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendLayout.html#backend-layout", + "ApiOverview\/Backend\/BackendLayout.html#be-layout", "Backend layout" ], "backend-layout-video": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendLayout.html#backend-layout-video", + "ApiOverview\/Backend\/BackendLayout.html#be-layout-video", "Backend layout video" ], "backend-layout-configuration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendLayout.html#backend-layout-configuration", + "ApiOverview\/Backend\/BackendLayout.html#be-layout-info-module", "Backend layout configuration" ], "backend-layout-definition": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendLayout.html#backend-layout-definition", + "ApiOverview\/Backend\/BackendLayout.html#be-layout-definition", "Backend layout definition" ], "backend-layout-simple-example": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendLayout.html#backend-layout-simple-example", + "ApiOverview\/Backend\/BackendLayout.html#be-layout-simple-example", "Backend layout simple example" ], "backend-layout-advanced-example": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendLayout.html#backend-layout-advanced-example", + "ApiOverview\/Backend\/BackendLayout.html#be-layout-advanced-example", "Backend layout advanced example" ], "output-of-a-backend-layout-in-the-frontend": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendLayout.html#output-of-a-backend-layout-in-the-frontend", + "ApiOverview\/Backend\/BackendLayout.html#be-layout-frontend", "Output of a backend layout in the frontend" ], "reference-implementations-of-backend-layouts": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendLayout.html#reference-implementations-of-backend-layouts", + "ApiOverview\/Backend\/BackendLayout.html#be-layout-reference-implementations", "Reference implementations of backend layouts" ], "extensions-for-backend-layouts": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendLayout.html#extensions-for-backend-layouts", + "ApiOverview\/Backend\/BackendLayout.html#be-layout-extensions", "Extensions for backend layouts" ], "backend-gui-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/BackendGUI.html#backend-gui-1", + "ApiOverview\/Backend\/BackendModules\/BackendGUI.html#backend-modules-structure", "Backend GUI" ], "docheadercomponent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/DocHeaderComponent.html#docheadercomponent", + "ApiOverview\/Backend\/BackendModules\/DocHeaderComponent.html#DocHeaderComponent", "DocHeaderComponent" ], "docheadercomponent-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/DocHeaderComponent.html#docheadercomponent-api", + "ApiOverview\/Backend\/BackendModules\/DocHeaderComponent.html#DocHeaderComponent-api", "DocHeaderComponent API" ], "example-build-a-module-header-with-buttons-and-a-menu": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/DocHeaderComponent.html#example-build-a-module-header-with-buttons-and-a-menu", + "ApiOverview\/Backend\/BackendModules\/DocHeaderComponent.html#DocHeaderComponent-example", "Example: Build a module header with buttons and a menu" ], "backend-modules-api-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/Index.html#backend-modules-api-1", + "ApiOverview\/Backend\/BackendModules\/Index.html#backend-modules", "Backend modules API" ], "modules-php-backend-module-configuration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#modules-php-backend-module-configuration", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-modules-configuration", "Modules.php - Backend module configuration" ], "module-configuration-options": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#module-configuration-options", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-modules-configuration-options", "Module configuration options" ], "default-module-configuration-options-without-extbase": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#default-module-configuration-options-without-extbase", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-modules-api-default", "Default module configuration options (without Extbase)" ], "extbase-module-configuration-options": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#extbase-module-configuration-options", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-modules-configuration-extensionName", "Extbase module configuration options" ], "debug-the-module-configuration": [ @@ -34849,13 +35185,13 @@ "backend-modules-with-sudo-mode": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-modules-with-sudo-mode", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-configuration-sudo", "Backend modules with sudo mode" ], "third-level-modules-module-functions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/ThirdlevelModules.html#third-level-modules-module-functions", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/ThirdlevelModules.html#backend-modules-third-level-module", "Third-level modules \/ module functions" ], "example": [ @@ -34867,7 +35203,7 @@ "toplevel-modules": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/ToplevelModules.html#toplevel-modules", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/ToplevelModules.html#backend-modules-toplevel-module", "Toplevel modules" ], "register-a-custom-toplevel-module": [ @@ -34879,13 +35215,13 @@ "module-data-object": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleDataObject.html#module-data-object", + "ApiOverview\/Backend\/BackendModules\/ModuleDataObject.html#backend-Module-data-object", "Module data object" ], "moduleinterface": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleInterface.html#moduleinterface", + "ApiOverview\/Backend\/BackendModules\/ModuleInterface.html#backend-module-interface", "ModuleInterface" ], "moduleinterface-api": [ @@ -34897,79 +35233,79 @@ "moduleprovider": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleProviderAPI.html#moduleprovider", + "ApiOverview\/Backend\/BackendModules\/ModuleProviderAPI.html#backend-module-provider", "ModuleProvider" ], "moduleprovider-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleProviderAPI.html#moduleprovider-api", + "ApiOverview\/Backend\/BackendModules\/ModuleProviderAPI.html#backend-module-provider-api", "ModuleProvider API" ], "moduletemplate": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleTemplate.html#moduletemplate", + "ApiOverview\/Backend\/BackendModules\/ModuleTemplate.html#ModuleTemplate", "ModuleTemplate" ], "example-create-and-use-a-moduletemplate-in-an-extbase-controller": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleTemplate.html#example-create-and-use-a-moduletemplate-in-an-extbase-controller", + "ApiOverview\/Backend\/BackendModules\/ModuleTemplate.html#ModuleTemplate-examples", "Example: Create and use a ModuleTemplate in an Extbase Controller" ], "moduletemplatefactory": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleTemplateFactory.html#moduletemplatefactory", + "ApiOverview\/Backend\/BackendModules\/ModuleTemplateFactory.html#ModuleTemplateFactory", "ModuleTemplateFactory" ], "moduletemplatefactory-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleTemplateFactory.html#moduletemplatefactory-api", + "ApiOverview\/Backend\/BackendModules\/ModuleTemplateFactory.html#ModuleTemplateFactory-api", "ModuleTemplateFactory API" ], "example-initialize-module-template": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleTemplateFactory.html#example-initialize-module-template", + "ApiOverview\/Backend\/BackendModules\/ModuleTemplateFactory.html#ModuleTemplateFactory-examples", "Example: Initialize module template" ], "typoscript-configuration-of-modules": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleTypoScript.html#typoscript-configuration-of-modules", + "ApiOverview\/Backend\/BackendModules\/ModuleTypoScript.html#backend-module-typoscript", "TypoScript configuration of modules" ], "sudo-mode-in-typo3-backend-modules": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/SudoMode.html#sudo-mode-in-typo3-backend-modules", + "ApiOverview\/Backend\/BackendModules\/SudoMode.html#backend-module-sudo", "Sudo mode in TYPO3 backend modules" ], "authentication-in-for-sudo-mode-in-extensions-using-the-auth-service": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/SudoMode.html#authentication-in-for-sudo-mode-in-extensions-using-the-auth-service", + "ApiOverview\/Backend\/BackendModules\/SudoMode.html#backend-module-sudo-extensions", "Authentication in for sudo mode in extensions using the auth service" ], "custom-backend-modules-requiring-the-sudo-mode": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/SudoMode.html#custom-backend-modules-requiring-the-sudo-mode", + "ApiOverview\/Backend\/BackendModules\/SudoMode.html#backend-module-sudo-modules", "Custom backend modules requiring the sudo mode" ], "process-in-a-nutshell": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/SudoMode.html#process-in-a-nutshell", + "ApiOverview\/Backend\/BackendModules\/SudoMode.html#backend-module-sudo-modules-process", "Process in a nutshell" ], "backend-routing-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendRouting.html#backend-routing-1", + "ApiOverview\/Backend\/BackendRouting.html#backend-routing", "Backend routing" ], "backend-routing-and-cross-site-scripting": [ @@ -34981,7 +35317,7 @@ "dynamic-url-parts-in-backend-urls": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendRouting.html#dynamic-url-parts-in-backend-urls", + "ApiOverview\/Backend\/BackendRouting.html#backend-routing-dynamic-parts", "Dynamic URL parts in backend URLs" ], "generating-backend-urls": [ @@ -34993,19 +35329,19 @@ "via-fluid-viewhelper": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendRouting.html#via-fluid-viewhelper", + "ApiOverview\/Backend\/BackendRouting.html#backend-routing-url-viewhelper", "Via Fluid ViewHelper" ], "via-php": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendRouting.html#via-php", + "ApiOverview\/Backend\/BackendRouting.html#backend-routing-url-php", "Via PHP" ], "sudo-mode": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendRouting.html#sudo-mode", + "ApiOverview\/Backend\/BackendRouting.html#backend-routing-sudo", "Sudo mode" ], "more-information": [ @@ -35017,85 +35353,85 @@ "backend-user-object": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendUserObject.html#backend-user-object", + "ApiOverview\/Backend\/BackendUserObject.html#be-user", "Backend user object" ], "checking-user-access": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendUserObject.html#checking-user-access", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-check", "Checking user access" ], "checking-access-to-any-backend-module": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendUserObject.html#checking-access-to-any-backend-module", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-access-any", "Checking access to any backend module" ], "access-to-tables-and-fields": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendUserObject.html#access-to-tables-and-fields", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-access-tables", "Access to tables and fields?" ], "is-admin": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendUserObject.html#is-admin", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-admin", "Is \"admin\"?" ], "read-access-to-a-page": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendUserObject.html#read-access-to-a-page", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-page", "Read access to a page?" ], "is-a-page-inside-a-db-mount": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendUserObject.html#is-a-page-inside-a-db-mount", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-mount", "Is a page inside a DB mount?" ], "selecting-readable-pages-from-database": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendUserObject.html#selecting-readable-pages-from-database", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-pageperms", "Selecting readable pages from database?" ], "saving-module-data": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendUserObject.html#saving-module-data", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-module-save", "Saving module data" ], "getting-module-data": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendUserObject.html#getting-module-data", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-module-get", "Getting module data" ], "getting-tsconfig": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendUserObject.html#getting-tsconfig", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-tsconfig", "Getting TSconfig" ], "getting-the-username": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendUserObject.html#getting-the-username", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-name", "Getting the Username" ], "get-user-configuration-value": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendUserObject.html#get-user-configuration-value", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-configuration", "Get User Configuration Value" ], "broadcast-channels": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BroadcastChannels.html#broadcast-channels", + "ApiOverview\/Backend\/BroadcastChannels.html#broadcast_channels", "Broadcast channels" ], "send-a-message": [ @@ -35113,7 +35449,7 @@ "button-components-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/ButtonComponents.html#button-components-1", + "ApiOverview\/Backend\/ButtonComponents.html#button-components", "Button components" ], "generic-button-component": [ @@ -35131,55 +35467,55 @@ "dropdownbutton": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/ButtonComponents.html#dropdownbutton", + "ApiOverview\/Backend\/ButtonComponents.html#dropdown-button-components-button", "DropDownButton" ], "dropdowndivider": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/ButtonComponents.html#dropdowndivider", + "ApiOverview\/Backend\/ButtonComponents.html#dropdown-button-components-divider", "DropDownDivider" ], "dropdownheader": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/ButtonComponents.html#dropdownheader", + "ApiOverview\/Backend\/ButtonComponents.html#dropdown-button-components-header", "DropDownHeader" ], "dropdownitem": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/ButtonComponents.html#dropdownitem", + "ApiOverview\/Backend\/ButtonComponents.html#dropdown-button-components-item", "DropDownItem" ], "dropdownradio": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/ButtonComponents.html#dropdownradio", + "ApiOverview\/Backend\/ButtonComponents.html#dropdown-button-components-radio", "DropDownRadio" ], "dropdowntoggle": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/ButtonComponents.html#dropdowntoggle", + "ApiOverview\/Backend\/ButtonComponents.html#dropdown-button-components-toggle", "DropDownToggle" ], "clipboard": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/Clipboard.html#clipboard", + "ApiOverview\/Backend\/Clipboard.html#examples-clipboard-put", "Clipboard" ], "context-sensitive-menus": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/ContextualMenu.html#context-sensitive-menus", + "ApiOverview\/Backend\/ContextualMenu.html#context-menu", "Context-sensitive menus" ], "context-menu-rendering-flow": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/ContextualMenu.html#context-menu-rendering-flow", + "ApiOverview\/Backend\/ContextualMenu.html#csm-implementation", "Context menu rendering flow" ], "markup": [ @@ -35233,7 +35569,7 @@ "tutorial-how-to-add-a-custom-context-menu-item": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/ContextualMenu.html#tutorial-how-to-add-a-custom-context-menu-item", + "ApiOverview\/Backend\/ContextualMenu.html#csm-adding", "Tutorial: How to add a custom context menu item" ], "step-1-implementation-of-the-item-provider-class": [ @@ -35257,37 +35593,37 @@ "using-custom-permission-options": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/CustomPermissions.html#using-custom-permission-options", + "ApiOverview\/Backend\/CustomPermissions.html#custom-permissions", "Using Custom Permission Options" ], "registration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Icon\/Index.html#registration", + "ApiOverview\/Icon\/Index.html#icon-registration", "Registration" ], "evaluation": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/CustomPermissions.html#evaluation", + "ApiOverview\/Backend\/CustomPermissions.html#custom-permissions-evaluation", "Evaluation" ], "keys-for-options": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/CustomPermissions.html#keys-for-options", + "ApiOverview\/Backend\/CustomPermissions.html#custom-permissions-keys", "Keys for Options" ], "backend-apis": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/Index.html#backend-apis", + "ApiOverview\/Backend\/Index.html#backend", "Backend APIs" ], "ajax-request-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/AjaxRequest\/Index.html#ajax-request-1", + "ApiOverview\/Backend\/JavaScript\/AjaxRequest\/Index.html#ajax-request", "Ajax request" ], "prepare-a-request": [ @@ -35317,13 +35653,13 @@ "es6-in-the-typo3-backend": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/ES6\/Index.html#es6-in-the-typo3-backend", + "ApiOverview\/Backend\/JavaScript\/ES6\/Index.html#backend-javascript-es6", "ES6 in the TYPO3 Backend" ], "loading-es6": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/ES6\/Index.html#loading-es6", + "ApiOverview\/Backend\/JavaScript\/ES6\/Index.html#backend-javascript-es6-loading", "Loading ES6" ], "some-tips-on-es6": [ @@ -35347,7 +35683,7 @@ "event-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/EventApi\/Index.html#event-api", + "ApiOverview\/Backend\/JavaScript\/EventApi\/Index.html#js-event-api", "Event API" ], "event-binding": [ @@ -35395,7 +35731,7 @@ "throttleevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/EventApi\/Index.html#throttleevent", + "ApiOverview\/Backend\/JavaScript\/EventApi\/Index.html#js-event-api-throttleevent", "ThrottleEvent" ], "requestanimationframeevent": [ @@ -35407,7 +35743,7 @@ "javascript-form-helpers-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/Forms\/Index.html#javascript-form-helpers-1", + "ApiOverview\/Backend\/JavaScript\/Forms\/Index.html#javascript-form-helpers", "JavaScript form helpers" ], "empty-checkbox-handling": [ @@ -35425,49 +35761,49 @@ "hotkey-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/HotkeyApi\/Index.html#hotkey-api", + "ApiOverview\/Backend\/JavaScript\/HotkeyApi\/Index.html#js-hotkey-api", "Hotkey API" ], "javascript-in-typo3-backend": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/Index.html#javascript-in-typo3-backend", + "ApiOverview\/Backend\/JavaScript\/Index.html#javascript", "JavaScript in TYPO3 backend" ], "documentservice-jquery-ready-substitute": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/DocumentService.html#documentservice-jquery-ready-substitute", + "ApiOverview\/Backend\/JavaScript\/Modules\/DocumentService.html#modules-documentservice", "DocumentService (jQuery.ready substitute)" ], "various-javascript-modules": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Index.html#various-javascript-modules", + "ApiOverview\/Backend\/JavaScript\/Modules\/Index.html#modules", "Various JavaScript modules" ], "modals": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modals", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals", "Modals" ], "api": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/UriBuilder.html#api", + "ExtensionArchitecture\/Extbase\/Reference\/UriBuilder.html#uri-builder-api", "API" ], "modal-settings": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modal-settings", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-settings", "Modal settings" ], "button-settings": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#button-settings", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-button-settings", "Button settings" ], "data-attributes": [ @@ -35479,13 +35815,13 @@ "multi-step-wizard": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/MultiStepWizard.html#multi-step-wizard", + "ApiOverview\/Backend\/JavaScript\/Modules\/MultiStepWizard.html#modules-multistepwizard", "Multi-step wizard" ], "sessionstorage-wrapper": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/SessionStorageWrapper.html#sessionstorage-wrapper", + "ApiOverview\/Backend\/JavaScript\/Modules\/SessionStorageWrapper.html#modules-sessionstorage", "SessionStorage wrapper" ], "api-methods": [ @@ -35497,7 +35833,7 @@ "navigation-via-javascript": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/Navigation\/Index.html#navigation-via-javascript", + "ApiOverview\/Backend\/JavaScript\/Navigation\/Index.html#javascript-navigation", "Navigation via JavaScript" ], "navigate-to-url": [ @@ -35521,31 +35857,31 @@ "requirejs-dependency-handling": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/RequireJS\/Dependency\/Index.html#requirejs-dependency-handling", + "ApiOverview\/Backend\/JavaScript\/RequireJS\/Dependency\/Index.html#requirejs-dependency", "RequireJS dependency handling" ], "use-requirejs-in-your-own-extension": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/RequireJS\/Extensions\/Index.html#use-requirejs-in-your-own-extension", + "ApiOverview\/Backend\/JavaScript\/RequireJS\/Extensions\/Index.html#requirejs-extensions", "Use RequireJS in your own extension" ], "requirejs-removed": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/RequireJS\/Index.html#requirejs-removed", + "ApiOverview\/Backend\/JavaScript\/RequireJS\/Index.html#requirejs", "RequireJS (Removed)" ], "shim-library-to-use-it-as-own-requirejs-modules": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/RequireJS\/Shim\/Index.html#shim-library-to-use-it-as-own-requirejs-modules", + "ApiOverview\/Backend\/JavaScript\/RequireJS\/Shim\/Index.html#requirejs-shim", "Shim library to use it as own RequireJS modules" ], "client-side-templating": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/Templating\/Index.html#client-side-templating", + "ApiOverview\/Backend\/JavaScript\/Templating\/Index.html#js-templating", "Client-side templating" ], "variable-assignment": [ @@ -35569,85 +35905,103 @@ "backend-login-form-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/LoginProvider.html#backend-login-form-api", + "ApiOverview\/Backend\/LoginProvider.html#login-provider", "Backend login form API" ], "registering-a-login-provider": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/LoginProvider.html#registering-a-login-provider", + "ApiOverview\/Backend\/LoginProvider.html#login-provider-registration", "Registering a login provider" ], "loginproviderinterface": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/LoginProvider.html#loginproviderinterface", + "ApiOverview\/Backend\/LoginProvider.html#login-provider-interface", "LoginProviderInterface" ], "the-view": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/LoginProvider.html#the-view", + "ApiOverview\/Backend\/LoginProvider.html#login-provider-view", "The view" ], + "the-page-tree-in-the-typo3-backend": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Backend\/PageTree.html#page-tree", + "The page tree in the TYPO3 backend" + ], + "psr-14-events-to-influence-the-functionality-of-the-page-tree": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Backend\/PageTree.html#page-tree-events", + "PSR-14 events to influence the functionality of the page tree" + ], + "tsconfig-settings-to-influence-the-page-tree": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Backend\/PageTree.html#page-tree-tsconfig", + "TsConfig settings to influence the page tree" + ], "use-the-backend-uribuilder-to-link-to-edit-records": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/UriBuilder.html#use-the-backend-uribuilder-to-link-to-edit-records", + "ApiOverview\/Backend\/UriBuilder.html#edit-links", "Use the backend UriBuilder to link to \"Edit Records\"" ], "display-a-link-to-edit-record": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/UriBuilder.html#display-a-link-to-edit-record", + "ApiOverview\/Backend\/UriBuilder.html#edit-links-basic", "Display a link to \"Edit Record\"" ], "examples-of-edit-record-links": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/UriBuilder.html#examples-of-edit-record-links", + "ApiOverview\/Backend\/UriBuilder.html#edit-links-examples", "Examples of \"Edit record\" links" ], "additional-options-for-editing-records": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/UriBuilder.html#additional-options-for-editing-records", + "ApiOverview\/Backend\/UriBuilder.html#edit-links-edit-restricted", "Additional options for editing records" ], "display-a-link-to-create-a-new-record": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/UriBuilder.html#display-a-link-to-create-a-new-record", + "ApiOverview\/Backend\/UriBuilder.html#edit-links-new", "Display a link to \"Create a New Record\"" ], "migration-table-dependant-definition-of-columnsonly": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/UriBuilder.html#migration-table-dependant-definition-of-columnsonly", + "ApiOverview\/Backend\/UriBuilder.html#edit-links-columnsOnly-migration", "Migration: Table dependant definition of columnsOnly" ], "how-to-use-bitsets": [ "TYPO3 Explained", "13.4", - "ApiOverview\/BitSets\/BitSet.html#how-to-use-bitsets", + "ApiOverview\/BitSets\/BitSet.html#BitSet", "How to use bitsets" ], "how-to-use-enumerations": [ "TYPO3 Explained", "13.4", - "ApiOverview\/BitSets\/Enumeration.html#how-to-use-enumerations", + "ApiOverview\/BitSets\/Enumeration.html#Enumerations-How-to-use", "How to use enumerations" ], "create-an-enumeration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/BitSets\/Enumeration.html#create-an-enumeration", + "ApiOverview\/BitSets\/Enumeration.html#Enumerations-Create-an-Enumeration", "Create an enumeration" ], "use-an-enumeration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/BitSets\/Enumeration.html#use-an-enumeration", + "ApiOverview\/BitSets\/Enumeration.html#Enumerations-Use-an-Enumeration", "Use an enumeration" ], "exceptions": [ @@ -35659,19 +36013,19 @@ "implement-custom-logic": [ "TYPO3 Explained", "13.4", - "ApiOverview\/BitSets\/Enumeration.html#implement-custom-logic", + "ApiOverview\/BitSets\/Enumeration.html#Enumerations-Implement-custom-logic", "Implement custom logic" ], "migration-to-backed-enums": [ "TYPO3 Explained", "13.4", - "ApiOverview\/BitSets\/Enumeration.html#migration-to-backed-enums", + "ApiOverview\/BitSets\/Enumeration.html#Enumerations-Migration", "Migration to backed enums" ], "bitsets-enumerations": [ "TYPO3 Explained", "13.4", - "ApiOverview\/BitSets\/Index.html#bitsets-enumerations", + "ApiOverview\/BitSets\/Index.html#Enumerations", "Bitsets & Enumerations" ], "background-and-history": [ @@ -35683,139 +36037,139 @@ "caching-framework-architecture": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/Architecture\/Index.html#caching-framework-architecture", + "ApiOverview\/CachingFramework\/Architecture\/Index.html#caching-architecture", "Caching framework architecture" ], "basic-know-how": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/Architecture\/Index.html#basic-know-how", + "ApiOverview\/CachingFramework\/Architecture\/Index.html#caching-architecture-base", "Basic know-how" ], "about-the-identifier": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/Architecture\/Index.html#about-the-identifier", + "ApiOverview\/CachingFramework\/Architecture\/Index.html#caching-architecture-identifier", "About the identifier" ], "about-tags": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/Architecture\/Index.html#about-tags", + "ApiOverview\/CachingFramework\/Architecture\/Index.html#caching-architecture-tags", "About tags" ], "caches-in-the-typo3-core": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/Architecture\/Index.html#caches-in-the-typo3-core", + "ApiOverview\/CachingFramework\/Architecture\/Index.html#caching-architecture-core", "Caches in the TYPO3 Core" ], "garbage-collection-task": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/QuickStart\/Index.html#garbage-collection-task", + "ApiOverview\/CachingFramework\/QuickStart\/Index.html#caching-quickstart-garbage", "Garbage collection task" ], "cache-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/Architecture\/Index.html#cache-api", + "ApiOverview\/CachingFramework\/Architecture\/Index.html#caching-architecture-api", "Cache API" ], "cache-configurations": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/Configuration\/Index.html#cache-configurations", + "ApiOverview\/CachingFramework\/Configuration\/Index.html#caching-configuration-cache", "Cache configurations" ], "how-to-disable-specific-caches": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/Configuration\/Index.html#how-to-disable-specific-caches", + "ApiOverview\/CachingFramework\/Configuration\/Index.html#caching-disable", "How to disable specific caches" ], "developer-information": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/Developer\/Index.html#developer-information", + "ApiOverview\/CachingFramework\/Developer\/Index.html#caching-developer", "Developer information" ], "cache-registration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/Developer\/Index.html#cache-registration", + "ApiOverview\/CachingFramework\/Developer\/Index.html#caching-developer-registration", "Cache registration" ], "using-the-cache": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/Developer\/Index.html#using-the-cache", + "ApiOverview\/CachingFramework\/Developer\/Index.html#caching-developer-access", "Using the cache" ], "working-with-cache-tags": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/Developer\/Index.html#working-with-cache-tags", + "ApiOverview\/CachingFramework\/Developer\/Index.html#caching-developer-cache-tags", "Working with cache tags" ], "cache-frontends": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#cache-frontends", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-frontend", "Cache frontends" ], "frontend-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#frontend-api", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-frontend-api", "Frontend API" ], "available-frontends": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#available-frontends", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-frontend-avalaible", "Available Frontends" ], "variable-frontend": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#variable-frontend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-frontend-variable", "Variable Frontend" ], "php-frontend": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#php-frontend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-frontend-php", "PHP Frontend" ], "cache-backends": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#cache-backends", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend", "Cache backends" ], "backend-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#backend-api", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching_backend-api", "Backend API" ], "common-options": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#common-options", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-options", "Common Options" ], "database-backend": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#database-backend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-db", "Database Backend" ], "innodb-issues": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#innodb-issues", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-db-innodb", "InnoDB Issues" ], "options": [ @@ -35827,67 +36181,67 @@ "memcached-backend": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#memcached-backend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-memcached", "Memcached Backend" ], "warning-and-design-constraints": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#warning-and-design-constraints", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-memcache-warning", "Warning and Design Constraints" ], "redis-backend": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#redis-backend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-redis", "Redis Backend" ], "redis-example": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#redis-example", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-redis-example", "Redis example" ], "redis-server-configuration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#redis-server-configuration", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#cacheBackendRedisServerConfiguration", "Redis server configuration" ], "file-backend": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/Backend\/Index.html#file-backend", + "ExtensionArchitecture\/FileStructure\/Configuration\/Backend\/Index.html#extension-configuration-backend", "Backend" ], "simple-file-backend": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#simple-file-backend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-simple-file", "Simple File Backend" ], "pdo-backend": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#pdo-backend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-pdo", "PDO Backend" ], "transient-memory-backend": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#transient-memory-backend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-transient", "Transient Memory Backend" ], "null-backend": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#null-backend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-null", "Null Backend" ], "caching-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/Index.html#caching-1", + "ApiOverview\/CachingFramework\/Index.html#caching", "Caching" ], "caching-in-typo3": [ @@ -35899,7 +36253,7 @@ "caching-variants-or-what-is-a-cache-hash": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/Index.html#caching-variants-or-what-is-a-cache-hash", + "ApiOverview\/CachingFramework\/Index.html#chash", "Caching variants - or: What is a \"cache hash\"?" ], "example-excerpt-of-config-system-additional-php": [ @@ -35941,61 +36295,61 @@ "quick-start-for-integrators": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/QuickStart\/Index.html#quick-start-for-integrators", + "ApiOverview\/CachingFramework\/QuickStart\/Index.html#caching-quickstart", "Quick start for integrators" ], "change-specific-cache-options": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/QuickStart\/Index.html#change-specific-cache-options", + "ApiOverview\/CachingFramework\/QuickStart\/Index.html#caching-quickstart-tuning", "Change specific cache options" ], "system-categories": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Categories\/Index.html#system-categories", + "ApiOverview\/Categories\/Index.html#categories", "System categories" ], "using-categories": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Categories\/Index.html#using-categories", + "ApiOverview\/Categories\/Index.html#categories-using", "Using Categories" ], "managing-categories": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Categories\/Index.html#managing-categories", + "ApiOverview\/Categories\/Index.html#categories-managing", "Managing Categories" ], "adding-categories-to-a-table": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Categories\/Index.html#adding-categories-to-a-table", + "ApiOverview\/Categories\/Index.html#categories-activating", "Adding categories to a table" ], "using-categories-in-flexforms": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Categories\/Index.html#using-categories-in-flexforms", + "ApiOverview\/Categories\/Index.html#categories-flexforms", "Using categories in FlexForms" ], "system-categories-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Categories\/Index.html#system-categories-api", + "ApiOverview\/Categories\/Index.html#categories-api", "System categories API" ], "category-collections": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Categories\/Index.html#category-collections", + "ApiOverview\/Categories\/Index.html#categories-collections", "Category Collections" ], "usage-with-typoscript": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Categories\/Index.html#usage-with-typoscript", + "ApiOverview\/Categories\/Index.html#categories-typoscript", "Usage with TypoScript" ], "user-permissions-for-system-categories": [ @@ -36007,7 +36361,7 @@ "code-editor-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CodeEditor\/Index.html#code-editor-1", + "ApiOverview\/CodeEditor\/Index.html#code-editor", "Code editor" ], "usage-in-tca": [ @@ -36019,37 +36373,37 @@ "extend-the-code-editor": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CodeEditor\/Index.html#extend-the-code-editor", + "ApiOverview\/CodeEditor\/Index.html#code-editor-extend", "Extend the code editor" ], "register-an-addon": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CodeEditor\/Index.html#register-an-addon", + "ApiOverview\/CodeEditor\/Index.html#code-editor-register-addon", "Register an addon" ], "register-a-mode": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CodeEditor\/Index.html#register-a-mode", + "ApiOverview\/CodeEditor\/Index.html#code-editor-register-mode", "Register a mode" ], "console-commands-cli": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/Index.html#console-commands-cli", + "ApiOverview\/CommandControllers\/Index.html#symfony-console-commands", "Console commands (CLI)" ], "run-a-command-from-the-command-line": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/Index.html#run-a-command-from-the-command-line", + "ApiOverview\/CommandControllers\/Index.html#symfony-console-commands-cli", "Run a command from the command line" ], "running-the-command-from-the-scheduler": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/Index.html#running-the-command-from-the-scheduler", + "ApiOverview\/CommandControllers\/Index.html#symfony-console-commands-scheduler", "Running the command from the scheduler" ], "create-a-custom-command": [ @@ -36073,19 +36427,19 @@ "list-of-typo3-console-commands": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#list-of-typo3-console-commands", + "ApiOverview\/CommandControllers\/ListCommands.html#symfony-console-commands-list", "List of TYPO3 console commands" ], "list-all-typo3-console-commands": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#list-all-typo3-console-commands", + "ApiOverview\/CommandControllers\/ListCommands.html#symfony-console-commands-list-list", "List all TYPO3 console commands" ], "tutorial": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/Tutorial.html#tutorial", + "ApiOverview\/CommandControllers\/Tutorial.html#console-command-tutorial", "Tutorial" ], "create-a-console-command-from-scratch": [ @@ -36097,13 +36451,13 @@ "creating-a-basic-command": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/Tutorial.html#creating-a-basic-command", + "ApiOverview\/CommandControllers\/Tutorial.html#console-command-tutorial-create", "Creating a basic command" ], "1-register-the-command": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/Tutorial.html#1-register-the-command", + "ApiOverview\/CommandControllers\/Tutorial.html#console-command-tutorial-registration-services", "1. Register the command" ], "2-create-the-command-class": [ @@ -36121,7 +36475,7 @@ "use-the-php-attribute-to-register-commands": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/Tutorial.html#use-the-php-attribute-to-register-commands", + "ApiOverview\/CommandControllers\/Tutorial.html#console-command-tutorial-registration-attribute", "Use the PHP attribute to register commands" ], "create-a-command-with-arguments-and-interaction": [ @@ -36157,67 +36511,67 @@ "create-a-custom-content-element-type": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#create-a-custom-content-element-type", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#adding-your-own-content-elements", "Create a custom content element type" ], "use-an-extension": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#use-an-extension", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#AddingCE-use-an-extension", "Use an extension" ], "register-the-content-element-type": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#register-the-content-element-type", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#AddingCE-TCA-Overrides-tt_content", "Register the content element type" ], "display-an-icon": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#display-an-icon", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#AddingCE-Icon", "Display an icon" ], "the-new-content-element-wizard": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#the-new-content-element-wizard", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#AddingCE-PageTSconfig", "The new content element wizard" ], "configure-the-backend-form": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#configure-the-backend-form", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#ConfigureCE-Fields", "Configure the backend form" ], "configure-the-frontend-rendering": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#configure-the-frontend-rendering", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#ConfigureCE-Frontend", "Configure the frontend rendering" ], "extended-example-extend-tt-content-and-use-data-processing": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#extended-example-extend-tt-content-and-use-data-processing", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#AddingCE-Extended-Example", "Extended example: Extend tt_content and use data processing" ], "extending-tt-content": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#extending-tt-content", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#ConfigureCE-Extend-tt_content", "Extending tt_content" ], "extending-the-database-schema": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#extending-the-database-schema", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#ConfigureCE-Extend-tt_content-database", "Extending the database schema" ], "defining-the-field-in-the-tca": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#defining-the-field-in-the-tca", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#ConfigureCE-Extend-tt_content-tca", "Defining the field in the TCA" ], "defining-the-field-in-the-tce": [ @@ -36229,13 +36583,13 @@ "data-processing": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#data-processing", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#ConfigureCE-DataProcessors", "Data processing" ], "best-practices-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/BestPractices.html#best-practices-1", + "ApiOverview\/ContentElements\/BestPractices.html#best-practices", "Best practices" ], "coding-structure": [ @@ -36253,61 +36607,61 @@ "new-content-element-wizard": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/ContentElementsWizard.html#new-content-element-wizard", + "ApiOverview\/ContentElements\/ContentElementsWizard.html#content-element-wizard", "New content element wizard" ], "plain-content-elements-or-plugins": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/ContentElementsWizard.html#plain-content-elements-or-plugins", + "ApiOverview\/ContentElements\/ContentElementsWizard.html#content-element-wizard-plain", "Plain content elements or plugins" ], "plugins-extbase-in-the-new-content-element-wizard": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/ContentElementsWizard.html#plugins-extbase-in-the-new-content-element-wizard", + "ApiOverview\/ContentElements\/ContentElementsWizard.html#content-element-wizard-extbase", "Plugins (Extbase) in the \"New Content Element\" wizard" ], "override-the-wizard-with-page-tsconfig": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/ContentElementsWizard.html#override-the-wizard-with-page-tsconfig", + "ApiOverview\/ContentElements\/ContentElementsWizard.html#content-element-wizard-page-tsconfig", "Override the wizard with page TSconfig" ], "remove-items-from-the-new-content-element-wizard": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/ContentElementsWizard.html#remove-items-from-the-new-content-element-wizard", + "ApiOverview\/ContentElements\/ContentElementsWizard.html#content-element-wizard-page-tsconfig-remove", "Remove items from the \"New Content Element\" wizard" ], "change-title-description-icon-and-default-values-in-the-wizard": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/ContentElementsWizard.html#change-title-description-icon-and-default-values-in-the-wizard", + "ApiOverview\/ContentElements\/ContentElementsWizard.html#content-element-wizard-page-tsconfig-change", "Change title, description, icon and default values in the wizard" ], "register-a-new-group-in-the-new-content-element-wizard": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/ContentElementsWizard.html#register-a-new-group-in-the-new-content-element-wizard", + "ApiOverview\/ContentElements\/ContentElementsWizard.html#content-element-wizard-create-group", "Register a new group in the \"New Content Element\" wizard" ], "content-elements-compatible-with-typo3-v12-4-and-v13": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/ContentElementsWizard.html#content-elements-compatible-with-typo3-v12-4-and-v13", + "ApiOverview\/ContentElements\/ContentElementsWizard.html#content-element-wizard-v12", "Content elements compatible with TYPO3 v12.4 and v13" ], "create-plugins": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/CreatePlugins.html#create-plugins", + "ApiOverview\/ContentElements\/CreatePlugins.html#Create-plugins", "Create plugins" ], "configure-custom-backend-preview-for-content-element": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/CustomBackendPreview.html#configure-custom-backend-preview-for-content-element", + "ApiOverview\/ContentElements\/CustomBackendPreview.html#ConfigureCE-Preview", "Configure custom backend preview for content element" ], "extend-the-default-preview-renderer": [ @@ -36319,13 +36673,13 @@ "page-tsconfig": [ "TYPO3 Explained", "13.4", - "Configuration\/TypoScript\/TSconfig\/Index.html#page-tsconfig", + "Configuration\/TypoScript\/TSconfig\/Index.html#tsconfig-page", "Page TSconfig" ], "event-listener": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/CustomBackendPreview.html#event-listener", + "ApiOverview\/ContentElements\/CustomBackendPreview.html#ConfigureCE-Preview-EventListener", "Event listener" ], "writing-a-preview-renderer": [ @@ -36343,145 +36697,145 @@ "custom-data-processors": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/CustomDataProcessing.html#custom-data-processors", + "ApiOverview\/ContentElements\/CustomDataProcessing.html#content-elements-custom-data-processor", "Custom data processors" ], "using-a-custom-data-processor-in-typoscript": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/CustomDataProcessing.html#using-a-custom-data-processor-in-typoscript", + "ApiOverview\/ContentElements\/CustomDataProcessing.html#content-elements-custom-data-processor_typoscript", "Using a custom data processor in TypoScript" ], "register-an-alias-for-the-data-processor-optional": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/CustomDataProcessing.html#register-an-alias-for-the-data-processor-optional", + "ApiOverview\/ContentElements\/CustomDataProcessing.html#content-elements-custom-data-processor_alias", "Register an alias for the data processor (optional)" ], "implementing-the-custom-data-processor": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/CustomDataProcessing.html#implementing-the-custom-data-processor", + "ApiOverview\/ContentElements\/CustomDataProcessing.html#content-elements-custom-data-processor_implementation", "Implementing the custom data processor" ], "content-elements-plugins": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/Index.html#content-elements-plugins", + "ApiOverview\/ContentElements\/Index.html#content-element-and-plugin", "Content Elements & Plugins" ], "content-elements-in-typo3": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/Index.html#content-elements-in-typo3", + "ApiOverview\/ContentElements\/Index.html#content-elements", "Content elements in TYPO3" ], "plugins-in-typo3": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/Index.html#plugins-in-typo3", + "ApiOverview\/ContentElements\/Index.html#plugins", "Plugins in TYPO3" ], "extbase-plugins": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/Index.html#extbase-plugins", + "ApiOverview\/ContentElements\/Index.html#plugins-extbase", "Extbase plugins" ], "plugins-without-extbase": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/Index.html#plugins-without-extbase", + "ApiOverview\/ContentElements\/Index.html#plugins-non-extbase", "Plugins without Extbase" ], "typical-characteristics-of-plugins": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/Index.html#typical-characteristics-of-plugins", + "ApiOverview\/ContentElements\/Index.html#plugins-characteristics", "Typical characteristics of plugins" ], "editing": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/Index.html#editing", + "ApiOverview\/ContentElements\/Index.html#plugins-editing", "Editing" ], "customizing": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/Index.html#customizing", + "ApiOverview\/ContentElements\/Index.html#cePluginsCustomize", "Customizing" ], "creating-custom-content-element-types-or-plugins": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/Index.html#creating-custom-content-element-types-or-plugins", + "ApiOverview\/ContentElements\/Index.html#content-element-and-plugin-creation", "Creating custom content element types or plugins" ], "migration-list-type-plugins-to-ctype": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/MigrationListType.html#migration-list-type-plugins-to-ctype", + "ApiOverview\/ContentElements\/MigrationListType.html#plugins-list-type-migration", "Migration: list_type plugins to CType" ], "migration-example-extbase-plugin": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/MigrationListType.html#migration-example-extbase-plugin", + "ApiOverview\/ContentElements\/MigrationListType.html#plugins-list-type-migration-extbase", "Migration example: Extbase plugin" ], "1-adjust-the-extbase-plugin-configuration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/MigrationListType.html#1-adjust-the-extbase-plugin-configuration", + "ApiOverview\/ContentElements\/MigrationListType.html#plugins-list-type-migration-extbase-configuration", "1. Adjust the Extbase plugin configuration" ], "2-adjust-the-registration-of-flexforms-and-additional-fields": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/MigrationListType.html#2-adjust-the-registration-of-flexforms-and-additional-fields", + "ApiOverview\/ContentElements\/MigrationListType.html#plugins-list-type-migration-extbase-flexform", "2. Adjust the registration of FlexForms and additional fields" ], "3-provide-an-upgrade-wizard": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/MigrationListType.html#3-provide-an-upgrade-wizard", + "ApiOverview\/ContentElements\/MigrationListType.html#plugins-list-type-migration-extbase-upgrade-wizard", "3. Provide an upgrade wizard" ], "4-search-your-code-and-replace-any-mentioning-of-list-type": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/MigrationListType.html#4-search-your-code-and-replace-any-mentioning-of-list-type", + "ApiOverview\/ContentElements\/MigrationListType.html#plugins-list-type-migration-extbase-replace", "4. Search your code and replace any mentioning of list_type" ], "migration-example-core-based-plugin": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/MigrationListType.html#migration-example-core-based-plugin", + "ApiOverview\/ContentElements\/MigrationListType.html#plugins-list-type-migration-core", "Migration example: Core-based plugin" ], "1-adjust-the-plugin-registration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/MigrationListType.html#1-adjust-the-plugin-registration", + "ApiOverview\/ContentElements\/MigrationListType.html#plugins-list-type-migration-core-plugin-registration", "1. Adjust the plugin registration" ], "2-adjust-the-typoscript-of-the-plugin": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/MigrationListType.html#2-adjust-the-typoscript-of-the-plugin", + "ApiOverview\/ContentElements\/MigrationListType.html#plugins-list-type-migration-core-plugin-typoscript", "2. Adjust the TypoScript of the plugin" ], "3-provide-an-upgrade-wizard-for-automatic-content-migration-for-typo3-v13-4-and-v12-4": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentElements\/MigrationListType.html#3-provide-an-upgrade-wizard-for-automatic-content-migration-for-typo3-v13-4-and-v12-4", + "ApiOverview\/ContentElements\/MigrationListType.html#plugins-list-type-migration-core-plugin-migration", "3. Provide an upgrade wizard for automatic content migration for TYPO3 v13.4 and v12.4" ], "content-security-policy-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-1", + "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy", "Content Security Policy" ], "policy-builder-approach": [ @@ -36493,31 +36847,31 @@ "extension-specific": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#extension-specific", + "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-extension", "Extension-specific" ], "site-specific-frontend": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#site-specific-frontend", + "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-site", "Site-specific (frontend)" ], "disable-csp-for-a-site": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#disable-csp-for-a-site", + "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-site-active", "Disable CSP for a site" ], "modes": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#modes", + "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-modes", "Modes" ], "nonce": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Nonce.html#nonce", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Nonce.html#typo3-request-attribute-nonce", "Nonce" ], "retrieve-with-php": [ @@ -36535,7 +36889,7 @@ "reporting-of-violations": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#reporting-of-violations", + "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-reporting", "Reporting of violations" ], "using-a-third-party-service": [ @@ -36547,67 +36901,67 @@ "psr-14-events": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Events.html#psr-14-events", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events", "PSR-14 events" ], "context-api-and-aspects": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#context-api-and-aspects", + "ApiOverview\/Context\/Index.html#context-api", "Context API and aspects" ], "aspects": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#aspects", + "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#routing-advanced-routing-configuration-aspects", "Aspects" ], "date-time-aspect": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#date-time-aspect", + "ApiOverview\/Context\/Index.html#context_api_aspects_datetime", "Date time aspect" ], "language-aspect": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#language-aspect", + "ApiOverview\/Context\/Index.html#context_api_aspects_language", "Language aspect" ], "overlay-types": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#overlay-types", + "ApiOverview\/Context\/Index.html#context_api_aspects_language_overlay-types", "Overlay types" ], "preview-aspect": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#preview-aspect", + "ApiOverview\/Context\/Index.html#context_api_aspects_preview", "Preview aspect" ], "user-aspect": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#user-aspect", + "ApiOverview\/Context\/Index.html#context_api_aspects_user", "User aspect" ], "visibility-aspect": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#visibility-aspect", + "ApiOverview\/Context\/Index.html#context_api_aspects_visibility", "Visibility aspect" ], "workspace-aspect": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#workspace-aspect", + "ApiOverview\/Context\/Index.html#context_api_aspects_workspace", "Workspace aspect" ], "country-api-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Country\/Index.html#country-api-1", + "ApiOverview\/Country\/Index.html#country-api", "Country API" ], "using-the-php-api": [ @@ -36667,13 +37021,13 @@ "form-viewhelper": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Country\/Index.html#form-viewhelper", + "ApiOverview\/Country\/Index.html#country-select-viewhelper", "Form ViewHelper" ], "crop-variants-configuration-per-content-element": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CropVariants\/ContentElement\/Index.html#crop-variants-configuration-per-content-element", + "ApiOverview\/CropVariants\/ContentElement\/Index.html#CE_cropvariants", "Crop variants configuration per content element" ], "disable-crop-variants": [ @@ -36685,7 +37039,7 @@ "general-configuration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CropVariants\/General\/Index.html#general-configuration", + "ApiOverview\/CropVariants\/General\/Index.html#cropvariants_general", "General Configuration" ], "crop-area": [ @@ -36715,13 +37069,13 @@ "crop-variants-for-images": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CropVariants\/Index.html#crop-variants-for-images", + "ApiOverview\/CropVariants\/Index.html#cropvariants", "Crop Variants for Images" ], "basic-create-read-update-and-delete-operations-crud": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/BasicCrud\/Index.html#basic-create-read-update-and-delete-operations-crud", + "ApiOverview\/Database\/BasicCrud\/Index.html#cgl-database-access", "Basic create, read, update, and delete operations (CRUD)" ], "insert-a-row": [ @@ -36733,7 +37087,7 @@ "select-a-single-row": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/BasicCrud\/Index.html#select-a-single-row", + "ApiOverview\/Database\/BasicCrud\/Index.html#database-select", "Select a single row" ], "select-multiple-rows-with-some-where-magic": [ @@ -36757,7 +37111,7 @@ "class-overview": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/ClassOverview\/Index.html#class-overview", + "ApiOverview\/Database\/ClassOverview\/Index.html#database-class-overview", "Class overview" ], "example-one-connection": [ @@ -36775,13 +37129,13 @@ "connection": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Connection\/Index.html#connection", + "ApiOverview\/Database\/Connection\/Index.html#database-connection", "Connection" ], "instantiation": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Logger\/Index.html#instantiation", + "ApiOverview\/Logging\/Logger\/Index.html#logging-logger-instantiation", "Instantiation" ], "using-the-connection-pool": [ @@ -36799,25 +37153,25 @@ "parameter-types": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Connection\/Index.html#parameter-types", + "ApiOverview\/Database\/Connection\/Index.html#database-connection-parameter-types", "Parameter types" ], "insert": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Connection\/Index.html#insert", + "ApiOverview\/Database\/Connection\/Index.html#database-connection-insert", "insert()" ], "bulkinsert": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Connection\/Index.html#bulkinsert", + "ApiOverview\/Database\/Connection\/Index.html#database-connection-bulk-insert", "bulkInsert()" ], "update": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Connection\/Index.html#update", + "ApiOverview\/Database\/Connection\/Index.html#database-connection-update", "update()" ], "delete": [ @@ -36829,61 +37183,61 @@ "truncate": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Connection\/Index.html#truncate", + "ApiOverview\/Database\/Connection\/Index.html#database-connection-truncate", "truncate()" ], "count": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#count", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-count", "count()" ], "select": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Connection\/Index.html#select", + "ApiOverview\/Database\/Connection\/Index.html#database-connection-select", "select()" ], "lastinsertid": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Connection\/Index.html#lastinsertid", + "ApiOverview\/Database\/Connection\/Index.html#database-connection-last-insert-id", "lastInsertId()" ], "createquerybuilder": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Connection\/Index.html#createquerybuilder", + "ApiOverview\/Database\/Connection\/Index.html#database-connection-create-query-builder", "createQueryBuilder()" ], "native-json-database-field-type-support": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Connection\/Index.html#native-json-database-field-type-support", + "ApiOverview\/Database\/Connection\/Index.html#json_database_type", "Native JSON database field type support" ], "connectionpool": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/ConnectionPool\/Index.html#connectionpool", + "ApiOverview\/Database\/ConnectionPool\/Index.html#database-connection-pool", "ConnectionPool" ], "pooling-multiple-connections-to-different-database-endpoints": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/ConnectionPool\/Index.html#pooling-multiple-connections-to-different-database-endpoints", + "ApiOverview\/Database\/ConnectionPool\/Index.html#database-connection-pool-pooling", "Pooling: multiple connections to different database endpoints" ], "beware": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/ConnectionPool\/Index.html#beware", + "ApiOverview\/Database\/ConnectionPool\/Index.html#database-connection-pool-beware", "Beware" ], "database-structure-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/DatabaseStructure\/Index.html#database-structure-1", + "ApiOverview\/Database\/DatabaseStructure\/Index.html#database-structure-requirements", "Database structure" ], "types-of-tables": [ @@ -36913,151 +37267,151 @@ "the-pages-table": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/DatabaseStructure\/Index.html#the-pages-table", + "ApiOverview\/Database\/DatabaseStructure\/Index.html#database-structure-pages", "The \"pages\" table" ], "mm-relations": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/DatabaseStructure\/Index.html#mm-relations", + "ApiOverview\/Database\/DatabaseStructure\/Index.html#database-structure-mm-relations", "MM relations" ], "other-tables": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/DatabaseStructure\/Index.html#other-tables", + "ApiOverview\/Database\/DatabaseStructure\/Index.html#database-structure-other-tables", "Other tables" ], "upgrade-table-and-field-definitions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/DatabaseUpgrade\/Index.html#upgrade-table-and-field-definitions", + "ApiOverview\/Database\/DatabaseUpgrade\/Index.html#database-upgrade", "Upgrade table and field definitions" ], "the-ext-tables-sql-files": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/DatabaseUpgrade\/Index.html#the-ext-tables-sql-files", + "ApiOverview\/Database\/DatabaseUpgrade\/Index.html#database-exttables-sql", "The ext_tables.sql files" ], "expression-builder": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#expression-builder", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder", "Expression builder" ], "basic-usage": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/RestRequests\/Index.html#basic-usage", + "ExtensionArchitecture\/HowTo\/RestRequests\/Index.html#http-basic", "Basic usage" ], "junctions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#junctions", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-basic-junctions", "Junctions" ], "comparisons": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#comparisons", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-basic-comparisons", "Comparisons" ], "aggregate-functions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#aggregate-functions", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-basic-aggregate-functions", "Aggregate functions" ], "various-expressions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#various-expressions", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-basic-various-expressions", "Various expressions" ], "php-expressionbuilder-as": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-as", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-as", "ExpressionBuilder::as()" ], "php-expressionbuilder-concat": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-concat", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-concat", "ExpressionBuilder::concat()" ], "php-expressionbuilder-castint": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-castint", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-castInt", "ExpressionBuilder::castInt()" ], "php-expressionbuilder-castvarchar": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-castvarchar", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-castVarchar", "ExpressionBuilder::castVarchar()" ], "php-expressionbuilder-if": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-if", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-if", "ExpressionBuilder::if()" ], "php-expressionbuilder-left": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-left", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-left", "ExpressionBuilder::left()" ], "php-expressionbuilder-leftpad": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-leftpad", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-leftPad", "ExpressionBuilder::leftPad()" ], "php-expressionbuilder-length": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-length", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-length", "ExpressionBuilder::length()" ], "php-expressionbuilder-repeat": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-repeat", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-repeat", "ExpressionBuilder::repeat()" ], "php-expressionbuilder-right": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-right", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-right", "ExpressionBuilder::right()" ], "php-expressionbuilder-rightpad": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-rightpad", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-rightPad", "ExpressionBuilder::rightPad()" ], "php-expressionbuilder-space": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-space", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-space", "ExpressionBuilder::space()" ], "php-expressionbuilder-trim": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-trim", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-trim", "ExpressionBuilder::trim()" ], "database-doctrine-dbal": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Index.html#database-doctrine-dbal", + "ApiOverview\/Database\/Index.html#database", "Database (Doctrine DBAL)" ], "doctrine-dbal": [ @@ -37081,13 +37435,13 @@ "doctrine-dbal-driver-middlewares": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Middleware\/Index.html#doctrine-dbal-driver-middlewares", + "ApiOverview\/Database\/Middleware\/Index.html#database-middleware", "Doctrine DBAL driver middlewares" ], "register-a-global-driver-middleware": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Middleware\/Index.html#register-a-global-driver-middleware", + "ApiOverview\/Database\/Middleware\/Index.html#database-middleware-global", "Register a global driver middleware" ], "disable-a-global-middleware-for-a-specific-connection": [ @@ -37099,49 +37453,49 @@ "register-a-driver-middleware-for-a-specific-connection": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Middleware\/Index.html#register-a-driver-middleware-for-a-specific-connection", + "ApiOverview\/Database\/Middleware\/Index.html#database-middleware-specific", "Register a driver middleware for a specific connection" ], "registration-for-driver-middlewares-for-typo3-v12-and-v13": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Middleware\/Index.html#registration-for-driver-middlewares-for-typo3-v12-and-v13", + "ApiOverview\/Database\/Middleware\/Index.html#database-middleware-specific-registration-v12-v13", "Registration for driver middlewares for TYPO3 v12 and v13" ], "sorting-of-driver-middlewares": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Middleware\/Index.html#sorting-of-driver-middlewares", + "ApiOverview\/Database\/Middleware\/Index.html#database-middleware-sorting", "Sorting of driver middlewares" ], "the-interface-php-usableforconnectioninterface": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Middleware\/Index.html#the-interface-php-usableforconnectioninterface", + "ApiOverview\/Database\/Middleware\/Index.html#database-middleware-UsableForConnectionInterface", "The interface UsableForConnectionInterface" ], "query-builder": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#query-builder", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder", "Query builder" ], "select-and-addselect": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#select-and-addselect", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-select", "select() and addSelect()" ], "default-restrictions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#default-restrictions", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-select-restrictions", "Default Restrictions" ], "update-and-set": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#update-and-set", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-update-set", "update() and set()" ], "insert-and-values": [ @@ -37171,7 +37525,7 @@ "orderby-and-addorderby": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#orderby-and-addorderby", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-orderby", "orderBy() and addOrderBy()" ], "groupby-and-addgroupby": [ @@ -37189,37 +37543,37 @@ "add": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#add", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-add", "add()" ], "getsql": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#getsql", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-get-sql", "getSQL()" ], "getparameters": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#getparameters", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-get-parameters", "getParameters()" ], "executequery-and-executestatement": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#executequery-and-executestatement", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-execute", "executeQuery() and executeStatement()" ], "executequery": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#executequery", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-execute-query", "executeQuery()" ], "executestatement": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#executestatement", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-execute-statement", "executeStatement()" ], "expr": [ @@ -37231,7 +37585,7 @@ "createnamedparameter": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#createnamedparameter", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-create-named-parameter", "createNamedParameter()" ], "more-examples": [ @@ -37249,13 +37603,13 @@ "quoteidentifier-and-quoteidentifiers": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#quoteidentifier-and-quoteidentifiers", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-quote-identifier", "quoteIdentifier() and quoteIdentifiers()" ], "escapelikewildcards": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/QueryBuilder\/Index.html#escapelikewildcards", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-escape-like-wildcards", "escapeLikeWildcards()" ], "getrestrictions-setrestrictions-resetrestrictions": [ @@ -37267,13 +37621,13 @@ "restriction-builder": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/RestrictionBuilder\/Index.html#restriction-builder", + "ApiOverview\/Database\/RestrictionBuilder\/Index.html#database-restriction-builder", "Restriction builder" ], "rationale": [ "TYPO3 Explained", "13.4", - "CodingGuidelines\/PhpArchitecture\/Traits.html#rationale", + "PhpArchitecture\/Traits.html#rationale", "Rationale" ], "main-construct": [ @@ -37297,43 +37651,43 @@ "limit-restrictions-to-tables": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/RestrictionBuilder\/Index.html#limit-restrictions-to-tables", + "ApiOverview\/Database\/RestrictionBuilder\/Index.html#database-limit-restrictions-to-tables", "Limit restrictions to tables" ], "custom-restrictions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/RestrictionBuilder\/Index.html#custom-restrictions", + "ApiOverview\/Database\/RestrictionBuilder\/Index.html#database-custom-restrictions", "Custom restrictions" ], "result": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Statement\/Index.html#result", + "ApiOverview\/Database\/Statement\/Index.html#database-result", "Result" ], "fetchassociative": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Statement\/Index.html#fetchassociative", + "ApiOverview\/Database\/Statement\/Index.html#database-result-fetch-associative", "fetchAssociative()" ], "fetchallassociative": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Statement\/Index.html#fetchallassociative", + "ApiOverview\/Database\/Statement\/Index.html#database-result-fetch-all-associative", "fetchAllAssociative()" ], "fetchone": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Statement\/Index.html#fetchone", + "ApiOverview\/Database\/Statement\/Index.html#database-result-fetch-one", "fetchOne()" ], "rowcount": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Statement\/Index.html#rowcount", + "ApiOverview\/Database\/Statement\/Index.html#database-result-row-count", "rowCount()" ], "reuse-prepared-statement": [ @@ -37345,7 +37699,7 @@ "various-tips-and-tricks": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/TipsAndTricks\/Index.html#various-tips-and-tricks", + "ApiOverview\/Database\/TipsAndTricks\/Index.html#database-tips-and-tricks", "Various tips and tricks" ], "about-database-error-row-size-too-large": [ @@ -37357,73 +37711,73 @@ "database-records-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DatabaseRecords\/Index.html#database-records-1", + "ApiOverview\/DatabaseRecords\/Index.html#database-records", "Database records" ], "common-examples-of-records-in-typo3": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DatabaseRecords\/Index.html#common-examples-of-records-in-typo3", + "ApiOverview\/DatabaseRecords\/Index.html#database-records-examples", "Common examples of records in TYPO3:" ], "technical-structure-of-a-record": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DatabaseRecords\/Index.html#technical-structure-of-a-record", + "ApiOverview\/DatabaseRecords\/Index.html#database-records-technical", "Technical structure of a record:" ], "tca-table-configuration-array": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#tca-table-configuration-array", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_tca", "TCA - Table Configuration Array" ], "types-and-subtypes-in-records": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DatabaseRecords\/Index.html#types-and-subtypes-in-records", + "ApiOverview\/DatabaseRecords\/Index.html#database-records-types", "Types and subtypes in records" ], "record-objects": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DatabaseRecords\/RecordObjects.html#record-objects", + "ApiOverview\/DatabaseRecords\/RecordObjects.html#record_objects", "Record objects" ], "extbase-domain-models": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DatabaseRecords\/Index.html#extbase-domain-models", + "ApiOverview\/DatabaseRecords\/Index.html#database-records-models", "Extbase domain models" ], "provide-records-in-typoscript": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DatabaseRecords\/RecordObjects.html#provide-records-in-typoscript", + "ApiOverview\/DatabaseRecords\/RecordObjects.html#record_objects_typoscript", "Provide Records in TypoScript" ], "provide-records-in-php": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DatabaseRecords\/RecordObjects.html#provide-records-in-php", + "ApiOverview\/DatabaseRecords\/RecordObjects.html#record_objects_php", "Provide records in PHP" ], "use-records-in-fluid": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DatabaseRecords\/RecordObjects.html#use-records-in-fluid", + "ApiOverview\/DatabaseRecords\/RecordObjects.html#record_objects_fluid", "Use records in Fluid" ], "using-the-raw-record": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DatabaseRecords\/RecordObjects.html#using-the-raw-record", + "ApiOverview\/DatabaseRecords\/RecordObjects.html#record_objects_fluid-raw", "Using the raw record" ], "datahandler-basics-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-basics-1", + "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-basics", "DataHandler basics" ], "commands-array": [ @@ -37435,13 +37789,13 @@ "command-keywords-and-values": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#command-keywords-and-values", + "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-command-keywords", "Command keywords and values" ], "examples-of-commands": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#examples-of-commands", + "ApiOverview\/DataHandler\/Database\/Index.html#tce-command-examples", "Examples of commands" ], "accessing-the-uid-of-copied-records": [ @@ -37453,25 +37807,25 @@ "data-array": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#data-array", + "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-data", "Data array" ], "examples-of-data-submission": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#examples-of-data-submission", + "ApiOverview\/DataHandler\/Database\/Index.html#tce-data-examples", "Examples of data submission" ], "clear-cache": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#clear-cache", + "ApiOverview\/DataHandler\/Database\/Index.html#tce-clear-cache", "Clear cache" ], "clear-cache-using-cache-tags": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#clear-cache-using-cache-tags", + "ApiOverview\/DataHandler\/Database\/Index.html#tce-cache-hook", "Clear cache using cache tags" ], "hook-for-cache-post-processing": [ @@ -37483,115 +37837,115 @@ "flags-in-datahandler": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#flags-in-datahandler", + "ApiOverview\/DataHandler\/Database\/Index.html#tce-flags", "Flags in DataHandler" ], "datahandler": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Index.html#datahandler", + "ApiOverview\/DataHandler\/Index.html#data-handler", "DataHandler" ], "files": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Index.html#files", + "ExtensionArchitecture\/FileStructure\/Index.html#extension-files", "Files" ], "the-record-commit-route": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/TceDb\/Index.html#the-record-commit-route", + "ApiOverview\/DataHandler\/TceDb\/Index.html#record-commit-route", "The \"\/record\/commit\" route" ], "using-the-datahandler-in-scripts": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#using-the-datahandler-in-scripts", + "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#using-tcemain", "Using the DataHandler in scripts" ], "using-the-datahandler-in-a-symfony-command": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#using-the-datahandler-in-a-symfony-command", + "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#dataHandler-cli-command", "Using the DataHandler in a Symfony command" ], "datahandler-examples": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#datahandler-examples", + "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#tcemain-examples", "DataHandler examples" ], "submitting-data": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#submitting-data", + "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#tcemain-submit-data", "Submitting data" ], "executing-commands": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#executing-commands", + "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#tcemain-execute-commands", "Executing commands" ], "clearing-cache": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#clearing-cache", + "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#tcemain-clear-cache", "Clearing cache" ], "complex-data-submission": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#complex-data-submission", + "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#tcemain-complex-submission", "Complex data submission" ], "both-data-and-commands-executed-with-alternative-user-object": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#both-data-and-commands-executed-with-alternative-user-object", + "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#tcemain-data-command-user", "Both data and commands executed with alternative user object" ], "error-handling": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/ErrorHandling\/Index.html#error-handling", + "ApiOverview\/SiteHandling\/ErrorHandling\/Index.html#sitehandling-errorHandling", "Error handling" ], "debugging": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#debugging", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-debugging", "Debugging" ], "typo3-backend-debug-mode": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Debugging\/Index.html#typo3-backend-debug-mode", + "ApiOverview\/Debugging\/Index.html#examples-debug-backend", "TYPO3 backend debug mode" ], "debugutility-debug": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Debugging\/Index.html#debugutility-debug", + "ApiOverview\/Debugging\/Index.html#examples-debug-utility", "DebugUtility::debug()" ], "extbase-debuggerutility": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Debugging\/Index.html#extbase-debuggerutility", + "ApiOverview\/Debugging\/Index.html#examples-debug-extbase-utility", "Extbase DebuggerUtility" ], "fluid-debug-viewhelper": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Debugging\/Index.html#fluid-debug-viewhelper", + "ApiOverview\/Debugging\/Index.html#examples-debug-fluid", "Fluid Debug ViewHelper" ], "xdebug": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Debugging\/Index.html#xdebug", + "ApiOverview\/Debugging\/Index.html#examples-debug-xdebug", "Xdebug" ], "dependency-injection": [ @@ -37621,7 +37975,7 @@ "using-di": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DependencyInjection\/Index.html#using-di", + "ApiOverview\/DependencyInjection\/Index.html#Using-DI", "Using DI" ], "when-to-use-dependency-injection-in-typo3": [ @@ -37633,13 +37987,13 @@ "constructor-injection": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DependencyInjection\/Index.html#constructor-injection", + "ApiOverview\/DependencyInjection\/Index.html#Constructor-injection", "Constructor injection" ], "method-injection": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DependencyInjection\/Index.html#method-injection", + "ApiOverview\/DependencyInjection\/Index.html#Method-injection", "Method injection" ], "interface-injection": [ @@ -37657,13 +38011,13 @@ "configure-dependency-injection-in-extensions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DependencyInjection\/Index.html#configure-dependency-injection-in-extensions", + "ApiOverview\/DependencyInjection\/Index.html#dependency-injection-in-extensions", "Configure dependency injection in extensions" ], "arguments": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DependencyInjection\/Index.html#arguments", + "ApiOverview\/DependencyInjection\/Index.html#DependencyInjectionArguments", "Arguments" ], "public": [ @@ -37675,7 +38029,7 @@ "what-to-make-public": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DependencyInjection\/Index.html#what-to-make-public", + "ApiOverview\/DependencyInjection\/Index.html#What-to-make-public", "What to make public" ], "errors-resulting-from-wrong-configuration": [ @@ -37687,7 +38041,7 @@ "installation-wide-configuration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DependencyInjection\/Index.html#installation-wide-configuration", + "ApiOverview\/DependencyInjection\/Index.html#dependency-injection-installation-wide", "Installation-wide configuration" ], "user-functions-and-their-restrictions": [ @@ -37711,13 +38065,13 @@ "deprecation-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Deprecation\/Index.html#deprecation-1", + "ApiOverview\/Deprecation\/Index.html#deprecation", "Deprecation" ], "enabling-deprecation-errors": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Deprecation\/Index.html#enabling-deprecation-errors", + "ApiOverview\/Deprecation\/Index.html#deprecation_enable_errors", "Enabling deprecation errors" ], "via-gui": [ @@ -37735,25 +38089,25 @@ "find-calls-to-deprecated-functions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Deprecation\/Index.html#find-calls-to-deprecated-functions", + "ApiOverview\/Deprecation\/Index.html#deprecation_finding_calls", "Find calls to deprecated functions" ], "deprecate-functions-in-extensions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Deprecation\/Index.html#deprecate-functions-in-extensions", + "ApiOverview\/Deprecation\/Index.html#deprecate_functions", "Deprecate functions in extensions" ], "directory-structure-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/Index.html#directory-structure-1", + "ApiOverview\/DirectoryStructure\/Index.html#directory-structure", "Directory structure" ], "files-on-project-level": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#files-on-project-level", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-project", "Files on project level" ], "directories-in-a-typical-project": [ @@ -37765,229 +38119,229 @@ "file-config": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-config", + "ApiOverview\/DirectoryStructure\/Index.html#directory-config", "config\/" ], "file-config-sites": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-config-sites", + "ApiOverview\/DirectoryStructure\/Index.html#directory-config-sites", "config\/sites\/" ], "file-config-system": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-config-system", + "ApiOverview\/DirectoryStructure\/Index.html#directory-config-system", "config\/system\/" ], "file-packages": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-packages", + "ApiOverview\/DirectoryStructure\/Index.html#directory-packages", "packages\/" ], "file-public": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Resources\/Public\/Index.html#file-public", + "ExtensionArchitecture\/FileStructure\/Resources\/Public\/Index.html#extension-Resources-Public", "Public" ], "file-public-assets": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-public-assets", + "ApiOverview\/DirectoryStructure\/Index.html#directory-public-assets", "public\/_assets\/" ], "file-public-fileadmin": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-public-fileadmin", + "ApiOverview\/DirectoryStructure\/Index.html#directory-public-fileadmin", "public\/fileadmin\/" ], "file-public-typo3": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-public-typo3", + "ApiOverview\/DirectoryStructure\/Index.html#directory-public-typo3", "public\/typo3\/" ], "file-public-typo3temp": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-public-typo3temp", + "ApiOverview\/DirectoryStructure\/Index.html#directory-public-typo3temp", "public\/typo3temp\/" ], "file-public-typo3temp-assets": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-public-typo3temp-assets", + "ApiOverview\/DirectoryStructure\/Index.html#directory-public-typo3temp-assets", "public\/typo3temp\/assets\/" ], "file-var": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-var", + "ApiOverview\/DirectoryStructure\/Index.html#directory-var", "var\/" ], "file-var-cache": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-var-cache", + "ApiOverview\/DirectoryStructure\/Index.html#directory-var-cache", "var\/cache\/" ], "file-var-labels": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-var-labels", + "ApiOverview\/DirectoryStructure\/Index.html#directory-var-labels", "var\/labels\/" ], "file-var-log": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/Index.html#file-var-log", + "ApiOverview\/DirectoryStructure\/Index.html#directory-var-log", "var\/log\/" ], "file-vendor": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-vendor", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-vendor", "vendor\/" ], "legacy-installations-directory-structure": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-installations-directory-structure", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-structure", "Legacy installations: Directory structure" ], "file-fileadmin": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-fileadmin", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-fileadmin", "fileadmin\/" ], "file-typo3": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3", "typo3\/" ], "file-typo3-sysext": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3-sysext", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3-sysext", "typo3\/sysext\/" ], "file-typo3-source": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3-source", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3_source", "typo3_source\/" ], "file-typo3conf": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3conf", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3conf", "typo3conf\/" ], "file-typo3conf-autoload": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3conf-autoload", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3conf-autoload", "typo3conf\/autoload\/" ], "file-typo3conf-ext": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3conf-ext", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3conf-ext", "typo3conf\/ext\/" ], "file-typo3conf-l10n": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3conf-l10n", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3conf-l10n", "typo3conf\/l10n\/" ], "file-typo3conf-sites": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3conf-sites", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3conf-sites", "typo3conf\/sites\/" ], "file-typo3conf-system": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3conf-system", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3conf-system", "typo3conf\/system\/" ], "file-typo3temp": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3temp", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3temp", "typo3temp\/" ], "file-typo3temp-assets": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3temp-assets", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3temp-assets", "typo3temp\/assets\/" ], "file-typo3temp-var": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3temp-var", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3temp-var", "typo3temp\/var\/" ], "environment": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Environment\/Index.html#environment", + "ApiOverview\/Environment\/Index.html#Environment", "Environment" ], "environment-php-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Environment\/Index.html#environment-php-api", + "ApiOverview\/Environment\/Index.html#Environment-php-api", "Environment PHP API" ], "getprojectpath": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Environment\/Index.html#getprojectpath", + "ApiOverview\/Environment\/Index.html#Environment-project-path", "getProjectPath()" ], "getpublicpath": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Environment\/Index.html#getpublicpath", + "ApiOverview\/Environment\/Index.html#Environment-public-path", "getPublicPath()" ], "getvarpath": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Environment\/Index.html#getvarpath", + "ApiOverview\/Environment\/Index.html#Environment-var-path", "getVarPath()" ], "getconfigpath": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Environment\/Index.html#getconfigpath", + "ApiOverview\/Environment\/Index.html#Environment-config-path", "getConfigPath()" ], "getlabelspath": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Environment\/Index.html#getlabelspath", + "ApiOverview\/Environment\/Index.html#Environment-labels-path", "getLabelsPath()" ], "getcurrentscript": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Environment\/Index.html#getcurrentscript", + "ApiOverview\/Environment\/Index.html#Environment-current-script", "getCurrentScript()" ], "getcontext": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Environment\/Index.html#getcontext", + "ApiOverview\/Environment\/Index.html#Environment-context", "getContext()" ], "via-the-abbr-gui-graphical-user-interface": [ @@ -38011,37 +38365,37 @@ "debug-exception-handler": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ErrorAndExceptionHandling\/DebugExceptionHandler\/Index.html#debug-exception-handler", + "ApiOverview\/ErrorAndExceptionHandling\/DebugExceptionHandler\/Index.html#error-handling-debug-exception-handler", "Debug exception handler" ], "error-handler": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ErrorAndExceptionHandling\/ErrorHandler\/Index.html#error-handler", + "ApiOverview\/ErrorAndExceptionHandling\/ErrorHandler\/Index.html#error-handling-error-handler", "Error Handler" ], "debugging-and-development-setup": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ErrorAndExceptionHandling\/Examples\/Index.html#debugging-and-development-setup", + "ApiOverview\/ErrorAndExceptionHandling\/Examples\/Index.html#error-handling-configuration-examples-debug", "Debugging and development setup" ], "production-setup": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ErrorAndExceptionHandling\/Examples\/Index.html#production-setup", + "ApiOverview\/ErrorAndExceptionHandling\/Examples\/Index.html#error-handling-configuration-examples-production", "Production setup" ], "performance-setup": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ErrorAndExceptionHandling\/Examples\/Index.html#performance-setup", + "ApiOverview\/ErrorAndExceptionHandling\/Examples\/Index.html#error-handling-configuration-examples-performance", "Performance setup" ], "how-to-extend-the-error-and-exception-handling": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ErrorAndExceptionHandling\/Extending\/Index.html#how-to-extend-the-error-and-exception-handling", + "ApiOverview\/ErrorAndExceptionHandling\/Extending\/Index.html#error-handling-extending", "How to extend the error and exception handling" ], "example-debug-exception-handler": [ @@ -38053,61 +38407,61 @@ "error-and-exception-handling": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ErrorAndExceptionHandling\/Index.html#error-and-exception-handling", + "ApiOverview\/ErrorAndExceptionHandling\/Index.html#error-handling", "Error and exception handling" ], "production-exception-handler": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ErrorAndExceptionHandling\/ProductionExceptionHandler\/Index.html#production-exception-handler", + "ApiOverview\/ErrorAndExceptionHandling\/ProductionExceptionHandler\/Index.html#error-handling-production-exception-handler", "Production exception handler" ], "message-oops-an-error-occurred": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ErrorAndExceptionHandling\/ProductionExceptionHandler\/Index.html#message-oops-an-error-occurred", + "ApiOverview\/ErrorAndExceptionHandling\/ProductionExceptionHandler\/Index.html#error-handling-oops-an-error", "Message \"Oops, an error occurred!\"" ], "show-detailed-exception-output": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ErrorAndExceptionHandling\/ProductionExceptionHandler\/Index.html#show-detailed-exception-output", + "ApiOverview\/ErrorAndExceptionHandling\/ProductionExceptionHandler\/Index.html#error-handling-oops-an-error-detail", "Show detailed exception output" ], "example-prevent-oops-an-error-occurred-messages-for-logged-in-admins": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ErrorAndExceptionHandling\/ProductionExceptionHandler\/Index.html#example-prevent-oops-an-error-occurred-messages-for-logged-in-admins", + "ApiOverview\/ErrorAndExceptionHandling\/ProductionExceptionHandler\/Index.html#error-handling-oops-an-error-detail-admin", "Example: prevent \"Oops, an error occurred!\" messages for logged-in admins" ], "extending-the-typo3-core": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Concept\/Index.html#extending-the-typo3-core", + "ApiOverview\/Events\/Concept\/Index.html#hooks-concept", "Extending the TYPO3 Core" ], "typo3-extending-mechanisms-video": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Concept\/Index.html#typo3-extending-mechanisms-video", + "ApiOverview\/Events\/Concept\/Index.html#hooks-video", "TYPO3 extending mechanisms video" ], "events-and-hooks-vs-xclass-extensions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Concept\/Index.html#events-and-hooks-vs-xclass-extensions", + "ApiOverview\/Events\/Concept\/Index.html#hooks-xclass", "Events and hooks vs. XCLASS extensions" ], "proposing-events": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Concept\/Index.html#proposing-events", + "ApiOverview\/Events\/Concept\/Index.html#events-proposing", "Proposing events" ], "event-dispatcher-psr-14-events": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#event-dispatcher-psr-14-events", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcher", "Event dispatcher (PSR-14 events)" ], "quick-start": [ @@ -38119,37 +38473,37 @@ "dispatching-an-event": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#dispatching-an-event", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherQuickStartDispatching", "Dispatching an event" ], "description-of-psr-14-in-the-context-of-typo3": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#description-of-psr-14-in-the-context-of-typo3", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherDescription", "Description of PSR-14 in the context of TYPO3" ], "the-event-dispatcher-object": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#the-event-dispatcher-object", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherObject", "The event dispatcher object" ], "the-listener-provider": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#the-listener-provider", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherListenerProvider", "The listener provider" ], "the-events": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#the-events", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherEvents", "The events" ], "the-listeners": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#the-listeners", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherListeners", "The listeners" ], "advantages-of-the-event-dispatcher-over-hooks": [ @@ -38161,199 +38515,199 @@ "impact-on-typo3-core-development-in-the-future": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#impact-on-typo3-core-development-in-the-future", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherImpact", "Impact on TYPO3 Core development in the future" ], "implementing-an-event-listener-in-your-extension": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#implementing-an-event-listener-in-your-extension", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherImplementation", "Implementing an event listener in your extension" ], "the-event-listener-class": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#the-event-listener-class", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherEventListenerClass", "The event listener class" ], "registering-the-event-listener-via-file-services-yaml": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#registering-the-event-listener-via-file-services-yaml", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherRegistration", "Registering the event listener via Services.yaml" ], "overriding-event-listeners": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#overriding-event-listeners", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventListenerOverride", "Overriding event listeners" ], "debugging-event-handling": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/EventDispatcher\/Index.html#debugging-event-handling", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDebugging", "Debugging event handling" ], "afterbackendpagerenderevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/AfterBackendPageRenderEvent.html#afterbackendpagerenderevent", + "ApiOverview\/Events\/Events\/Backend\/AfterBackendPageRenderEvent.html#AfterBackendPageRenderEvent", "AfterBackendPageRenderEvent" ], "afterformenginepageinitializedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/AfterFormEnginePageInitializedEvent.html#afterformenginepageinitializedevent", + "ApiOverview\/Events\/Events\/Backend\/AfterFormEnginePageInitializedEvent.html#AfterFormEnginePageInitializedEvent", "AfterFormEnginePageInitializedEvent" ], "afterhistoryrollbackfinishedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/AfterHistoryRollbackFinishedEvent.html#afterhistoryrollbackfinishedevent", + "ApiOverview\/Events\/Events\/Backend\/AfterHistoryRollbackFinishedEvent.html#AfterHistoryRollbackFinishedEvent", "AfterHistoryRollbackFinishedEvent" ], "afterpagecolumnsselectedforlocalizationevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/AfterPageColumnsSelectedForLocalizationEvent.html#afterpagecolumnsselectedforlocalizationevent", + "ApiOverview\/Events\/Events\/Backend\/AfterPageColumnsSelectedForLocalizationEvent.html#AfterPageColumnsSelectedForLocalizationEvent", "AfterPageColumnsSelectedForLocalizationEvent" ], "afterpagepreviewurigeneratedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/AfterPagePreviewUriGeneratedEvent.html#afterpagepreviewurigeneratedevent", + "ApiOverview\/Events\/Events\/Backend\/AfterPagePreviewUriGeneratedEvent.html#AfterPagePreviewUriGeneratedEvent", "AfterPagePreviewUriGeneratedEvent" ], "afterpagetreeitemspreparedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#afterpagetreeitemspreparedevent", + "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#AfterPageTreeItemsPreparedEvent", "AfterPageTreeItemsPreparedEvent" ], "labels": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#labels", + "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#AfterPageTreeItemsPreparedEvent-labels", "Labels" ], "status-information": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#status-information", + "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#AfterPageTreeItemsPreparedEvent-status", "Status information" ], "afterrawpagerowpreparedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/AfterRawPageRowPreparedEvent.html#afterrawpagerowpreparedevent", + "ApiOverview\/Events\/Events\/Backend\/AfterRawPageRowPreparedEvent.html#AfterRawPageRowPreparedEvent", "AfterRawPageRowPreparedEvent" ], "example-sort-pages-by-title-in-the-page-tree": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/AfterRawPageRowPreparedEvent.html#example-sort-pages-by-title-in-the-page-tree", + "ApiOverview\/Events\/Events\/Backend\/AfterRawPageRowPreparedEvent.html#AfterRawPageRowPreparedEvent-example", "Example: Sort pages by title in the page tree" ], "api-of-afterrawpagerowpreparedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/AfterRawPageRowPreparedEvent.html#api-of-afterrawpagerowpreparedevent", + "ApiOverview\/Events\/Events\/Backend\/AfterRawPageRowPreparedEvent.html#AfterRawPageRowPreparedEvent-api", "API of AfterRawPageRowPreparedEvent" ], "afterrecordsummaryforlocalizationevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/AfterRecordSummaryForLocalizationEvent.html#afterrecordsummaryforlocalizationevent", + "ApiOverview\/Events\/Events\/Backend\/AfterRecordSummaryForLocalizationEvent.html#AfterRecordSummaryForLocalizationEvent", "AfterRecordSummaryForLocalizationEvent" ], "beforeformenginepageinitializedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/BeforeFormEnginePageInitializedEvent.html#beforeformenginepageinitializedevent", + "ApiOverview\/Events\/Events\/Backend\/BeforeFormEnginePageInitializedEvent.html#BeforeFormEnginePageInitializedEvent", "BeforeFormEnginePageInitializedEvent" ], "beforehistoryrollbackstartevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/BeforeHistoryRollbackStartEvent.html#beforehistoryrollbackstartevent", + "ApiOverview\/Events\/Events\/Backend\/BeforeHistoryRollbackStartEvent.html#BeforeHistoryRollbackStartEvent", "BeforeHistoryRollbackStartEvent" ], "beforemodulecreationevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/BeforeModuleCreationEvent.html#beforemodulecreationevent", + "ApiOverview\/Events\/Events\/Backend\/BeforeModuleCreationEvent.html#BeforeModuleCreationEvent", "BeforeModuleCreationEvent" ], "beforepagepreviewurigeneratedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/BeforePagePreviewUriGeneratedEvent.html#beforepagepreviewurigeneratedevent", + "ApiOverview\/Events\/Events\/Backend\/BeforePagePreviewUriGeneratedEvent.html#BeforePagePreviewUriGeneratedEvent", "BeforePagePreviewUriGeneratedEvent" ], "beforerecorddownloadisexecutedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadIsExecutedEvent.html#beforerecorddownloadisexecutedevent", + "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadIsExecutedEvent.html#BeforeRecordDownloadIsExecutedEvent", "BeforeRecordDownloadIsExecutedEvent" ], "example-redact-columns-with-private-content-in-exports": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadIsExecutedEvent.html#example-redact-columns-with-private-content-in-exports", + "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadIsExecutedEvent.html#BeforeRecordDownloadIsExecutedEvent-example", "Example: Redact columns with private content in exports" ], "api-of-beforerecorddownloadisexecutedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadIsExecutedEvent.html#api-of-beforerecorddownloadisexecutedevent", + "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadIsExecutedEvent.html#BeforeRecordDownloadIsExecutedEvent-api", "API of BeforeRecordDownloadIsExecutedEvent" ], "migrating-php-customizecsvheader": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadIsExecutedEvent.html#migrating-php-customizecsvheader", + "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadIsExecutedEvent.html#BeforeRecordDownloadIsExecutedEvent-migration-customizeCsvHeader", "Migrating customizeCsvHeader" ], "migrating-php-customizecsvrow": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadIsExecutedEvent.html#migrating-php-customizecsvrow", + "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadIsExecutedEvent.html#BeforeRecordDownloadIsExecutedEvent-migration-customizeCsvRow", "Migrating customizeCsvRow" ], "beforerecorddownloadpresetsaredisplayedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadPresetsAreDisplayedEvent.html#beforerecorddownloadpresetsaredisplayedevent", + "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadPresetsAreDisplayedEvent.html#BeforeRecordDownloadPresetsAreDisplayedEvent", "BeforeRecordDownloadPresetsAreDisplayedEvent" ], "example-manipulate-download-presets": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadPresetsAreDisplayedEvent.html#example-manipulate-download-presets", + "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadPresetsAreDisplayedEvent.html#BeforeRecordDownloadPresetsAreDisplayedEvent-example", "Example: Manipulate download presets" ], "api-of-beforerecorddownloadpresetsaredisplayedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadPresetsAreDisplayedEvent.html#api-of-beforerecorddownloadpresetsaredisplayedevent", + "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadPresetsAreDisplayedEvent.html#BeforeRecordDownloadPresetsAreDisplayedEvent-api", "API of BeforeRecordDownloadPresetsAreDisplayedEvent" ], "api-of-downloadpreset": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadPresetsAreDisplayedEvent.html#api-of-downloadpreset", + "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadPresetsAreDisplayedEvent.html#DownloadPreset-api", "API of DownloadPreset" ], "beforesearchindatabaserecordproviderevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/BeforeSearchInDatabaseRecordProviderEvent.html#beforesearchindatabaserecordproviderevent", + "ApiOverview\/Events\/Events\/Backend\/BeforeSearchInDatabaseRecordProviderEvent.html#BeforeSearchInDatabaseRecordProviderEvent", "BeforeSearchInDatabaseRecordProviderEvent" ], "customfilecontrolsevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/CustomFileControlsEvent.html#customfilecontrolsevent", + "ApiOverview\/Events\/Events\/Backend\/CustomFileControlsEvent.html#CustomFileControlsEvent", "CustomFileControlsEvent" ], "backend": [ @@ -38365,139 +38719,139 @@ "iscontentusedonpagelayoutevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/IsContentUsedOnPageLayoutEvent.html#iscontentusedonpagelayoutevent", + "ApiOverview\/Events\/Events\/Backend\/IsContentUsedOnPageLayoutEvent.html#IsContentUsedOnPageLayoutEvent", "IsContentUsedOnPageLayoutEvent" ], "example-display-unused-elements-detected-on-this-page-for-elements-with-missing-parent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/IsContentUsedOnPageLayoutEvent.html#example-display-unused-elements-detected-on-this-page-for-elements-with-missing-parent", + "ApiOverview\/Events\/Events\/Backend\/IsContentUsedOnPageLayoutEvent.html#IsContentUsedOnPageLayoutEvent-example", "Example: Display \"Unused elements detected on this page\" for elements with missing parent" ], "api-of-iscontentusedonpagelayoutevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/IsContentUsedOnPageLayoutEvent.html#api-of-iscontentusedonpagelayoutevent", + "ApiOverview\/Events\/Events\/Backend\/IsContentUsedOnPageLayoutEvent.html#IsContentUsedOnPageLayoutEvent-api", "API of IsContentUsedOnPageLayoutEvent" ], "isfileselectableevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/IsFileSelectableEvent.html#isfileselectableevent", + "ApiOverview\/Events\/Events\/Backend\/IsFileSelectableEvent.html#IsFileSelectableEvent", "IsFileSelectableEvent" ], "modifyalloweditemsevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyAllowedItemsEvent.html#modifyalloweditemsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyAllowedItemsEvent.html#ModifyAllowedItemsEvent", "ModifyAllowedItemsEvent" ], "modifybuttonbarevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyButtonBarEvent.html#modifybuttonbarevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyButtonBarEvent.html#ModifyButtonBarEvent", "ModifyButtonBarEvent" ], "modifyclearcacheactionsevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyClearCacheActionsEvent.html#modifyclearcacheactionsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyClearCacheActionsEvent.html#ModifyClearCacheActionsEvent", "ModifyClearCacheActionsEvent" ], "modifydatabasequeryforcontentevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyDatabaseQueryForContentEvent.html#modifydatabasequeryforcontentevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyDatabaseQueryForContentEvent.html#ModifyDatabaseQueryForContentEvent", "ModifyDatabaseQueryForContentEvent" ], "modifydatabasequeryforrecordlistingevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyDatabaseQueryForRecordListingEvent.html#modifydatabasequeryforrecordlistingevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyDatabaseQueryForRecordListingEvent.html#ModifyDatabaseQueryForRecordListingEvent", "ModifyDatabaseQueryForRecordListingEvent" ], "modifyeditformuseraccessevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyEditFormUserAccessEvent.html#modifyeditformuseraccessevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyEditFormUserAccessEvent.html#ModifyEditFormUserAccessEvent", "ModifyEditFormUserAccessEvent" ], "modifyfilereferencecontrolsevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyFileReferenceControlsEvent.html#modifyfilereferencecontrolsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyFileReferenceControlsEvent.html#ModifyFileReferenceControlsEvent", "ModifyFileReferenceControlsEvent" ], "modifyfilereferenceenabledcontrolsevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyFileReferenceEnabledControlsEvent.html#modifyfilereferenceenabledcontrolsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyFileReferenceEnabledControlsEvent.html#ModifyFileReferenceEnabledControlsEvent", "ModifyFileReferenceEnabledControlsEvent" ], "modifygenericbackendmessagesevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyGenericBackendMessagesEvent.html#modifygenericbackendmessagesevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyGenericBackendMessagesEvent.html#ModifyGenericBackendMessagesEvent", "ModifyGenericBackendMessagesEvent" ], "modifyimagemanipulationpreviewurlevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyImageManipulationPreviewUrlEvent.html#modifyimagemanipulationpreviewurlevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyImageManipulationPreviewUrlEvent.html#ModifyImageManipulationPreviewUrlEvent", "ModifyImageManipulationPreviewUrlEvent" ], "modifyinlineelementcontrolsevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyInlineElementControlsEvent.html#modifyinlineelementcontrolsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyInlineElementControlsEvent.html#ModifyInlineElementControlsEvent", "ModifyInlineElementControlsEvent" ], "modifyinlineelementenabledcontrolsevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyInlineElementEnabledControlsEvent.html#modifyinlineelementenabledcontrolsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyInlineElementEnabledControlsEvent.html#ModifyInlineElementEnabledControlsEvent", "ModifyInlineElementEnabledControlsEvent" ], "modifylinkexplanationevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyLinkExplanationEvent.html#modifylinkexplanationevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyLinkExplanationEvent.html#ModifyLinkExplanationEvent", "ModifyLinkExplanationEvent" ], "modifylinkhandlersevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyLinkHandlersEvent.html#modifylinkhandlersevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyLinkHandlersEvent.html#ModifyLinkHandlersEvent", "ModifyLinkHandlersEvent" ], "modifynewcontentelementwizarditemsevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyNewContentElementWizardItemsEvent.html#modifynewcontentelementwizarditemsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyNewContentElementWizardItemsEvent.html#ModifyNewContentElementWizardItemsEvent", "ModifyNewContentElementWizardItemsEvent" ], "modifypagelayoutcontentevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyPageLayoutContentEvent.html#modifypagelayoutcontentevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyPageLayoutContentEvent.html#ModifyPageLayoutContentEvent", "ModifyPageLayoutContentEvent" ], "modifypagelayoutonloginproviderselectionevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyPageLayoutOnLoginProviderSelectionEvent.html#modifypagelayoutonloginproviderselectionevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyPageLayoutOnLoginProviderSelectionEvent.html#ModifyPageLayoutOnLoginProviderSelectionEvent", "ModifyPageLayoutOnLoginProviderSelectionEvent" ], "modifyqueryforlivesearchevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyQueryForLiveSearchEvent.html#modifyqueryforlivesearchevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyQueryForLiveSearchEvent.html#ModifyQueryForLiveSearchEvent", "ModifyQueryForLiveSearchEvent" ], "modifyrecordlistheadercolumnsevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyRecordListHeaderColumnsEvent.html#modifyrecordlistheadercolumnsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyRecordListHeaderColumnsEvent.html#ModifyRecordListHeaderColumnsEvent", "ModifyRecordListHeaderColumnsEvent" ], "usage": [ @@ -38509,1033 +38863,1045 @@ "modifyrecordlistrecordactionsevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyRecordListRecordActionsEvent.html#modifyrecordlistrecordactionsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyRecordListRecordActionsEvent.html#ModifyRecordListRecordActionsEvent", "ModifyRecordListRecordActionsEvent" ], "modifyrecordlisttableactionsevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyRecordListTableActionsEvent.html#modifyrecordlisttableactionsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyRecordListTableActionsEvent.html#ModifyRecordListTableActionsEvent", "ModifyRecordListTableActionsEvent" ], "modifyresultiteminlivesearchevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/ModifyResultItemInLiveSearchEvent.html#modifyresultiteminlivesearchevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyResultItemInLiveSearchEvent.html#ModifyResultItemInLiveSearchEvent", "ModifyResultItemInLiveSearchEvent" ], "pagecontentpreviewrenderingevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/PageContentPreviewRenderingEvent.html#pagecontentpreviewrenderingevent", + "ApiOverview\/Events\/Events\/Backend\/PageContentPreviewRenderingEvent.html#PageContentPreviewRenderingEvent", "PageContentPreviewRenderingEvent" ], "renderadditionalcontenttorecordlistevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/RenderAdditionalContentToRecordListEvent.html#renderadditionalcontenttorecordlistevent", + "ApiOverview\/Events\/Events\/Backend\/RenderAdditionalContentToRecordListEvent.html#RenderAdditionalContentToRecordListEvent", "RenderAdditionalContentToRecordListEvent" ], "switchuserevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/SwitchUserEvent.html#switchuserevent", + "ApiOverview\/Events\/Events\/Backend\/SwitchUserEvent.html#SwitchUserEvent", "SwitchUserEvent" ], "systeminformationtoolbarcollectorevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Backend\/SystemInformationToolbarCollectorEvent.html#systeminformationtoolbarcollectorevent", + "ApiOverview\/Events\/Events\/Backend\/SystemInformationToolbarCollectorEvent.html#SystemInformationToolbarCollectorEvent", "SystemInformationToolbarCollectorEvent" ], "aftergroupsresolvedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Authentication\/AfterGroupsResolvedEvent.html#aftergroupsresolvedevent", + "ApiOverview\/Events\/Events\/Core\/Authentication\/AfterGroupsResolvedEvent.html#AfterGroupsResolvedEvent", "AfterGroupsResolvedEvent" ], "afteruserloggedinevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Authentication\/AfterUserLoggedInEvent.html#afteruserloggedinevent", + "ApiOverview\/Events\/Events\/Core\/Authentication\/AfterUserLoggedInEvent.html#AfterUserLoggedInEvent", "AfterUserLoggedInEvent" ], "afteruserloggedoutevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Authentication\/AfterUserLoggedOutEvent.html#afteruserloggedoutevent", + "ApiOverview\/Events\/Events\/Core\/Authentication\/AfterUserLoggedOutEvent.html#AfterUserLoggedOutEvent", "AfterUserLoggedOutEvent" ], "beforerequesttokenprocessedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Authentication\/BeforeRequestTokenProcessedEvent.html#beforerequesttokenprocessedevent", + "ApiOverview\/Events\/Events\/Core\/Authentication\/BeforeRequestTokenProcessedEvent.html#BeforeRequestTokenProcessedEvent", "BeforeRequestTokenProcessedEvent" ], "beforeuserlogoutevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Authentication\/BeforeUserLogoutEvent.html#beforeuserlogoutevent", + "ApiOverview\/Events\/Events\/Core\/Authentication\/BeforeUserLogoutEvent.html#BeforeUserLogoutEvent", "BeforeUserLogoutEvent" ], "authentication": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Authentication\/Index.html#authentication", + "ApiOverview\/Events\/Events\/Core\/Authentication\/Index.html#eventlist-core-authentication", "Authentication" ], "loginattemptfailedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Authentication\/LoginAttemptFailedEvent.html#loginattemptfailedevent", + "ApiOverview\/Events\/Events\/Core\/Authentication\/LoginAttemptFailedEvent.html#LoginAttemptFailedEvent", "LoginAttemptFailedEvent" ], "cacheflushevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Cache\/CacheFlushEvent.html#cacheflushevent", + "ApiOverview\/Events\/Events\/Core\/Cache\/CacheFlushEvent.html#CacheFlushEvent", "CacheFlushEvent" ], "cachewarmupevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Cache\/CacheWarmupEvent.html#cachewarmupevent", + "ApiOverview\/Events\/Events\/Core\/Cache\/CacheWarmupEvent.html#CacheWarmupEvent", "CacheWarmupEvent" ], "cache": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Cache\/Index.html#cache", + "ApiOverview\/Events\/Events\/Core\/Cache\/Index.html#eventlist-core-cache", "Cache" ], "afterflexformdatastructureidentifierinitializedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Configuration\/AfterFlexFormDataStructureIdentifierInitializedEvent.html#afterflexformdatastructureidentifierinitializedevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/AfterFlexFormDataStructureIdentifierInitializedEvent.html#AfterFlexFormDataStructureIdentifierInitializedEvent", "AfterFlexFormDataStructureIdentifierInitializedEvent" ], "afterflexformdatastructureparsedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Configuration\/AfterFlexFormDataStructureParsedEvent.html#afterflexformdatastructureparsedevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/AfterFlexFormDataStructureParsedEvent.html#AfterFlexFormDataStructureParsedEvent", "AfterFlexFormDataStructureParsedEvent" ], "aftertcacompilationevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Configuration\/AfterTcaCompilationEvent.html#aftertcacompilationevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/AfterTcaCompilationEvent.html#AfterTcaCompilationEvent", "AfterTcaCompilationEvent" ], "beforeflexformdatastructureidentifierinitializedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Configuration\/BeforeFlexFormDataStructureIdentifierInitializedEvent.html#beforeflexformdatastructureidentifierinitializedevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/BeforeFlexFormDataStructureIdentifierInitializedEvent.html#BeforeFlexFormDataStructureIdentifierInitializedEvent", "BeforeFlexFormDataStructureIdentifierInitializedEvent" ], "beforeflexformdatastructureparsedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Configuration\/BeforeFlexFormDataStructureParsedEvent.html#beforeflexformdatastructureparsedevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/BeforeFlexFormDataStructureParsedEvent.html#BeforeFlexFormDataStructureParsedEvent", "BeforeFlexFormDataStructureParsedEvent" ], "beforetcaoverridesevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Configuration\/BeforeTcaOverridesEvent.html#beforetcaoverridesevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/BeforeTcaOverridesEvent.html#BeforeTcaOverridesEvent", "BeforeTcaOverridesEvent" ], "modifyloadedpagetsconfigevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Configuration\/ModifyLoadedPageTsConfigEvent.html#modifyloadedpagetsconfigevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/ModifyLoadedPageTsConfigEvent.html#ModifyLoadedPageTsConfigEvent", "ModifyLoadedPageTsConfigEvent" ], "siteconfigurationbeforewriteevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Configuration\/SiteConfigurationBeforeWriteEvent.html#siteconfigurationbeforewriteevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/SiteConfigurationBeforeWriteEvent.html#SiteConfigurationBeforeWriteEvent", "SiteConfigurationBeforeWriteEvent" ], "siteconfigurationloadedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Configuration\/SiteConfigurationLoadedEvent.html#siteconfigurationloadedevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/SiteConfigurationLoadedEvent.html#SiteConfigurationLoadedEvent", "SiteConfigurationLoadedEvent" ], "bootcompletedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Core\/BootCompletedEvent.html#bootcompletedevent", + "ApiOverview\/Events\/Events\/Core\/Core\/BootCompletedEvent.html#BootCompletedEvent", "BootCompletedEvent" ], "core": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Index.html#core", + "ApiOverview\/Events\/Events\/Core\/Index.html#eventlist-core", "Core" ], "beforecountriesevaluatedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Country\/BeforeCountriesEvaluatedEvent.html#beforecountriesevaluatedevent", + "ApiOverview\/Events\/Events\/Core\/Country\/BeforeCountriesEvaluatedEvent.html#BeforeCountriesEvaluatedEvent", "BeforeCountriesEvaluatedEvent" ], "example-add-a-new-country-to-the-country-selectors": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Country\/BeforeCountriesEvaluatedEvent.html#example-add-a-new-country-to-the-country-selectors", + "ApiOverview\/Events\/Events\/Core\/Country\/BeforeCountriesEvaluatedEvent.html#BeforeCountriesEvaluatedEvent-example", "Example: Add a new country to the country selectors" ], "api-of-event-beforecountriesevaluatedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Country\/BeforeCountriesEvaluatedEvent.html#api-of-event-beforecountriesevaluatedevent", + "ApiOverview\/Events\/Events\/Core\/Country\/BeforeCountriesEvaluatedEvent.html#BeforeCountriesEvaluatedEvent-api", "API of event BeforeCountriesEvaluatedEvent" ], "country": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Country\/Index.html#country", + "ApiOverview\/Events\/Events\/Core\/Country\/Index.html#eventlist-core-country", "Country" ], "altertabledefinitionstatementsevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Database\/AlterTableDefinitionStatementsEvent.html#altertabledefinitionstatementsevent", + "ApiOverview\/Events\/Events\/Core\/Database\/AlterTableDefinitionStatementsEvent.html#AlterTableDefinitionStatementsEvent", "AlterTableDefinitionStatementsEvent" ], "appendlinkhandlerelementsevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/DataHandling\/AppendLinkHandlerElementsEvent.html#appendlinkhandlerelementsevent", + "ApiOverview\/Events\/Events\/Core\/DataHandling\/AppendLinkHandlerElementsEvent.html#AppendLinkHandlerElementsEvent", "AppendLinkHandlerElementsEvent" ], "datahandling": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/DataHandling\/Index.html#datahandling", + "ApiOverview\/Events\/Events\/Core\/DataHandling\/Index.html#eventlist-core-Datahandling", "DataHandling" ], "istableexcludedfromreferenceindexevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/DataHandling\/IsTableExcludedFromReferenceIndexEvent.html#istableexcludedfromreferenceindexevent", + "ApiOverview\/Events\/Events\/Core\/DataHandling\/IsTableExcludedFromReferenceIndexEvent.html#IsTableExcludedFromReferenceIndexEvent", "IsTableExcludedFromReferenceIndexEvent" ], "afterrecordlanguageoverlayevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Domain\/AfterRecordLanguageOverlayEvent.html#afterrecordlanguageoverlayevent", + "ApiOverview\/Events\/Events\/Core\/Domain\/AfterRecordLanguageOverlayEvent.html#AfterRecordLanguageOverlayEvent", "AfterRecordLanguageOverlayEvent" ], "beforepageisretrievedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Domain\/BeforePageIsRetrievedEvent.html#beforepageisretrievedevent", + "ApiOverview\/Events\/Events\/Core\/Domain\/BeforePageIsRetrievedEvent.html#BeforePageIsRetrievedEvent", "BeforePageIsRetrievedEvent" ], "beforepagelanguageoverlayevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Domain\/BeforePageLanguageOverlayEvent.html#beforepagelanguageoverlayevent", + "ApiOverview\/Events\/Events\/Core\/Domain\/BeforePageLanguageOverlayEvent.html#BeforePageLanguageOverlayEvent", "BeforePageLanguageOverlayEvent" ], "beforerecordlanguageoverlayevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Domain\/BeforeRecordLanguageOverlayEvent.html#beforerecordlanguageoverlayevent", + "ApiOverview\/Events\/Events\/Core\/Domain\/BeforeRecordLanguageOverlayEvent.html#BeforeRecordLanguageOverlayEvent", "BeforeRecordLanguageOverlayEvent" ], "domain": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Domain\/Index.html#domain", + "ApiOverview\/Events\/Events\/Core\/Domain\/Index.html#eventlist-core-domain", "Domain" ], "modifydefaultconstraintsfordatabasequeryevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Domain\/ModifyDefaultConstraintsForDatabaseQueryEvent.html#modifydefaultconstraintsfordatabasequeryevent", + "ApiOverview\/Events\/Events\/Core\/Domain\/ModifyDefaultConstraintsForDatabaseQueryEvent.html#ModifyDefaultConstraintsForDatabaseQueryEvent", "ModifyDefaultConstraintsForDatabaseQueryEvent" ], "recordaccessgrantedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Domain\/RecordAccessGrantedEvent.html#recordaccessgrantedevent", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordAccessGrantedEvent.html#RecordAccessGrantedEvent", "RecordAccessGrantedEvent" ], + "recordcreationevent": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#RecordCreationEvent", + "RecordCreationEvent" + ], "aftertransformtextforpersistenceevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Html\/AfterTransformTextForPersistenceEvent.html#aftertransformtextforpersistenceevent", + "ApiOverview\/Events\/Events\/Core\/Html\/AfterTransformTextForPersistenceEvent.html#AfterTransformTextForPersistenceEvent", "AfterTransformTextForPersistenceEvent" ], "example-transform-a-text-before-saving-to-database": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Html\/AfterTransformTextForPersistenceEvent.html#example-transform-a-text-before-saving-to-database", + "ApiOverview\/Events\/Events\/Core\/Html\/AfterTransformTextForPersistenceEvent.html#AfterTransformTextForPersistenceEvent-example", "Example: Transform a text before saving to database" ], "api-of-aftertransformtextforpersistenceevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Html\/AfterTransformTextForPersistenceEvent.html#api-of-aftertransformtextforpersistenceevent", + "ApiOverview\/Events\/Events\/Core\/Html\/AfterTransformTextForPersistenceEvent.html#AfterTransformTextForPersistenceEvent-api", "API of AfterTransformTextForPersistenceEvent" ], "aftertransformtextforrichtexteditorevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Html\/AfterTransformTextForRichTextEditorEvent.html#aftertransformtextforrichtexteditorevent", + "ApiOverview\/Events\/Events\/Core\/Html\/AfterTransformTextForRichTextEditorEvent.html#AfterTransformTextForRichTextEditorEvent", "AfterTransformTextForRichTextEditorEvent" ], "api-of-aftertransformtextforrichtexteditorevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Html\/AfterTransformTextForRichTextEditorEvent.html#api-of-aftertransformtextforrichtexteditorevent", + "ApiOverview\/Events\/Events\/Core\/Html\/AfterTransformTextForRichTextEditorEvent.html#AfterTransformTextForRichTextEditorEvent-api", "API of AfterTransformTextForRichTextEditorEvent" ], "beforetransformtextforpersistenceevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Html\/BeforeTransformTextForPersistenceEvent.html#beforetransformtextforpersistenceevent", + "ApiOverview\/Events\/Events\/Core\/Html\/BeforeTransformTextForPersistenceEvent.html#BeforeTransformTextForPersistenceEvent", "BeforeTransformTextForPersistenceEvent" ], "api-of-beforetransformtextforpersistenceevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Html\/BeforeTransformTextForPersistenceEvent.html#api-of-beforetransformtextforpersistenceevent", + "ApiOverview\/Events\/Events\/Core\/Html\/BeforeTransformTextForPersistenceEvent.html#BeforeTransformTextForPersistenceEvent-api", "API of BeforeTransformTextForPersistenceEvent" ], "beforetransformtextforrichtexteditorevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Html\/BeforeTransformTextForRichTextEditorEvent.html#beforetransformtextforrichtexteditorevent", + "ApiOverview\/Events\/Events\/Core\/Html\/BeforeTransformTextForRichTextEditorEvent.html#BeforeTransformTextForRichTextEditorEvent", "BeforeTransformTextForRichTextEditorEvent" ], "api-of-beforetransformtextforrichtexteditorevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Html\/BeforeTransformTextForRichTextEditorEvent.html#api-of-beforetransformtextforrichtexteditorevent", + "ApiOverview\/Events\/Events\/Core\/Html\/BeforeTransformTextForRichTextEditorEvent.html#BeforeTransformTextForRichTextEditorEvent-api", "API of BeforeTransformTextForRichTextEditorEvent" ], "brokenlinkanalysisevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Html\/BrokenLinkAnalysisEvent.html#brokenlinkanalysisevent", + "ApiOverview\/Events\/Events\/Core\/Html\/BrokenLinkAnalysisEvent.html#BrokenLinkAnalysisEvent", "BrokenLinkAnalysisEvent" ], "html": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Html\/Index.html#html", + "ApiOverview\/Events\/Events\/Core\/Html\/Index.html#eventlist-core-html", "Html" ], "imaging": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Imaging\/Index.html#imaging", + "ApiOverview\/Events\/Events\/Core\/Imaging\/Index.html#eventlist-core-imaging", "Imaging" ], "modifyrecordoverlayiconidentifierevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Imaging\/ModifyRecordOverlayIconIdentifierEvent.html#modifyrecordoverlayiconidentifierevent", + "ApiOverview\/Events\/Events\/Core\/Imaging\/ModifyRecordOverlayIconIdentifierEvent.html#ModifyRecordOverlayIconIdentifierEvent", "ModifyRecordOverlayIconIdentifierEvent" ], "afterlinkresolvedbystringrepresentationevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/LinkHandling\/AfterLinkResolvedByStringRepresentationEvent.html#afterlinkresolvedbystringrepresentationevent", + "ApiOverview\/Events\/Events\/Core\/LinkHandling\/AfterLinkResolvedByStringRepresentationEvent.html#AfterLinkResolvedByStringRepresentationEvent", "AfterLinkResolvedByStringRepresentationEvent" ], "aftertypolinkdecodedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/LinkHandling\/AfterTypoLinkDecodedEvent.html#aftertypolinkdecodedevent", + "ApiOverview\/Events\/Events\/Core\/LinkHandling\/AfterTypoLinkDecodedEvent.html#AfterTypoLinkDecodedEvent", "AfterTypoLinkDecodedEvent" ], "beforetypolinkencodedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/LinkHandling\/BeforeTypoLinkEncodedEvent.html#beforetypolinkencodedevent", + "ApiOverview\/Events\/Events\/Core\/LinkHandling\/BeforeTypoLinkEncodedEvent.html#BeforeTypoLinkEncodedEvent", "BeforeTypoLinkEncodedEvent" ], "link-handling": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/Index.html#link-handling", + "ApiOverview\/LinkHandling\/Index.html#LinkHandling", "Link handling" ], "aftermailerinitializationevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Mail\/AfterMailerInitializationEvent.html#aftermailerinitializationevent", + "ApiOverview\/Events\/Events\/Core\/Mail\/AfterMailerInitializationEvent.html#AfterMailerInitializationEvent", "AfterMailerInitializationEvent" ], "aftermailersentmessageevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Mail\/AfterMailerSentMessageEvent.html#aftermailersentmessageevent", + "ApiOverview\/Events\/Events\/Core\/Mail\/AfterMailerSentMessageEvent.html#AfterMailerSentMessageEvent", "AfterMailerSentMessageEvent" ], "beforemailersentmessageevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Mail\/BeforeMailerSentMessageEvent.html#beforemailersentmessageevent", + "ApiOverview\/Events\/Events\/Core\/Mail\/BeforeMailerSentMessageEvent.html#BeforeMailerSentMessageEvent", "BeforeMailerSentMessageEvent" ], "mail": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Mail\/Index.html#mail", + "ApiOverview\/Events\/Events\/Core\/Mail\/Index.html#eventlist-core-mail", "Mail" ], "afterpackageactivationevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Package\/AfterPackageActivationEvent.html#afterpackageactivationevent", + "ApiOverview\/Events\/Events\/Core\/Package\/AfterPackageActivationEvent.html#AfterPackageActivationEvent", "AfterPackageActivationEvent" ], "afterpackagedeactivationevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Package\/AfterPackageDeactivationEvent.html#afterpackagedeactivationevent", + "ApiOverview\/Events\/Events\/Core\/Package\/AfterPackageDeactivationEvent.html#AfterPackageDeactivationEvent", "AfterPackageDeactivationEvent" ], "beforepackageactivationevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Package\/BeforePackageActivationEvent.html#beforepackageactivationevent", + "ApiOverview\/Events\/Events\/Core\/Package\/BeforePackageActivationEvent.html#BeforePackageActivationEvent", "BeforePackageActivationEvent" ], "package": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Package\/Index.html#package", + "ApiOverview\/Events\/Events\/Core\/Package\/Index.html#eventlist-core-package", "Package" ], "packageinitializationevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Package\/PackageInitializationEvent.html#packageinitializationevent", + "ApiOverview\/Events\/Events\/Core\/Package\/PackageInitializationEvent.html#PackageInitializationEvent", "PackageInitializationEvent" ], "packagesmayhavechangedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Package\/PackagesMayHaveChangedEvent.html#packagesmayhavechangedevent", + "ApiOverview\/Events\/Events\/Core\/Package\/PackagesMayHaveChangedEvent.html#PackagesMayHaveChangedEvent", "PackagesMayHaveChangedEvent" ], "beforejavascriptsrenderingevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Page\/BeforeJavaScriptsRenderingEvent.html#beforejavascriptsrenderingevent", + "ApiOverview\/Events\/Events\/Core\/Page\/BeforeJavaScriptsRenderingEvent.html#BeforeJavaScriptsRenderingEvent", "BeforeJavaScriptsRenderingEvent" ], "beforestylesheetsrenderingevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Page\/BeforeStylesheetsRenderingEvent.html#beforestylesheetsrenderingevent", + "ApiOverview\/Events\/Events\/Core\/Page\/BeforeStylesheetsRenderingEvent.html#BeforeStylesheetsRenderingEvent", "BeforeStylesheetsRenderingEvent" ], "page": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Page\/Index.html#page", + "ApiOverview\/Events\/Events\/Core\/Page\/Index.html#eventlist-core-page", "Page" ], "enrichpasswordvalidationcontextdataevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/PasswordPolicy\/EnrichPasswordValidationContextDataEvent.html#enrichpasswordvalidationcontextdataevent", + "ApiOverview\/Events\/Events\/Core\/PasswordPolicy\/EnrichPasswordValidationContextDataEvent.html#EnrichPasswordValidationContextDataEvent", "EnrichPasswordValidationContextDataEvent" ], "password-policy": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/PasswordPolicy\/Index.html#password-policy", + "ApiOverview\/Events\/Events\/Core\/PasswordPolicy\/Index.html#eventlist-core-password-policy", "Password policy" ], "afterdefaultuploadfolderwasresolvedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterDefaultUploadFolderWasResolvedEvent.html#afterdefaultuploadfolderwasresolvedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterDefaultUploadFolderWasResolvedEvent.html#AfterDefaultUploadFolderWasResolvedEvent", "AfterDefaultUploadFolderWasResolvedEvent" ], "afterfileaddedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileAddedEvent.html#afterfileaddedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileAddedEvent.html#AfterFileAddedEvent", "AfterFileAddedEvent" ], "afterfileaddedtoindexevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileAddedToIndexEvent.html#afterfileaddedtoindexevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileAddedToIndexEvent.html#AfterFileAddedToIndexEvent", "AfterFileAddedToIndexEvent" ], "afterfilecommandprocessedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileCommandProcessedEvent.html#afterfilecommandprocessedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileCommandProcessedEvent.html#AfterFileCommandProcessedEvent", "AfterFileCommandProcessedEvent" ], "afterfilecontentssetevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileContentsSetEvent.html#afterfilecontentssetevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileContentsSetEvent.html#AfterFileContentsSetEvent", "AfterFileContentsSetEvent" ], "afterfilecopiedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileCopiedEvent.html#afterfilecopiedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileCopiedEvent.html#AfterFileCopiedEvent", "AfterFileCopiedEvent" ], "afterfilecreatedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileCreatedEvent.html#afterfilecreatedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileCreatedEvent.html#AfterFileCreatedEvent", "AfterFileCreatedEvent" ], "afterfiledeletedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileDeletedEvent.html#afterfiledeletedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileDeletedEvent.html#AfterFileDeletedEvent", "AfterFileDeletedEvent" ], "afterfilemarkedasmissingevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMarkedAsMissingEvent.html#afterfilemarkedasmissingevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMarkedAsMissingEvent.html#AfterFileMarkedAsMissingEvent", "AfterFileMarkedAsMissingEvent" ], "afterfilemetadatacreatedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMetaDataCreatedEvent.html#afterfilemetadatacreatedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMetaDataCreatedEvent.html#AfterFileMetaDataCreatedEvent", "AfterFileMetaDataCreatedEvent" ], "afterfilemetadatadeletedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMetaDataDeletedEvent.html#afterfilemetadatadeletedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMetaDataDeletedEvent.html#AfterFileMetaDataDeletedEvent", "AfterFileMetaDataDeletedEvent" ], "afterfilemetadataupdatedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMetaDataUpdatedEvent.html#afterfilemetadataupdatedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMetaDataUpdatedEvent.html#AfterFileMetaDataUpdatedEvent", "AfterFileMetaDataUpdatedEvent" ], "afterfilemovedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMovedEvent.html#afterfilemovedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMovedEvent.html#AfterFileMovedEvent", "AfterFileMovedEvent" ], "afterfileprocessingevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileProcessingEvent.html#afterfileprocessingevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileProcessingEvent.html#AfterFileProcessingEvent", "AfterFileProcessingEvent" ], "afterfileremovedfromindexevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileRemovedFromIndexEvent.html#afterfileremovedfromindexevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileRemovedFromIndexEvent.html#AfterFileRemovedFromIndexEvent", "AfterFileRemovedFromIndexEvent" ], "afterfilerenamedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileRenamedEvent.html#afterfilerenamedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileRenamedEvent.html#AfterFileRenamedEvent", "AfterFileRenamedEvent" ], "afterfilereplacedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileReplacedEvent.html#afterfilereplacedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileReplacedEvent.html#AfterFileReplacedEvent", "AfterFileReplacedEvent" ], "afterfileupdatedinindexevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileUpdatedInIndexEvent.html#afterfileupdatedinindexevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileUpdatedInIndexEvent.html#AfterFileUpdatedInIndexEvent", "AfterFileUpdatedInIndexEvent" ], "afterfolderaddedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderAddedEvent.html#afterfolderaddedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderAddedEvent.html#AfterFolderAddedEvent", "AfterFolderAddedEvent" ], "afterfoldercopiedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderCopiedEvent.html#afterfoldercopiedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderCopiedEvent.html#AfterFolderCopiedEvent", "AfterFolderCopiedEvent" ], "afterfolderdeletedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderDeletedEvent.html#afterfolderdeletedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderDeletedEvent.html#AfterFolderDeletedEvent", "AfterFolderDeletedEvent" ], "afterfoldermovedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderMovedEvent.html#afterfoldermovedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderMovedEvent.html#AfterFolderMovedEvent", "AfterFolderMovedEvent" ], "afterfolderrenamedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderRenamedEvent.html#afterfolderrenamedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderRenamedEvent.html#AfterFolderRenamedEvent", "AfterFolderRenamedEvent" ], "afterresourcestorageinitializationevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterResourceStorageInitializationEvent.html#afterresourcestorageinitializationevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterResourceStorageInitializationEvent.html#AfterResourceStorageInitializationEvent", "AfterResourceStorageInitializationEvent" ], "aftervideopreviewfetchedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterVideoPreviewFetchedEvent.html#aftervideopreviewfetchedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterVideoPreviewFetchedEvent.html#AfterVideoPreviewFetchedEvent", "AfterVideoPreviewFetchedEvent" ], "beforefileaddedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileAddedEvent.html#beforefileaddedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileAddedEvent.html#BeforeFileAddedEvent", "BeforeFileAddedEvent" ], "beforefilecontentssetevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileContentsSetEvent.html#beforefilecontentssetevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileContentsSetEvent.html#BeforeFileContentsSetEvent", "BeforeFileContentsSetEvent" ], "beforefilecopiedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileCopiedEvent.html#beforefilecopiedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileCopiedEvent.html#BeforeFileCopiedEvent", "BeforeFileCopiedEvent" ], "beforefilecreatedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileCreatedEvent.html#beforefilecreatedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileCreatedEvent.html#BeforeFileCreatedEvent", "BeforeFileCreatedEvent" ], "beforefiledeletedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileDeletedEvent.html#beforefiledeletedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileDeletedEvent.html#BeforeFileDeletedEvent", "BeforeFileDeletedEvent" ], "beforefilemovedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileMovedEvent.html#beforefilemovedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileMovedEvent.html#BeforeFileMovedEvent", "BeforeFileMovedEvent" ], "beforefileprocessingevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileProcessingEvent.html#beforefileprocessingevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileProcessingEvent.html#BeforeFileProcessingEvent", "BeforeFileProcessingEvent" ], "beforefilerenamedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileRenamedEvent.html#beforefilerenamedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileRenamedEvent.html#BeforeFileRenamedEvent", "BeforeFileRenamedEvent" ], "beforefilereplacedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileReplacedEvent.html#beforefilereplacedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileReplacedEvent.html#BeforeFileReplacedEvent", "BeforeFileReplacedEvent" ], "beforefolderaddedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderAddedEvent.html#beforefolderaddedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderAddedEvent.html#BeforeFolderAddedEvent", "BeforeFolderAddedEvent" ], "beforefoldercopiedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderCopiedEvent.html#beforefoldercopiedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderCopiedEvent.html#BeforeFolderCopiedEvent", "BeforeFolderCopiedEvent" ], "beforefolderdeletedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderDeletedEvent.html#beforefolderdeletedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderDeletedEvent.html#BeforeFolderDeletedEvent", "BeforeFolderDeletedEvent" ], "beforefoldermovedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderMovedEvent.html#beforefoldermovedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderMovedEvent.html#BeforeFolderMovedEvent", "BeforeFolderMovedEvent" ], "beforefolderrenamedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderRenamedEvent.html#beforefolderrenamedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderRenamedEvent.html#BeforeFolderRenamedEvent", "BeforeFolderRenamedEvent" ], "beforeresourcestorageinitializationevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeResourceStorageInitializationEvent.html#beforeresourcestorageinitializationevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeResourceStorageInitializationEvent.html#BeforeResourceStorageInitializationEvent", "BeforeResourceStorageInitializationEvent" ], "enrichfilemetadataevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/EnrichFileMetaDataEvent.html#enrichfilemetadataevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/EnrichFileMetaDataEvent.html#EnrichFileMetaDataEvent", "EnrichFileMetaDataEvent" ], "generatepublicurlforresourceevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/GeneratePublicUrlForResourceEvent.html#generatepublicurlforresourceevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/GeneratePublicUrlForResourceEvent.html#GeneratePublicUrlForResourceEvent", "GeneratePublicUrlForResourceEvent" ], "resource": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/Index.html#resource", + "ApiOverview\/Events\/Events\/Core\/Resource\/Index.html#eventlist-core-resource", "Resource" ], "modifyfiledumpevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/ModifyFileDumpEvent.html#modifyfiledumpevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/ModifyFileDumpEvent.html#ModifyFileDumpEvent", "ModifyFileDumpEvent" ], "modifyiconforresourcepropertiesevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/ModifyIconForResourcePropertiesEvent.html#modifyiconforresourcepropertiesevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/ModifyIconForResourcePropertiesEvent.html#ModifyIconForResourcePropertiesEvent", "ModifyIconForResourcePropertiesEvent" ], "sanitizefilenameevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Resource\/SanitizeFileNameEvent.html#sanitizefilenameevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/SanitizeFileNameEvent.html#SanitizeFileNameEvent", "SanitizeFileNameEvent" ], "security": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/SitePackage\/Introduction.html#security", + "ExtensionArchitecture\/SitePackage\/Introduction.html#site-package-security", "Security" ], "investigatemutationsevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Security\/InvestigateMutationsEvent.html#investigatemutationsevent", + "ApiOverview\/Events\/Events\/Core\/Security\/InvestigateMutationsEvent.html#InvestigateMutationsEvent", "InvestigateMutationsEvent" ], "policymutatedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Security\/PolicyMutatedEvent.html#policymutatedevent", + "ApiOverview\/Events\/Events\/Core\/Security\/PolicyMutatedEvent.html#PolicyMutatedEvent", "PolicyMutatedEvent" ], "tree": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Tree\/Index.html#tree", + "ApiOverview\/Events\/Events\/Core\/Tree\/Index.html#eventlist-core-tree", "Tree" ], "modifytreedataevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/Tree\/ModifyTreeDataEvent.html#modifytreedataevent", + "ApiOverview\/Events\/Events\/Core\/Tree\/ModifyTreeDataEvent.html#ModifyTreeDataEvent", "ModifyTreeDataEvent" ], "aftertemplateshavebeendeterminedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/TypoScript\/AfterTemplatesHaveBeenDeterminedEvent.html#aftertemplateshavebeendeterminedevent", + "ApiOverview\/Events\/Events\/Core\/TypoScript\/AfterTemplatesHaveBeenDeterminedEvent.html#AfterTemplatesHaveBeenDeterminedEvent", "AfterTemplatesHaveBeenDeterminedEvent" ], "beforeloadedpagetsconfigevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/TypoScript\/BeforeLoadedPageTsConfigEvent.html#beforeloadedpagetsconfigevent", + "ApiOverview\/Events\/Events\/Core\/TypoScript\/BeforeLoadedPageTsConfigEvent.html#BeforeLoadedPageTsConfigEvent", "BeforeLoadedPageTsConfigEvent" ], "beforeloadedusertsconfigevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/TypoScript\/BeforeLoadedUserTsConfigEvent.html#beforeloadedusertsconfigevent", + "ApiOverview\/Events\/Events\/Core\/TypoScript\/BeforeLoadedUserTsConfigEvent.html#BeforeLoadedUserTsConfigEvent", "BeforeLoadedUserTsConfigEvent" ], "evaluatemodifierfunctionevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Core\/TypoScript\/EvaluateModifierFunctionEvent.html#evaluatemodifierfunctionevent", + "ApiOverview\/Events\/Events\/Core\/TypoScript\/EvaluateModifierFunctionEvent.html#EvaluateModifierFunctionEvent", "EvaluateModifierFunctionEvent" ], "typoscript": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/Typoscript.html#typoscript", + "Security\/GuidelinesIntegrators\/Typoscript.html#security-typoscript", "TypoScript" ], "beforeflexformconfigurationoverrideevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Extbase\/Configuration\/BeforeFlexFormConfigurationOverrideEvent.html#beforeflexformconfigurationoverrideevent", + "ApiOverview\/Events\/Events\/Extbase\/Configuration\/BeforeFlexFormConfigurationOverrideEvent.html#BeforeFlexFormConfigurationOverrideEvent", "BeforeFlexFormConfigurationOverrideEvent" ], "extbase": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Extbase\/Index.html#extbase", + "ApiOverview\/Events\/Events\/Extbase\/Index.html#eventlist-extbase", "Extbase" ], "afterrequestdispatchedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Extbase\/Mvc\/AfterRequestDispatchedEvent.html#afterrequestdispatchedevent", + "ApiOverview\/Events\/Events\/Extbase\/Mvc\/AfterRequestDispatchedEvent.html#AfterRequestDispatchedEvent", "AfterRequestDispatchedEvent" ], "beforeactioncallevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Extbase\/Mvc\/BeforeActionCallEvent.html#beforeactioncallevent", + "ApiOverview\/Events\/Events\/Extbase\/Mvc\/BeforeActionCallEvent.html#BeforeActionCallEvent", "BeforeActionCallEvent" ], "mvc": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Extbase\/Mvc\/Index.html#mvc", + "ApiOverview\/Events\/Events\/Extbase\/Mvc\/Index.html#eventlist-extbase-mvc", "Mvc" ], "afterobjectthawedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Extbase\/Persistence\/AfterObjectThawedEvent.html#afterobjectthawedevent", + "ApiOverview\/Events\/Events\/Extbase\/Persistence\/AfterObjectThawedEvent.html#AfterObjectThawedEvent", "AfterObjectThawedEvent" ], "entityaddedtopersistenceevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Extbase\/Persistence\/EntityAddedToPersistenceEvent.html#entityaddedtopersistenceevent", + "ApiOverview\/Events\/Events\/Extbase\/Persistence\/EntityAddedToPersistenceEvent.html#EntityAddedToPersistenceEvent", "EntityAddedToPersistenceEvent" ], "entitypersistedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Extbase\/Persistence\/EntityPersistedEvent.html#entitypersistedevent", + "ApiOverview\/Events\/Events\/Extbase\/Persistence\/EntityPersistedEvent.html#EntityPersistedEvent", "EntityPersistedEvent" ], "entityremovedfrompersistenceevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Extbase\/Persistence\/EntityRemovedFromPersistenceEvent.html#entityremovedfrompersistenceevent", + "ApiOverview\/Events\/Events\/Extbase\/Persistence\/EntityRemovedFromPersistenceEvent.html#EntityRemovedFromPersistenceEvent", "EntityRemovedFromPersistenceEvent" ], "entityupdatedinpersistenceevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Extbase\/Persistence\/EntityUpdatedInPersistenceEvent.html#entityupdatedinpersistenceevent", + "ApiOverview\/Events\/Events\/Extbase\/Persistence\/EntityUpdatedInPersistenceEvent.html#EntityUpdatedInPersistenceEvent", "EntityUpdatedInPersistenceEvent" ], "persistence": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Persistence.html#persistence", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Persistence.html#extbase-Persistence", "Persistence" ], "modifyquerybeforefetchingobjectdataevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Extbase\/Persistence\/ModifyQueryBeforeFetchingObjectDataEvent.html#modifyquerybeforefetchingobjectdataevent", + "ApiOverview\/Events\/Events\/Extbase\/Persistence\/ModifyQueryBeforeFetchingObjectDataEvent.html#ModifyQueryBeforeFetchingObjectDataEvent", "ModifyQueryBeforeFetchingObjectDataEvent" ], "modifyresultafterfetchingobjectdataevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Extbase\/Persistence\/ModifyResultAfterFetchingObjectDataEvent.html#modifyresultafterfetchingobjectdataevent", + "ApiOverview\/Events\/Events\/Extbase\/Persistence\/ModifyResultAfterFetchingObjectDataEvent.html#ModifyResultAfterFetchingObjectDataEvent", "ModifyResultAfterFetchingObjectDataEvent" ], "afterextensiondatabasecontenthasbeenimportedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/ExtensionManager\/AfterExtensionDatabaseContentHasImportedEvent.html#afterextensiondatabasecontenthasbeenimportedevent", + "ApiOverview\/Events\/Events\/ExtensionManager\/AfterExtensionDatabaseContentHasImportedEvent.html#AfterExtensionDatabaseContentHasBeenImportedEvent", "AfterExtensionDatabaseContentHasBeenImportedEvent" ], "afterextensionfileshavebeenimportedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/ExtensionManager\/AfterExtensionFilesHaveBeenImportedEvent.html#afterextensionfileshavebeenimportedevent", + "ApiOverview\/Events\/Events\/ExtensionManager\/AfterExtensionFilesHaveBeenImportedEvent.html#AfterExtensionFilesHaveBeenImportedEvent", "AfterExtensionFilesHaveBeenImportedEvent" ], "afterextensionstaticdatabasecontenthasbeenimportedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/ExtensionManager\/AfterExtensionStaticDatabaseContentHasBeenImportedEvent.html#afterextensionstaticdatabasecontenthasbeenimportedevent", + "ApiOverview\/Events\/Events\/ExtensionManager\/AfterExtensionStaticDatabaseContentHasBeenImportedEvent.html#AfterExtensionStaticDatabaseContentHasBeenImportedEvent", "AfterExtensionStaticDatabaseContentHasBeenImportedEvent" ], "availableactionsforextensionevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/ExtensionManager\/AvailableActionsForExtensionEvent.html#availableactionsforextensionevent", + "ApiOverview\/Events\/Events\/ExtensionManager\/AvailableActionsForExtensionEvent.html#AvailableActionsForExtensionEvent", "AvailableActionsForExtensionEvent" ], "extensionmanager": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/ExtensionManager\/Index.html#extensionmanager", + "ApiOverview\/Events\/Events\/ExtensionManager\/Index.html#eventlist-backend-extension-manager", "ExtensionManager" ], "filelist": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Filelist\/Index.html#filelist", + "ApiOverview\/Events\/Events\/Filelist\/Index.html#eventlist-filelist", "Filelist" ], "modifyeditfileformdataevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Filelist\/ModifyEditFileFormDataEvent.html#modifyeditfileformdataevent", + "ApiOverview\/Events\/Events\/Filelist\/ModifyEditFileFormDataEvent.html#ModifyEditFileFormDataEvent", "ModifyEditFileFormDataEvent" ], "processfilelistactionsevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Filelist\/ProcessFileListActionsEvent.html#processfilelistactionsevent", + "ApiOverview\/Events\/Events\/Filelist\/ProcessFileListActionsEvent.html#ProcessFileListActionsEvent", "ProcessFileListActionsEvent" ], "afterformdefinitionloadedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Form\/AfterLinkResolvedByStringRepresentationEvent.html#afterformdefinitionloadedevent", + "ApiOverview\/Events\/Events\/Form\/AfterLinkResolvedByStringRepresentationEvent.html#AfterFormDefinitionLoadedEvent", "AfterFormDefinitionLoadedEvent" ], "form": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Form\/Index.html#form", + "ApiOverview\/Events\/Events\/Form\/Index.html#eventlist-form", "Form" ], "aftercacheablecontentisgeneratedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/AfterCacheableContentIsGeneratedEvent.html#aftercacheablecontentisgeneratedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterCacheableContentIsGeneratedEvent.html#AfterCacheableContentIsGeneratedEvent", "AfterCacheableContentIsGeneratedEvent" ], "aftercachedpageispersistedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/AfterCachedPageIsPersistedEvent.html#aftercachedpageispersistedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterCachedPageIsPersistedEvent.html#AfterCachedPageIsPersistedEvent", "AfterCachedPageIsPersistedEvent" ], + "aftercontenthasbeenfetchedevent": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Frontend\/AfterContentHasBeenFetchedEvent.html#AfterContentHasBeenFetchedEvent", + "AfterContentHasBeenFetchedEvent" + ], "aftercontentobjectrendererinitializedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/AfterContentObjectRendererInitializedEvent.html#aftercontentobjectrendererinitializedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterContentObjectRendererInitializedEvent.html#AfterContentObjectRendererInitializedEvent", "AfterContentObjectRendererInitializedEvent" ], "aftergetdataresolvedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/AfterGetDataResolvedEvent.html#aftergetdataresolvedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterGetDataResolvedEvent.html#AfterGetDataResolvedEvent", "AfterGetDataResolvedEvent" ], "afterimageresourceresolvedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/AfterImageResourceResolvedEvent.html#afterimageresourceresolvedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterImageResourceResolvedEvent.html#AfterImageResourceResolvedEvent", "AfterImageResourceResolvedEvent" ], "afterlinkisgeneratedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/AfterLinkIsGeneratedEvent.html#afterlinkisgeneratedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterLinkIsGeneratedEvent.html#AfterLinkIsGeneratedEvent", "AfterLinkIsGeneratedEvent" ], "afterpageandlanguageisresolvedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/AfterPageAndLanguageIsResolvedEvent.html#afterpageandlanguageisresolvedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterPageAndLanguageIsResolvedEvent.html#AfterPageAndLanguageIsResolvedEvent", "AfterPageAndLanguageIsResolvedEvent" ], "afterpagewithrootlineisresolvedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/AfterPageWithRootLineIsResolvedEvent.html#afterpagewithrootlineisresolvedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterPageWithRootLineIsResolvedEvent.html#AfterPageWithRootLineIsResolvedEvent", "AfterPageWithRootLineIsResolvedEvent" ], "afterstdwrapfunctionsexecutedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/AfterStdWrapFunctionsExecutedEvent.html#afterstdwrapfunctionsexecutedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterStdWrapFunctionsExecutedEvent.html#AfterStdWrapFunctionsExecutedEvent", "AfterStdWrapFunctionsExecutedEvent" ], "afterstdwrapfunctionsinitializedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/AfterStdWrapFunctionsInitializedEvent.html#afterstdwrapfunctionsinitializedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterStdWrapFunctionsInitializedEvent.html#AfterStdWrapFunctionsInitializedEvent", "AfterStdWrapFunctionsInitializedEvent" ], "aftertyposcriptdeterminedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/AfterTypoScriptDeterminedEvent.html#aftertyposcriptdeterminedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterTypoScriptDeterminedEvent.html#AfterTypoScriptDeterminedEvent", "AfterTypoScriptDeterminedEvent" ], "beforepagecacheidentifierishashedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/BeforePageCacheIdentifierIsHashedEvent.html#beforepagecacheidentifierishashedevent", + "ApiOverview\/Events\/Events\/Frontend\/BeforePageCacheIdentifierIsHashedEvent.html#BeforePageCacheIdentifierIsHashedEvent", "BeforePageCacheIdentifierIsHashedEvent" ], "beforepageisresolvedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/BeforePageIsResolvedEvent.html#beforepageisresolvedevent", + "ApiOverview\/Events\/Events\/Frontend\/BeforePageIsResolvedEvent.html#BeforePageIsResolvedEvent", "BeforePageIsResolvedEvent" ], "beforestdwrapcontentstoredincacheevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/BeforeStdWrapContentStoredInCacheEvent.html#beforestdwrapcontentstoredincacheevent", + "ApiOverview\/Events\/Events\/Frontend\/BeforeStdWrapContentStoredInCacheEvent.html#BeforeStdWrapContentStoredInCacheEvent", "BeforeStdWrapContentStoredInCacheEvent" ], "beforestdwrapfunctionsexecutedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/BeforeStdWrapFunctionsExecutedEvent.html#beforestdwrapfunctionsexecutedevent", + "ApiOverview\/Events\/Events\/Frontend\/BeforeStdWrapFunctionsExecutedEvent.html#BeforeStdWrapFunctionsExecutedEvent", "BeforeStdWrapFunctionsExecutedEvent" ], "beforestdwrapfunctionsinitializedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/BeforeStdWrapFunctionsInitializedEvent.html#beforestdwrapfunctionsinitializedevent", + "ApiOverview\/Events\/Events\/Frontend\/BeforeStdWrapFunctionsInitializedEvent.html#BeforeStdWrapFunctionsInitializedEvent", "BeforeStdWrapFunctionsInitializedEvent" ], "enhancestdwrapevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/EnhanceStdWrapEvent.html#enhancestdwrapevent", + "ApiOverview\/Events\/Events\/Frontend\/EnhanceStdWrapEvent.html#EnhanceStdWrapEvent", "EnhanceStdWrapEvent" ], "filtermenuitemsevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/FilterMenuItemsEvent.html#filtermenuitemsevent", + "ApiOverview\/Events\/Events\/Frontend\/FilterMenuItemsEvent.html#FilterMenuItemsEvent", "FilterMenuItemsEvent" ], "frontend": [ @@ -39547,79 +39913,79 @@ "modifycachelifetimeforpageevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/ModifyCacheLifetimeForPageEvent.html#modifycachelifetimeforpageevent", + "ApiOverview\/Events\/Events\/Frontend\/ModifyCacheLifetimeForPageEvent.html#ModifyCacheLifetimeForPageEvent", "ModifyCacheLifetimeForPageEvent" ], "modifyhreflangtagsevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/ModifyHrefLangTagsEvent.html#modifyhreflangtagsevent", + "ApiOverview\/Events\/Events\/Frontend\/ModifyHrefLangTagsEvent.html#ModifyHrefLangTagsEvent", "ModifyHrefLangTagsEvent" ], "modifyimagesourcecollectionevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/ModifyImageSourceCollectionEvent.html#modifyimagesourcecollectionevent", + "ApiOverview\/Events\/Events\/Frontend\/ModifyImageSourceCollectionEvent.html#ModifyImageSourceCollectionEvent", "ModifyImageSourceCollectionEvent" ], "modifypagelinkconfigurationevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/ModifyPageLinkConfigurationEvent.html#modifypagelinkconfigurationevent", + "ApiOverview\/Events\/Events\/Frontend\/ModifyPageLinkConfigurationEvent.html#ModifyPageLinkConfigurationEvent", "ModifyPageLinkConfigurationEvent" ], "modifyrecordsafterfetchingcontentevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/ModifyRecordsAfterFetchingContentEvent.html#modifyrecordsafterfetchingcontentevent", + "ApiOverview\/Events\/Events\/Frontend\/ModifyRecordsAfterFetchingContentEvent.html#ModifyRecordsAfterFetchingContentEvent", "ModifyRecordsAfterFetchingContentEvent" ], "modifyresolvedfrontendgroupsevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/ModifyResolvedFrontendGroupsEvent.html#modifyresolvedfrontendgroupsevent", + "ApiOverview\/Events\/Events\/Frontend\/ModifyResolvedFrontendGroupsEvent.html#ModifyResolvedFrontendGroupsEvent", "ModifyResolvedFrontendGroupsEvent" ], "modifytyposcriptconfigevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/ModifyTypoScriptConfigEvent.html#modifytyposcriptconfigevent", + "ApiOverview\/Events\/Events\/Frontend\/ModifyTypoScriptConfigEvent.html#ModifyTypoScriptConfigEvent", "ModifyTypoScriptConfigEvent" ], "shouldusecachedpagedataifavailableevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Frontend\/ShouldUseCachedPageDataIfAvailableEvent.html#shouldusecachedpagedataifavailableevent", + "ApiOverview\/Events\/Events\/Frontend\/ShouldUseCachedPageDataIfAvailableEvent.html#ShouldUseCachedPageDataIfAvailableEvent", "ShouldUseCachedPageDataIfAvailableEvent" ], "beforeredirectevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/FrontendLogin\/BeforeRedirectEvent.html#beforeredirectevent", + "ApiOverview\/Events\/Events\/FrontendLogin\/BeforeRedirectEvent.html#BeforeRedirectEvent", "BeforeRedirectEvent" ], "frontendlogin": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/FrontendLogin\/Index.html#frontendlogin", + "ApiOverview\/Events\/Events\/FrontendLogin\/Index.html#eventlist-felogin", "FrontendLogin" ], "loginconfirmedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/FrontendLogin\/LoginConfirmedEvent.html#loginconfirmedevent", + "ApiOverview\/Events\/Events\/FrontendLogin\/LoginConfirmedEvent.html#LoginConfirmedEvent", "LoginConfirmedEvent" ], "loginerroroccurredevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/FrontendLogin\/LoginErrorOccurredEvent.html#loginerroroccurredevent", + "ApiOverview\/Events\/Events\/FrontendLogin\/LoginErrorOccurredEvent.html#LoginErrorOccurredEvent", "LoginErrorOccurredEvent" ], "logoutconfirmedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/FrontendLogin\/LogoutConfirmedEvent.html#logoutconfirmedevent", + "ApiOverview\/Events\/Events\/FrontendLogin\/LogoutConfirmedEvent.html#LogoutConfirmedEvent", "LogoutConfirmedEvent" ], "example-delete-stored-private-key-from-disk-on-logout": [ @@ -39631,13 +39997,13 @@ "modifyloginformviewevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/FrontendLogin\/ModifyLoginFormViewEvent.html#modifyloginformviewevent", + "ApiOverview\/Events\/Events\/FrontendLogin\/ModifyLoginFormViewEvent.html#ModifyLoginFormViewEvent", "ModifyLoginFormViewEvent" ], "modifyredirecturlvalidationresultevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/FrontendLogin\/ModifyRedirectUrlValidationResultEvent.html#modifyredirecturlvalidationresultevent", + "ApiOverview\/Events\/Events\/FrontendLogin\/ModifyRedirectUrlValidationResultEvent.html#ModifyRedirectUrlValidationResultEvent", "ModifyRedirectUrlValidationResultEvent" ], "example-validate-that-the-redirect-after-frontend-login-goes-to-a-trusted-domain": [ @@ -39649,55 +40015,55 @@ "passwordchangeevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/FrontendLogin\/PasswordChangeEvent.html#passwordchangeevent", + "ApiOverview\/Events\/Events\/FrontendLogin\/PasswordChangeEvent.html#PasswordChangeEvent", "PasswordChangeEvent" ], "sendrecoveryemailevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/FrontendLogin\/SendRecoveryEmailEvent.html#sendrecoveryemailevent", + "ApiOverview\/Events\/Events\/FrontendLogin\/SendRecoveryEmailEvent.html#SendRecoveryEmailEvent", "SendRecoveryEmailEvent" ], "beforeimportevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Impexp\/BeforeImportEvent.html#beforeimportevent", + "ApiOverview\/Events\/Events\/Impexp\/BeforeImportEvent.html#BeforeImportEvent", "BeforeImportEvent" ], "impexp": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Impexp\/Index.html#impexp", + "ApiOverview\/Events\/Events\/Impexp\/Index.html#eventlist-impexp", "Impexp" ], "event-list": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Index.html#event-list", + "ApiOverview\/Events\/Events\/Index.html#eventlist", "Event list" ], "beforefinalsearchqueryisexecutedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/IndexedSearch\/BeforeFinalSearchQueryIsExecutedEvent.html#beforefinalsearchqueryisexecutedevent", + "ApiOverview\/Events\/Events\/IndexedSearch\/BeforeFinalSearchQueryIsExecutedEvent.html#BeforeFinalSearchQueryIsExecutedEvent", "BeforeFinalSearchQueryIsExecutedEvent" ], "indexed-search": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/IndexedSearch\/Index.html#indexed-search", + "ApiOverview\/Events\/Events\/IndexedSearch\/Index.html#eventlist-indexed-search", "Indexed search" ], "info": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Info\/Index.html#info", + "ApiOverview\/Events\/Events\/Info\/Index.html#eventlist-info", "Info" ], "modifyinfomodulecontentevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Info\/ModifyInfoModuleContentEvent.html#modifyinfomodulecontentevent", + "ApiOverview\/Events\/Events\/Info\/ModifyInfoModuleContentEvent.html#ModifyInfoModuleContentEvent", "ModifyInfoModuleContentEvent" ], "access-control": [ @@ -39709,85 +40075,85 @@ "install": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Install\/Index.html#install", + "ApiOverview\/Events\/Events\/Install\/Index.html#eventlist-install", "Install" ], "modifylanguagepackremotebaseurlevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Install\/ModifyLanguagePackRemoteBaseUrlEvent.html#modifylanguagepackremotebaseurlevent", + "ApiOverview\/Events\/Events\/Install\/ModifyLanguagePackRemoteBaseUrlEvent.html#ModifyLanguagePackRemoteBaseUrlEvent", "ModifyLanguagePackRemoteBaseUrlEvent" ], "modifylanguagepacksevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Install\/ModifyLanguagePacksEvent.html#modifylanguagepacksevent", + "ApiOverview\/Events\/Events\/Install\/ModifyLanguagePacksEvent.html#ModifyLanguagePacksEvent", "ModifyLanguagePacksEvent" ], "beforerecordisanalyzedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Linkvalidator\/BeforeRecordIsAnalyzedEvent.html#beforerecordisanalyzedevent", + "ApiOverview\/Events\/Events\/Linkvalidator\/BeforeRecordIsAnalyzedEvent.html#BeforeRecordIsAnalyzedEvent", "BeforeRecordIsAnalyzedEvent" ], "linkvalidator": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Linkvalidator\/Index.html#linkvalidator", + "ApiOverview\/Events\/Events\/Linkvalidator\/Index.html#eventlist-linkvalidator", "Linkvalidator" ], "modifyvalidatortaskemailevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Linkvalidator\/ModifyValidatorTaskEmailEvent.html#modifyvalidatortaskemailevent", + "ApiOverview\/Events\/Events\/Linkvalidator\/ModifyValidatorTaskEmailEvent.html#ModifyValidatorTaskEmailEvent", "ModifyValidatorTaskEmailEvent" ], "lowlevel": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Lowlevel\/Index.html#lowlevel", + "ApiOverview\/Events\/Events\/Lowlevel\/Index.html#eventlist-lowlevel", "Lowlevel" ], "modifyblindedconfigurationoptionsevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Lowlevel\/ModifyBlindedConfigurationOptionsEvent.html#modifyblindedconfigurationoptionsevent", + "ApiOverview\/Events\/Events\/Lowlevel\/ModifyBlindedConfigurationOptionsEvent.html#ModifyBlindedConfigurationOptionsEvent", "ModifyBlindedConfigurationOptionsEvent" ], "afterautocreateredirecthasbeenpersistedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Redirects\/AfterAutoCreateRedirectHasBeenPersistedEvent.html#afterautocreateredirecthasbeenpersistedevent", + "ApiOverview\/Events\/Events\/Redirects\/AfterAutoCreateRedirectHasBeenPersistedEvent.html#AfterAutoCreateRedirectHasBeenPersistedEvent", "AfterAutoCreateRedirectHasBeenPersistedEvent" ], "beforeredirectmatchdomainevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Redirects\/BeforeRedirectMatchDomainEvent.html#beforeredirectmatchdomainevent", + "ApiOverview\/Events\/Events\/Redirects\/BeforeRedirectMatchDomainEvent.html#BeforeRedirectMatchDomainEvent", "BeforeRedirectMatchDomainEvent" ], "redirects": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Redirects\/Index.html#redirects", + "ApiOverview\/Events\/Events\/Redirects\/Index.html#eventlist-redirects", "Redirects" ], "modifyautocreateredirectrecordbeforepersistingevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Redirects\/ModifyAutoCreateRedirectRecordBeforePersistingEvent.html#modifyautocreateredirectrecordbeforepersistingevent", + "ApiOverview\/Events\/Events\/Redirects\/ModifyAutoCreateRedirectRecordBeforePersistingEvent.html#ModifyAutoCreateRedirectRecordBeforePersistingEvent", "ModifyAutoCreateRedirectRecordBeforePersistingEvent" ], "modifyredirectmanagementcontrollerviewdataevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Redirects\/ModifyRedirectManagementControllerViewDataEvent.html#modifyredirectmanagementcontrollerviewdataevent", + "ApiOverview\/Events\/Events\/Redirects\/ModifyRedirectManagementControllerViewDataEvent.html#ModifyRedirectManagementControllerViewDataEvent", "ModifyRedirectManagementControllerViewDataEvent" ], "redirectwashitevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Redirects\/RedirectWasHitEvent.html#redirectwashitevent", + "ApiOverview\/Events\/Events\/Redirects\/RedirectWasHitEvent.html#RedirectWasHitEvent", "RedirectWasHitEvent" ], "example-disable-the-hit-count-increment-for-monitoring-tools": [ @@ -39799,13 +40165,13 @@ "slugredirectchangeitemcreatedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Redirects\/SlugRedirectChangeItemCreatedEvent.html#slugredirectchangeitemcreatedevent", + "ApiOverview\/Events\/Events\/Redirects\/SlugRedirectChangeItemCreatedEvent.html#SlugRedirectChangeItemCreatedEvent", "SlugRedirectChangeItemCreatedEvent" ], "using-the-php-pagetypesource": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Redirects\/SlugRedirectChangeItemCreatedEvent.html#using-the-php-pagetypesource", + "ApiOverview\/Events\/Events\/Redirects\/SlugRedirectChangeItemCreatedEvent.html#use_pagetypesource", "Using the PageTypeSource" ], "with-a-custom-source-implementation": [ @@ -39829,19 +40195,19 @@ "seo": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/SEO\/Index.html#seo", + "ApiOverview\/Events\/Events\/SEO\/Index.html#eventlist-seo", "Seo" ], "modifyurlforcanonicaltagevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/SEO\/ModifyUrlForCanonicalTagEvent.html#modifyurlforcanonicaltagevent", + "ApiOverview\/Events\/Events\/SEO\/ModifyUrlForCanonicalTagEvent.html#ModifyUrlForCanonicalTagEvent", "ModifyUrlForCanonicalTagEvent" ], "addjavascriptmodulesevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Setup\/AddJavaScriptModulesEvent.html#addjavascriptmodulesevent", + "ApiOverview\/Events\/Events\/Setup\/AddJavaScriptModulesEvent.html#AddJavaScriptModulesEvent", "AddJavaScriptModulesEvent" ], "setup": [ @@ -39853,109 +40219,109 @@ "aftercompiledcacheabledataforworkspaceevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Workspaces\/AfterCompiledCacheableDataForWorkspaceEvent.html#aftercompiledcacheabledataforworkspaceevent", + "ApiOverview\/Events\/Events\/Workspaces\/AfterCompiledCacheableDataForWorkspaceEvent.html#AfterCompiledCacheableDataForWorkspaceEvent", "AfterCompiledCacheableDataForWorkspaceEvent" ], "afterdatageneratedforworkspaceevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Workspaces\/AfterDataGeneratedForWorkspaceEvent.html#afterdatageneratedforworkspaceevent", + "ApiOverview\/Events\/Events\/Workspaces\/AfterDataGeneratedForWorkspaceEvent.html#AfterDataGeneratedForWorkspaceEvent", "AfterDataGeneratedForWorkspaceEvent" ], "afterrecordpublishedevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Workspaces\/AfterRecordPublishedEvent.html#afterrecordpublishedevent", + "ApiOverview\/Events\/Events\/Workspaces\/AfterRecordPublishedEvent.html#AfterRecordPublishedEvent", "AfterRecordPublishedEvent" ], "getversioneddataevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Workspaces\/GetVersionedDataEvent.html#getversioneddataevent", + "ApiOverview\/Events\/Events\/Workspaces\/GetVersionedDataEvent.html#GetVersionedDataEvent", "GetVersionedDataEvent" ], "workspaces": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Workspaces\/Index.html#workspaces", + "ApiOverview\/Events\/Events\/Workspaces\/Index.html#eventlist-workspaces", "Workspaces" ], "modifyversiondifferencesevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Workspaces\/ModifyVersionDifferencesEvent.html#modifyversiondifferencesevent", + "ApiOverview\/Events\/Events\/Workspaces\/ModifyVersionDifferencesEvent.html#ModifyVersionDifferencesEvent", "ModifyVersionDifferencesEvent" ], "sortversioneddataevent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Events\/Workspaces\/SortVersionedDataEvent.html#sortversioneddataevent", + "ApiOverview\/Events\/Events\/Workspaces\/SortVersionedDataEvent.html#SortVersionedDataEvent", "SortVersionedDataEvent" ], "hooks": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Hooks\/Index.html#hooks", + "ApiOverview\/Events\/Hooks\/Index.html#hooks-general", "Hooks" ], "using-hooks": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Hooks\/Index.html#using-hooks", + "ApiOverview\/Events\/Hooks\/Index.html#hooks-basics", "Using hooks" ], "creating-hooks": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Hooks\/Index.html#creating-hooks", + "ApiOverview\/Events\/Hooks\/Index.html#hooks-creation", "Creating hooks" ], "using-typo3-cms-core-utility-generalutility-makeinstance": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Hooks\/Index.html#using-typo3-cms-core-utility-generalutility-makeinstance", + "ApiOverview\/Events\/Hooks\/Index.html#hooks-creation-object", "Using \\TYPO3\\CMS\\Core\\Utility\\GeneralUtility::makeInstance()" ], "using-with-typo3-cms-core-utility-generalutility-calluserfunction": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Hooks\/Index.html#using-with-typo3-cms-core-utility-generalutility-calluserfunction", + "ApiOverview\/Events\/Hooks\/Index.html#hooks-creation-function", "Using with \\TYPO3\\CMS\\Core\\Utility\\GeneralUtility::callUserFunction()" ], "hook-configuration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Hooks\/Index.html#hook-configuration", + "ApiOverview\/Events\/Hooks\/Index.html#hooks-configuration", "Hook configuration" ], "globals-typo3-conf-vars-extconf": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Hooks\/Index.html#globals-typo3-conf-vars-extconf", + "ApiOverview\/Events\/Hooks\/Index.html#hooks-extensions", "$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']" ], "globals-typo3-conf-vars-sc-options": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Hooks\/Index.html#globals-typo3-conf-vars-sc-options", + "ApiOverview\/Events\/Hooks\/Index.html#hooks-core", "$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']" ], "events-and-hooks": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/Index.html#events-and-hooks", + "ApiOverview\/Events\/Index.html#hooks", "Events and hooks" ], "debounce-event": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/JavaScript\/DebounceEvent\/Index.html#debounce-event", + "ApiOverview\/Events\/JavaScript\/DebounceEvent\/Index.html#Events_JavaScript_Debounce", "Debounce event" ], "javascript-event-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/JavaScript\/Index.html#javascript-event-api", + "ApiOverview\/Events\/JavaScript\/Index.html#Events_JavaScript", "JavaScript Event API" ], "bind-to-an-element": [ @@ -39973,265 +40339,265 @@ "regular-event": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/JavaScript\/RegularEvent\/Index.html#regular-event", + "ApiOverview\/Events\/JavaScript\/RegularEvent\/Index.html#Events_JavaScript_Regular", "Regular event" ], "requestanimationframe-event": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/JavaScript\/RequestAnimationFrameEvent\/Index.html#requestanimationframe-event", + "ApiOverview\/Events\/JavaScript\/RequestAnimationFrameEvent\/Index.html#Events_JavaScript_rAF", "RequestAnimationFrame event" ], "throttle-event": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/JavaScript\/ThrottleEvent\/Index.html#throttle-event", + "ApiOverview\/Events\/JavaScript\/ThrottleEvent\/Index.html#Events_JavaScript_Throttle", "Throttle event" ], "signals-and-slots-removed": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Events\/SignalsSlots\/Index.html#signals-and-slots-removed", + "ApiOverview\/Events\/SignalsSlots\/Index.html#signals-basics", "Signals and slots (removed)" ], "administration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Administration\/Index.html#administration", + "ApiOverview\/Fal\/Administration\/Index.html#fal-administration", "Administration" ], "maintenance": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Administration\/Maintenance.html#maintenance", + "ApiOverview\/Fal\/Administration\/Maintenance.html#fal-administration-maintenance", "Maintenance" ], "scheduler-tasks": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Administration\/Maintenance.html#scheduler-tasks", + "ApiOverview\/Fal\/Administration\/Maintenance.html#fal-administration-maintenance-scheduler", "Scheduler tasks" ], "processed-files": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Folders.html#processed-files", + "ApiOverview\/Fal\/Architecture\/Folders.html#fal-architecture-folders-processed-files", "Processed files" ], "permissions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Administration\/Permissions.html#permissions", + "ApiOverview\/Fal\/Administration\/Permissions.html#fal-administration-permissions", "Permissions" ], "system-permissions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Administration\/Permissions.html#system-permissions", + "ApiOverview\/Fal\/Administration\/Permissions.html#fal-administration-permissions-system", "System permissions" ], "user-permissions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Administration\/Permissions.html#user-permissions", + "ApiOverview\/Fal\/Administration\/Permissions.html#fal-administration-permissions-user", "User permissions" ], "user-permissions-per-storage": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Administration\/Permissions.html#user-permissions-per-storage", + "ApiOverview\/Fal\/Administration\/Permissions.html#fal-administration-permissions-user-storage", "User permissions per storage" ], "user-permissions-details": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Administration\/Permissions.html#user-permissions-details", + "ApiOverview\/Fal\/Administration\/Permissions.html#fal-administration-permissions-user-details", "User permissions details" ], "default-upload-folder": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Administration\/Permissions.html#default-upload-folder", + "ApiOverview\/Fal\/Administration\/Permissions.html#fal-administration-permissions-upload-folder", "Default upload folder" ], "frontend-permissions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Administration\/Permissions.html#frontend-permissions", + "ApiOverview\/Fal\/Administration\/Permissions.html#fal-administration-permissions-frontend", "Frontend permissions" ], "file-storages": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Administration\/Storages.html#file-storages", + "ApiOverview\/Fal\/Administration\/Storages.html#fal-administration-storages", "File storages" ], "components": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Components.html#components", + "ApiOverview\/Fal\/Architecture\/Components.html#fal-architecture-components", "Components" ], "files-and-folders": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Components.html#files-and-folders", + "ApiOverview\/Fal\/Architecture\/Components.html#fal-architecture-components-files-folders", "Files and folders" ], "file-references": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Concepts\/Index.html#file-references", + "ApiOverview\/Fal\/Concepts\/Index.html#fal-concepts-file-references", "File references" ], "storage": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Components.html#storage", + "ApiOverview\/Fal\/Architecture\/Components.html#fal-architecture-components-storage", "Storage" ], "drivers": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Components.html#drivers", + "ApiOverview\/Fal\/Architecture\/Components.html#fal-architecture-components-drivers", "Drivers" ], "the-file-index": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Components.html#the-file-index", + "ApiOverview\/Fal\/Architecture\/Components.html#fal-architecture-components-file-index", "The file index" ], "collections": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Components.html#collections", + "ApiOverview\/Fal\/Architecture\/Components.html#fal-architecture-components-collections", "Collections" ], "services": [ "TYPO3 Explained", "13.4", - "CodingGuidelines\/PhpArchitecture\/Services.html#services", + "PhpArchitecture\/Services.html#cgl-services", "Services" ], "database-structure": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Database.html#database-structure", + "ApiOverview\/Fal\/Architecture\/Database.html#fal-architecture-database", "Database structure" ], "sql-sys-file": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Database.html#sql-sys-file", + "ApiOverview\/Fal\/Architecture\/Database.html#fal-architecture-database-sys-file", "sys_file" ], "sql-sys-file-metadata": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Database.html#sql-sys-file-metadata", + "ApiOverview\/Fal\/Architecture\/Database.html#fal-architecture-database-sys-file-metadata", "sys_file_metadata" ], "sql-sys-file-reference": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Database.html#sql-sys-file-reference", + "ApiOverview\/Fal\/Architecture\/Database.html#fal-architecture-database-sys-file-reference", "sys_file_reference" ], "sql-sys-file-processedfile": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Database.html#sql-sys-file-processedfile", + "ApiOverview\/Fal\/Architecture\/Database.html#fal-architecture-database-sys-file-processedfile", "sys_file_processedfile" ], "sql-sys-file-collection": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Database.html#sql-sys-file-collection", + "ApiOverview\/Fal\/Architecture\/Database.html#fal-architecture-database-sys-file-collection", "sys_file_collection" ], "sql-sys-file-storage": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Database.html#sql-sys-file-storage", + "ApiOverview\/Fal\/Architecture\/Database.html#fal-architecture-database-sys-file-storage", "sys_file_storage" ], "sql-sys-filemounts": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Database.html#sql-sys-filemounts", + "ApiOverview\/Fal\/Architecture\/Database.html#fal-architecture-database-sys-filemounts", "sys_filemounts" ], "php-typo3-cms-core-resource-defaultuploadfolderresolver": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Events.html#php-typo3-cms-core-resource-defaultuploadfolderresolver", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events-default-upload-folder-resolver", "\\TYPO3\\CMS\\Core\\Resource\\DefaultUploadFolderResolver" ], "php-typo3-cms-core-resource-onlinemedia-processing-previewprocessing": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Events.html#php-typo3-cms-core-resource-onlinemedia-processing-previewprocessing", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events-preview-processing", "\\TYPO3\\CMS\\Core\\Resource\\OnlineMedia\\Processing\\PreviewProcessing" ], "php-typo3-cms-core-resource-resourcestorage": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Events.html#php-typo3-cms-core-resource-resourcestorage", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events-resource-storage", "\\TYPO3\\CMS\\Core\\Resource\\ResourceStorage" ], "php-typo3-cms-core-resource-storagerepository": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Events.html#php-typo3-cms-core-resource-storagerepository", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events-storage-repository", "\\TYPO3\\CMS\\Core\\Resource\\StorageRepository" ], "php-typo3-cms-core-resource-index-fileindexrepository": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Events.html#php-typo3-cms-core-resource-index-fileindexrepository", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events-file-index-repository", "\\TYPO3\\CMS\\Core\\Resource\\Index\\FileIndexRepository" ], "php-typo3-cms-core-resource-index-metadatarepository": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Events.html#php-typo3-cms-core-resource-index-metadatarepository", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events-metadata-repository", "\\TYPO3\\CMS\\Core\\Resource\\Index\\MetaDataRepository" ], "php-typo3-cms-core-resource-service-fileprocessingservice": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Events.html#php-typo3-cms-core-resource-service-fileprocessingservice", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events-file-processing-service", "\\TYPO3\\CMS\\Core\\Resource\\Service\\FileProcessingService" ], "php-typo3-cms-core-utility-file-extendedfileutility": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Events.html#php-typo3-cms-core-utility-file-extendedfileutility", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events-extended-file-utility", "\\TYPO3\\CMS\\Core\\Utility\\File\\ExtendedFileUtility" ], "folders": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Folders.html#folders", + "ApiOverview\/Fal\/Architecture\/Folders.html#architecture-folders", "Folders" ], "architecture": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Architecture\/Index.html#architecture", + "ApiOverview\/Fal\/Architecture\/Index.html#fal-architecture", "Architecture" ], "overview": [ "TYPO3 Explained", "13.4", - "Testing\/FunctionalTesting\/Introduction.html#overview", + "Testing\/FunctionalTesting\/Introduction.html#testing-writing-functional-overview", "Overview" ], "file-collections": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Collections\/Index.html#file-collections", + "ApiOverview\/Fal\/Collections\/Index.html#collections-files", "File collections" ], "collections-api": [ @@ -40243,43 +40609,43 @@ "basic-concepts": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Concepts\/Index.html#basic-concepts", + "ApiOverview\/Fal\/Concepts\/Index.html#fal-concepts", "Basic concepts" ], "storages-and-drivers": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Concepts\/Index.html#storages-and-drivers", + "ApiOverview\/Fal\/Concepts\/Index.html#fal-concepts-storages-drivers", "Storages and drivers" ], "files-and-metadata": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Concepts\/Index.html#files-and-metadata", + "ApiOverview\/Fal\/Concepts\/Index.html#fal-concepts-files-metadata", "Files and metadata" ], "file-abstraction-layer-fal": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/Index.html#file-abstraction-layer-fal", + "ApiOverview\/Fal\/Index.html#fal_introduction", "File abstraction layer (FAL)" ], "working-with-collections": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesCollection.html#working-with-collections", + "ApiOverview\/Fal\/UsingFal\/ExamplesCollection.html#fal-using-fal-examples-collections", "Working with collections" ], "working-with-files-folders-and-file-references": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#working-with-files-folders-and-file-references", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder", "Working with files, folders and file references" ], "getting-a-file": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#getting-a-file", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-get-file", "Getting a file" ], "by-uid": [ @@ -40309,61 +40675,61 @@ "copying-a-file": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#copying-a-file", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-copy-file", "Copying a file" ], "deleting-a-file": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#deleting-a-file", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-delete-file", "Deleting a file" ], "adding-a-file": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#adding-a-file", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-add-file", "Adding a file" ], "creating-a-file-reference": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#creating-a-file-reference", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-create-reference", "Creating a file reference" ], "in-backend-context": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#in-backend-context", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-create-reference-backend", "In backend context" ], "in-frontend-context": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#in-frontend-context", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-create-reference-frontend", "In frontend context" ], "getting-referenced-files": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#getting-referenced-files", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-get-references", "Getting referenced files" ], "get-files-in-a-folder": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#get-files-in-a-folder", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-list-files", "Get files in a folder" ], "dumping-a-file-via-eid-script": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#dumping-a-file-via-eid-script", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-eid", "Dumping a file via eID script" ], "searching-for-files": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileSearch.html#searching-for-files", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileSearch.html#fal-using-fal-examples-file-search", "Searching for files" ], "searching-for-files-in-a-folder": [ @@ -40393,37 +40759,37 @@ "the-storagerepository-class": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesStorageRepository.html#the-storagerepository-class", + "ApiOverview\/Fal\/UsingFal\/ExamplesStorageRepository.html#fal-using-fal-examples-storage-repository", "The StorageRepository class" ], "getting-the-default-storage": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesStorageRepository.html#getting-the-default-storage", + "ApiOverview\/Fal\/UsingFal\/ExamplesStorageRepository.html#fal-using-fal-examples-storage-repository-default-storage", "Getting the default storage" ], "getting-any-storage": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/UsingFal\/ExamplesStorageRepository.html#getting-any-storage", + "ApiOverview\/Fal\/UsingFal\/ExamplesStorageRepository.html#fal-using-fal-examples-storage-repository-getting-storage", "Getting any storage" ], "using-fal-in-the-frontend": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/UsingFal\/Frontend.html#using-fal-in-the-frontend", + "ApiOverview\/Fal\/UsingFal\/Frontend.html#fal-using-fal-frontend", "Using FAL in the frontend" ], "fluid": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-custom-viewhelper-fluid", "Fluid" ], "the-imageviewhelper": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/UsingFal\/Frontend.html#the-imageviewhelper", + "ApiOverview\/Fal\/UsingFal\/Frontend.html#fal-using-fal-frontend-fluid-image", "The ImageViewHelper" ], "get-file-properties": [ @@ -40435,19 +40801,19 @@ "fluidtemplate": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/UseSiteInTypoScript.html#fluidtemplate", + "ApiOverview\/SiteHandling\/UseSiteInTypoScript.html#sitehandling-fluidtemplate", "FLUIDTEMPLATE" ], "using-fal-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/UsingFal\/Index.html#using-fal-1", + "ApiOverview\/Fal\/UsingFal\/Index.html#using-fal", "Using FAL" ], "tca-definition": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fal\/UsingFal\/Tca.html#tca-definition", + "ApiOverview\/Fal\/UsingFal\/Tca.html#fal-using-fal-tca", "TCA definition" ], "migration-from-php-extensionmanagementutility-getfilefieldtcaconfig": [ @@ -40459,31 +40825,31 @@ "custom-file-processors": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FileProcessing\/Index.html#custom-file-processors", + "ApiOverview\/FileProcessing\/Index.html#file_processing", "Custom file processors" ], "create-a-new-processor-class": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FileProcessing\/Index.html#create-a-new-processor-class", + "ApiOverview\/FileProcessing\/Index.html#file_processing-create", "Create a new processor class" ], "register-the-file-processor": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FileProcessing\/Index.html#register-the-file-processor", + "ApiOverview\/FileProcessing\/Index.html#file_processing-register", "Register the file processor" ], "flash-messages-in-extbase": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FlashMessages\/Extbase.html#flash-messages-in-extbase", + "ApiOverview\/FlashMessages\/Extbase.html#flash-messages-extbase", "Flash messages in Extbase" ], "flash-messages-api-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FlashMessages\/FlashMessagesApi.html#flash-messages-api-1", + "ApiOverview\/FlashMessages\/FlashMessagesApi.html#flash-messages-api", "Flash messages API" ], "instantiate-a-flash-message": [ @@ -40507,13 +40873,13 @@ "flash-messages-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FlashMessages\/Index.html#flash-messages-1", + "ApiOverview\/FlashMessages\/Index.html#flash-messages", "Flash messages" ], "javascript-based-flash-messages-notification-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FlashMessages\/NotificationApi.html#javascript-based-flash-messages-notification-api", + "ApiOverview\/FlashMessages\/NotificationApi.html#notification_api", "JavaScript-based flash messages (Notification API)" ], "actions": [ @@ -40525,25 +40891,25 @@ "immediate-action": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FlashMessages\/NotificationApi.html#immediate-action", + "ApiOverview\/FlashMessages\/NotificationApi.html#notification_api_immediate_action", "Immediate action" ], "deferred-action": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FlashMessages\/NotificationApi.html#deferred-action", + "ApiOverview\/FlashMessages\/NotificationApi.html#notification_api_deferred_action", "Deferred action" ], "flash-messages-renderer-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FlashMessages\/Render.html#flash-messages-renderer-1", + "ApiOverview\/FlashMessages\/Render.html#flash-messages-renderer", "Flash messages renderer" ], "flexforms-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FlexForms\/Index.html#flexforms-1", + "ApiOverview\/FlexForms\/Index.html#flexforms", "FlexForms" ], "example-use-cases": [ @@ -40573,55 +40939,55 @@ "populate-a-select-field-with-a-php-function-itemsprocfunc": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FlexForms\/Index.html#populate-a-select-field-with-a-php-function-itemsprocfunc", + "ApiOverview\/FlexForms\/Index.html#flexforms-itemsProcFunc", "Populate a select field with a PHP Function (itemsProcFunc)" ], "display-fields-conditionally-displaycond": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FlexForms\/Index.html#display-fields-conditionally-displaycond", + "ApiOverview\/FlexForms\/Index.html#flexformDisplayCond", "Display fields conditionally (displayCond)" ], "reload-on-change": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FlexForms\/Index.html#reload-on-change", + "ApiOverview\/FlexForms\/Index.html#flexformReload", "Reload on change" ], "how-to-read-flexforms-from-an-extbase-controller-action": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FlexForms\/Index.html#how-to-read-flexforms-from-an-extbase-controller-action", + "ApiOverview\/FlexForms\/Index.html#read-flexforms-extbase", "How to read FlexForms from an Extbase controller action" ], "read-flexforms-values-in-php": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FlexForms\/Index.html#read-flexforms-values-in-php", + "ApiOverview\/FlexForms\/Index.html#read-flexforms-php", "Read FlexForms values in PHP" ], "how-to-modify-flexforms-from-php": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FlexForms\/Index.html#how-to-modify-flexforms-from-php", + "ApiOverview\/FlexForms\/Index.html#modify-flexforms-php", "How to modify FlexForms from PHP" ], "how-to-access-flexforms-from-typoscript": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FlexForms\/Index.html#how-to-access-flexforms-from-typoscript", + "ApiOverview\/FlexForms\/Index.html#read-flexforms-ts", "How to access FlexForms From TypoScript" ], "providing-default-values-for-flexforms-attributes": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FlexForms\/Index.html#providing-default-values-for-flexforms-attributes", + "ApiOverview\/FlexForms\/Index.html#default-flexforms-attribute", "Providing default values for FlexForms attributes" ], "how-to-access-flexforms-from-fluid": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FlexForms\/Index.html#how-to-access-flexforms-from-fluid", + "ApiOverview\/FlexForms\/Index.html#read-flexforms-fluid", "How to access FlexForms from Fluid" ], "steps-to-perform-editor": [ @@ -40633,37 +40999,37 @@ "t3datastructure": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FlexForms\/T3datastructure\/Index.html#t3datastructure", + "ApiOverview\/FlexForms\/T3datastructure\/Index.html#t3ds", "T3DataStructure" ], "elements": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FlexForms\/T3datastructure\/Elements\/Index.html#elements", + "ApiOverview\/FlexForms\/T3datastructure\/Elements\/Index.html#t3ds-elements", "Elements" ], "elements-nesting-other-elements-array-elements": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FlexForms\/T3datastructure\/Elements\/Index.html#elements-nesting-other-elements-array-elements", + "ApiOverview\/FlexForms\/T3datastructure\/Elements\/Index.html#t3ds-elements-array", "Elements Nesting Other Elements (\"Array\" Elements)" ], "elements-containing-values-value-elements": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FlexForms\/T3datastructure\/Elements\/Index.html#elements-containing-values-value-elements", + "ApiOverview\/FlexForms\/T3datastructure\/Elements\/Index.html#t3ds-elements-value", "Elements Containing Values (\"Value\" Elements)" ], "parsing-a-data-structure": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FlexForms\/T3datastructure\/Parsing\/Index.html#parsing-a-data-structure", + "ApiOverview\/FlexForms\/T3datastructure\/Parsing\/Index.html#t3ds-parsing", "Parsing a Data Structure" ], "sheet-references": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FlexForms\/T3datastructure\/SheetReferences\/Index.html#sheet-references", + "ApiOverview\/FlexForms\/T3datastructure\/SheetReferences\/Index.html#t3ds-sheet-references", "Sheet References" ], "property-additionalattributes": [ @@ -40675,31 +41041,31 @@ "developing-a-custom-viewhelper": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#developing-a-custom-viewhelper", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-custom-viewhelper", "Developing a custom ViewHelper" ], "abstractviewhelper-implementation": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#abstractviewhelper-implementation", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-custom-viewhelper-implementation", "AbstractViewHelper implementation" ], "php-abstractviewhelper": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#php-abstractviewhelper", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-custom-viewhelper-AbstractViewHelper", "AbstractViewHelper" ], "disable-escaping-the-output": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#disable-escaping-the-output", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-viewhelper-custom-escaping-of-output", "Disable escaping the output" ], "php-initializearguments": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#php-initializearguments", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-viewhelper-custom-initializeArguments", "initializeArguments()" ], "render": [ @@ -40711,49 +41077,49 @@ "creating-html-xml-tags-with-the-php-abstracttagbasedviewhelper": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#creating-html-xml-tags-with-the-php-abstracttagbasedviewhelper", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#creating-html-tags-using-tagbasedviewhelper", "Creating HTML\/XML tags with the AbstractTagBasedViewHelper" ], "abstracttagbasedviewhelper": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#abstracttagbasedviewhelper", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#AbstractTagBasedViewHelper", "AbstractTagBasedViewHelper" ], "php-tagname": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#php-tagname", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#AbstractTagBasedViewHelper-tagname", "$tagName" ], "php-this-tag-addattribute": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#php-this-tag-addattribute", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#AbstractTagBasedViewHelper-addAttribute", "$this->tag->addAttribute()" ], "php-this-tag-render": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#php-this-tag-render", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#AbstractTagBasedViewHelper-render", "$this->tag->render()" ], "php-this-registertagattribute": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#php-this-registertagattribute", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#AbstractTagBasedViewHelper-registerTagAttribute", "$this->registerTagAttribute()" ], "migration-remove-registeruniversaltagattributes-and-registertagattribute": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#migration-remove-registeruniversaltagattributes-and-registertagattribute", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#AbstractTagBasedViewHelper-registerTagAttribute-migration", "Migration: Remove registerUniversalTagAttributes and registerTagAttribute" ], "insert-optional-arguments-with-default-values": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#insert-optional-arguments-with-default-values", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#insert-optional-arguments", "Insert optional arguments with default values" ], "prepare-viewhelper-for-inline-syntax": [ @@ -40795,19 +41161,19 @@ "migration-remove-deprecated-compliling-traits": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#migration-remove-deprecated-compliling-traits", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-custom-viewhelper-migration", "Migration: Remove deprecated compliling traits" ], "migration-remove-deprecated-trait-compilewithrenderstatic": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#migration-remove-deprecated-trait-compilewithrenderstatic", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-viewhelper-custom-renderStatic", "Migration: Remove deprecated trait CompileWithRenderStatic" ], "migration-remove-deprecated-trait-compilewithcontentargumentandrenderstatic": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#migration-remove-deprecated-trait-compilewithcontentargumentandrenderstatic", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-custom-viewhelper-CompileWithContentArgumentAndRenderStatic-migration", "Migration: Remove deprecated trait CompileWithContentArgumentAndRenderStatic" ], "remove-calls-to-removed-renderstatic-method-of-another-viewhelper": [ @@ -40819,109 +41185,109 @@ "fluid-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/Index.html#fluid-1", + "ApiOverview\/Fluid\/Index.html#fluid", "Fluid" ], "introduction-to-fluid": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/Introduction.html#introduction-to-fluid", + "ApiOverview\/Fluid\/Introduction.html#fluid-introduction", "Introduction to Fluid" ], "example-fluid-snippet": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/Introduction.html#example-fluid-snippet", + "ApiOverview\/Fluid\/Introduction.html#fluid-introduction-example", "Example Fluid snippet" ], "directory-structure": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/Introduction.html#directory-structure", + "ApiOverview\/Fluid\/Introduction.html#fluid-directory-structure", "Directory structure" ], "file-templates": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/Introduction.html#file-templates", + "ApiOverview\/Fluid\/Introduction.html#fluid-templates", "Templates" ], "file-layouts": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/Introduction.html#file-layouts", + "ApiOverview\/Fluid\/Introduction.html#fluid-layouts", "Layouts" ], "file-partials": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/Introduction.html#file-partials", + "ApiOverview\/Fluid\/Introduction.html#fluid-partials", "Partials" ], "example-using-fluid-to-create-a-theme": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/Introduction.html#example-using-fluid-to-create-a-theme", + "ApiOverview\/Fluid\/Introduction.html#fluid-theme-example", "Example: Using Fluid to create a theme" ], "fluid-syntax-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/Syntax.html#fluid-syntax-1", + "ApiOverview\/Fluid\/Syntax.html#fluid-syntax", "Fluid syntax" ], "variables": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/Syntax.html#variables", + "ApiOverview\/Fluid\/Syntax.html#fluid-variables", "Variables" ], "reserved-variables-in-fluid": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/Syntax.html#reserved-variables-in-fluid", + "ApiOverview\/Fluid\/Syntax.html#fluid-variables-reserved", "Reserved variables in Fluid" ], "boolean-values": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/Syntax.html#boolean-values", + "ApiOverview\/Fluid\/Syntax.html#fluid-boolean", "Boolean values" ], "arrays-and-objects": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/Syntax.html#arrays-and-objects", + "ApiOverview\/Fluid\/Syntax.html#fluid-arrays", "Arrays and objects" ], "accessing-dynamic-keys-properties": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/Syntax.html#accessing-dynamic-keys-properties", + "ApiOverview\/Fluid\/Syntax.html#fluid-dynamic-properties", "Accessing dynamic keys\/properties" ], "viewhelpers": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/Syntax.html#viewhelpers", + "ApiOverview\/Fluid\/Syntax.html#fluid-syntax-viewhelpers", "ViewHelpers" ], "import-viewhelper-namespaces": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/Syntax.html#import-viewhelper-namespaces", + "ApiOverview\/Fluid\/Syntax.html#fluid-syntax-viewhelpers-import-namespaces", "Import ViewHelper namespaces" ], "viewhelper-attributes": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/Syntax.html#viewhelper-attributes", + "ApiOverview\/Fluid\/Syntax.html#fluid-viewhelper-attributes", "ViewHelper attributes" ], "simple": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/Syntax.html#simple", + "ApiOverview\/Fluid\/Syntax.html#fluid-viewhelper-attributes-simple", "Simple" ], "fluid-inline-notation": [ @@ -40933,7 +41299,7 @@ "boolean-conditions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/Syntax.html#boolean-conditions", + "ApiOverview\/Fluid\/Syntax.html#fluid-syntax-boolean-conditions", "Boolean conditions" ], "comments": [ @@ -40945,13 +41311,13 @@ "using-fluid-in-typo3": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/UsingFluidInTypo3.html#using-fluid-in-typo3", + "ApiOverview\/Fluid\/UsingFluidInTypo3.html#fluid-usage-in-typo3", "Using Fluid in TYPO3" ], "using-the-generic-view-factory-viewfactoryinterface": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Fluid\/UsingFluidInTypo3.html#using-the-generic-view-factory-viewfactoryinterface", + "ApiOverview\/Fluid\/UsingFluidInTypo3.html#generic-view-factory", "Using the generic view factory (ViewFactoryInterface)" ], "cobject-viewhelper": [ @@ -40963,7 +41329,7 @@ "data-compiling": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FormEngine\/DataCompiling\/Index.html#data-compiling", + "ApiOverview\/FormEngine\/DataCompiling\/Index.html#FormEngine-DataCompiling", "Data compiling" ], "data-groups-and-providers": [ @@ -40993,37 +41359,37 @@ "formengine": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FormEngine\/Index.html#formengine", + "ApiOverview\/FormEngine\/Index.html#FormEngine", "FormEngine" ], "main-rendering-workflow": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FormEngine\/Overview\/Index.html#main-rendering-workflow", + "ApiOverview\/FormEngine\/Overview\/Index.html#FormEngine-Overview", "Main rendering workflow" ], "rendering": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FormEngine\/Rendering\/Index.html#rendering", + "ApiOverview\/FormEngine\/Rendering\/Index.html#FormEngine-Rendering", "Rendering" ], "class-inheritance": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FormEngine\/Rendering\/Index.html#class-inheritance", + "ApiOverview\/FormEngine\/Rendering\/Index.html#FormEngine-Rendering-ClassInheritance", "Class Inheritance" ], "nodefactory": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FormEngine\/Rendering\/Index.html#nodefactory", + "ApiOverview\/FormEngine\/Rendering\/Index.html#FormEngine-Rendering-NodeFactory", "NodeFactory" ], "result-array": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FormEngine\/Rendering\/Index.html#result-array", + "ApiOverview\/FormEngine\/Rendering\/Index.html#FormEngine-Rendering-ResultArray", "Result Array" ], "adding-javascript-modules": [ @@ -41035,7 +41401,7 @@ "node-expansion": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FormEngine\/Rendering\/Index.html#node-expansion", + "ApiOverview\/FormEngine\/Rendering\/Index.html#FormEngine-Rendering-NodeExpansion", "Node Expansion" ], "add-fieldcontrol-example": [ @@ -41047,13 +41413,13 @@ "form-protection-tool": [ "TYPO3 Explained", "13.4", - "ApiOverview\/FormProtection\/Index.html#form-protection-tool", + "ApiOverview\/FormProtection\/Index.html#csrf-backend", "Form protection tool" ], "constants": [ "TYPO3 Explained", "13.4", - "ApiOverview\/GlobalValues\/Constants\/Index.html#constants", + "ApiOverview\/GlobalValues\/Constants\/Index.html#globals-constants", "Constants" ], "security-related-constant": [ @@ -41071,7 +41437,7 @@ "file-types": [ "TYPO3 Explained", "13.4", - "ApiOverview\/GlobalValues\/Constants\/Index.html#file-types", + "ApiOverview\/GlobalValues\/Constants\/Index.html#globals-constants-file-types", "File types" ], "http-status-codes": [ @@ -41083,13 +41449,13 @@ "global-values": [ "TYPO3 Explained", "13.4", - "ApiOverview\/GlobalValues\/Index.html#global-values", + "ApiOverview\/GlobalValues\/Index.html#globals-values", "Global values" ], "icon-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Icon\/Index.html#icon-api", + "ApiOverview\/Icon\/Index.html#icon", "Icon API" ], "icon-provider": [ @@ -41101,7 +41467,7 @@ "using-icons-in-your-code": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Icon\/Index.html#using-icons-in-your-code", + "ApiOverview\/Icon\/Index.html#icon-usage", "Using icons in your code" ], "the-php-way": [ @@ -41131,13 +41497,13 @@ "api-a-z": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Index.html#api-a-z", + "ApiOverview\/Index.html#api", "API A-Z" ], "link-handler-configuration-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/Configuration.html#link-handler-configuration-1", + "ApiOverview\/LinkHandling\/Configuration.html#link-handler-configuration", "Link handler configuration" ], "record-link-handler-configuration": [ @@ -41155,13 +41521,13 @@ "core-link-handler-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/CoreLinkHandler.html#core-link-handler-1", + "ApiOverview\/LinkHandling\/CoreLinkHandler.html#core-link-handler", "Core link handler" ], "linkbrowser-api-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/LinkBrowserApi\/Index.html#linkbrowser-api-1", + "ApiOverview\/LinkHandling\/LinkBrowserApi\/Index.html#LinkBrowser", "LinkBrowser API" ], "description": [ @@ -41173,43 +41539,43 @@ "tab-registration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/LinkBrowserApi\/Index.html#tab-registration", + "ApiOverview\/LinkHandling\/LinkBrowserApi\/Index.html#linkbrowser-api-tab-registration", "Tab registration" ], "frontend-link-builder": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/LinkBuilder.html#frontend-link-builder", + "ApiOverview\/LinkHandling\/LinkBuilder.html#link-builder", "Frontend link builder" ], "implementing-a-custom-linkhandler": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/Linkhandler\/CustomLinkHandlers.html#implementing-a-custom-linkhandler", + "ApiOverview\/LinkHandling\/Linkhandler\/CustomLinkHandlers.html#customlinkhandler", "Implementing a custom LinkHandler" ], "implementing-the-linkhandler": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/Linkhandler\/CustomLinkHandlers.html#implementing-the-linkhandler", + "ApiOverview\/LinkHandling\/Linkhandler\/CustomLinkHandlers.html#customlinkhandler-implementation", "Implementing the LinkHandler" ], "events-to-modify-link-handler": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/Linkhandler\/Events.html#events-to-modify-link-handler", + "ApiOverview\/LinkHandling\/Linkhandler\/Events.html#modifyLinkHandlers", "Events to modify link handler" ], "the-linkhandler-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/Linkhandler\/Index.html#the-linkhandler-api", + "ApiOverview\/LinkHandling\/Linkhandler\/Index.html#linkhandler", "The LinkHandler API" ], "linkhandler-page-tsconfig-options": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/Linkhandler\/Index.html#linkhandler-page-tsconfig-options", + "ApiOverview\/LinkHandling\/Linkhandler\/Index.html#linkhandler-pagetsconfig", "LinkHandler page TSconfig options" ], "example-news-records-from-one-storage-pid": [ @@ -41221,7 +41587,7 @@ "linkhandler-typoscript-options": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/Linkhandler\/RecordLinkHandler.html#linkhandler-typoscript-options", + "ApiOverview\/LinkHandling\/Linkhandler\/RecordLinkHandler.html#linkhandler-typoscript_options", "LinkHandler TypoScript options" ], "example-news-records-displayed-on-fixed-detail-page": [ @@ -41233,7 +41599,7 @@ "the-pagelinkhandler": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/Linkhandler\/PageLinkHandler.html#the-pagelinkhandler", + "ApiOverview\/LinkHandling\/Linkhandler\/PageLinkHandler.html#pagelinkhandler", "The PageLinkHandler" ], "enable-direct-input-of-the-page-id": [ @@ -41245,31 +41611,31 @@ "the-recordlinkhandler": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/Linkhandler\/RecordLinkHandler.html#the-recordlinkhandler", + "ApiOverview\/LinkHandling\/Linkhandler\/RecordLinkHandler.html#recordlinkhandler", "The RecordLinkHandler" ], "recordlinkhandler-page-tsconfig-options": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/Linkhandler\/RecordLinkHandler.html#recordlinkhandler-page-tsconfig-options", + "ApiOverview\/LinkHandling\/Linkhandler\/RecordLinkHandler.html#linkhandler-pagetsconfig_options", "RecordLinkHandler page TSconfig options" ], "create-a-custom-link-browser": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#create-a-custom-link-browser", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial-github-link-handler", "Create a custom link browser" ], "1-register-the-custom-link-browser-tab-in-page-tsconfig": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#1-register-the-custom-link-browser-tab-in-page-tsconfig", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial_backend_link_handler-tsconfig", "1. Register the custom link browser tab in page TSconfig" ], "2-create-a-link-browser-tab": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#2-create-a-link-browser-tab", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial_backend_link_handler", "2. Create a link browser tab" ], "initialization-and-dependencies": [ @@ -41287,49 +41653,49 @@ "render-the-link-browser-tab": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#render-the-link-browser-tab", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial_backend_link_handler_render", "Render the link browser tab" ], "set-the-link-via-javascript": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#set-the-link-via-javascript", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial_backend_link_handler_javascript", "Set the link via JavaScript" ], "can-we-handle-this-link": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#can-we-handle-this-link", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial_backend_link_handler_canHandleLink", "Can we handle this link?" ], "format-current-url": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#format-current-url", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial_backend_link_handler_formatCurrentUrl", "Format current URL" ], "3-introduce-the-custom-link-format": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#3-introduce-the-custom-link-format", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial-core-link-handler", "3. Introduce the custom link format" ], "4-render-the-custom-link-format-in-the-frontend": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#4-render-the-custom-link-format-in-the-frontend", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial-typolink-builder", "4. Render the custom link format in the frontend" ], "linkbrowser-tutorials": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/Tutorials\/Index.html#linkbrowser-tutorials", + "ApiOverview\/LinkHandling\/Tutorials\/Index.html#LinkBrowserTutorials", "LinkBrowser Tutorials" ], "browse-records-of-a-table": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LinkHandling\/Tutorials\/RecordLinkBrowser.html#browse-records-of-a-table", + "ApiOverview\/LinkHandling\/Tutorials\/RecordLinkBrowser.html#TableRecordLinkBrowserTutorials", "Browse records of a table" ], "backend-configure-the-link-browser-with-page-tsconfig": [ @@ -41347,13 +41713,13 @@ "localization-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/Index.html#localization-1", + "ApiOverview\/Localization\/Index.html#localization", "Localization" ], "supported-languages": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/Languages.html#supported-languages", + "ApiOverview\/Localization\/Languages.html#i18n_languages", "Supported languages" ], "localization-api": [ @@ -41365,7 +41731,7 @@ "languageservice": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/LocalizationApi\/LanguageService.html#languageservice", + "ApiOverview\/Localization\/LocalizationApi\/LanguageService.html#LanguageService-api", "LanguageService" ], "example-use": [ @@ -41377,55 +41743,55 @@ "languageservicefactory": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/LocalizationApi\/LanguageServiceFactory.html#languageservicefactory", + "ApiOverview\/Localization\/LocalizationApi\/LanguageServiceFactory.html#LanguageServiceFactory-api", "LanguageServiceFactory" ], "locale": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/LocalizationApi\/Locale.html#locale", + "ApiOverview\/Localization\/LocalizationApi\/Locale.html#Locale-api", "Locale" ], "localizationutility-extbase": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/LocalizationApi\/LocalizationUtility.html#localizationutility-extbase", + "ApiOverview\/Localization\/LocalizationApi\/LocalizationUtility.html#extbase-localization-utility-api", "LocalizationUtility (Extbase)" ], "managing-translations": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/ManagingTranslations.html#managing-translations", + "ApiOverview\/Localization\/ManagingTranslations.html#managing-translating", "Managing translations" ], "fetching-translations": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/ManagingTranslations.html#fetching-translations", + "ApiOverview\/Localization\/ManagingTranslations.html#xliff-translating-fetch", "Fetching translations" ], "local-translations": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/ManagingTranslations.html#local-translations", + "ApiOverview\/Localization\/ManagingTranslations.html#xliff-translating-local", "Local translations" ], "custom-translations": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/ManagingTranslations.html#custom-translations", + "ApiOverview\/Localization\/ManagingTranslations.html#xliff-translating-custom", "Custom translations" ], "custom-languages": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/ManagingTranslations.html#custom-languages", + "ApiOverview\/Localization\/ManagingTranslations.html#xliff-translating-languages", "Custom languages" ], "extension-integration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#extension-integration", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#crowdin-extension-integration", "Extension integration" ], "integration": [ @@ -41437,31 +41803,31 @@ "step-by-step-instructions-for-github": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#step-by-step-instructions-for-github", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#crowdin-extension-integration-github", "Step-by-step instructions for GitHub" ], "step-1-create-a-crowdin-configuration-file": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#step-1-create-a-crowdin-configuration-file", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#crowdin-extension-integration-github-crowdin-config", "Step 1: Create a Crowdin configuration file" ], "step-2-configure-the-github-integration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#step-2-configure-the-github-integration", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#crowdin-extension-integration-github-configure", "Step 2: Configure the GitHub integration" ], "step-3-import-existing-translations": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#step-3-import-existing-translations", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#crowdin-extension-integration-github-import", "Step 3: Import existing translations" ], "frequently-asked-questions-faq": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#frequently-asked-questions-faq", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq", "Frequently asked questions (FAQ)" ], "general-questions": [ @@ -41473,25 +41839,25 @@ "my-favorite-extension-is-not-available-on-crowdin": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#my-favorite-extension-is-not-available-on-crowdin", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq-extension-missing", "My favorite extension is not available on Crowdin" ], "my-favorite-language-is-not-available-for-an-extension": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#my-favorite-language-is-not-available-for-an-extension", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq-extension-language-missing", "My favorite language is not available for an extension" ], "will-the-old-translation-server-be-disabled": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#will-the-old-translation-server-be-disabled", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq-pootle", "Will the old translation server be disabled?" ], "how-to-convert-to-the-new-language-xliff-file-format": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#how-to-convert-to-the-new-language-xliff-file-format", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq-language-xlf-format", "How to convert to the new language XLIFF file format" ], "questions-about-extension-integration": [ @@ -41503,31 +41869,31 @@ "why-does-crowdin-show-me-translations-in-source-language": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#why-does-crowdin-show-me-translations-in-source-language", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq-duplicated-labels", "Why does Crowdin show me translations in source language?" ], "can-i-upload-translated-xliff-files": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#can-i-upload-translated-xliff-files", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq-upload-xliff-files", "Can I upload translated XLIFF files?" ], "how-can-i-disable-the-pushing-of-changes": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#how-can-i-disable-the-pushing-of-changes", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq-disable-push-changes", "How can I disable the pushing of changes?" ], "how-can-i-migrate-translations-from-pootle": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#how-can-i-migrate-translations-from-pootle", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#migrate-from-pootle", "How can I migrate translations from Pootle?" ], "crowdin-yml-crowdin-yml-or-crowdin-yaml": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-yml-crowdin-yml-or-crowdin-yaml", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq-crowdin-yml", "crowdin.yml, .crowdin.yml or crowdin.yaml?" ], "questions-about-typo3-core-integration": [ @@ -41545,7 +41911,7 @@ "online-translation-with-crowdin": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/OnlineTranslation.html#online-translation-with-crowdin", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/OnlineTranslation.html#crowdin-crowdin-translation", "Online translation with Crowdin" ], "getting-started": [ @@ -41641,7 +42007,7 @@ "localization-with-crowdin": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/TranslationServer\/Crowdin.html#localization-with-crowdin", + "ApiOverview\/Localization\/TranslationServer\/Crowdin.html#xliff-translating-server-crowdin", "Localization with Crowdin" ], "what-is-crowdin": [ @@ -41665,19 +42031,19 @@ "custom-translation-servers": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/TranslationServer\/Custom.html#custom-translation-servers", + "ApiOverview\/Localization\/TranslationServer\/Custom.html#custom-translation-server", "Custom translation servers" ], "translation-servers": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/TranslationServer\/Index.html#translation-servers", + "ApiOverview\/Localization\/TranslationServer\/Index.html#xliff-translating-servers", "Translation servers" ], "working-with-xliff-files": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/XliffApi.html#working-with-xliff-files", + "ApiOverview\/Localization\/XliffApi.html#xliff_api", "Working with XLIFF files" ], "access-labels": [ @@ -41701,31 +42067,31 @@ "xliff-format": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/XliffFormat.html#xliff-format", + "ApiOverview\/Localization\/XliffFormat.html#xliff", "XLIFF Format" ], "basics": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/XliffFormat.html#basics", + "ApiOverview\/Localization\/XliffFormat.html#xliff-basics", "Basics" ], "file-locations-and-naming": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/XliffFormat.html#file-locations-and-naming", + "ApiOverview\/Localization\/XliffFormat.html#xliff-files", "File locations and naming" ], "id-naming": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/XliffFormat.html#id-naming", + "ApiOverview\/Localization\/XliffFormat.html#xliff-id-naming", "ID naming" ], "separate-by-dots": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/XliffFormat.html#separate-by-dots", + "ApiOverview\/Localization\/XliffFormat.html#xliff-id-naming-dots", "Separate by dots" ], "namespace": [ @@ -41737,13 +42103,13 @@ "lowercamelcase": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Localization\/XliffFormat.html#lowercamelcase", + "ApiOverview\/Localization\/XliffFormat.html#xliff-id-naming-lower-camel", "lowerCamelCase" ], "locking-api-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LockingApi\/Index.html#locking-api-1", + "ApiOverview\/LockingApi\/Index.html#locking-api", "Locking API" ], "locking-strategies": [ @@ -41773,13 +42139,13 @@ "extend-locking-in-extensions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LockingApi\/Index.html#extend-locking-in-extensions", + "ApiOverview\/LockingApi\/Index.html#use-locking-api-in-extensions", "Extend locking in Extensions" ], "caveats": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LockingApi\/Index.html#caveats", + "ApiOverview\/LockingApi\/Index.html#locking-api-caveats", "Caveats" ], "filelockstrategy-nfs": [ @@ -41797,61 +42163,61 @@ "related-information": [ "TYPO3 Explained", "13.4", - "ApiOverview\/LockingApi\/Index.html#related-information", + "ApiOverview\/LockingApi\/Index.html#locking-api-more-info", "Related Information" ], "configuration-of-the-logging-system": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Configuration\/Index.html#configuration-of-the-logging-system", + "ApiOverview\/Logging\/Configuration\/Index.html#logging-configuration", "Configuration of the logging system" ], "writer-configuration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Configuration\/Index.html#writer-configuration", + "ApiOverview\/Logging\/Configuration\/Index.html#logging-configuration-writer", "Writer configuration" ], "processor-configuration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Configuration\/Index.html#processor-configuration", + "ApiOverview\/Logging\/Configuration\/Index.html#logging-configuration-processor", "Processor configuration" ], "disable-all-logging": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Configuration\/Index.html#disable-all-logging", + "ApiOverview\/Logging\/Configuration\/Index.html#logging-configuration-disable", "Disable all logging" ], "logging-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Index.html#logging-1", + "ApiOverview\/Logging\/Index.html#logging", "Logging" ], "logger": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Logger\/Index.html#logger", + "ApiOverview\/Logging\/Logger\/Index.html#logging-logger", "Logger" ], "the-log-method": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Logger\/Index.html#the-log-method", + "ApiOverview\/Logging\/Logger\/Index.html#logging-logger-log", "The log() method" ], "log-levels-and-shorthand-methods": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Logger\/Index.html#log-levels-and-shorthand-methods", + "ApiOverview\/Logging\/Logger\/Index.html#logging-logger-shortcuts", "Log levels and shorthand methods" ], "channels": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Logger\/Index.html#channels", + "ApiOverview\/Logging\/Logger\/Index.html#logging-channels", "Channels" ], "using-the-channel": [ @@ -41893,61 +42259,61 @@ "the-logrecord-model": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Model\/Index.html#the-logrecord-model", + "ApiOverview\/Logging\/Model\/Index.html#logging-model", "The LogRecord model" ], "log-processors": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Processors\/Index.html#log-processors", + "ApiOverview\/Logging\/Processors\/Index.html#logging-processors", "Log processors" ], "built-in-log-processors": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Processors\/Index.html#built-in-log-processors", + "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-builtin", "Built-in log processors" ], "introspectionprocessor": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Processors\/Index.html#introspectionprocessor", + "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-introspection", "IntrospectionProcessor" ], "memoryusageprocessor": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Processors\/Index.html#memoryusageprocessor", + "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-memory", "MemoryUsageProcessor" ], "memorypeakusageprocessor": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Processors\/Index.html#memorypeakusageprocessor", + "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-memory-peak", "MemoryPeakUsageProcessor" ], "webprocessor": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Processors\/Index.html#webprocessor", + "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-web", "WebProcessor" ], "custom-log-processors": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Processors\/Index.html#custom-log-processors", + "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-custom", "Custom log processors" ], "quickstart": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Quickstart\/Index.html#quickstart", + "ApiOverview\/Logging\/Quickstart\/Index.html#logging-quickstart", "Quickstart" ], "instantiate-a-logger-for-the-current-class": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Quickstart\/Index.html#instantiate-a-logger-for-the-current-class", + "ApiOverview\/Logging\/Quickstart\/Index.html#logging-quicksart-instantiate-logger", "Instantiate a logger for the current class" ], "set-logging-output": [ @@ -41959,61 +42325,61 @@ "log-writers": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Writers\/Index.html#log-writers", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers", "Log writers" ], "built-in-log-writers": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Writers\/Index.html#built-in-log-writers", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers-builtin", "Built-in log writers" ], "databasewriter": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Writers\/Index.html#databasewriter", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers-database", "DatabaseWriter" ], "filewriter": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Writers\/Index.html#filewriter", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers-FileWriter", "FileWriter" ], "rotatingfilewriter": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Writers\/Index.html#rotatingfilewriter", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers-RotatingFileWriter", "RotatingFileWriter" ], "phperrorlogwriter": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Writers\/Index.html#phperrorlogwriter", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers-php", "PhpErrorLogWriter" ], "syslogwriter": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Writers\/Index.html#syslogwriter", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers-syslog", "SyslogWriter" ], "custom-log-writers": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Writers\/Index.html#custom-log-writers", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers-custom", "Custom log writers" ], "usage-in-a-custom-class": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Writers\/Index.html#usage-in-a-custom-class", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers-usage", "Usage in a custom class" ], "mail-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Mail\/Index.html#mail-api", + "ApiOverview\/Mail\/Index.html#mail", "Mail API" ], "format": [ @@ -42025,49 +42391,55 @@ "fluid-paths": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Mail\/Index.html#fluid-paths", + "ApiOverview\/Mail\/Index.html#mail-configuration-fluid", "Fluid paths" ], + "minimal-example-for-a-fluid-based-email-template": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Mail\/Index.html#mail-configuration-fluid-example", + "Minimal example for a Fluid-based email template" + ], "transport": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Mail\/Index.html#transport", + "ApiOverview\/Mail\/Index.html#mail-configuration-transport", "transport" ], "smtp": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Mail\/Index.html#smtp", + "ApiOverview\/Mail\/Index.html#mail-configuration-smtp", "smtp" ], "sendmail": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Mail\/Index.html#sendmail", + "ApiOverview\/Mail\/Index.html#mail-configuration-sendmail", "sendmail" ], "mbox": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Mail\/Index.html#mbox", + "ApiOverview\/Mail\/Index.html#mail-configuration-mbox", "mbox" ], "classname": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Mail\/Index.html#classname", + "ApiOverview\/Mail\/Index.html#mail-configuration-classname", "<classname>" ], "validators": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Mail\/Index.html#validators", + "ApiOverview\/Mail\/Index.html#mail-validators", "Validators" ], "spooling": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Mail\/Index.html#spooling", + "ApiOverview\/Mail\/Index.html#mail-spooling", "Spooling" ], "spooling-in-memory": [ @@ -42091,49 +42463,49 @@ "how-to-create-and-send-emails": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Mail\/Index.html#how-to-create-and-send-emails", + "ApiOverview\/Mail\/Index.html#mail-create", "How to create and send emails" ], "send-email-with-fluidemail": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Mail\/Index.html#send-email-with-fluidemail", + "ApiOverview\/Mail\/Index.html#mail-fluid-email", "Send email with FluidEmail" ], "set-the-current-request-object-for-fluidemail": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Mail\/Index.html#set-the-current-request-object-for-fluidemail", + "ApiOverview\/Mail\/Index.html#mail-fluid-email-set-request", "Set the current request object for FluidEmail" ], "send-email-with-mailmessage": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Mail\/Index.html#send-email-with-mailmessage", + "ApiOverview\/Mail\/Index.html#mail-mail-message", "Send email with MailMessage" ], "how-to-add-attachments": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Mail\/Index.html#how-to-add-attachments", + "ApiOverview\/Mail\/Index.html#mail-attachments", "How to add attachments" ], "how-to-add-inline-media": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Mail\/Index.html#how-to-add-inline-media", + "ApiOverview\/Mail\/Index.html#mail-inline", "How to add inline media" ], "how-to-set-and-use-a-default-sender": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Mail\/Index.html#how-to-set-and-use-a-default-sender", + "ApiOverview\/Mail\/Index.html#mail-sender", "How to set and use a default sender" ], "register-a-custom-mailer": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Mail\/Index.html#register-a-custom-mailer", + "ApiOverview\/Mail\/Index.html#register-custom-mailer", "Register a custom mailer" ], "psr-14-events-on-sending-messages": [ @@ -42145,13 +42517,13 @@ "symfony-mail-documentation": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Mail\/Index.html#symfony-mail-documentation", + "ApiOverview\/Mail\/Index.html#mail-symfony-mime", "Symfony mail documentation" ], "message-bus-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/MessageBus\/Index.html#message-bus-1", + "ApiOverview\/MessageBus\/Index.html#message-bus", "Message bus" ], "everyday-usage-as-a-developer": [ @@ -42169,19 +42541,19 @@ "register-a-handler": [ "TYPO3 Explained", "13.4", - "ApiOverview\/MessageBus\/Index.html#register-a-handler", + "ApiOverview\/MessageBus\/Index.html#message-bus-handler", "Register a handler" ], "everyday-usage-as-a-system-administrator-integrator": [ "TYPO3 Explained", "13.4", - "ApiOverview\/MessageBus\/Index.html#everyday-usage-as-a-system-administrator-integrator", + "ApiOverview\/MessageBus\/Index.html#message-bus-routing", "\"Everyday\" usage - as a system administrator\/integrator" ], "async-message-handling-the-consume-command": [ "TYPO3 Explained", "13.4", - "ApiOverview\/MessageBus\/Index.html#async-message-handling-the-consume-command", + "ApiOverview\/MessageBus\/Index.html#message-bus-consume-command", "Async message handling - The consume command" ], "advanced-usage": [ @@ -42193,7 +42565,7 @@ "configure-a-custom-transport-senders-receivers": [ "TYPO3 Explained", "13.4", - "ApiOverview\/MessageBus\/Index.html#configure-a-custom-transport-senders-receivers", + "ApiOverview\/MessageBus\/Index.html#message-bus-custom-transport", "Configure a custom transport (Senders\/Receivers)" ], "inmemorytransport-for-testing": [ @@ -42211,7 +42583,7 @@ "mount-points": [ "TYPO3 Explained", "13.4", - "ApiOverview\/MountPoints\/Index.html#mount-points", + "ApiOverview\/MountPoints\/Index.html#MountPoints", "Mount points" ], "simple-usage-example": [ @@ -42229,7 +42601,7 @@ "limitations": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Xclasses\/Index.html#limitations", + "ApiOverview\/Xclasses\/Index.html#xclasses-limitations", "Limitations" ], "see-also": [ @@ -42241,37 +42613,37 @@ "namespaces-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Namespaces\/Index.html#namespaces-1", + "ApiOverview\/Namespaces\/Index.html#namespaces", "Namespaces" ], "core-example": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Namespaces\/Index.html#core-example", + "ApiOverview\/Namespaces\/Index.html#namespaces-example", "Core example" ], "usage-in-extensions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Namespaces\/Index.html#usage-in-extensions", + "ApiOverview\/Namespaces\/Index.html#namespaces-extensions", "Usage in extensions" ], "namespaces-in-extbase": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Namespaces\/Index.html#namespaces-in-extbase", + "ApiOverview\/Namespaces\/Index.html#namespaces-extbase", "Namespaces in Extbase" ], "namespaces-for-test-classes": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Namespaces\/Index.html#namespaces-for-test-classes", + "ApiOverview\/Namespaces\/Index.html#namespaces-test", "Namespaces for test classes" ], "creating-instances": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Namespaces\/Index.html#creating-instances", + "ApiOverview\/Namespaces\/Index.html#namespaces-instances", "Creating Instances" ], "include-and-required": [ @@ -42283,19 +42655,19 @@ "references": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SessionStorageFramework\/SessionStorage.html#references", + "ApiOverview\/SessionStorageFramework\/SessionStorage.html#sessions-references", "References" ], "create-new-page-type": [ "TYPO3 Explained", "13.4", - "ApiOverview\/PageTypes\/CreateNewPageType.html#create-new-page-type", + "ApiOverview\/PageTypes\/CreateNewPageType.html#page-types-example", "Create new Page Type" ], "page-types-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/PageTypes\/Index.html#page-types-1", + "ApiOverview\/PageTypes\/Index.html#page-types", "Page types" ], "the-globals-page-types-array": [ @@ -42313,13 +42685,13 @@ "types-of-pages": [ "TYPO3 Explained", "13.4", - "ApiOverview\/PageTypes\/TypesOfPages.html#types-of-pages", + "ApiOverview\/PageTypes\/TypesOfPages.html#list-of-page-types", "Types of pages" ], "pagination-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Pagination\/Index.html#pagination-1", + "ApiOverview\/Pagination\/Index.html#pagination", "Pagination" ], "sliding-window-pagination": [ @@ -42331,43 +42703,43 @@ "parsing-html-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ParsingHtml\/Index.html#parsing-html-1", + "ApiOverview\/ParsingHtml\/Index.html#parsing-html", "Parsing HTML" ], "extracting-blocks-from-an-html-document": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ParsingHtml\/Index.html#extracting-blocks-from-an-html-document", + "ApiOverview\/ParsingHtml\/Index.html#parsing-html-extraction-blocks", "Extracting Blocks From an HTML Document" ], "extracting-single-tags": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ParsingHtml\/Index.html#extracting-single-tags", + "ApiOverview\/ParsingHtml\/Index.html#parsing-html-extraction-single", "Extracting Single Tags" ], "cleaning-html-content": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ParsingHtml\/Index.html#cleaning-html-content", + "ApiOverview\/ParsingHtml\/Index.html#parsing-html-cleanup", "Cleaning HTML Content" ], "advanced-processing": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ParsingHtml\/Index.html#advanced-processing", + "ApiOverview\/ParsingHtml\/Index.html#parsing-html-advanced", "Advanced Processing" ], "password-hashing-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/PasswordHashing\/Index.html#password-hashing-1", + "ApiOverview\/PasswordHashing\/Index.html#password-hashing", "Password hashing" ], "basic-knowledge": [ "TYPO3 Explained", "13.4", - "ApiOverview\/PasswordHashing\/Index.html#basic-knowledge", + "ApiOverview\/PasswordHashing\/Index.html#password-hashing-basic-knowledge", "Basic knowledge" ], "what-does-it-look-like": [ @@ -42385,7 +42757,7 @@ "available-hash-algorithms": [ "TYPO3 Explained", "13.4", - "ApiOverview\/PasswordHashing\/Index.html#available-hash-algorithms", + "ApiOverview\/PasswordHashing\/Index.html#password-hashing-available-algorithms", "Available hash algorithms" ], "argon2i-argon2id": [ @@ -42427,7 +42799,7 @@ "php-api": [ "TYPO3 Explained", "13.4", - "Configuration\/TypoScript\/PhpApi\/Index.html#php-api", + "Configuration\/TypoScript\/PhpApi\/Index.html#typoscript-syntax-custom-typoscript", "PHP API" ], "creating-a-hash": [ @@ -42487,13 +42859,13 @@ "password-policies-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/PasswordPolicies\/Index.html#password-policies-1", + "ApiOverview\/PasswordPolicies\/Index.html#password-policies", "Password policies" ], "configuring-password-policies": [ "TYPO3 Explained", "13.4", - "ApiOverview\/PasswordPolicies\/Index.html#configuring-password-policies", + "ApiOverview\/PasswordPolicies\/Index.html#configure-password-policies", "Configuring password policies" ], "password-policy-validators": [ @@ -42517,7 +42889,7 @@ "third-party-validators": [ "TYPO3 Explained", "13.4", - "ApiOverview\/PasswordPolicies\/Index.html#third-party-validators", + "ApiOverview\/PasswordPolicies\/Index.html#password-policies-third-party-validators", "Third-party validators" ], "disable-password-policies-globally": [ @@ -42529,7 +42901,7 @@ "custom-password-validator": [ "TYPO3 Explained", "13.4", - "ApiOverview\/PasswordPolicies\/Index.html#custom-password-validator", + "ApiOverview\/PasswordPolicies\/Index.html#password-policies-custom-validator", "Custom password validator" ], "validate-a-password-manually": [ @@ -42547,7 +42919,7 @@ "bootstrapping-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#bootstrapping-1", + "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#bootstrapping", "Bootstrapping" ], "applications": [ @@ -42583,7 +42955,7 @@ "initialization": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#initialization", + "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#backend-initialization", "Initialization" ], "1-initialize-the-class-loader": [ @@ -42619,331 +42991,331 @@ "application-context": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#application-context", + "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#bootstrapping-context", "Application context" ], "custom-contexts": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#custom-contexts", + "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#bootstrapping-context-custom", "Custom contexts" ], "usage-example": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#usage-example", + "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#bootstrapping-context-example", "Usage example" ], "request-life-cycle-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Index.html#request-life-cycle-1", + "ApiOverview\/RequestLifeCycle\/Index.html#request-life-cycle", "Request Life Cycle" ], "middlewares-request-handling": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#middlewares-request-handling", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling", "Middlewares (Request handling)" ], "basic-concept": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#basic-concept", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-basic-concept", "Basic concept" ], "typo3-implementation": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#typo3-implementation", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-typo3-implementation", "TYPO3 implementation" ], "middlewares": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#middlewares", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-middlewares", "Middlewares" ], "using-extbase": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#using-extbase", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-middlewares-extbase", "Using Extbase" ], "middleware-examples": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#middleware-examples", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-middleware-examples", "Middleware examples" ], "returning-a-custom-response": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#returning-a-custom-response", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-returning-custom-response", "Returning a custom response" ], "enriching-the-request": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#enriching-the-request", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-enriching-request", "Enriching the request" ], "enriching-the-response": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#enriching-the-response", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-enriching-response", "Enriching the response" ], "configuring-middlewares": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#configuring-middlewares", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-configuring-middlewares", "Configuring middlewares" ], "override-ordering-of-middlewares": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#override-ordering-of-middlewares", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-configuring-middlewares-override", "Override ordering of middlewares" ], "creating-new-request-response-objects": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#creating-new-request-response-objects", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-psr-17", "Creating new request \/ response objects" ], "executing-http-requests-in-middlewares": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#executing-http-requests-in-middlewares", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-psr-18", "Executing HTTP requests in middlewares" ], "example-usage": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#example-usage", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-psr-18-example", "Example usage" ], "application-type": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/ApplicationType.html#application-type", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/ApplicationType.html#typo3-request-attribute-application-type", "Application type" ], "current-content-object": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/CurrentContentObject.html#current-content-object", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/CurrentContentObject.html#typo3-request-attribute-current-content-object", "Current content object" ], "frontend-cache-collector": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#frontend-cache-collector", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#typo3-request-attribute-frontend-cache-collector", "Frontend cache collector" ], "example-add-a-single-cache-tag": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#example-add-a-single-cache-tag", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#typo3-request-attribute-frontend-cache-collector-example-add-single-cache-tag", "Example: Add a single cache tag" ], "example-add-multiple-cache-tags-with-different-lifetimes": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#example-add-multiple-cache-tags-with-different-lifetimes", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#typo3-request-attribute-frontend-cache-collector-example-add-multiple-cache-tags", "Example: Add multiple cache tags with different lifetimes" ], "example-remove-a-single-cache-tag": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#example-remove-a-single-cache-tag", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#typo3-request-attribute-frontend-cache-collector-example-remove-single-cache-tag", "Example: Remove a single cache tag" ], "example-remove-multiple-cache-tags": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#example-remove-multiple-cache-tags", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#typo3-request-attribute-frontend-cache-collector-example-remove-multiple-cache-tags", "Example: Remove multiple cache tags" ], "example-get-minimum-lifetime-calculated-from-all-cache-tags": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#example-get-minimum-lifetime-calculated-from-all-cache-tags", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#typo3-request-attribute-frontend-cache-collector-example-get-minimum-lifetime", "Example: Get minimum lifetime, calculated from all cache tags" ], "example-get-all-cache-tags": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#example-get-all-cache-tags", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#typo3-request-attribute-frontend-cache-collector-example-get-all-cache-tags", "Example: Get all cache tags" ], "frontend-cache-instruction": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheInstruction.html#frontend-cache-instruction", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheInstruction.html#typo3-request-attribute-frontend-cache-instruction", "Frontend cache instruction" ], "frontend-controller": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendController.html#frontend-controller", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendController.html#typo3-request-attribute-frontend-controller", "Frontend controller" ], "frontend-page-information": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendPageInformation.html#frontend-page-information", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendPageInformation.html#typo3-request-attribute-frontend-page-information", "Frontend page information" ], "frontend-typoscript": [ "TYPO3 Explained", "13.4", - "Configuration\/TypoScript\/PhpApi\/Index.html#frontend-typoscript", + "Configuration\/TypoScript\/PhpApi\/Index.html#typoscript-access_frontend_typoscript", "Frontend TypoScript" ], "frontend-user": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendUser.html#frontend-user", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendUser.html#typo3-request-attribute-frontend-user", "Frontend user" ], "typo3-request-attributes": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Index.html#typo3-request-attributes", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Index.html#request-attributes", "TYPO3 request attributes" ], "language": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Language.html#language", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Language.html#typo3-request-attribute-language", "Language" ], "module": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Module.html#module", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Module.html#typo3-request-attribute-module", "Module" ], "moduledata": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/ModuleData.html#moduledata", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/ModuleData.html#typo3-request-attribute-module-data", "ModuleData" ], "normalized-parameters": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/NormalizedParams.html#normalized-parameters", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/NormalizedParams.html#typo3-request-attribute-normalizedParams", "Normalized parameters" ], "migrating-from-php-generalutility-getindpenv": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/NormalizedParams.html#migrating-from-php-generalutility-getindpenv", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/NormalizedParams.html#GeneralUtility-getIndpEnv-migration", "Migrating from GeneralUtility::getIndpEnv()" ], "route": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Route.html#route", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Route.html#typo3-request-attribute-route", "Route" ], "routing": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Routing.html#routing", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Routing.html#typo3-request-attribute-routing", "Routing" ], "site": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSets.html#site", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-php-api-site", "Site" ], "target": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Target.html#target", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Target.html#typo3-request-attribute-target", "Target" ], "typo3-request-object": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Typo3Request.html#typo3-request-object", + "ApiOverview\/RequestLifeCycle\/Typo3Request.html#typo3-request", "TYPO3 request object" ], "getting-the-psr-7-request-object": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Typo3Request.html#getting-the-psr-7-request-object", + "ApiOverview\/RequestLifeCycle\/Typo3Request.html#getting-typo3-request-object", "Getting the PSR-7 request object" ], "extbase-controller": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Typo3Request.html#extbase-controller", + "ApiOverview\/RequestLifeCycle\/Typo3Request.html#typo3-request-extbase-controller", "Extbase controller" ], "user-function": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Typo3Request.html#user-function", + "ApiOverview\/RequestLifeCycle\/Typo3Request.html#typo3-request-user-function", "User function" ], "data-processor": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Typo3Request.html#data-processor", + "ApiOverview\/RequestLifeCycle\/Typo3Request.html#typo3-request-data-processor", "Data processor" ], "last-resort-global-variable": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Typo3Request.html#last-resort-global-variable", + "ApiOverview\/RequestLifeCycle\/Typo3Request.html#typo3-request-global-variable", "Last resort: global variable" ], "attributes": [ "TYPO3 Explained", "13.4", - "ApiOverview\/RequestLifeCycle\/Typo3Request.html#attributes", + "ApiOverview\/RequestLifeCycle\/Typo3Request.html#typo3-request-attributes", "Attributes" ], "advanced-routing-configuration-for-extensions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#advanced-routing-configuration-for-extensions", + "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#routing-advanced-routing-configuration", "Advanced routing configuration (for extensions)" ], "enhancers": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#enhancers", + "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#routing-advanced-routing-configuration-enhancers", "Enhancers" ], "simple-enhancer": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#simple-enhancer", + "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#routing-simple-enhancer", "Simple enhancer" ], "plugin-enhancer": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#plugin-enhancer", + "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#routing-plugin-enhancer", "Plugin enhancer" ], "extbase-plugin-enhancer": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#extbase-plugin-enhancer", + "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#routing-extbase-plugin-enhancer", "Extbase plugin enhancer" ], "pagetype-decorator": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#pagetype-decorator", + "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#routing-pagetype-decorator", "PageType decorator" ], "staticvaluemapper": [ @@ -42997,7 +43369,7 @@ "collection-of-various-routing-examples": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Routing\/Examples.html#collection-of-various-routing-examples", + "ApiOverview\/Routing\/Examples.html#routing-examples", "Collection of various routing examples" ], "ext-news": [ @@ -43075,7 +43447,7 @@ "extending-routing": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Routing\/ExtendingRouting.html#extending-routing", + "ApiOverview\/Routing\/ExtendingRouting.html#routing-extending-routing", "Extending Routing" ], "writing-custom-aspects": [ @@ -43099,13 +43471,13 @@ "routing-speaking-urls-in-typo3": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Routing\/Index.html#routing-speaking-urls-in-typo3", + "ApiOverview\/Routing\/Index.html#routing", "Routing - \"Speaking URLs\" in TYPO3" ], "introduction-to-routing": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Routing\/Introduction.html#introduction-to-routing", + "ApiOverview\/Routing\/Introduction.html#routing-introduction", "Introduction to Routing" ], "what-is-routing": [ @@ -43117,19 +43489,19 @@ "key-terminology": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Routing\/Introduction.html#key-terminology", + "ApiOverview\/Routing\/Introduction.html#routing-terminology", "Key Terminology" ], "routing-in-typo3": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Routing\/Introduction.html#routing-in-typo3", + "ApiOverview\/Routing\/Introduction.html#routing-terminology-symfony", "Routing in TYPO3" ], "tips": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Routing\/Introduction.html#tips", + "ApiOverview\/Routing\/Introduction.html#routing-tips", "Tips" ], "using-imports-in-yaml-files": [ @@ -43141,7 +43513,7 @@ "page-based-routing": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Routing\/PageBasedRouting.html#page-based-routing", + "ApiOverview\/Routing\/PageBasedRouting.html#routing-page-based-routing", "Page based Routing" ], "upgrading": [ @@ -43153,61 +43525,61 @@ "historical-perspective-on-rte-transformations": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Rte\/HistoricalRteTransformations\/Index.html#historical-perspective-on-rte-transformations", + "ApiOverview\/Rte\/HistoricalRteTransformations\/Index.html#appendix-a", "Historical Perspective on RTE Transformations" ], "properties-and-transformations": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Rte\/HistoricalRteTransformations\/PropertiesAndTransformations.html#properties-and-transformations", + "ApiOverview\/Rte\/HistoricalRteTransformations\/PropertiesAndTransformations.html#appendix-a-properties", "Properties and Transformations" ], "rte-transformations-in-content-elements": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Rte\/HistoricalRteTransformations\/RteTransformationsInContentElements.html#rte-transformations-in-content-elements", + "ApiOverview\/Rte\/HistoricalRteTransformations\/RteTransformationsInContentElements.html#appendix-a-content-elements", "RTE Transformations in Content Elements" ], "conclusion": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Rte\/HistoricalRteTransformations\/RteTransformationsInContentElements.html#conclusion", + "ApiOverview\/Rte\/HistoricalRteTransformations\/RteTransformationsInContentElements.html#appendix-a-content-elements-conclusion", "Conclusion" ], "rich-text-editors-rte": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Rte\/Index.html#rich-text-editors-rte", + "ApiOverview\/Rte\/Index.html#rte", "Rich text editors (RTE)" ], "rich-text-editors-in-the-typo3-backend": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Rte\/InTheBackend\/Index.html#rich-text-editors-in-the-typo3-backend", + "ApiOverview\/Rte\/InTheBackend\/Index.html#rte-backend", "Rich text editors in the TYPO3 backend" ], "plugging-in-a-custom-rte": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Rte\/InTheBackend\/PlugRte.html#plugging-in-a-custom-rte", + "ApiOverview\/Rte\/InTheBackend\/PlugRte.html#rte-plug", "Plugging in a custom RTE" ], "api-for-rich-text-editors": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Rte\/InTheBackend\/PlugRte.html#api-for-rich-text-editors", + "ApiOverview\/Rte\/InTheBackend\/PlugRte.html#rte-api", "API for rich text editors" ], "rich-text-editors-rte-in-the-typo3-frontend": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Rte\/InTheFrontend\/Index.html#rich-text-editors-rte-in-the-typo3-frontend", + "ApiOverview\/Rte\/InTheFrontend\/Index.html#rte-frontend", "Rich Text Editors (RTE) in the TYPO3 frontend" ], "including-a-rich-text-editor-rte-in-the-frontend": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Rte\/InTheFrontend\/Introduction.html#including-a-rich-text-editor-rte-in-the-frontend", + "ApiOverview\/Rte\/InTheFrontend\/Introduction.html#rte-frontend-introduction", "Including a Rich Text Editor (RTE) in the frontend" ], "the-optional-features": [ @@ -43231,7 +43603,7 @@ "rendering-in-the-frontend": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Rte\/RenderingInTheFrontend\/Index.html#rendering-in-the-frontend", + "ApiOverview\/Rte\/RenderingInTheFrontend\/Index.html#rte-rendering-frontend", "Rendering in the Frontend" ], "fluid-templates": [ @@ -43249,62 +43621,62 @@ "ckeditor-rich-text-editor": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Rte\/RteCkeditorSysext.html#ckeditor-rich-text-editor", + "ApiOverview\/Rte\/RteCkeditorSysext.html#rte_ckeditor", "CKEditor Rich Text Editor" ], "rte-transformations": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Rte\/Transformations\/Index.html#rte-transformations", + "ApiOverview\/Rte\/Transformations\/Index.html#transformations", "RTE Transformations" ], "hybrid-modes": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Rte\/Transformations\/Introduction.html#hybrid-modes", + "ApiOverview\/Rte\/Transformations\/Introduction.html#transformations-hybrid-modes", "Hybrid modes" ], "in-the-database": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Rte\/Transformations\/Introduction.html#in-the-database", + "ApiOverview\/Rte\/Transformations\/Introduction.html#transformations-hybrid-modes-db", "In the database" ], "in-rte": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Rte\/Transformations\/Introduction.html#in-rte", + "ApiOverview\/Rte\/Transformations\/Introduction.html#transformations-hybrid-modes-rte", "In RTE" ], "where-transformations-are-performed": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Rte\/Transformations\/Introduction.html#where-transformations-are-performed", + "ApiOverview\/Rte\/Transformations\/Introduction.html#transformations-where", "Where transformations are performed" ], "transformation-overview": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Rte\/Transformations\/Overview.html#transformation-overview", + "ApiOverview\/Rte\/Transformations\/Overview.html#transformations-tsconfig-processing-user", "Transformation overview" ], "transformation-filters": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Rte\/Transformations\/Overview.html#transformation-filters", + "ApiOverview\/Rte\/Transformations\/Overview.html#transformations-overview-filters", "Transformation filters" ], "canonical-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Seo\/CanonicalApi.html#canonical-api", + "ApiOverview\/Seo\/CanonicalApi.html#canonicalapi", "Canonical API" ], - "excluding-arguments-from-the-generation": [ + "including-specific-arguments-for-the-url-generation": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Seo\/CanonicalApi.html#excluding-arguments-from-the-generation", - "Excluding arguments from the generation" + "ApiOverview\/Seo\/CanonicalApi.html#canonicalapi-additionalparameters", + "Including specific arguments for the URL generation" ], "using-an-event-to-define-the-url": [ "TYPO3 Explained", @@ -43312,40 +43684,154 @@ "ApiOverview\/Seo\/CanonicalApi.html#using-an-event-to-define-the-url", "Using an event to define the URL" ], + "suggested-configuration-options-for-improved-seo-in-typo3": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration", + "Suggested configuration options for improved SEO in TYPO3" + ], + "site-configuration": [ + "TYPO3 Explained", + "13.4", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution-kickstart-site", + "Site configuration" + ], + "entry-point": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-site-entry-point", + "Entry Point" + ], + "languages": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/SiteHandling\/Basics.html#languages", + "languages" + ], + "robots-txt": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-site-robots-txt", + "robots.txt" + ], + "static-routes-and-redirects": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-site-routes", + "Static Routes and redirects" + ], + "tags-for-seo-purposes-in-the-html-header": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#config-tags", + "Tags for SEO purposes in the HTML header" + ], + "hreflang-link-tags": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#config-hreflang-tags", + "Hreflang link-tags" + ], + "canonical-tag": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#config-canonical-tag", + "Canonical Tag" + ], + "working-links": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-links", + "Working links" + ], + "typoscript-examples": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/SiteHandling\/UseSiteInConditions.html#typoscript-examples", + "TypoScript examples" + ], + "influencing-the-title-tag-in-the-html-head": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-title", + "Influencing the title tag in the HTML head" + ], + "setting-missing-opengraph-meta-tags": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-typoscript-examples-og", + "Setting missing OpenGraph meta tags" + ], + "setting-fallbacks-for-meta-tags": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-typoscript-examples-metatags", + "Setting fallbacks for meta tags" + ], + "setting-fallbacks-for-og-image-and-twitter-image": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-typoscript-examples-og-fallback", + "Setting fallbacks for og:image and twitter:image" + ], + "setting-defaults-for-the-author-on-meta-tags": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-typoscript-examples-author", + "Setting defaults for the author on meta tags" + ], + "general-seo-recommendations-for-typo3-projects": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/GeneralRecommendations\/Index.html#seo-recommendations", + "General SEO Recommendations for TYPO3 projects" + ], + "recommendations-for-additional-seo-extensions": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/GeneralRecommendations\/Index.html#seo-recommendations-extensions", + "Recommendations for additional SEO extensions" + ], + "recommendations-for-the-description-field": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Seo\/GeneralRecommendations\/Index.html#seo-recommendations-field-description", + "Recommendations for the description field" + ], "search-engine-optimization-seo": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Seo\/Index.html#search-engine-optimization-seo", + "ApiOverview\/Seo\/Index.html#seo", "Search engine optimization (SEO)" ], "metatag-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Seo\/MetaTagApi.html#metatag-api", + "ApiOverview\/Seo\/MetaTagApi.html#metatagapi", "MetaTag API" ], "using-the-metatag-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Seo\/MetaTagApi.html#using-the-metatag-api", + "ApiOverview\/Seo\/MetaTagApi.html#metatagapi-usage", "Using the MetaTag API" ], "creating-your-own-metatagmanager": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Seo\/MetaTagApi.html#creating-your-own-metatagmanager", + "ApiOverview\/Seo\/MetaTagApi.html#metatagapi-create-your-own", "Creating Your Own MetaTagManager" ], "typoscript-and-php": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Seo\/MetaTagApi.html#typoscript-and-php", + "ApiOverview\/Seo\/MetaTagApi.html#metatagapi-configuration", "TypoScript and PHP" ], "page-title-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Seo\/PageTitleApi.html#page-title-api", + "ApiOverview\/Seo\/PageTitleApi.html#pagetitle", "Page title API" ], "create-your-own-page-title-provider": [ @@ -43375,7 +43861,7 @@ "xml-sitemap": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Seo\/XmlSitemap.html#xml-sitemap", + "ApiOverview\/Seo\/XmlSitemap.html#xmlsitemap", "XML sitemap" ], "how-to-access-your-xml-sitemap": [ @@ -43411,7 +43897,7 @@ "change-frequency-and-priority": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Seo\/XmlSitemap.html#change-frequency-and-priority", + "ApiOverview\/Seo\/XmlSitemap.html#xmlsitemap-changefreq-priority", "Change frequency and priority" ], "sitemap-of-records-without-sorting-field": [ @@ -43429,37 +43915,37 @@ "use-a-customized-sitemap-xsl-file": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Seo\/XmlSitemap.html#use-a-customized-sitemap-xsl-file", + "ApiOverview\/Seo\/XmlSitemap.html#sitemap-xslFile", "Use a customized sitemap XSL file" ], "override-service-registration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Services\/Configuration\/RegistrationChanges.html#override-service-registration", + "ApiOverview\/Services\/Configuration\/RegistrationChanges.html#services-configuration-registration-changes", "Override service registration" ], "service-configuration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Services\/Configuration\/ServiceConfiguration.html#service-configuration", + "ApiOverview\/Services\/Configuration\/ServiceConfiguration.html#services-configuration-service-configuration", "Service configuration" ], "service-type-configuration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Services\/Configuration\/ServiceTypeConfiguration.html#service-type-configuration", + "ApiOverview\/Services\/Configuration\/ServiceTypeConfiguration.html#services-configuration-service-type-configuration", "Service type configuration" ], "implementing-a-service": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Services\/Developer\/Implementing.html#implementing-a-service", + "ApiOverview\/Services\/Developer\/Implementing.html#services-developer-implementing", "Implementing a service" ], "service-registration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Services\/Developer\/Implementing.html#service-registration", + "ApiOverview\/Services\/Developer\/Implementing.html#services-developer-implementing-registration", "Service registration" ], "php-class": [ @@ -43471,151 +43957,151 @@ "developer-s-guide": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Services\/Developer\/Index.html#developer-s-guide", + "ApiOverview\/Services\/Developer\/Index.html#services-developer", "Developer's Guide" ], "introducing-a-new-service-type": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Services\/Developer\/NewServiceType.html#introducing-a-new-service-type", + "ApiOverview\/Services\/Developer\/NewServiceType.html#services-developer-new-service-type", "Introducing a new service type" ], "service-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Services\/Developer\/ServiceApi.html#service-api", + "ApiOverview\/Services\/Developer\/ServiceApi.html#services-developer-service-api", "Service API" ], "service-implementation": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Services\/Developer\/ServiceApi.html#service-implementation", + "ApiOverview\/Services\/Developer\/ServiceApi.html#services-developer-service-api-implementation", "Service Implementation" ], "getter-methods-for-service-information": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Services\/Developer\/ServiceApi.html#getter-methods-for-service-information", + "ApiOverview\/Services\/Developer\/ServiceApi.html#services-developer-service-api-getters", "Getter Methods for Service Information" ], "general-service-functions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Services\/Developer\/ServiceApi.html#general-service-functions", + "ApiOverview\/Services\/Developer\/ServiceApi.html#services-developer-service-api-general", "General Service Functions" ], "i-o-tools": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Services\/Developer\/ServiceApi.html#i-o-tools", + "ApiOverview\/Services\/Developer\/ServiceApi.html#services-developer-service-api-io-tools", "I\/O Tools" ], "i-o-input-and-i-o-output": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Services\/Developer\/ServiceApi.html#i-o-input-and-i-o-output", + "ApiOverview\/Services\/Developer\/ServiceApi.html#services-developer-service-api-io-input-output", "I\/O Input and I\/O Output" ], "services-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Services\/Developer\/ServiceRelatedApi.html#services-api", + "ApiOverview\/Services\/Developer\/ServiceRelatedApi.html#services-developer-service-related-api", "Services API" ], "typo3-cms-core-utility-extensionmanagementutility": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Services\/Developer\/ServiceRelatedApi.html#typo3-cms-core-utility-extensionmanagementutility", + "ApiOverview\/Services\/Developer\/ServiceRelatedApi.html#services-developer-service-related-api-extension-management-utility", "\\TYPO3\\CMS\\Core\\Utility\\ExtensionManagementUtility" ], "typo3-cms-core-utility-generalutility": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Services\/Developer\/ServiceRelatedApi.html#typo3-cms-core-utility-generalutility", + "ApiOverview\/Services\/Developer\/ServiceRelatedApi.html#services-developer-service-related-api-general-utility", "\\TYPO3\\CMS\\Core\\Utility\\GeneralUtility" ], "services-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Services\/Index.html#services-1", + "ApiOverview\/Services\/Index.html#services", "Services" ], "reasons-for-using-the-services-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Services\/Introduction\/Index.html#reasons-for-using-the-services-api", + "ApiOverview\/Services\/Introduction\/Index.html#services-introduction-good-reasons-extensibility", "Reasons for using the Services API" ], "using-services": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Services\/UsingServices\/Index.html#using-services", + "ApiOverview\/Services\/UsingServices\/Index.html#services-using-services", "Using Services" ], "calling-a-chain-of-services": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Services\/UsingServices\/ServiceChain.html#calling-a-chain-of-services", + "ApiOverview\/Services\/UsingServices\/ServiceChain.html#services-using-services-service-chain", "Calling a chain of services" ], "service-precedence": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Services\/UsingServices\/ServicePrecedence.html#service-precedence", + "ApiOverview\/Services\/UsingServices\/ServicePrecedence.html#services-using-services-precedence", "Service precedence" ], "simple-usage": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Services\/UsingServices\/SimpleUse.html#simple-usage", + "ApiOverview\/Services\/UsingServices\/SimpleUse.html#services-using-services-simple", "Simple usage" ], "use-with-subtypes": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Services\/UsingServices\/UseWithSubtypes.html#use-with-subtypes", + "ApiOverview\/Services\/UsingServices\/UseWithSubtypes.html#services-using-services-subtypes", "Use with subtypes" ], "session-handling-in-typo3": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SessionStorageFramework\/Index.html#session-handling-in-typo3", + "ApiOverview\/SessionStorageFramework\/Index.html#sessions", "Session handling in TYPO3" ], "session-storage-framework": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SessionStorageFramework\/SessionStorage.html#session-storage-framework", + "ApiOverview\/SessionStorageFramework\/SessionStorage.html#session-storage", "Session storage framework" ], "database-storage-backend": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SessionStorageFramework\/SessionStorage.html#database-storage-backend", + "ApiOverview\/SessionStorageFramework\/SessionStorage.html#sessions-database", "Database storage backend" ], "using-redis-to-store-sessions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SessionStorageFramework\/SessionStorage.html#using-redis-to-store-sessions", + "ApiOverview\/SessionStorageFramework\/SessionStorage.html#sessions-redis", "Using Redis to store sessions" ], "writing-your-own-session-storage": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SessionStorageFramework\/SessionStorage.html#writing-your-own-session-storage", + "ApiOverview\/SessionStorageFramework\/SessionStorage.html#sessions-custom", "Writing your own session storage" ], "php-sessionmanager-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SessionStorageFramework\/SessionStorage.html#php-sessionmanager-api", + "ApiOverview\/SessionStorageFramework\/SessionStorage.html#sessions-manager", "SessionManager API" ], "user-session-management": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SessionStorageFramework\/UserSessionManagement.html#user-session-management", + "ApiOverview\/SessionStorageFramework\/UserSessionManagement.html#session-management", "User session management" ], "public-api-of-php-usersessionmanager": [ @@ -43633,7 +44119,7 @@ "php-api-accessing-site-configuration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/AccessingSiteConfiguration.html#php-api-accessing-site-configuration", + "ApiOverview\/SiteHandling\/AccessingSiteConfiguration.html#sitehandling-php-api", "PHP API: accessing site configuration" ], "accessing-the-current-site-object": [ @@ -43645,19 +44131,19 @@ "finding-a-site-object-with-the-php-sitefinder-class": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/AccessingSiteConfiguration.html#finding-a-site-object-with-the-php-sitefinder-class", + "ApiOverview\/SiteHandling\/AccessingSiteConfiguration.html#sitehandling-sitefinder-object", "Finding a site object with the SiteFinder class" ], "the-php-site-object": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/AccessingSiteConfiguration.html#the-php-site-object", + "ApiOverview\/SiteHandling\/AccessingSiteConfiguration.html#sitehandling-site-object", "The Site object" ], "the-php-sitelanguage-object": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/AccessingSiteConfiguration.html#the-php-sitelanguage-object", + "ApiOverview\/SiteHandling\/AccessingSiteConfiguration.html#sitehandling-sitelanguage-object", "The SiteLanguage object" ], "the-php-sitesettings-object": [ @@ -43669,25 +44155,25 @@ "adding-languages": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#adding-languages", + "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addingLanguages", "Adding Languages" ], "configuration-properties": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#configuration-properties", + "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addingLanguages-properties", "Configuration properties" ], "base-variants": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/BaseVariants.html#base-variants", + "ApiOverview\/SiteHandling\/BaseVariants.html#sitehandling-baseVariants", "Base variants" ], "properties": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/ComposerJson.html#properties", + "ExtensionArchitecture\/FileStructure\/ComposerJson.html#ext-composer-json-properties", "Properties" ], "functions": [ @@ -43699,25 +44185,25 @@ "site-handling-basics": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/Basics.html#site-handling-basics", + "ApiOverview\/SiteHandling\/Basics.html#sitehandling-basics", "Site handling basics" ], "site-configuration-storage": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/Basics.html#site-configuration-storage", + "ApiOverview\/SiteHandling\/Basics.html#site-storage", "Site configuration storage" ], "the-configuration-file": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/Basics.html#the-configuration-file", + "ApiOverview\/SiteHandling\/Basics.html#site-configuration-file", "The configuration file" ], "site-identifier": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/Basics.html#site-identifier", + "ApiOverview\/SiteHandling\/Basics.html#sitehandling-basics-site-identifier", "Site identifier" ], "root-page-id": [ @@ -43729,7 +44215,7 @@ "websitetitle": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/Basics.html#websitetitle", + "ApiOverview\/SiteHandling\/Basics.html#sitehandling-basics-websiteTitle", "websiteTitle" ], "base": [ @@ -43738,12 +44224,6 @@ "ApiOverview\/SiteHandling\/Basics.html#base", "base" ], - "languages": [ - "TYPO3 Explained", - "13.4", - "ApiOverview\/SiteHandling\/Basics.html#languages", - "languages" - ], "errorhandling": [ "TYPO3 Explained", "13.4", @@ -43765,7 +44245,7 @@ "cli-tools-for-site-handling": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/CliTools.html#cli-tools-for-site-handling", + "ApiOverview\/SiteHandling\/CliTools.html#sitehandling-cliTools", "CLI tools for site handling" ], "list-all-configured-sites": [ @@ -43783,19 +44263,19 @@ "creating-a-new-site-configuration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/CreateNew.html#creating-a-new-site-configuration", + "ApiOverview\/SiteHandling\/CreateNew.html#sitehandling-create-new", "Creating a new site configuration" ], "fluid-based-error-handler": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/ErrorHandling\/FluidErrorHandler.html#fluid-based-error-handler", + "ApiOverview\/SiteHandling\/ErrorHandling\/FluidErrorHandler.html#sitehandling-errorHandling_fluid", "Fluid-based error handler" ], "page-based-error-handler": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/ErrorHandling\/PageErrorHandler.html#page-based-error-handler", + "ApiOverview\/SiteHandling\/ErrorHandling\/PageErrorHandler.html#sitehandling-errorHandling_page", "Page-based error handler" ], "internal-error-page": [ @@ -43813,7 +44293,7 @@ "writing-a-custom-page-error-handler": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/ErrorHandling\/WriteCustomErrorHandler.html#writing-a-custom-page-error-handler", + "ApiOverview\/SiteHandling\/ErrorHandling\/WriteCustomErrorHandler.html#sitehandling-customErrorHandler", "Writing a custom page error handler" ], "example-for-a-simple-404-error-handler": [ @@ -43825,7 +44305,7 @@ "extending-site-configuration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/ExtendingSiteConfig.html#extending-site-configuration", + "ApiOverview\/SiteHandling\/ExtendingSiteConfig.html#sitehandling-extendingSiteConfiguration", "Extending site configuration" ], "adding-custom-project-specific-options-to-site-configuration": [ @@ -43843,157 +44323,157 @@ "site-handling": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/Index.html#site-handling", + "ApiOverview\/SiteHandling\/Index.html#sitehandling", "Site handling" ], "site-sets-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-1", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets", "Site sets" ], "site-set-definition": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSets.html#site-set-definition", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-definition", "Site set definition" ], "hidden-site-sets": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSets.html#hidden-site-sets", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-hidden", "Hidden site sets" ], "using-a-site-set-as-dependency-in-a-site": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSets.html#using-a-site-set-as-dependency-in-a-site", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-usage", "Using a site set as dependency in a site" ], "settings-definitions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSets.html#settings-definitions", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-settings-definition", "Settings definitions" ], "override-site-settings-defaults-in-a-subsets": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSets.html#override-site-settings-defaults-in-a-subsets", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-settings", "Override site settings defaults in a subsets" ], "typoscript-provider": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSets.html#typoscript-provider", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-typoscript", "TypoScript provider" ], "page-tsconfig-provider": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSets.html#page-tsconfig-provider", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-page-tsconfig", "Page TSconfig provider" ], "analyzing-the-available-site-sets-via-console-command": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSets.html#analyzing-the-available-site-sets-via-console-command", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-cli", "Analyzing the available site sets via console command" ], "example-using-a-set-within-a-site-package": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSets.html#example-using-a-set-within-a-site-package", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-example-site-package", "Example: Using a set within a site package" ], "defining-the-site-set-with-a-fluid-styled-content-dependency": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSets.html#defining-the-site-set-with-a-fluid-styled-content-dependency", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-example-site-package-set", "Defining the site set with a fluid_styled_content dependency" ], "using-the-site-set-as-dependency-of-a-site": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSets.html#using-the-site-set-as-dependency-of-a-site", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-example-usage", "Using the site set as dependency of a site" ], "loading-typoscript-via-the-site-package-s-set": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSets.html#loading-typoscript-via-the-site-package-s-set", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-example-typoscript", "Loading TypoScript via the site package's set" ], "using-the-site-set-to-override-default-settings": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSets.html#using-the-site-set-to-override-default-settings", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-example-settings", "Using the site set to override default settings" ], "example-providing-a-site-set-in-an-extension": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSets.html#example-providing-a-site-set-in-an-extension", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-example-extension", "Example: Providing a site set in an extension" ], "multiple-site-sets-to-include-separate-functionality": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSets.html#multiple-site-sets-to-include-separate-functionality", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-example-extension-multiple-sets", "Multiple site sets to include separate functionality" ], "site-set-php-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSets.html#site-set-php-api", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-php-api", "Site Set PHP API" ], "setregistry": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSets.html#setregistry", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-php-api-setregistry", "SetRegistry" ], "getsets": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSets.html#getsets", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-php-api-setregistry-getsets", "getSets" ], "hasset": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSets.html#hasset", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-php-api-setregistry-hasset", "hasSet" ], "getset": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSets.html#getset", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-php-api-setregistry-getset", "getSet" ], "setcollector": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSets.html#setcollector", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-php-api-setcollector", "SetCollector" ], "site-settings-definitions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definitions", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition", "Site settings definitions" ], "site-setting-definition-example": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-setting-definition-example", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition-example", "Site setting definition example" ], "site-setting-definition-properties": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-setting-definition-properties", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition-properties", "Site setting definition properties" ], "definition-types": [ @@ -44005,37 +44485,37 @@ "site-settings": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettings.html#site-settings", + "ApiOverview\/SiteHandling\/SiteSettings.html#sitehandling-settings", "Site settings" ], "adding-site-settings": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettings.html#adding-site-settings", + "ApiOverview\/SiteHandling\/SiteSettings.html#sitehandling-settings-add", "Adding site settings" ], "accessing-site-settings-in-page-tsconfig-or-typoscript": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettings.html#accessing-site-settings-in-page-tsconfig-or-typoscript", + "ApiOverview\/SiteHandling\/SiteSettings.html#sitehandling-settings-access", "Accessing site settings in page TSconfig or TypoScript" ], "site-settings-editor-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettingsEditor.html#site-settings-editor-1", + "ApiOverview\/SiteHandling\/SiteSettingsEditor.html#site-settings-editor", "Site settings editor" ], "configuring-the-site-settings-editor": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettingsEditor.html#configuring-the-site-settings-editor", + "ApiOverview\/SiteHandling\/SiteSettingsEditor.html#sitehandling-settings-editor-configuration", "Configuring the site settings editor" ], "static-routes": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/StaticRoutes.html#static-routes", + "ApiOverview\/SiteHandling\/StaticRoutes.html#sitehandling-staticRoutes", "Static routes" ], "yaml-statictext": [ @@ -44059,15 +44539,9 @@ "using-site-configuration-in-conditions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/UseSiteInConditions.html#using-site-configuration-in-conditions", + "ApiOverview\/SiteHandling\/UseSiteInConditions.html#sitehandling-inConditions", "Using site configuration in conditions" ], - "typoscript-examples": [ - "TYPO3 Explained", - "13.4", - "ApiOverview\/SiteHandling\/UseSiteInConditions.html#typoscript-examples", - "TypoScript examples" - ], "example-for-ext-form": [ "TYPO3 Explained", "13.4", @@ -44077,7 +44551,7 @@ "using-site-configuration-in-tca-foreign-table-where": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/UseSiteInTCA.html#using-site-configuration-in-tca-foreign-table-where", + "ApiOverview\/SiteHandling\/UseSiteInTCA.html#sitehandling-inTCA", "Using site configuration in TCA foreign_table_where" ], "tca-foreign-table-where": [ @@ -44089,7 +44563,7 @@ "using-site-configuration-in-typoscript-and-fluid-templates": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/UseSiteInTypoScript.html#using-site-configuration-in-typoscript-and-fluid-templates", + "ApiOverview\/SiteHandling\/UseSiteInTypoScript.html#sitehandling-inTypoScript", "Using site configuration in TypoScript and Fluid templates" ], "gettext": [ @@ -44101,25 +44575,25 @@ "non-extbase-fluid-view": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/UseSiteInTypoScript.html#non-extbase-fluid-view", + "ApiOverview\/SiteHandling\/UseSiteInTypoScript.html#sitehandling-non-extbase-fluid", "Non-Extbase Fluid view" ], "using-environment-variables-in-the-site-configuration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/UsingEnvVars.html#using-environment-variables-in-the-site-configuration", + "ApiOverview\/SiteHandling\/UsingEnvVars.html#sitehandling-using-env-vars", "Using environment variables in the site configuration" ], "soft-references-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SoftReferences\/Index.html#soft-references-1", + "ApiOverview\/SoftReferences\/Index.html#soft-references", "Soft references" ], "default-soft-reference-parsers": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SoftReferences\/Index.html#default-soft-reference-parsers", + "ApiOverview\/SoftReferences\/Index.html#soft-references-default-parsers", "Default soft reference parsers" ], "property-php-content": [ @@ -44137,7 +44611,7 @@ "user-defined-soft-reference-parsers": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SoftReferences\/Index.html#user-defined-soft-reference-parsers", + "ApiOverview\/SoftReferences\/Index.html#soft-references-custom-parsers", "User-defined soft reference parsers" ], "using-the-soft-reference-parser": [ @@ -44149,7 +44623,7 @@ "symfony-expression-language-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SymfonyExpressionLanguage\/Index.html#symfony-expression-language-1", + "ApiOverview\/SymfonyExpressionLanguage\/Index.html#symfony-expression-language", "Symfony expression language" ], "main-api": [ @@ -44161,67 +44635,49 @@ "registering-new-provider": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SymfonyExpressionLanguage\/Index.html#registering-new-provider", + "ApiOverview\/SymfonyExpressionLanguage\/Index.html#sel-ts-registering-new-provider-within-extension", "Registering new provider" ], "implementing-a-provider": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SymfonyExpressionLanguage\/Index.html#implementing-a-provider", + "ApiOverview\/SymfonyExpressionLanguage\/Index.html#sel-ts-implement-provider-within-extension", "Implementing a provider" ], "additional-variables": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SymfonyExpressionLanguage\/Index.html#additional-variables", + "ApiOverview\/SymfonyExpressionLanguage\/Index.html#sel-ts-additional-variables", "Additional variables" ], "additional-functions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SymfonyExpressionLanguage\/Index.html#additional-functions", + "ApiOverview\/SymfonyExpressionLanguage\/Index.html#sel-ts-additional-functions", "Additional functions" ], - "system-overview-1": [ - "TYPO3 Explained", - "13.4", - "ApiOverview\/SystemOverview\/Index.html#system-overview-1", - "System Overview" - ], - "application-layer": [ - "TYPO3 Explained", - "13.4", - "ApiOverview\/SystemOverview\/Index.html#application-layer", - "Application layer" - ], - "user-interface-layer": [ - "TYPO3 Explained", - "13.4", - "ApiOverview\/SystemOverview\/Index.html#user-interface-layer", - "User interface layer" - ], "system-registry": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SystemRegistry\/Index.html#system-registry", + "ApiOverview\/SystemRegistry\/Index.html#registry", "System registry" ], "the-registry-api": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SystemRegistry\/Index.html#the-registry-api", + "ApiOverview\/SystemRegistry\/Index.html#registry-api", "The registry API" ], "the-registry-table-sys-registry": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SystemRegistry\/Index.html#the-registry-table-sys-registry", + "ApiOverview\/SystemRegistry\/Index.html#registry-table", "The registry table (sys_registry)" ], "tsfe-1": [ "TYPO3 Explained", "13.4", - "ApiOverview\/TSFE\/Index.html#tsfe-1", + "ApiOverview\/TSFE\/Index.html#tsfe", "TSFE" ], "what-is-tsfe": [ @@ -44245,43 +44701,43 @@ "access-contentobjectrenderer": [ "TYPO3 Explained", "13.4", - "ApiOverview\/TSFE\/Index.html#access-contentobjectrenderer", + "ApiOverview\/TSFE\/Index.html#tsfe_ContentObjectRenderer", "Access ContentObjectRenderer" ], "access-current-page-id": [ "TYPO3 Explained", "13.4", - "ApiOverview\/TSFE\/Index.html#access-current-page-id", + "ApiOverview\/TSFE\/Index.html#tsfe_pageId", "Access current page ID" ], "access-frontend-user-information": [ "TYPO3 Explained", "13.4", - "ApiOverview\/TSFE\/Index.html#access-frontend-user-information", + "ApiOverview\/TSFE\/Index.html#tsfe_frontendUser", "Access frontend user information" ], "get-current-base-url": [ "TYPO3 Explained", "13.4", - "ApiOverview\/TSFE\/Index.html#get-current-base-url", + "ApiOverview\/TSFE\/Index.html#tsfe_baseURL", "Get current base URL" ], "webhooks-and-reactions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Webhooks\/Index.html#webhooks-and-reactions", + "ApiOverview\/Webhooks\/Index.html#webhooks", "Webhooks and reactions" ], "versioning-and-workspaces": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Workspaces\/Index.html#versioning-and-workspaces", + "ApiOverview\/Workspaces\/Index.html#workspaces", "Versioning and Workspaces" ], "frontend-challenges-in-general": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Workspaces\/Index.html#frontend-challenges-in-general", + "ApiOverview\/Workspaces\/Index.html#workspaces-frontend", "Frontend challenges in general" ], "summary": [ @@ -44293,49 +44749,49 @@ "frontend-implementation-guidelines": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Workspaces\/Index.html#frontend-implementation-guidelines", + "ApiOverview\/Workspaces\/Index.html#workspaces-frontend-guidelines", "Frontend implementation guidelines" ], "frontend-scenarios-impossible-to-preview": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Workspaces\/Index.html#frontend-scenarios-impossible-to-preview", + "ApiOverview\/Workspaces\/Index.html#workspaces-frontend-problems", "Frontend scenarios impossible to preview" ], "backend-challenges": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Workspaces\/Index.html#backend-challenges", + "ApiOverview\/Workspaces\/Index.html#workspaces-backend", "Backend challenges" ], "workspace-related-api-for-backend-modules": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Workspaces\/Index.html#workspace-related-api-for-backend-modules", + "ApiOverview\/Workspaces\/Index.html#workspaces-backend-api", "Workspace-related API for backend modules" ], "backend-module-access": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Workspaces\/Index.html#backend-module-access", + "ApiOverview\/Workspaces\/Index.html#workspaces-backend-acess", "Backend module access" ], "detecting-current-workspace": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Workspaces\/Index.html#detecting-current-workspace", + "ApiOverview\/Workspaces\/Index.html#workspaces-detection", "Detecting current workspace" ], "using-datahandler-with-workspaces": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Workspaces\/Index.html#using-datahandler-with-workspaces", + "ApiOverview\/Workspaces\/Index.html#workspaces-tcemain", "Using DataHandler with workspaces" ], "moving-in-workspaces": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Workspaces\/Index.html#moving-in-workspaces", + "ApiOverview\/Workspaces\/Index.html#workspaces-moving", "Moving in workspaces" ], "persistence-in-depth-scenarios": [ @@ -44407,31 +44863,31 @@ "xclasses-extending-classes": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Xclasses\/Index.html#xclasses-extending-classes", + "ApiOverview\/Xclasses\/Index.html#xclasses", "XCLASSes (Extending Classes)" ], "how-does-it-work": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Xclasses\/Index.html#how-does-it-work", + "ApiOverview\/Xclasses\/Index.html#xclasses-mechanism", "How does it work?" ], "declaration": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Xclasses\/Index.html#declaration", + "ApiOverview\/Xclasses\/Index.html#xclasses-declaration", "Declaration" ], "coding-practices": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Xclasses\/Index.html#coding-practices", + "ApiOverview\/Xclasses\/Index.html#xclasses-coding", "Coding practices" ], "javascript-coding-guidelines": [ "TYPO3 Explained", "13.4", - "CodingGuidelines\/CglJavaScript\/Index.html#javascript-coding-guidelines", + "CodingGuidelines\/CglJavaScript\/Index.html#cgl-javascript", "JavaScript coding guidelines" ], "directories-and-filenames": [ @@ -44443,7 +44899,7 @@ "file-structure": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Index.html#file-structure", + "ExtensionArchitecture\/FileStructure\/Index.html#extension-reserved-folders-legacy", "File structure" ], "copyright-notice": [ @@ -44473,7 +44929,7 @@ "general-requirements-for-php-files": [ "TYPO3 Explained", "13.4", - "CodingGuidelines\/CglPhp\/GeneralRequirementsForPhpFiles.html#general-requirements-for-php-files", + "CodingGuidelines\/CglPhp\/GeneralRequirementsForPhpFiles.html#cgl-general-requirements-for-php-files", "General requirements for PHP files" ], "typo3-coding-standards": [ @@ -44515,13 +44971,13 @@ "php-coding-guidelines": [ "TYPO3 Explained", "13.4", - "CodingGuidelines\/CglPhp\/Index.html#php-coding-guidelines", + "CodingGuidelines\/CglPhp\/Index.html#cgl-php", "PHP coding guidelines" ], "php-syntax-formatting": [ "TYPO3 Explained", "13.4", - "CodingGuidelines\/CglPhp\/PhpSyntaxFormatting.html#php-syntax-formatting", + "CodingGuidelines\/CglPhp\/PhpSyntaxFormatting.html#cgl-php-syntax-formatting", "PHP syntax formatting" ], "identifiers": [ @@ -44599,7 +45055,7 @@ "using-phpdoc": [ "TYPO3 Explained", "13.4", - "CodingGuidelines\/CglPhp\/UsingPhpdoc.html#using-phpdoc", + "CodingGuidelines\/CglPhp\/UsingPhpdoc.html#cgl-using-phpdoc", "Using phpDoc" ], "function-information-block": [ @@ -44617,7 +45073,7 @@ "restructuredtext-rest": [ "TYPO3 Explained", "13.4", - "CodingGuidelines\/CglRest\/Index.html#restructuredtext-rest", + "CodingGuidelines\/CglRest\/Index.html#cgl-rest", "reStructuredText (reST)" ], "directory-and-file-names": [ @@ -44629,13 +45085,13 @@ "tsconfig-coding-guidelines": [ "TYPO3 Explained", "13.4", - "CodingGuidelines\/CglTsConfig.html#tsconfig-coding-guidelines", + "CodingGuidelines\/CglTsConfig.html#cgl-tsconfig", "TSconfig coding guidelines" ], "typescript-coding-guidelines": [ "TYPO3 Explained", "13.4", - "CodingGuidelines\/CglTypeScript\/Index.html#typescript-coding-guidelines", + "CodingGuidelines\/CglTypeScript\/Index.html#cgl-typescript", "TypeScript coding guidelines" ], "directories-and-file-names": [ @@ -44647,19 +45103,19 @@ "typoscript-coding-guidelines": [ "TYPO3 Explained", "13.4", - "CodingGuidelines\/CglTypoScript\/Index.html#typoscript-coding-guidelines", + "CodingGuidelines\/CglTypoScript\/Index.html#cgl-typoscript", "TypoScript coding guidelines" ], "xliff-coding-guidelines": [ "TYPO3 Explained", "13.4", - "CodingGuidelines\/CglXliff\/Index.html#xliff-coding-guidelines", + "CodingGuidelines\/CglXliff\/Index.html#cgl-xliff", "XLIFF coding guidelines" ], "language-keys": [ "TYPO3 Explained", "13.4", - "CodingGuidelines\/CglXliff\/Index.html#language-keys", + "CodingGuidelines\/CglXliff\/Index.html#cgl-xliff-language-keys", "Language keys" ], "defining-localized-strings": [ @@ -44671,277 +45127,61 @@ "yaml-coding-guidelines": [ "TYPO3 Explained", "13.4", - "CodingGuidelines\/CglYaml.html#yaml-coding-guidelines", + "CodingGuidelines\/CglYaml.html#cgl-yaml", "YAML coding guidelines" ], - "accessing-the-database": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/AccessingTheDatabase.html#accessing-the-database", - "Accessing the database" - ], - "namespaces-and-class-names-of-user-files": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/ClassNamesOfUserFiles.html#namespaces-and-class-names-of-user-files", - "Namespaces and class names of user files" - ], - "handling-deprecations": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/HandlingDeprecations.html#handling-deprecations", - "Handling deprecations" - ], - "php-best-practices": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/Index.html#php-best-practices", - "PHP best practices" - ], - "named-arguments": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#named-arguments", - "Named arguments" - ], - "named-arguments-in-public-apis": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#named-arguments-in-public-apis", - "Named arguments in public APIs" - ], - "utilizing-named-arguments-in-extensions": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#utilizing-named-arguments-in-extensions", - "Utilizing named arguments in extensions" - ], - "typo3-core-development": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#typo3-core-development", - "TYPO3 Core development" - ], - "leveraging-named-arguments-in-pcpp-value-objects": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#leveraging-named-arguments-in-pcpp-value-objects", - "Leveraging Named Arguments in PCPP Value Objects" - ], - "invoking-2nd-party-non-core-library-dependency-methods": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#invoking-2nd-party-non-core-library-dependency-methods", - "Invoking 2nd-party (non-Core library) dependency methods" - ], - "invoking-core-api": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#invoking-core-api", - "Invoking Core API" - ], - "utilizing-named-arguments-in-phpunit-test-data-providers": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#utilizing-named-arguments-in-phpunit-test-data-providers", - "Utilizing named arguments in PHPUnit test data providers" - ], - "leveraging-named-arguments-when-invoking-php-functions": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#leveraging-named-arguments-when-invoking-php-functions", - "Leveraging named arguments when invoking PHP functions" - ], - "singletons": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/Singletons.html#singletons", - "Singletons" - ], - "static-methods": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/StaticMethods.html#static-methods", - "Static methods" - ], - "unit-tests": [ - "TYPO3 Explained", - "13.4", - "Testing\/ExtensionTesting.html#unit-tests", - "Unit tests" - ], - "unit-test-files": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/UnitTests.html#unit-test-files", - "Unit test files" - ], - "using-unit-tests": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/UnitTests.html#using-unit-tests", - "Using unit tests" - ], - "adding-unit-tests": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/UnitTests.html#adding-unit-tests", - "Adding unit tests" - ], - "conventions-for-unit-tests": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/CodingBestPractices\/UnitTests.html#conventions-for-unit-tests", - "Conventions for unit tests" - ], "coding-guidelines": [ "TYPO3 Explained", "13.4", - "CodingGuidelines\/Index.html#coding-guidelines", + "CodingGuidelines\/Index.html#cgl", "Coding guidelines" ], "introduction-to-the-typo3-coding-guidelines-cgl": [ "TYPO3 Explained", "13.4", - "CodingGuidelines\/Introduction.html#introduction-to-the-typo3-coding-guidelines-cgl", + "CodingGuidelines\/Introduction.html#cgl-introduction", "Introduction to the TYPO3 coding guidelines (CGL)" ], "the-cgl-as-a-means-of-quality-assurance": [ "TYPO3 Explained", "13.4", - "CodingGuidelines\/Introduction.html#the-cgl-as-a-means-of-quality-assurance", + "CodingGuidelines\/Introduction.html#cgl-quality-assurance", "The CGL as a means of quality assurance" ], "general-recommendations": [ "TYPO3 Explained", "13.4", - "CodingGuidelines\/Introduction.html#general-recommendations", + "CodingGuidelines\/Introduction.html#cgl-general-recommendations", "General recommendations" ], "setup-ide-editor": [ "TYPO3 Explained", "13.4", - "CodingGuidelines\/Introduction.html#setup-ide-editor", + "CodingGuidelines\/Introduction.html#cgl-ide", "Setup IDE \/ editor" ], "editorconfig": [ "TYPO3 Explained", "13.4", - "CodingGuidelines\/Introduction.html#editorconfig", + "CodingGuidelines\/Introduction.html#cgl-editorconfig", ".editorconfig" ], - "php-architecture": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/Index.html#php-architecture", - "PHP architecture" - ], - "characteristics": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/Services.html#characteristics", - "Characteristics" - ], - "good-examples": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html#good-examples", - "Good examples" - ], - "bad-examples": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html#bad-examples", - "Bad examples" - ], - "static-methods-static-classes-utility-classes": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/StaticMethods.html#static-methods-static-classes-utility-classes", - "Static Methods, static Classes, Utility Classes" - ], - "characteristica": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/Traits.html#characteristica", - "Characteristica" - ], - "red-flags": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/StaticMethods.html#red-flags", - "Red Flags" - ], - "traits": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/Traits.html#traits", - "Traits" - ], - "working-with-exceptions": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html#working-with-exceptions", - "Working with exceptions" - ], - "exception-types": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html#exception-types", - "Exception types" - ], - "typical-cases-for-exceptions-that-are-designed-to-be-caught": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html#typical-cases-for-exceptions-that-are-designed-to-be-caught", - "Typical cases for exceptions that are designed to be caught" - ], - "typical-cases-for-exceptions-that-should-not-be-caught": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html#typical-cases-for-exceptions-that-should-not-be-caught", - "Typical cases for exceptions that should not be caught" - ], - "typical-exception-arguments": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html#typical-exception-arguments", - "Typical exception arguments" - ], - "exception-inheritance": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html#exception-inheritance", - "Exception inheritance" - ], - "extending-exceptions": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html#extending-exceptions", - "Extending exceptions" - ], - "further-readings": [ - "TYPO3 Explained", - "13.4", - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html#further-readings", - "Further readings" - ], "application-context-1": [ "TYPO3 Explained", "13.4", - "Configuration\/ApplicationContext.html#application-context-1", + "Configuration\/ApplicationContext.html#application-context", "Application Context" ], "default-applicationcontext": [ "TYPO3 Explained", "13.4", - "Configuration\/ApplicationContext.html#default-applicationcontext", + "Configuration\/ApplicationContext.html#default-application-context", "Default ApplicationContext" ], "set-the-applicationcontext": [ "TYPO3 Explained", "13.4", - "Configuration\/ApplicationContext.html#set-the-applicationcontext", + "Configuration\/ApplicationContext.html#set-application-context", "Set the ApplicationContext" ], "nginx": [ @@ -44953,7 +45193,7 @@ "env-composer-only": [ "TYPO3 Explained", "13.4", - "Configuration\/ApplicationContext.html#env-composer-only", + "Configuration\/ApplicationContext.html#set-application-context-env", ".env (Composer only)" ], "env": [ @@ -44965,79 +45205,73 @@ "autoloader-composer-only": [ "TYPO3 Explained", "13.4", - "Configuration\/ApplicationContext.html#autoloader-composer-only", + "Configuration\/ApplicationContext.html#set-application-context-autoloader", "AutoLoader (Composer only)" ], "php-ini": [ "TYPO3 Explained", "13.4", - "Configuration\/ApplicationContext.html#php-ini", + "Configuration\/ApplicationContext.html#set-application-context-php-ini", "php.ini" ], "index-php": [ "TYPO3 Explained", "13.4", - "Configuration\/ApplicationContext.html#index-php", + "Configuration\/ApplicationContext.html#set-application-context-index-php", "index.php" ], "sub-applicationcontext": [ "TYPO3 Explained", "13.4", - "Configuration\/ApplicationContext.html#sub-applicationcontext", + "Configuration\/ApplicationContext.html#sub-application-context", "Sub ApplicationContext" ], "root-applicationcontext": [ "TYPO3 Explained", "13.4", - "Configuration\/ApplicationContext.html#root-applicationcontext", + "Configuration\/ApplicationContext.html#root-application-context", "Root ApplicationContext" ], "parent-applicationcontext": [ "TYPO3 Explained", "13.4", - "Configuration\/ApplicationContext.html#parent-applicationcontext", + "Configuration\/ApplicationContext.html#parent-application-context", "Parent ApplicationContext" ], "reading-the-applicationcontext": [ "TYPO3 Explained", "13.4", - "Configuration\/ApplicationContext.html#reading-the-applicationcontext", + "Configuration\/ApplicationContext.html#read-application-context", "Reading the ApplicationContext" ], - "site-configuration": [ - "TYPO3 Explained", - "13.4", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#site-configuration", - "Site configuration" - ], "configuration-presets": [ "TYPO3 Explained", "13.4", - "Configuration\/ApplicationContext.html#configuration-presets", + "Configuration\/ApplicationContext.html#application-context-configuration-presets", "Configuration presets" ], "backend-entry-point-1": [ "TYPO3 Explained", "13.4", - "Configuration\/BackendEntryPoint\/Index.html#backend-entry-point-1", + "Configuration\/BackendEntryPoint\/Index.html#backend-entry-point", "Backend entry point" ], "configure-a-specific-path": [ "TYPO3 Explained", "13.4", - "Configuration\/BackendEntryPoint\/Index.html#configure-a-specific-path", + "Configuration\/BackendEntryPoint\/Index.html#backend-entry-point-specific-path", "Configure a specific path" ], "use-a-distinct-subdomain": [ "TYPO3 Explained", "13.4", - "Configuration\/BackendEntryPoint\/Index.html#use-a-distinct-subdomain", + "Configuration\/BackendEntryPoint\/Index.html#backend-entry-point-specific-subdomain", "Use a distinct subdomain" ], "legacy-free-installation": [ "TYPO3 Explained", "13.4", - "Configuration\/BackendEntryPoint\/Index.html#legacy-free-installation", + "Configuration\/BackendEntryPoint\/Index.html#backend-entry-point-legacy-free", "Legacy-free installation" ], "apache-configuration": [ @@ -45055,19 +45289,19 @@ "configuration-files-1": [ "TYPO3 Explained", "13.4", - "Configuration\/ConfigurationFiles.html#configuration-files-1", + "Configuration\/ConfigurationFiles.html#configuration-files", "Configuration files" ], "history": [ "TYPO3 Explained", "13.4", - "Testing\/History.html#history", + "Testing\/History.html#testing-history", "History" ], "configuration-module": [ "TYPO3 Explained", "13.4", - "Configuration\/ConfigurationModule\/Index.html#configuration-module", + "Configuration\/ConfigurationModule\/Index.html#config-module", "Configuration module" ], "extending-the-configuration-module": [ @@ -45097,13 +45331,13 @@ "blinding-configuration-options": [ "TYPO3 Explained", "13.4", - "Configuration\/ConfigurationModule\/Index.html#blinding-configuration-options", + "Configuration\/ConfigurationModule\/Index.html#config-module-blind-options", "Blinding configuration options" ], "configuration-overview": [ "TYPO3 Explained", "13.4", - "Configuration\/ConfigurationOverview.html#configuration-overview", + "Configuration\/ConfigurationOverview.html#config-overview", "Configuration overview" ], "configuration-overview-files": [ @@ -45133,7 +45367,7 @@ "configuration-methods": [ "TYPO3 Explained", "13.4", - "Configuration\/Glossary.html#configuration-methods", + "Configuration\/Glossary.html#classification-config-methods", "Configuration methods" ], "ref-tsconfig-t3tsref-typoscript-syntax-using-setting": [ @@ -45169,7 +45403,7 @@ "feature-toggles-1": [ "TYPO3 Explained", "13.4", - "Configuration\/FeatureToggles.html#feature-toggles-1", + "Configuration\/FeatureToggles.html#feature-toggles", "Feature toggles" ], "naming-of-feature-toggles": [ @@ -45181,19 +45415,19 @@ "using-the-api-as-extension-author": [ "TYPO3 Explained", "13.4", - "Configuration\/FeatureToggles.html#using-the-api-as-extension-author", + "Configuration\/FeatureToggles.html#feature-toggles-api", "Using the API as extension author" ], "core-feature-toggles": [ "TYPO3 Explained", "13.4", - "Configuration\/FeatureToggles.html#core-feature-toggles", + "Configuration\/FeatureToggles.html#feature-toggles-core", "Core feature toggles" ], "enable-disable-feature-toggle": [ "TYPO3 Explained", "13.4", - "Configuration\/FeatureToggles.html#enable-disable-feature-toggle", + "Configuration\/FeatureToggles.html#feature-toggles-enable", "Enable \/ disable feature toggle" ], "feature-toggles-in-typoscript": [ @@ -45205,31 +45439,31 @@ "feature-toggles-in-fluid": [ "TYPO3 Explained", "13.4", - "Configuration\/FeatureToggles.html#feature-toggles-in-fluid", + "Configuration\/FeatureToggles.html#feature-toggles-viewhelper", "Feature toggles in Fluid" ], "flag-files-1": [ "TYPO3 Explained", "13.4", - "Configuration\/FlagFiles\/Index.html#flag-files-1", + "Configuration\/FlagFiles\/Index.html#flag-files", "Flag files" ], "globals": [ "TYPO3 Explained", "13.4", - "Configuration\/GlobalVariables.html#globals", + "Configuration\/GlobalVariables.html#globals-variables", "$GLOBALS" ], "exploring-global-variables": [ "TYPO3 Explained", "13.4", - "Configuration\/GlobalVariables.html#exploring-global-variables", + "Configuration\/GlobalVariables.html#globals-exploring", "Exploring global variables" ], "glossary": [ "TYPO3 Explained", "13.4", - "Configuration\/Glossary.html#glossary", + "Configuration\/Glossary.html#configuration-classification", "Glossary" ], "configuration-vs-settings": [ @@ -45259,97 +45493,97 @@ "configuration-1": [ "TYPO3 Explained", "13.4", - "Configuration\/Index.html#configuration-1", + "Configuration\/Index.html#configuration", "Configuration" ], "be-backend-configuration": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#be-backend-configuration", + "Configuration\/Typo3ConfVars\/BE.html#typo3ConfVars_be", "BE - backend configuration" ], "db-database-connections": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/DB.html#db-database-connections", + "Configuration\/Typo3ConfVars\/DB.html#typo3ConfVars_db", "DB - Database connections" ], "ext-extension-manager-configuration": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/EXT.html#ext-extension-manager-configuration", + "Configuration\/Typo3ConfVars\/EXT.html#typo3ConfVars_ext", "EXT - Extension manager configuration" ], "fe-frontend-configuration": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#fe-frontend-configuration", + "Configuration\/Typo3ConfVars\/FE.html#typo3ConfVars_fe", "FE - frontend configuration" ], "gfx-graphics-configuration": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/GFX.html#gfx-graphics-configuration", + "Configuration\/Typo3ConfVars\/GFX.html#typo3ConfVars_gfx", "GFX - graphics configuration" ], "http-tune-requests": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/HTTP.html#http-tune-requests", + "Configuration\/Typo3ConfVars\/HTTP.html#typo3ConfVars_http", "HTTP - tune requests" ], "typo3-conf-vars": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/Index.html#typo3-conf-vars", + "Configuration\/Typo3ConfVars\/Index.html#typo3ConfVars", "TYPO3_CONF_VARS" ], "file-file-config-system-settings-php": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/Index.html#file-file-config-system-settings-php", + "Configuration\/Typo3ConfVars\/Index.html#typo3ConfVars-localConfiguration", "File config\/system\/settings.php" ], "file-config-system-additional-php": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/Index.html#file-config-system-additional-php", + "Configuration\/Typo3ConfVars\/Index.html#typo3ConfVars-additionalConfiguration", "File config\/system\/additional.php" ], "file-defaultconfiguration-php": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/Index.html#file-defaultconfiguration-php", + "Configuration\/Typo3ConfVars\/Index.html#typo3ConfVars-defaultConfiguration", "File DefaultConfiguration.php" ], "log-logging-configuration": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/LOG.html#log-logging-configuration", + "Configuration\/Typo3ConfVars\/LOG.html#typo3ConfVars_log", "LOG - Logging configuration" ], "mail-settings": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#mail-settings", + "Configuration\/Typo3ConfVars\/MAIL.html#typo3ConfVars_mail", "MAIL settings" ], "sys-system-configuration": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#sys-system-configuration", + "Configuration\/Typo3ConfVars\/SYS.html#typo3ConfVars_sys", "SYS - System configuration" ], "global-meta-information-about-typo3": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3Information.html#global-meta-information-about-typo3", + "Configuration\/Typo3Information.html#typo3Information", "Global meta information about TYPO3" ], "general-information": [ "TYPO3 Explained", "13.4", - "Security\/GeneralInformation\/Index.html#general-information", + "Security\/GeneralInformation\/Index.html#security-general-information", "General Information" ], "version-information": [ @@ -45361,7 +45595,7 @@ "typoscript-1": [ "TYPO3 Explained", "13.4", - "Configuration\/TypoScript\/Index.html#typoscript-1", + "Configuration\/TypoScript\/Index.html#typoscript", "TypoScript" ], "what-is-typoscript": [ @@ -45373,73 +45607,73 @@ "typoscript-parsing": [ "TYPO3 Explained", "13.4", - "Configuration\/TypoScript\/Introduction\/Index.html#typoscript-parsing", + "Configuration\/TypoScript\/Introduction\/Index.html#typoscript-syntax-parsed-php-array", "TypoScript parsing" ], "myths-and-faq": [ "TYPO3 Explained", "13.4", - "Configuration\/TypoScript\/MythsFaq\/Index.html#myths-and-faq", + "Configuration\/TypoScript\/MythsFaq\/Index.html#typoscript-syntax-details", "Myths and FAQ" ], "myth-typoscript-is-a-scripting-language": [ "TYPO3 Explained", "13.4", - "Configuration\/TypoScript\/MythsFaq\/Index.html#myth-typoscript-is-a-scripting-language", + "Configuration\/TypoScript\/MythsFaq\/Index.html#typoscript-syntax-myth-scripting-language", "Myth: \"TypoScript Is a scripting language\"" ], "myth-typoscript-has-the-same-syntax-as-javascript": [ "TYPO3 Explained", "13.4", - "Configuration\/TypoScript\/MythsFaq\/Index.html#myth-typoscript-has-the-same-syntax-as-javascript", + "Configuration\/TypoScript\/MythsFaq\/Index.html#typoscript-syntax-myth-javascript", "Myth: \"TypoScript has the same syntax as JavaScript\"" ], "myth-typoscript-is-a-proprietary-standard": [ "TYPO3 Explained", "13.4", - "Configuration\/TypoScript\/MythsFaq\/Index.html#myth-typoscript-is-a-proprietary-standard", + "Configuration\/TypoScript\/MythsFaq\/Index.html#typoscript-syntax-myth-proprietary", "Myth: \"TypoScript is a proprietary standard\"" ], "myth-typoscript-is-very-complex": [ "TYPO3 Explained", "13.4", - "Configuration\/TypoScript\/MythsFaq\/Index.html#myth-typoscript-is-very-complex", + "Configuration\/TypoScript\/MythsFaq\/Index.html#typoscript-syntax-myth-complex", "Myth: \"TypoScript is very complex\"" ], "faq-why-not-xml-instead": [ "TYPO3 Explained", "13.4", - "Configuration\/TypoScript\/MythsFaq\/Index.html#faq-why-not-xml-instead", + "Configuration\/TypoScript\/MythsFaq\/Index.html#typoscript-syntax-xml", "FAQ: \"Why not XML Instead?\"" ], "syntax": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#syntax", + "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#extension-options-syntax", "Syntax" ], "tsconfig-1": [ "TYPO3 Explained", "13.4", - "Configuration\/TypoScript\/TSconfig\/Index.html#tsconfig-1", + "Configuration\/TypoScript\/TSconfig\/Index.html#tsconfig", "TSconfig" ], "view-the-configuration": [ "TYPO3 Explained", "13.4", - "Configuration\/UserSettingsConfiguration\/Checking.html#view-the-configuration", + "Configuration\/UserSettingsConfiguration\/Checking.html#user-settings-checking", "View the configuration" ], "columns-section": [ "TYPO3 Explained", "13.4", - "Configuration\/UserSettingsConfiguration\/Columns.html#columns-section", + "Configuration\/UserSettingsConfiguration\/Columns.html#user-settings-columns", "['columns'] Section" ], "extending-the-user-settings": [ "TYPO3 Explained", "13.4", - "Configuration\/UserSettingsConfiguration\/Extending.html#extending-the-user-settings", + "Configuration\/UserSettingsConfiguration\/Extending.html#user-settings-extending", "Extending the user settings" ], "on-click-on-confirmation-javascript-callbacks": [ @@ -45451,31 +45685,31 @@ "user-settings-configuration": [ "TYPO3 Explained", "13.4", - "Configuration\/UserSettingsConfiguration\/Index.html#user-settings-configuration", + "Configuration\/UserSettingsConfiguration\/Index.html#user-settings", "User settings configuration" ], "showitem-section": [ "TYPO3 Explained", "13.4", - "Configuration\/UserSettingsConfiguration\/Showitem.html#showitem-section", + "Configuration\/UserSettingsConfiguration\/Showitem.html#user-settings-showitem", "['showitem'] section" ], "services-yaml": [ "TYPO3 Explained", "13.4", - "Configuration\/Yaml\/ServicesYaml.html#services-yaml", + "Configuration\/Yaml\/ServicesYaml.html#ServicesYaml", "Services.yaml" ], "yaml-api-1": [ "TYPO3 Explained", "13.4", - "Configuration\/Yaml\/YamlApi.html#yaml-api-1", + "Configuration\/Yaml\/YamlApi.html#yaml-api", "YAML API" ], "yamlfileloader": [ "TYPO3 Explained", "13.4", - "Configuration\/Yaml\/YamlApi.html#yamlfileloader", + "Configuration\/Yaml\/YamlApi.html#yamlFileLoader", "YamlFileLoader" ], "custom-placeholder-processing": [ @@ -45487,25 +45721,25 @@ "yaml-syntax-1": [ "TYPO3 Explained", "13.4", - "Configuration\/Yaml\/YamlSyntax.html#yaml-syntax-1", + "Configuration\/Yaml\/YamlSyntax.html#yaml-syntax", "YAML syntax" ], "configuration-files-ext-tables-php-ext-localconf-php": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/BestPractises\/ConfigurationFiles.html#configuration-files-ext-tables-php-ext-localconf-php", + "ExtensionArchitecture\/BestPractises\/ConfigurationFiles.html#extension-conventions-configuration-files", "Configuration Files (ext_tables.php & ext_localconf.php)" ], "rules-and-best-practices": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/BestPractises\/ConfigurationFiles.html#rules-and-best-practices", + "ExtensionArchitecture\/BestPractises\/ConfigurationFiles.html#rules_ext_tables_localconf_php", "Rules and best practices" ], "choosing-an-extension-key": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/BestPractises\/ExtensionKey.html#choosing-an-extension-key", + "ExtensionArchitecture\/BestPractises\/ExtensionKey.html#extension-key", "Choosing an extension key" ], "rules-for-the-extension-key": [ @@ -45517,37 +45751,37 @@ "about-gpl-and-extensions": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/BestPractises\/ExtensionKey.html#about-gpl-and-extensions", + "ExtensionArchitecture\/BestPractises\/ExtensionKey.html#extension-license", "About GPL and extensions" ], "registering-an-extension-key": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/BestPractises\/ExtensionKey.html#registering-an-extension-key", + "ExtensionArchitecture\/BestPractises\/ExtensionKey.html#extension-key-registration", "Registering an extension key" ], "best-practises-and-conventions": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/BestPractises\/Index.html#best-practises-and-conventions", + "ExtensionArchitecture\/BestPractises\/Index.html#extension-Best-practises", "Best practises and conventions" ], "naming-conventions": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#naming-conventions", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#extension-naming", "Naming conventions" ], "abbreviations-glossary": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#abbreviations-glossary", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#extension-naming-extensionName", "Abbreviations & Glossary" ], "extension-key-extkey": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#extension-key-extkey", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#naming-conventions-extkey", "Extension key (extkey)" ], "vendor-name": [ @@ -45559,19 +45793,19 @@ "database-table-name": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#database-table-name", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#naming-tables", "Database table name" ], "extbase-domain-model-tables": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#extbase-domain-model-tables", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#naming-tables-extbase", "Extbase domain model tables" ], "mm-tables-for-multiple-multiple-relations-between-tables": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#mm-tables-for-multiple-multiple-relations-between-tables", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#naming-tables-mm", "MM-tables for multiple-multiple relations between tables" ], "database-column-name": [ @@ -45583,7 +45817,7 @@ "backend-module-key-modkey": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#backend-module-key-modkey", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#BackendModuleKey", "Backend module key (modkey)" ], "backend-module-signature": [ @@ -45595,19 +45829,19 @@ "plugin-signature": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#plugin-signature", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#naming-conventions-plugin-signature", "Plugin signature" ], "example-register-and-configure-a-non-extbase-plugin": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#example-register-and-configure-a-non-extbase-plugin", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#naming-conventions-plugin-signature-non-extbase", "Example register and configure a non-Extbase plugin:" ], "plugin-key-extbase-only": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#plugin-key-extbase-only", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#naming-conventions-plugin-key", "Plugin key (Extbase only)" ], "example-register-and-configure-an-extbase-plugin": [ @@ -45631,25 +45865,25 @@ "note-on-old-extensions": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#note-on-old-extensions", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#extension-old-extensions", "Note on \"old\" extensions" ], "software-design-principles": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/BestPractises\/SoftwareDesignPrinciples.html#software-design-principles", + "ExtensionArchitecture\/BestPractises\/SoftwareDesignPrinciples.html#extension-software-design-principles", "Software Design Principles" ], "dto-data-transfer-objects": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/BestPractises\/SoftwareDesignPrinciples.html#dto-data-transfer-objects", + "ExtensionArchitecture\/BestPractises\/SoftwareDesignPrinciples.html#concept-dto", "DTO \/ Data Transfer Objects" ], "concepts": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Concepts\/Index.html#concepts", + "ExtensionArchitecture\/Concepts\/Index.html#extension-concepts", "Concepts" ], "types-of-extensions": [ @@ -45667,37 +45901,37 @@ "extensions-and-the-core": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Concepts\/Introduction.html#extensions-and-the-core", + "ExtensionArchitecture\/Concepts\/Introduction.html#extensions-and-core", "Extensions and the Core" ], "notable-system-extensions": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Concepts\/Introduction.html#notable-system-extensions", + "ExtensionArchitecture\/Concepts\/Introduction.html#extensions-core", "Notable system extensions" ], "system-third-party-and-custom-extensions": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Concepts\/SystemAndLocalExtensions.html#system-third-party-and-custom-extensions", + "ExtensionArchitecture\/Concepts\/SystemAndLocalExtensions.html#extension-scope", "System, third-party and custom extensions" ], "third-party-and-custom-extensions": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Concepts\/SystemAndLocalExtensions.html#third-party-and-custom-extensions", + "ExtensionArchitecture\/Concepts\/SystemAndLocalExtensions.html#extension-local", "Third-party and custom extensions" ], "system-extensions": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Concepts\/SystemAndLocalExtensions.html#system-extensions", + "ExtensionArchitecture\/Concepts\/SystemAndLocalExtensions.html#extension-system", "System Extensions" ], "extbase-examples": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Examples\/Index.html#extbase-examples", + "ExtensionArchitecture\/Extbase\/Examples\/Index.html#extbase_examples", "Extbase Examples" ], "example-extensions": [ @@ -45739,13 +45973,13 @@ "extbase-1": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Index.html#extbase-1", + "ExtensionArchitecture\/Extbase\/Index.html#extbase", "Extbase" ], "extbase-introduction-1": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Introduction\/Index.html#extbase-introduction-1", + "ExtensionArchitecture\/Extbase\/Introduction\/Index.html#extbase-introduction", "Extbase introduction" ], "what-is-extbase": [ @@ -45763,7 +45997,7 @@ "annotations": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#annotations", + "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#extbase-annotations", "Annotations" ], "annotations-provided-by-extbase": [ @@ -45775,67 +46009,67 @@ "validate": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#validate", + "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#extbase-annotation-validate", "Validate" ], "ignorevalidation": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#ignorevalidation", + "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#extbase-annotation-ignore-validation", "IgnoreValidation" ], "orm-object-relational-model-annotations": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#orm-object-relational-model-annotations", + "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#extbase-annotation-orm", "ORM (object relational model) annotations" ], "cascade": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#cascade", + "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#extbase-annotation-cascade", "Cascade" ], "transient": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#transient", + "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#extbase-annotation-transient", "Transient" ], "lazy": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#lazy", + "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#extbase-annotation-lazy", "Lazy" ], "combining-annotations": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#combining-annotations", + "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#extbase-annotation-combine", "Combining annotations" ], "actioncontroller": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ActionController.html#actioncontroller", + "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ActionController.html#extbase-action-controller", "ActionController" ], "define-initialization-code": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ActionController.html#define-initialization-code", + "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ActionController.html#extbase_class_hierarchy-define_initialization_code", "Define initialization code" ], "catching-validation-errors-with-erroraction": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ActionController.html#catching-validation-errors-with-erroraction", + "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ActionController.html#extbase_class_hierarchy-catching_validation_errors_with_error_action", "Catching validation errors with errorAction" ], "forward-to-a-different-controller": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ActionController.html#forward-to-a-different-controller", + "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ActionController.html#extbase-action-controller-forward", "Forward to a different controller" ], "stop-further-processing-in-a-controller-s-action": [ @@ -45847,19 +46081,19 @@ "error-action": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ErrorAction.html#error-action", + "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ErrorAction.html#extbase_error_action", "Error action" ], "controller": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Controller.html#controller", + "ExtensionArchitecture\/Tutorials\/Tea\/Controller.html#extbase_tutorial_tea_controller", "Controller" ], "property-mapping": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Controller\/PropertyMapping.html#property-mapping", + "ExtensionArchitecture\/Extbase\/Reference\/Controller\/PropertyMapping.html#extbase_property_mapping", "Property mapping" ], "how-to-use-property-mappers": [ @@ -45871,7 +46105,7 @@ "type-converters": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Controller\/TypeConverter.html#type-converters", + "ExtensionArchitecture\/Extbase\/Reference\/Controller\/TypeConverter.html#extbase_Type_converters", "Type converters" ], "custom-type-converters": [ @@ -45883,13 +46117,13 @@ "model-domain": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Index.html#model-domain", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Index.html#extbase-domain", "Model \/ Domain" ], "model": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#model", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#extbase-model", "Model" ], "connecting-the-model-to-the-database": [ @@ -45907,7 +46141,7 @@ "enumerations": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#enumerations", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#extbase-model-enumerations", "Enumerations" ], "relations": [ @@ -45919,7 +46153,7 @@ "nullable-relations": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#nullable-relations", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#extbase-model-nullable-relations", "Nullable relations" ], "1-1-relationship": [ @@ -45949,7 +46183,7 @@ "hydrating-objects": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#hydrating-objects", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#extbase-model-hydrating", "Hydrating objects" ], "creating-objects-with-constructor-arguments": [ @@ -45997,7 +46231,7 @@ "identifiers-in-localized-models": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#identifiers-in-localized-models", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#extbase-model-localizedUid", "Identifiers in localized models" ], "extending-existing-models": [ @@ -46009,13 +46243,13 @@ "use-arbitrary-database-tables-with-an-extbase-model": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Persistence.html#use-arbitrary-database-tables-with-an-extbase-model", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Persistence.html#extbase_manual_mapping", "Use arbitrary database tables with an Extbase model" ], "record-types-and-persistence": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Persistence.html#record-types-and-persistence", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Persistence.html#extbase-persistance-record-types", "Record types and persistence" ], "create-a-custom-model-for-a-core-table": [ @@ -46027,55 +46261,55 @@ "repository": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Repository.html#repository", + "ExtensionArchitecture\/Tutorials\/Tea\/Repository.html#extbase_tutorial_tea_repositoy", "Repository" ], "find-methods": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#find-methods", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#extbase-repository-find-methods", "Find methods" ], "custom-find-methods": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#custom-find-methods", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#extbase-repository-find-by-custom", "Custom find methods" ], "magic-find-methods": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#magic-find-methods", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#extbase-repository-find-by-magic", "Magic find methods" ], "query-settings": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#query-settings", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#extbase-repository-query-setting", "Query settings" ], "repository-api": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#repository-api", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#extbase-repository-api", "Repository API" ], "typo3querysettings-and-localization": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#typo3querysettings-and-localization", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#extbase-repository-localization", "Typo3QuerySettings and localization" ], "debugging-an-extbase-query": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#debugging-an-extbase-query", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#extbase-repository-debug-query", "Debugging an Extbase query" ], "validator": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Validator.html#validator", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Validator.html#extbase_domain_validator", "Validator" ], "custom-validator-for-a-property-of-the-domain-model": [ @@ -46099,181 +46333,181 @@ "file-upload": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#file-upload", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload", "File upload" ], "accessing-a-file-reference-in-an-extbase-domain-model": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#accessing-a-file-reference-in-an-extbase-domain-model", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_accessing", "Accessing a file reference in an Extbase domain model" ], "writing-filereference-entries": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#writing-filereference-entries", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_writing", "Writing FileReference entries" ], "manual-handling": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#manual-handling", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_writing-manual", "Manual handling" ], "automatic-handling-based-on-php-attributes": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#automatic-handling-based-on-php-attributes", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_writing-attributes", "Automatic handling based on PHP attributes" ], "reference-for-the-php-fileupload-php-attribute": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#reference-for-the-php-fileupload-php-attribute", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute", "Reference for the FileUpload PHP attribute" ], "file-upload-configuration-with-the-fileupload-attribute": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#file-upload-configuration-with-the-fileupload-attribute", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute_configuration", "File upload configuration with the FileUpload attribute" ], "manual-file-upload-configuration": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#manual-file-upload-configuration", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-manual-configuration", "Manual file upload configuration" ], "configuration-options-for-file-uploads": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#configuration-options-for-file-uploads", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-options", "Configuration options for file uploads" ], "property-name": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#property-name", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-property-name", "Property name:" ], "validation": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Validation.html#validation", + "ExtensionArchitecture\/Extbase\/Reference\/Validation.html#extbase_validation", "Validation" ], "required": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#required", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-required", "Required" ], "minimum-files": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#minimum-files", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-minimum-files", "Minimum files" ], "maximum-files": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#maximum-files", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-maximum-files", "Maximum files" ], "upload-folder": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#upload-folder", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-upload-folder", "Upload folder" ], "upload-folder-creation-when-missing": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#upload-folder-creation-when-missing", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-upload-folder-creation", "Upload folder creation, when missing" ], "add-random-suffix": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#add-random-suffix", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-random-suffix", "Add random suffix" ], "duplication-behavior": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#duplication-behavior", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-duplication-behavior", "Duplication behavior" ], "modifying-existing-configuration": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#modifying-existing-configuration", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-configuration-change", "Modifying existing configuration" ], "using-typoscript-configuration-for-file-uploads-configuration": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#using-typoscript-configuration-for-file-uploads-configuration", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-typoscript", "Using TypoScript configuration for file uploads configuration" ], "file-upload-validation": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#file-upload-validation", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-validationkeys", "File upload validation" ], "deletion-of-uploaded-files-and-file-references": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#deletion-of-uploaded-files-and-file-references", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-deletion", "Deletion of uploaded files and file references" ], "modifyuploadedfiletargetfilenameevent": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#modifyuploadedfiletargetfilenameevent", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-psr-event", "ModifyUploadedFileTargetFilenameEvent" ], "multi-step-form-handling": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#multi-step-form-handling", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_multistep", "Multi-step form handling" ], "registration-of-frontend-plugins": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FrontendPlugins.html#registration-of-frontend-plugins", + "ExtensionArchitecture\/Extbase\/Reference\/FrontendPlugins.html#extbase_registration_of_frontend_plugins", "Registration of frontend plugins" ], "frontend-plugin-as-content-element": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FrontendPlugins.html#frontend-plugin-as-content-element", + "ExtensionArchitecture\/Extbase\/Reference\/FrontendPlugins.html#extbase_frontend_plugin_content_element", "Frontend plugin as content element" ], "frontend-plugin-as-pure-typoscript": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/FrontendPlugins.html#frontend-plugin-as-pure-typoscript", + "ExtensionArchitecture\/Extbase\/Reference\/FrontendPlugins.html#extbase_frontend_plugin_typoscript", "Frontend plugin as pure TypoScript" ], "extbase-reference": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/Index.html#extbase-reference", + "ExtensionArchitecture\/Extbase\/Reference\/Index.html#extbase_reference", "Extbase reference" ], "localization": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/Localization\/Index.html#localization", + "ExtensionArchitecture\/HowTo\/Localization\/Index.html#extension_localization", "Localization" ], "typoscript-configuration": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/TypoScriptConfiguration.html#typoscript-configuration", + "ExtensionArchitecture\/Extbase\/Reference\/TypoScriptConfiguration.html#extbase_typoscript_configuration", "TypoScript configuration" ], "plugin-configuration": [ @@ -46291,7 +46525,7 @@ "uri-builder-extbase": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/UriBuilder.html#uri-builder-extbase", + "ExtensionArchitecture\/Extbase\/Reference\/UriBuilder.html#extbase-uri-builder", "URI builder (Extbase)" ], "usage-in-an-extbase-controller": [ @@ -46309,7 +46543,7 @@ "example-in-extbase-viewhelper": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/UriBuilder.html#example-in-extbase-viewhelper", + "ExtensionArchitecture\/Extbase\/Reference\/UriBuilder.html#extbase-uri-builder-viewhelper", "Example in Extbase ViewHelper" ], "why-is-validation-needed": [ @@ -46351,7 +46585,7 @@ "view": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/View\/Index.html#view", + "ExtensionArchitecture\/Extbase\/Reference\/View\/Index.html#extbase-view", "View" ], "view-configuration": [ @@ -46363,7 +46597,7 @@ "responses": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Extbase\/Reference\/View\/Index.html#responses", + "ExtensionArchitecture\/Extbase\/Reference\/View\/Index.html#extbase_responses", "Responses" ], "html-response": [ @@ -46387,13 +46621,13 @@ "file-classes": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Classes\/Index.html#file-classes", + "ExtensionArchitecture\/FileStructure\/Classes\/Index.html#extension-classes", "Classes" ], "file-composer-json": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/ComposerJson.html#file-composer-json", + "ExtensionArchitecture\/FileStructure\/ComposerJson.html#files-composer-json", "composer.json" ], "about-the-composer-json-file": [ @@ -46405,13 +46639,13 @@ "minimal-composer-json": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/ComposerJson.html#minimal-composer-json", + "ExtensionArchitecture\/FileStructure\/ComposerJson.html#ext-composer-json-minimal", "Minimal composer.json" ], "extended-composer-json": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/ComposerJson.html#extended-composer-json", + "ExtensionArchitecture\/FileStructure\/ComposerJson.html#ext-composer-json-extended", "Extended composer.json" ], "name": [ @@ -46423,7 +46657,7 @@ "type": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/ComposerJson.html#type", + "ExtensionArchitecture\/FileStructure\/ComposerJson.html#ext-composer-json-property-type", "type" ], "license": [ @@ -46453,7 +46687,7 @@ "extra-typo3-cms-extension-key": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/ComposerJson.html#extra-typo3-cms-extension-key", + "ExtensionArchitecture\/FileStructure\/ComposerJson.html#ext-composer-json-property-extension-key", "extra.typo3\/cms.extension-key" ], "properties-no-longer-used": [ @@ -46477,115 +46711,115 @@ "file-ajaxroutes-php": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/Backend\/Index.html#file-ajaxroutes-php", + "ExtensionArchitecture\/FileStructure\/Configuration\/Backend\/Index.html#extension-configuration-backend-ajaxroutes", "AjaxRoutes.php" ], "file-routes-php": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/Backend\/Index.html#file-routes-php", + "ExtensionArchitecture\/FileStructure\/Configuration\/Backend\/Index.html#extension-configuration-backend-routes", "Routes.php" ], "file-modules-php": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/Backend\/Index.html#file-modules-php", + "ExtensionArchitecture\/FileStructure\/Configuration\/Backend\/Index.html#extension-configuration-backend-modules", "Modules.php" ], "file-contentsecuritypolicies-php": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/ContentSecurityPolicies.html#file-contentsecuritypolicies-php", + "ExtensionArchitecture\/FileStructure\/Configuration\/ContentSecurityPolicies.html#extension-configuration-ContentSecurityPolicies-php", "ContentSecurityPolicies.php" ], "file-extbase": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/Extbase\/Index.html#file-extbase", + "ExtensionArchitecture\/FileStructure\/Configuration\/Extbase\/Index.html#extension-configuration-extbase", "Extbase" ], "file-persistence": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/Extbase\/Persistence\/Index.html#file-persistence", + "ExtensionArchitecture\/FileStructure\/Configuration\/Extbase\/Persistence\/Index.html#extension-configuration-extbase-persistence", "Persistence" ], "file-classes-php": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/Extbase\/Persistence\/Index.html#file-classes-php", + "ExtensionArchitecture\/FileStructure\/Configuration\/Extbase\/Persistence\/Index.html#extension-configuration-extbase-persistence-classes", "Classes.php" ], "file-icons-php": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/Icons.html#file-icons-php", + "ExtensionArchitecture\/FileStructure\/Configuration\/Icons.html#extension-configuration-Icons-php", "Icons.php" ], "file-configuration": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/Index.html#file-configuration", + "ExtensionArchitecture\/FileStructure\/Configuration\/Index.html#extension-configuration-files", "Configuration" ], "file-page-tsconfig": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#file-page-tsconfig", + "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#extension-configuration-sets-page-tsconfig", "page.tsconfig" ], "file-requestmiddlewares-php": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/RequestMiddlewaresPhp.html#file-requestmiddlewares-php", + "ExtensionArchitecture\/FileStructure\/Configuration\/RequestMiddlewaresPhp.html#extension-configuration-RequestMiddlewares-php", "RequestMiddlewares.php" ], "file-services-yaml": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/ServicesYaml.html#file-services-yaml", + "ExtensionArchitecture\/FileStructure\/Configuration\/ServicesYaml.html#extension-configuration-services-yaml", "Services.yaml" ], "file-sets": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#file-sets", + "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#extension-configuration-sets", "Sets" ], "file-config-yaml-mandatory": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#file-config-yaml-mandatory", + "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#extension-configuration-sets-config-yaml", "config.yaml (mandatory)" ], "file-settings-yaml": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#file-settings-yaml", + "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#extension-configuration-sets-settings-yaml", "settings.yaml" ], "file-settings-definitions-yaml": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#file-settings-definitions-yaml", + "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#extension-configuration-sets-settings-definitions-yaml", "settings.definitions.yaml" ], "file-setup-typoscript": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#file-setup-typoscript", + "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#extension-configuration-sets-setup-typoscript", "setup.typoscript" ], "file-constants-typoscript": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#file-constants-typoscript", + "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#extension-configuration-sets-constants-typoscript", "constants.typoscript" ], "file-tca": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/TCA\/Index.html#file-tca", + "ExtensionArchitecture\/FileStructure\/Configuration\/TCA\/Index.html#extension-configuration-tca", "TCA" ], "file-tablename-php": [ @@ -46597,61 +46831,61 @@ "file-overrides": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/TCA\/Index.html#file-overrides", + "ExtensionArchitecture\/FileStructure\/Configuration\/TCA\/Index.html#extension-configuration-tca-overrides", "Overrides" ], "file-tsconfig": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/TsConfig\/Index.html#file-tsconfig", + "ExtensionArchitecture\/FileStructure\/Configuration\/TsConfig\/Index.html#extension-configuration-tsconfig", "TsConfig" ], "file-typoscript": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/TypoScript\/Index.html#file-typoscript", + "ExtensionArchitecture\/FileStructure\/Configuration\/TypoScript\/Index.html#extension-configuration-typoscript", "TypoScript" ], "file-user-tsconfig": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Configuration\/UserTsconfig.html#file-user-tsconfig", + "ExtensionArchitecture\/FileStructure\/Configuration\/UserTsconfig.html#extension-configuration-user_tsconfig", "user.tsconfig" ], "file-documentation": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Documentation\/Index.html#file-documentation", + "ExtensionArchitecture\/FileStructure\/Documentation\/Index.html#extension-files-documentation", "Documentation" ], "file-ext-conf-template-txt": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#file-ext-conf-template-txt", + "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#extension-options", "ext_conf_template.txt" ], "available-option-types": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#available-option-types", + "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#extension-options-available-option-types", "Available option types" ], "accessing-saved-options": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#accessing-saved-options", + "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#extension-options-api", "Accessing saved options" ], "nested-structure": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#nested-structure", + "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#extension-options-nested-structure", "Nested structure" ], "file-ext-emconf-php": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/ExtEmconf.html#file-ext-emconf-php", + "ExtensionArchitecture\/FileStructure\/ExtEmconf.html#ext_emconf-php", "ext_emconf.php" ], "deprecated-configuration": [ @@ -46663,7 +46897,7 @@ "file-ext-localconf-php": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/ExtLocalconf.html#file-ext-localconf-php", + "ExtensionArchitecture\/FileStructure\/ExtLocalconf.html#ext-localconf-php", "ext_localconf.php" ], "should-not-be-used-for": [ @@ -46693,85 +46927,85 @@ "file-ext-tables-php": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/ExtTables.html#file-ext-tables-php", + "ExtensionArchitecture\/FileStructure\/ExtTables.html#ext-tables-php", "ext_tables.php" ], "registering-a-scheduler-task": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/ExtTables.html#registering-a-scheduler-task", + "ExtensionArchitecture\/FileStructure\/ExtTables.html#extension-configuration-files-scheduler", "Registering a scheduler task" ], "registering-a-backend-module": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/ExtTables.html#registering-a-backend-module", + "ExtensionArchitecture\/FileStructure\/ExtTables.html#extension-configuration-files-backend-module", "Registering a backend module" ], "allowing-a-tables-records-to-be-added-to-standard-pages": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/ExtTables.html#allowing-a-tables-records-to-be-added-to-standard-pages", + "ExtensionArchitecture\/FileStructure\/ExtTables.html#extension-configuration-files-allow-table-standard", "Allowing a tables records to be added to Standard pages" ], "file-ext-tables-sql": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#file-ext-tables-sql", + "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#ext_tables-sql", "ext_tables.sql" ], "auto-generated-structure": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#auto-generated-structure", + "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#auto-generated-db-structure", "Auto-generated structure" ], "file-ext-tables-static-adt-sql": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/ExtTablesStaticAdtSql.html#file-ext-tables-static-adt-sql", + "ExtensionArchitecture\/FileStructure\/ExtTablesStaticAdtSql.html#ext_tables_static+adt.sql", "ext_tables_static+adt.sql" ], "file-ext-typoscript-constants-typoscript": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/ExtTyposcriptConstantsTyposcript.html#file-ext-typoscript-constants-typoscript", + "ExtensionArchitecture\/FileStructure\/ExtTyposcriptConstantsTyposcript.html#ext_typoscript_constants_typoscript", "ext_typoscript_constants.typoscript" ], "file-ext-typoscript-setup-typoscript": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/ExtTyposcriptSetupTyposcript.html#file-ext-typoscript-setup-typoscript", + "ExtensionArchitecture\/FileStructure\/ExtTyposcriptSetupTyposcript.html#ext_typoscript_setup_typoscript", "ext_typoscript_setup.typoscript" ], "reserved-file-names": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Index.html#reserved-file-names", + "ExtensionArchitecture\/FileStructure\/Index.html#extension-reserved-filenames", "Reserved file names" ], "reserved-folders": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Index.html#reserved-folders", + "ExtensionArchitecture\/FileStructure\/Index.html#extension-reserved-folders", "Reserved Folders" ], "file-resources": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Resources\/Index.html#file-resources", + "ExtensionArchitecture\/FileStructure\/Resources\/Index.html#extension-Resources", "Resources" ], "file-private": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Resources\/Private\/Index.html#file-private", + "ExtensionArchitecture\/FileStructure\/Resources\/Private\/Index.html#extension-Resources-Private", "Private" ], "file-language": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Resources\/Private\/Language.html#file-language", + "ExtensionArchitecture\/FileStructure\/Resources\/Private\/Language.html#extension-Resources-Private-Language", "Language" ], "locallang-xlf": [ @@ -46813,19 +47047,19 @@ "file-tests": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/FileStructure\/Tests\/Index.html#file-tests", + "ExtensionArchitecture\/FileStructure\/Tests\/Index.html#extension-files-tests", "Tests" ], "create-a-backend-module-with-core-functionality": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModule.html#create-a-backend-module-with-core-functionality", + "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModule.html#backend-modules-template-without-extbase", "Create a backend module with Core functionality" ], "basic-controller": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModule.html#basic-controller", + "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModule.html#backend-modules-template-without-extbase-manual-tagging", "Basic controller" ], "main-entry-point": [ @@ -46837,31 +47071,31 @@ "the-docheader": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModule.html#the-docheader", + "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModule.html#backend-modules-template-without-extbase-docheader", "The DocHeader" ], "template-example": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModule.html#template-example", - "Template example" + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations.html#template-example", + "Template Example" ], "create-a-backend-module-with-extbase": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModuleWithExtbase.html#create-a-backend-module-with-extbase", + "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModuleWithExtbase.html#backend-modules-template", "Create a backend module with Extbase" ], "backend-modules": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/BackendModule\/Index.html#backend-modules", + "ExtensionArchitecture\/HowTo\/BackendModule\/Index.html#backend-modules-how-to", "Backend modules" ], "backend-module-configuration-examples": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/BackendModule\/ModuleConfiguration.html#backend-module-configuration-examples", + "ExtensionArchitecture\/HowTo\/BackendModule\/ModuleConfiguration.html#backend-modules-configuration-examples", "Backend module configuration examples" ], "example-register-two-backend-modules": [ @@ -46873,13 +47107,43 @@ "check-if-the-modules-have-been-properly-registered": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/BackendModule\/ModuleConfiguration.html#check-if-the-modules-have-been-properly-registered", + "ExtensionArchitecture\/HowTo\/BackendModule\/ModuleConfiguration.html#backend-modules-configuration-example-debug", "Check if the modules have been properly registered" ], + "security-considerations": [ + "TYPO3 Explained", + "13.4", + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations.html#backend-modules-security", + "Security Considerations" + ], + "cross-site-request-forgery-csrf": [ + "TYPO3 Explained", + "13.4", + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations.html#cross-site-request-forgery-csrf", + "Cross-Site-Request-Forgery (CSRF)" + ], + "asserting-http-methods-in-custom-module-controllers": [ + "TYPO3 Explained", + "13.4", + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations.html#asserting-http-methods-in-custom-module-controllers", + "Asserting HTTP Methods in Custom Module Controllers" + ], + "enforcing-http-methods": [ + "TYPO3 Explained", + "13.4", + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations.html#enforcing-http-methods", + "Enforcing HTTP Methods" + ], + "asserting-http-methods-in-extbase-controllers": [ + "TYPO3 Explained", + "13.4", + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations.html#asserting-http-methods-in-extbase-controllers", + "Asserting HTTP Methods in Extbase Controllers" + ], "tutorial-backend-module-registration": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/BackendModule\/Tutorials.html#tutorial-backend-module-registration", + "ExtensionArchitecture\/HowTo\/BackendModule\/Tutorials.html#backend-modules-tutorials", "Tutorial - Backend Module Registration" ], "typoscript-and-constants": [ @@ -46915,55 +47179,55 @@ "creating-a-new-distribution": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#creating-a-new-distribution", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution", "Creating a new distribution" ], "concept-of-distributions": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#concept-of-distributions", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution_concept", "Concept of distributions" ], "kickstarting-the-distribution": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#kickstarting-the-distribution", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution-kickstart", "Kickstarting the Distribution" ], "configuring-the-distribution-display-in-the-em": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#configuring-the-distribution-display-in-the-em", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution-kickstart-image", "Configuring the Distribution Display in the EM" ], "fileadmin-files": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#fileadmin-files", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution-kickstart-fileadmin", "Fileadmin Files" ], "database-data": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#database-data", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution-kickstart-database", "Database Data" ], "distribution-configuration": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution-configuration", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution-kickstart-configuration", "Distribution Configuration" ], "test-your-distribution": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#test-your-distribution", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution-testing", "Test Your Distribution" ], "creating-a-new-extension": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/CreateNewExtension.html#creating-a-new-extension", + "ExtensionArchitecture\/HowTo\/CreateNewExtension.html#extension-create-new", "Creating a new extension" ], "kickstarting-the-extension": [ @@ -46981,25 +47245,25 @@ "custom-extension-repository-1": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/CustomExtensionRepository.html#custom-extension-repository-1", + "ExtensionArchitecture\/HowTo\/CustomExtensionRepository.html#custom-extension-repository", "Custom Extension Repository" ], "adding-documentation": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/Documentation.html#adding-documentation", + "ExtensionArchitecture\/HowTo\/Documentation.html#extension-documentation-readme", "Adding documentation" ], "tools": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/Documentation.html#tools", + "ExtensionArchitecture\/HowTo\/Documentation.html#extension-documentation-tools", "Tools" ], "listen-to-an-event": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/Events\/Index.html#listen-to-an-event", + "ExtensionArchitecture\/HowTo\/Events\/Index.html#extension-development-event-listener", "Listen to an event" ], "dispatch-an-event": [ @@ -47011,7 +47275,7 @@ "extending-an-extbase-model": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-an-extbase-model", + "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-extbase-model", "Extending an Extbase model" ], "quick-overview": [ @@ -47029,43 +47293,43 @@ "are-you-the-only-one-trying-to-extend-that-model": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#are-you-the-only-one-trying-to-extend-that-model", + "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-extbase-model_find_other_extending_models", "Are you the only one trying to extend that model?" ], "find-the-original-model": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#find-the-original-model", + "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-extbase-model_find_original_model", "Find the original model" ], "find-the-original-repository": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#find-the-original-repository", + "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-extbase-model_find_original_repository", "Find the original repository" ], "extend-the-original-model": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extend-the-original-model", + "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-extbase-model_extend_original_model", "Extend the original model" ], "register-the-extended-model": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#register-the-extended-model", + "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-extbase-model_register_extended_model", "Register the extended model" ], "extend-the-original-repository-optional": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extend-the-original-repository-optional", + "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-extbase-model_extend_original_repository", "Extend the original repository (optional)" ], "register-the-extended-repository": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#register-the-extended-repository", + "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-extbase-model_register_extended_repository", "Register the extended repository" ], "alternative-strategies-to-extend-extbase-models": [ @@ -47077,85 +47341,85 @@ "customization-examples": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/Examples\/Index.html#customization-examples", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/Examples\/Index.html#extending-examples", "Customization Examples" ], "example-1-extending-the-fe-users-table": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/Examples\/Index.html#example-1-extending-the-fe-users-table", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/Examples\/Index.html#extending-examples-feusers", "Example 1: Extending the fe_users table" ], "example-2-extending-the-tt-content-table": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/Examples\/Index.html#example-2-extending-the-tt-content-table", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/Examples\/Index.html#extending-examples-ttcontent", "Example 2: Extending the tt_content Table" ], "extending-the-tca-array": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/Index.html#extending-the-tca-array", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/Index.html#extending-tca", "Extending the TCA array" ], "storing-the-changes": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/StoringChanges\/Index.html#storing-the-changes", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/StoringChanges\/Index.html#storing-changes", "Storing the changes" ], "storing-in-extensions": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/StoringChanges\/Index.html#storing-in-extensions", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/StoringChanges\/Index.html#storing-changes-extension", "Storing in extensions" ], "storing-in-the-file-overrides-folder": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/StoringChanges\/Index.html#storing-in-the-file-overrides-folder", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/StoringChanges\/Index.html#storing-changes-extension-overrides", "Storing in the Overrides\/ folder" ], "changing-the-tca-on-the-fly": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/StoringChanges\/Index.html#changing-the-tca-on-the-fly", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/StoringChanges\/Index.html#storing-changes-on-the-fly", "Changing the TCA \"on the fly\"" ], "verifying-the-tca": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/Verifying\/Index.html#verifying-the-tca", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/Verifying\/Index.html#verifying", "Verifying the TCA" ], "frontend-plugin": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/FrontendPlugin\/Index.html#frontend-plugin", + "ExtensionArchitecture\/HowTo\/FrontendPlugin\/Index.html#frontend_plugin", "Frontend plugin" ], "howto": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/Index.html#howto", + "ExtensionArchitecture\/HowTo\/Index.html#extension-howto", "Howto" ], "multi-language-fluid-templates": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#multi-language-fluid-templates", + "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#extension-localization-fluid", "Multi-language Fluid templates" ], "the-translation-viewhelper-html-f-translate": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#the-translation-viewhelper-html-f-translate", + "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#f-translate", "The translation ViewHelper f:translate" ], "the-translation-viewhelper-in-extbase": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#the-translation-viewhelper-in-extbase", + "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#f-translate-extbase", "The translation ViewHelper in Extbase" ], "source-of-the-language-file": [ @@ -47167,7 +47431,7 @@ "insert-arguments-into-translated-strings": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#insert-arguments-into-translated-strings", + "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#extension-localization-fluid-arguments", "Insert arguments into translated strings" ], "argument-types": [ @@ -47185,13 +47449,13 @@ "localization-of-date-output": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#localization-of-date-output", + "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#extension-localization-fluid-date", "Localization of date output" ], "localization-in-php": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/Localization\/Php.html#localization-in-php", + "ExtensionArchitecture\/HowTo\/Localization\/Php.html#extension-localization-php", "Localization in PHP" ], "localization-in-plain-php": [ @@ -47221,79 +47485,79 @@ "localization-in-extbase": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/Localization\/Php.html#localization-in-extbase", + "ExtensionArchitecture\/HowTo\/Localization\/Php.html#extension-localization-extbase", "Localization in Extbase" ], "provide-localized-strings-via-json-by-a-middleware": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/Localization\/Php.html#provide-localized-strings-via-json-by-a-middleware", + "ExtensionArchitecture\/HowTo\/Localization\/Php.html#example-localization-middleware", "Provide localized strings via JSON by a middleware" ], "output-localized-strings-with-typoscript": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/Localization\/TypoScript.html#output-localized-strings-with-typoscript", + "ExtensionArchitecture\/HowTo\/Localization\/TypoScript.html#extension-localization-typoscript-gettext", "Output localized strings with Typoscript" ], "typoscript-conditions-based-on-the-current-language": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/Localization\/TypoScript.html#typoscript-conditions-based-on-the-current-language", + "ExtensionArchitecture\/HowTo\/Localization\/TypoScript.html#extension-localization-typoscript-conditions", "TypoScript conditions based on the current language" ], "changing-localized-terms-using-typoscript": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/Localization\/TypoScript.html#changing-localized-terms-using-typoscript", + "ExtensionArchitecture\/HowTo\/Localization\/TypoScript.html#localization-typoscript-LOCAL_LANG", "Changing localized terms using TypoScript" ], "typoscript-stdwrap-lang": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/Localization\/TypoScript.html#typoscript-stdwrap-lang", + "ExtensionArchitecture\/HowTo\/Localization\/TypoScript.html#localization-typoscript-stdWrap.lang", "stdWrap.lang" ], "publish-your-extension": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#publish-your-extension", + "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#publish-extension", "Publish your extension" ], "git": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#git", + "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#publishExtensionGit", "Git" ], "packagist": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#packagist", + "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#publishExtensionPackagist", "Packagist" ], "ter": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#ter", + "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#publishExtensionTer", "TER" ], "documentation": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#documentation", + "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#publishExtensionDocumentation", "Documentation" ], "crowdin": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#crowdin", + "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#publishExtensionTranslation", "Crowdin" ], "publish-your-extension-in-the-ter": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/PublishExtension\/PublishToTER\/Index.html#publish-your-extension-in-the-ter", + "ExtensionArchitecture\/HowTo\/PublishExtension\/PublishToTER\/Index.html#publish-to-ter", "Publish your extension in the TER" ], "before-publishing-extension-think-about": [ @@ -47323,13 +47587,13 @@ "http-requests-to-external-sources": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/RestRequests\/Index.html#http-requests-to-external-sources", + "ExtensionArchitecture\/HowTo\/RestRequests\/Index.html#http", "HTTP requests to external sources" ], "custom-middleware-handlers": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/RestRequests\/Index.html#custom-middleware-handlers", + "ExtensionArchitecture\/HowTo\/RestRequests\/Index.html#http-custom-handlers", "Custom middleware handlers" ], "http-utility-methods": [ @@ -47353,7 +47617,7 @@ "extension-scanner-1": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/ExtensionScanner.html#extension-scanner-1", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/ExtensionScanner.html#extension-scanner", "Extension scanner" ], "goals-and-non-goals": [ @@ -47389,13 +47653,13 @@ "update-your-extension-for-new-typo3-versions": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/Index.html#update-your-extension-for-new-typo3-versions", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/Index.html#update-extension", "Update your extension for new TYPO3 versions" ], "the-concept-of-upgrade-wizards": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Concept.html#the-concept-of-upgrade-wizards", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Concept.html#upgrade-wizards-concept", "The concept of upgrade wizards" ], "best-practice": [ @@ -47407,67 +47671,67 @@ "creating-upgrade-wizards": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#creating-upgrade-wizards", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#upgrade-wizard-interface", "Creating upgrade wizards" ], "upgradewizardinterface": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#upgradewizardinterface", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#upgrade-wizards-interface", "UpgradeWizardInterface" ], "wizard-identifier": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#wizard-identifier", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#upgrade-wizards-identifier", "Wizard identifier" ], "marking-wizard-as-done": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#marking-wizard-as-done", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#repeatable-interface", "Marking wizard as done" ], "generating-output": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#generating-output", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#uprade-wizards-chatty-interface", "Generating output" ], "executing-the-wizard": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#executing-the-wizard", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#upgrade_wizard_execute", "Executing the wizard" ], "examples-for-common-upgrade-wizards": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Examples.html#examples-for-common-upgrade-wizards", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Examples.html#upgrade-wizard-examples", "Examples for common upgrade wizards" ], "upgrade-wizard-to-replace-switchable-controller-actions": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Examples.html#upgrade-wizard-to-replace-switchable-controller-actions", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Examples.html#upgrade-wizard-examples-switchable-controller-actions", "Upgrade wizard to replace switchable controller actions" ], "upgrade-wizards-1": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Index.html#upgrade-wizards-1", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Index.html#upgrade-wizards", "Upgrade wizards" ], "extension-development-1": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Index.html#extension-development-1", + "ExtensionArchitecture\/Index.html#extension-development", "Extension development" ], "site-package-1": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/SitePackage\/Index.html#site-package-1", + "ExtensionArchitecture\/SitePackage\/Index.html#site-package", "Site package" ], "site-package-tutorial": [ @@ -47479,25 +47743,25 @@ "site-package-builder": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/SitePackage\/Index.html#site-package-builder", + "ExtensionArchitecture\/SitePackage\/Index.html#extension-sitepackage-builder", "Site package builder" ], "bootstrap-package": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/SitePackage\/Index.html#bootstrap-package", + "ExtensionArchitecture\/SitePackage\/Index.html#extension-sitepackage-builder-bootstrap", "Bootstrap package" ], "minimal-site-package-fluid-styled-content": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/SitePackage\/Index.html#minimal-site-package-fluid-styled-content", + "ExtensionArchitecture\/SitePackage\/Index.html#extension-sitepackage-builder-minimal", "Minimal site package (Fluid Styled Content)" ], "introduction-into-using-site-packages": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/SitePackage\/Introduction.html#introduction-into-using-site-packages", + "ExtensionArchitecture\/SitePackage\/Introduction.html#site-package-introduction", "Introduction into using site packages" ], "site-package-benefits": [ @@ -47509,37 +47773,37 @@ "encapsulation": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/SitePackage\/Introduction.html#encapsulation", + "ExtensionArchitecture\/SitePackage\/Introduction.html#site-package-encapsulation", "Encapsulation" ], "dependency-management": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/SitePackage\/Introduction.html#dependency-management", + "ExtensionArchitecture\/SitePackage\/Introduction.html#site-package-di", "Dependency management" ], "clean-separation-from-the-userspace": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/SitePackage\/Introduction.html#clean-separation-from-the-userspace", + "ExtensionArchitecture\/SitePackage\/Introduction.html#site-package-separation", "Clean separation from the userspace" ], "deployment": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/SitePackage\/Introduction.html#deployment", + "ExtensionArchitecture\/SitePackage\/Introduction.html#site-package-deployment", "Deployment" ], "distributable": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/SitePackage\/Introduction.html#distributable", + "ExtensionArchitecture\/SitePackage\/Introduction.html#site-package-distributable", "Distributable" ], "creating-a-new-database-model": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/ComponentsOfTYPO3Extension\/CreatingDatabaseModel.html#creating-a-new-database-model", + "ExtensionArchitecture\/Tutorials\/ComponentsOfTYPO3Extension\/CreatingDatabaseModel.html#creating-database-model", "Creating a new database model" ], "create-sql-database-schema": [ @@ -47557,13 +47821,13 @@ "components-of-a-typo3-extension": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/ComponentsOfTYPO3Extension\/Index.html#components-of-a-typo3-extension", + "ExtensionArchitecture\/Tutorials\/ComponentsOfTYPO3Extension\/Index.html#extension-components", "Components of a TYPO3 extension" ], "making-data-persistable-by-extbase": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/ComponentsOfTYPO3Extension\/MakingDataPersistable.html#making-data-persistable-by-extbase", + "ExtensionArchitecture\/Tutorials\/ComponentsOfTYPO3Extension\/MakingDataPersistable.html#making-data-persistable", "Making data persistable by Extbase" ], "create-an-entity-class-and-repository": [ @@ -47575,7 +47839,7 @@ "making-the-extension-installable-1": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/ComponentsOfTYPO3Extension\/MakingTheExtensionInstallable.html#making-the-extension-installable-1", + "ExtensionArchitecture\/Tutorials\/ComponentsOfTYPO3Extension\/MakingTheExtensionInstallable.html#making-the-extension-installable", "Making the extension installable" ], "add-example-extension-composer-json": [ @@ -47593,31 +47857,31 @@ "extension-development-with-extbase": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/Extbase.html#extension-development-with-extbase", + "ExtensionArchitecture\/Tutorials\/Extbase.html#extbase_tutorials", "Extension development with Extbase" ], "tutorials": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/Index.html#tutorials", + "ExtensionArchitecture\/Tutorials\/Index.html#extension-tutorials", "Tutorials" ], "kickstart-an-extension": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/Kickstart\/Index.html#kickstart-an-extension", + "ExtensionArchitecture\/Tutorials\/Kickstart\/Index.html#extension-kickstart", "Kickstart an extension" ], "create-a-new-backend-controller": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/Kickstart\/Make\/BackendController.html#create-a-new-backend-controller", + "ExtensionArchitecture\/Tutorials\/Kickstart\/Make\/BackendController.html#extension-make-backend-controller", "Create a new backend controller" ], "create-a-new-console-command": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/Kickstart\/Make\/ConsoleCommand.html#create-a-new-console-command", + "ExtensionArchitecture\/Tutorials\/Kickstart\/Make\/ConsoleCommand.html#extension-make-console-command", "Create a new console command" ], "have-a-look-at-the-created-files": [ @@ -47635,13 +47899,13 @@ "make": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/Kickstart\/Make\/Index.html#make", + "ExtensionArchitecture\/Tutorials\/Kickstart\/Make\/Index.html#extension-make", "Make" ], "kickstart-a-typo3-extension-with-make": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/Kickstart\/Make\/Index.html#kickstart-a-typo3-extension-with-make", + "ExtensionArchitecture\/Tutorials\/Kickstart\/Make\/Index.html#extension-make-kickstart", "Kickstart a TYPO3 Extension with \"Make\"" ], "1-install-make": [ @@ -47683,7 +47947,7 @@ "create-a-directory-structure": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/Tea\/DirectoryStructure.html#create-a-directory-structure", + "ExtensionArchitecture\/Tutorials\/Tea\/DirectoryStructure.html#extbase_tutorial_tea_directory_structure", "Create a directory structure" ], "directory-file-classes": [ @@ -47719,7 +47983,7 @@ "create-an-extension": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/Tea\/ExtensionConfiguration.html#create-an-extension", + "ExtensionArchitecture\/Tutorials\/Tea\/ExtensionConfiguration.html#extbase_tutorial_tea_extension_configuration", "Create an extension" ], "install-the-extension-locally": [ @@ -47731,61 +47995,61 @@ "tea-in-a-nutshell": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Index.html#tea-in-a-nutshell", + "ExtensionArchitecture\/Tutorials\/Tea\/Index.html#extbase_tutorial_tea", "Tea in a nutshell" ], "model-a-bag-of-tea": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#model-a-bag-of-tea", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model", "Model: a bag of tea" ], "the-database-model": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#the-database-model", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_database", "The database model" ], "tca-php-ctrl-settings-for-the-complete-table": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#tca-php-ctrl-settings-for-the-complete-table", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_ctrl", "TCA ctrl - Settings for the complete table" ], "php-title": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#php-title", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_ctrl_title", "title" ], "php-label": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#php-label", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_ctrl_label", "label" ], "php-tstamp-php-deleted": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#php-tstamp-php-deleted", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_ctrl_others", "tstamp, deleted, ..." ], "tca-php-columns-defining-the-fields": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#tca-php-columns-defining-the-fields", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_columns", "TCA columns - Defining the fields" ], "the-php-image-field": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#the-php-image-field", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_columns_image", "The image field" ], "tca-php-types-configure-the-input-form": [ "TYPO3 Explained", "13.4", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#tca-php-types-configure-the-input-form", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_types", "TCA types - Configure the input form" ], "result-the-complete-tca": [ @@ -47809,127 +48073,283 @@ "typo3-explained": [ "TYPO3 Explained", "13.4", - "Index.html#typo3-explained", + "Index.html#api-overview", "TYPO3 Explained" ], "introduction-1": [ "TYPO3 Explained", "13.4", - "Introduction\/Index.html#introduction-1", + "Introduction\/Index.html#introduction", "Introduction" ], "a-basic-typo3-installation": [ "TYPO3 Explained", "13.4", - "Introduction\/Index.html#a-basic-typo3-installation", + "Introduction\/Index.html#introduction-installation", "A basic TYPO3 installation" ], "a-basic-site-package": [ "TYPO3 Explained", "13.4", - "Introduction\/Index.html#a-basic-site-package", + "Introduction\/Index.html#introduction-site-package", "A basic site package" ], "getting-help-with-typo3": [ "TYPO3 Explained", "13.4", - "Introduction\/Index.html#getting-help-with-typo3", + "Introduction\/Index.html#introduction-getting-help", "Getting help with TYPO3" ], + "php-architecture": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/Index.html#cgl-best-practices", + "PHP architecture" + ], + "named-arguments": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/NamedArguments.html#cgl-named-arguments", + "Named arguments" + ], + "named-arguments-in-public-apis": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/NamedArguments.html#named-arguments-in-public-apis", + "Named arguments in public APIs" + ], + "utilizing-named-arguments-in-extensions": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/NamedArguments.html#utilizing-named-arguments-in-extensions", + "Utilizing named arguments in extensions" + ], + "typo3-core-development": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/NamedArguments.html#typo3-core-development", + "TYPO3 Core development" + ], + "leveraging-named-arguments-in-pcpp-value-objects": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/NamedArguments.html#cgl-named-arguments-pcpp-value-objects", + "Leveraging Named Arguments in PCPP Value Objects" + ], + "invoking-2nd-party-non-core-library-dependency-methods": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/NamedArguments.html#invoking-2nd-party-non-core-library-dependency-methods", + "Invoking 2nd-party (non-Core library) dependency methods" + ], + "invoking-core-api": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/NamedArguments.html#invoking-core-api", + "Invoking Core API" + ], + "utilizing-named-arguments-in-phpunit-test-data-providers": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/NamedArguments.html#utilizing-named-arguments-in-phpunit-test-data-providers", + "Utilizing named arguments in PHPUnit test data providers" + ], + "leveraging-named-arguments-when-invoking-php-functions": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/NamedArguments.html#leveraging-named-arguments-when-invoking-php-functions", + "Leveraging named arguments when invoking PHP functions" + ], + "characteristics": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/Services.html#characteristics", + "Characteristics" + ], + "good-examples": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/WorkingWithExceptions.html#good-examples", + "Good examples" + ], + "bad-examples": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/WorkingWithExceptions.html#bad-examples", + "Bad examples" + ], + "singletons": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/Singletons.html#cgl-singletons", + "Singletons" + ], + "static-methods-static-classes-utility-classes": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/StaticMethods.html#cgl-static-methods", + "Static Methods, static Classes, Utility Classes" + ], + "characteristica": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/Traits.html#characteristica", + "Characteristica" + ], + "red-flags": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/StaticMethods.html#red-flags", + "Red Flags" + ], + "traits": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/Traits.html#cgl-traits", + "Traits" + ], + "working-with-exceptions": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/WorkingWithExceptions.html#cgl-working-with-exceptions", + "Working with exceptions" + ], + "exception-types": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/WorkingWithExceptions.html#exception-types", + "Exception types" + ], + "typical-cases-for-exceptions-that-are-designed-to-be-caught": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/WorkingWithExceptions.html#typical-cases-for-exceptions-that-are-designed-to-be-caught", + "Typical cases for exceptions that are designed to be caught" + ], + "typical-cases-for-exceptions-that-should-not-be-caught": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/WorkingWithExceptions.html#typical-cases-for-exceptions-that-should-not-be-caught", + "Typical cases for exceptions that should not be caught" + ], + "typical-exception-arguments": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/WorkingWithExceptions.html#typical-exception-arguments", + "Typical exception arguments" + ], + "exception-inheritance": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/WorkingWithExceptions.html#exception-inheritance", + "Exception inheritance" + ], + "extending-exceptions": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/WorkingWithExceptions.html#extending-exceptions", + "Extending exceptions" + ], + "further-readings": [ + "TYPO3 Explained", + "13.4", + "PhpArchitecture\/WorkingWithExceptions.html#further-readings", + "Further readings" + ], "backup-strategy": [ "TYPO3 Explained", "13.4", - "Security\/Backups\/Index.html#backup-strategy", + "Security\/Backups\/Index.html#security-backups", "Backup strategy" ], "components-included-in-the-backups": [ "TYPO3 Explained", "13.4", - "Security\/Backups\/Index.html#components-included-in-the-backups", + "Security\/Backups\/Index.html#security-backup-components", "Components included in the backups" ], "time-plan-and-retention-time": [ "TYPO3 Explained", "13.4", - "Security\/Backups\/Index.html#time-plan-and-retention-time", + "Security\/Backups\/Index.html#security-backups-time-plan", "Time plan and retention time" ], "backup-location": [ "TYPO3 Explained", "13.4", - "Security\/Backups\/Index.html#backup-location", + "Security\/Backups\/Index.html#security-backup-location", "Backup location" ], "further-considerations": [ "TYPO3 Explained", "13.4", - "Security\/Backups\/Index.html#further-considerations", + "Security\/Backups\/Index.html#security-backups-further-considerations", "Further considerations" ], "general-guidelines": [ "TYPO3 Explained", "13.4", - "Security\/GeneralGuidelines\/Index.html#general-guidelines", + "Security\/GeneralGuidelines\/Index.html#security-general-guidelines", "General guidelines" ], "secure-passwords": [ "TYPO3 Explained", "13.4", - "Security\/GeneralGuidelines\/Index.html#secure-passwords", + "Security\/GeneralGuidelines\/Index.html#security-secure-passwords", "Secure passwords" ], "operating-system-and-browser-version": [ "TYPO3 Explained", "13.4", - "Security\/GeneralGuidelines\/Index.html#operating-system-and-browser-version", + "Security\/GeneralGuidelines\/Index.html#security-update-browser", "Operating System and Browser Version" ], "communication": [ "TYPO3 Explained", "13.4", - "Security\/GeneralGuidelines\/Index.html#communication", + "Security\/GeneralGuidelines\/Index.html#security-communication", "Communication" ], "react-quickly": [ "TYPO3 Explained", "13.4", - "Security\/GeneralGuidelines\/Index.html#react-quickly", + "Security\/GeneralGuidelines\/Index.html#security-react-quickly", "React Quickly" ], "keep-the-typo3-core-up-to-date": [ "TYPO3 Explained", "13.4", - "Security\/GeneralGuidelines\/Index.html#keep-the-typo3-core-up-to-date", + "Security\/GeneralGuidelines\/Index.html#security-updating-typo3", "Keep the TYPO3 Core up-to-date" ], "keep-typo3-extensions-up-to-date": [ "TYPO3 Explained", "13.4", - "Security\/GeneralGuidelines\/Index.html#keep-typo3-extensions-up-to-date", + "Security\/GeneralGuidelines\/Index.html#security-updating-extensions", "Keep TYPO3 Extensions Up-to-date" ], "use-staging-servers-for-developments-and-tests": [ "TYPO3 Explained", "13.4", - "Security\/GeneralGuidelines\/Index.html#use-staging-servers-for-developments-and-tests", + "Security\/GeneralGuidelines\/Index.html#security-staging-servers", "Use staging servers for developments and tests" ], "typo3-versions-and-lifecycle": [ "TYPO3 Explained", "13.4", - "Security\/GeneralInformation\/Index.html#typo3-versions-and-lifecycle", + "Security\/GeneralInformation\/Index.html#security-typo3-versions", "TYPO3 versions and lifecycle" ], "difference-between-core-and-extensions": [ "TYPO3 Explained", "13.4", - "Security\/GeneralInformation\/Index.html#difference-between-core-and-extensions", + "Security\/GeneralInformation\/Index.html#security-difference-core-extensions", "Difference between Core and extensions" ], "announcement-of-updates-and-security-fixes": [ "TYPO3 Explained", "13.4", - "Security\/GeneralInformation\/Index.html#announcement-of-updates-and-security-fixes", + "Security\/GeneralInformation\/Index.html#security-announcement-updates", "Announcement of updates and security fixes" ], "security-bulletins": [ @@ -47953,13 +48373,13 @@ "content-security-policy": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesAdministrators\/ContentSecurityPolicy.html#content-security-policy", + "Security\/GuidelinesAdministrators\/ContentSecurityPolicy.html#security-content-security-policy", "Content security policy" ], "database-access": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesAdministrators\/DatabaseAccess.html#database-access", + "Security\/GuidelinesAdministrators\/DatabaseAccess.html#security-database-access", "Database access" ], "secure-passwords-and-minimum-access-privileges-with-mysql": [ @@ -47989,7 +48409,7 @@ "disable-directory-indexing": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesAdministrators\/DirectoryIndexing.html#disable-directory-indexing", + "Security\/GuidelinesAdministrators\/DirectoryIndexing.html#security-directory-indexing", "Disable directory indexing" ], "apache-web-server": [ @@ -48007,7 +48427,7 @@ "encrypted-client-server-communication": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesAdministrators\/EncryptedCommunication.html#encrypted-client-server-communication", + "Security\/GuidelinesAdministrators\/EncryptedCommunication.html#security-encrypted-client-server-connection", "Encrypted Client\/server Communication" ], "data-classification": [ @@ -48025,19 +48445,19 @@ "file-directory-permissions": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesAdministrators\/FileDirectoryPermissions.html#file-directory-permissions", + "Security\/GuidelinesAdministrators\/FileDirectoryPermissions.html#security-file-directory-permissions", "File\/directory permissions" ], "file-extension-handling": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesAdministrators\/FileExtensionHandling.html#file-extension-handling", + "Security\/GuidelinesAdministrators\/FileExtensionHandling.html#security-file-extension-handling", "File extension handling" ], "further-actions": [ "TYPO3 Explained", "13.4", - "Security\/HackedSite\/FurtherActions.html#further-actions", + "Security\/HackedSite\/FurtherActions.html#security-further-actions", "Further actions" ], "hosting-environment": [ @@ -48061,19 +48481,19 @@ "defending-against-clickjacking": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesAdministrators\/FurtherActions.html#defending-against-clickjacking", + "Security\/GuidelinesAdministrators\/FurtherActions.html#security-administrators-furtheractions-clickjacking", "Defending Against Clickjacking" ], "guidelines-for-system-administrators": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesAdministrators\/Index.html#guidelines-for-system-administrators", + "Security\/GuidelinesAdministrators\/Index.html#security-administrators", "Guidelines for System Administrators" ], "general-rules": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/Index.html#general-rules", + "Security\/GuidelinesIntegrators\/Index.html#security-integrator-rules", "General rules" ], "further-topics": [ @@ -48085,19 +48505,19 @@ "integrity-of-typo3-packages": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesAdministrators\/IntegrityOfTypo3Packages.html#integrity-of-typo3-packages", + "Security\/GuidelinesAdministrators\/IntegrityOfTypo3Packages.html#security-integrity-packages", "Integrity of TYPO3 Packages" ], "other-services": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesAdministrators\/OtherServices.html#other-services", + "Security\/GuidelinesAdministrators\/OtherServices.html#security-other-services", "Other Services" ], "restrict-access-to-files-on-a-server-level": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesAdministrators\/RestrictAccessToFiles.html#restrict-access-to-files-on-a-server-level", + "Security\/GuidelinesAdministrators\/RestrictAccessToFiles.html#security-restrict-access-server-level", "Restrict access to files on a server-level" ], "verification-of-access-restrictions": [ @@ -48121,19 +48541,19 @@ "role-definition": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/Index.html#role-definition", + "Security\/GuidelinesIntegrators\/Index.html#security-integrator-definition", "Role definition" ], "guidelines-for-editors": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesEditors\/Index.html#guidelines-for-editors", + "Security\/GuidelinesEditors\/Index.html#security-editors", "Guidelines for editors" ], "backend-access": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesEditors\/Index.html#backend-access", + "Security\/GuidelinesEditors\/Index.html#security-backend-access", "Backend access" ], "username": [ @@ -48169,25 +48589,25 @@ "restriction-to-required-functions": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesEditors\/Index.html#restriction-to-required-functions", + "Security\/GuidelinesEditors\/Index.html#security-restrict-to-required-functions", "Restriction to required functions" ], "secure-connection": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesEditors\/Index.html#secure-connection", + "Security\/GuidelinesEditors\/Index.html#security-secure-connection", "Secure connection" ], "logout": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesEditors\/Index.html#logout", + "Security\/GuidelinesEditors\/Index.html#security-logout", "Logout" ], "guidelines-for-extension-development": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesExtensionDevelopment\/Index.html#guidelines-for-extension-development", + "Security\/GuidelinesExtensionDevelopment\/Index.html#security-extension-development", "Guidelines for extension development" ], "never-trust-user-input": [ @@ -48205,7 +48625,7 @@ "trusted-properties-extbase-only": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesExtensionDevelopment\/Index.html#trusted-properties-extbase-only", + "Security\/GuidelinesExtensionDevelopment\/Index.html#trusted-properties", "Trusted properties (Extbase Only)" ], "prevent-cross-site-scripting": [ @@ -48217,19 +48637,19 @@ "users-and-access-privileges": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/AccessPrivileges.html#users-and-access-privileges", + "Security\/GuidelinesIntegrators\/AccessPrivileges.html#security-access-privileges", "Users and access privileges" ], "content-elements": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/ContentElements.html#content-elements", + "Security\/GuidelinesIntegrators\/ContentElements.html#security-content-elements", "Content elements" ], "typo3-extensions": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/Extensions.html#typo3-extensions", + "Security\/GuidelinesIntegrators\/Extensions.html#security-extensions", "TYPO3 extensions" ], "stable-and-reviewed-extensions": [ @@ -48253,7 +48673,7 @@ "low-level-extensions": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/Extensions.html#low-level-extensions", + "Security\/GuidelinesIntegrators\/Extensions.html#security-extensions-low-level", "Low-level extensions" ], "check-for-extension-updates-regularly": [ @@ -48271,175 +48691,175 @@ "global-typo3-configuration-options": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#global-typo3-configuration-options", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options", "Global TYPO3 configuration options" ], "displayerrors": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#displayerrors", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-displayErrors", "displayErrors" ], "devipmask": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#devipmask", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-devIpMask", "devIPmask" ], "filedenypattern": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#filedenypattern", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-fileDenyPattern", "fileDenyPattern" ], "ipmasklist": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#ipmasklist", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-IPmaskList", "IPmaskList" ], "lockip-lockipv6": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#lockip-lockipv6", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-lockIP", "lockIP \/ lockIPv6" ], "lockssl": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#lockssl", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-lockSSL", "lockSSL" ], "trustedhostspattern": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#trustedhostspattern", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-trustedHostsPattern", "trustedHostsPattern" ], "warning-email-addr": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#warning-email-addr", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-warning-email-addr", "warning_email_addr" ], "warning-mode": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#warning-mode", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-warning-mode", "warning_mode" ], "guidelines-for-typo3-integrators": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/Index.html#guidelines-for-typo3-integrators", + "Security\/GuidelinesIntegrators\/Index.html#security-integrators", "Guidelines for TYPO3 integrators" ], "install-tool": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/InstallTool.html#install-tool", + "Security\/GuidelinesIntegrators\/InstallTool.html#security-install-tool", "Install tool" ], "enabling-and-accessing-the-install-tool": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/InstallTool.html#enabling-and-accessing-the-install-tool", + "Security\/GuidelinesIntegrators\/InstallTool.html#security-install-tool-access", "Enabling and accessing the Install Tool" ], "the-file-enable-install-tool-file": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/InstallTool.html#the-file-enable-install-tool-file", + "Security\/GuidelinesIntegrators\/InstallTool.html#security-install-tool-access-enable-file", "The ENABLE_INSTALL_TOOL file" ], "the-install-tool-password": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/InstallTool.html#the-install-tool-password", + "Security\/GuidelinesIntegrators\/InstallTool.html#security-install-tool-password", "The Install Tool password" ], "accessing-the-install-tool-in-the-backend": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/InstallTool.html#accessing-the-install-tool-in-the-backend", + "Security\/GuidelinesIntegrators\/InstallTool.html#security-install-tool-backend-access", "Accessing the Install Tool in the backend" ], "typo3-core-updates": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/InstallTool.html#typo3-core-updates", + "Security\/GuidelinesIntegrators\/InstallTool.html#security-install-tool-core-updates", "TYPO3 Core updates" ], "encryption-key": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/InstallTool.html#encryption-key", + "Security\/GuidelinesIntegrators\/InstallTool.html#security-encryption-key", "Encryption key" ], "generating-the-encryption-key": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/InstallTool.html#generating-the-encryption-key", + "Security\/GuidelinesIntegrators\/InstallTool.html#security-encryption-key-generate", "Generating the encryption key" ], "reports-and-logs": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/ReportsAndLogs.html#reports-and-logs", + "Security\/GuidelinesIntegrators\/ReportsAndLogs.html#security-reports-logs", "Reports and logs" ], "security-related-warnings-after-login": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/SecurityWarningsAfterLogin.html#security-related-warnings-after-login", + "Security\/GuidelinesIntegrators\/SecurityWarningsAfterLogin.html#security-security-warnings", "Security-related warnings after login" ], "sql-injection": [ "TYPO3 Explained", "13.4", - "Security\/TypesOfThreats\/Index.html#sql-injection", + "Security\/TypesOfThreats\/Index.html#security-sql-injection", "SQL injection" ], "cross-site-scripting-xss": [ "TYPO3 Explained", "13.4", - "Security\/TypesOfThreats\/Index.html#cross-site-scripting-xss", + "Security\/TypesOfThreats\/Index.html#security-xss", "Cross-site scripting (XSS)" ], "external-file-inclusion": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/Typoscript.html#external-file-inclusion", + "Security\/GuidelinesIntegrators\/Typoscript.html#security-typoscript-external-inclusion", "External file inclusion" ], "clickjacking": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/Typoscript.html#clickjacking", + "Security\/GuidelinesIntegrators\/Typoscript.html#security-typoscript-clickjacking", "Clickjacking" ], "integrity-of-external-javascript-files": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/Typoscript.html#integrity-of-external-javascript-files", + "Security\/GuidelinesIntegrators\/Typoscript.html#security-typoscript-integrity-js", "Integrity of external JavaScript files" ], "risk-of-externally-hosted-javascript-libraries": [ "TYPO3 Explained", "13.4", - "Security\/GuidelinesIntegrators\/Typoscript.html#risk-of-externally-hosted-javascript-libraries", + "Security\/GuidelinesIntegrators\/Typoscript.html#security-typoscript-risk-external-js", "Risk of externally hosted JavaScript libraries" ], "analyzing-a-hacked-site": [ "TYPO3 Explained", "13.4", - "Security\/HackedSite\/Analyze.html#analyzing-a-hacked-site", + "Security\/HackedSite\/Analyze.html#security-analyze", "Analyzing a hacked site" ], "detect-a-hacked-website": [ "TYPO3 Explained", "13.4", - "Security\/HackedSite\/Detect.html#detect-a-hacked-website", + "Security\/HackedSite\/Detect.html#security-detect", "Detect a hacked website" ], "manipulated-frontpage": [ @@ -48469,13 +48889,13 @@ "reports-from-visitors-or-users": [ "TYPO3 Explained", "13.4", - "Security\/HackedSite\/Detect.html#reports-from-visitors-or-users", + "Security\/HackedSite\/Detect.html#security-detect-reports-from-visitors", "Reports from visitors or users" ], "search-engines-or-browsers-warn-about-your-site": [ "TYPO3 Explained", "13.4", - "Security\/HackedSite\/Detect.html#search-engines-or-browsers-warn-about-your-site", + "Security\/HackedSite\/Detect.html#security-detect-reports-from-search-engines", "Search engines or browsers warn about your site" ], "leaked-credentials": [ @@ -48487,7 +48907,7 @@ "detect-analyze-and-repair-a-hacked-site": [ "TYPO3 Explained", "13.4", - "Security\/HackedSite\/Index.html#detect-analyze-and-repair-a-hacked-site", + "Security\/HackedSite\/Index.html#security-detect-analyze-repair", "Detect, analyze and repair a hacked site" ], "steps-to-take-when-a-site-got-hacked": [ @@ -48499,25 +48919,25 @@ "repair-restore": [ "TYPO3 Explained", "13.4", - "Security\/HackedSite\/RepairRestore.html#repair-restore", + "Security\/HackedSite\/RepairRestore.html#security-repair-restore", "Repair\/restore" ], "take-the-website-offline": [ "TYPO3 Explained", "13.4", - "Security\/HackedSite\/TakeOffline.html#take-the-website-offline", + "Security\/HackedSite\/TakeOffline.html#security-take-offline", "Take the website offline" ], "security-guidelines": [ "TYPO3 Explained", "13.4", - "Security\/Index.html#security-guidelines", + "Security\/Index.html#security", "Security guidelines" ], "reporting-a-security-issue": [ "TYPO3 Explained", "13.4", - "Security\/SecurityTeam\/Index.html#reporting-a-security-issue", + "Security\/SecurityTeam\/Index.html#security-team-contact", "Reporting a security issue" ], "target-audience": [ @@ -48529,7 +48949,7 @@ "the-typo3-security-team": [ "TYPO3 Explained", "13.4", - "Security\/SecurityTeam\/Index.html#the-typo3-security-team", + "Security\/SecurityTeam\/Index.html#security-team", "The TYPO3 Security Team" ], "extension-review": [ @@ -48541,7 +48961,7 @@ "incident-handling": [ "TYPO3 Explained", "13.4", - "Security\/SecurityTeam\/Index.html#incident-handling", + "Security\/SecurityTeam\/Index.html#security-incident-handling", "Incident handling" ], "security-issues-in-the-typo3-core": [ @@ -48559,37 +48979,37 @@ "types-of-security-threats": [ "TYPO3 Explained", "13.4", - "Security\/TypesOfThreats\/Index.html#types-of-security-threats", + "Security\/TypesOfThreats\/Index.html#security-threats", "Types of Security Threats" ], "information-disclosure": [ "TYPO3 Explained", "13.4", - "Security\/TypesOfThreats\/Index.html#information-disclosure", + "Security\/TypesOfThreats\/Index.html#security-information-disclosure", "Information disclosure" ], "identity-theft": [ "TYPO3 Explained", "13.4", - "Security\/TypesOfThreats\/Index.html#identity-theft", + "Security\/TypesOfThreats\/Index.html#security-identity-theft", "Identity theft" ], "code-injection": [ "TYPO3 Explained", "13.4", - "Security\/TypesOfThreats\/Index.html#code-injection", + "Security\/TypesOfThreats\/Index.html#security-code-injection", "Code injection" ], "authentication-bypass": [ "TYPO3 Explained", "13.4", - "Security\/TypesOfThreats\/Index.html#authentication-bypass", + "Security\/TypesOfThreats\/Index.html#security-authorization-bypass", "Authentication bypass" ], "cross-site-request-forgery-xsrf": [ "TYPO3 Explained", "13.4", - "Security\/TypesOfThreats\/Index.html#cross-site-request-forgery-xsrf", + "Security\/TypesOfThreats\/Index.html#security-xsrf", "Cross-site request forgery (XSRF)" ], "sitemap": [ @@ -48601,307 +49021,313 @@ "acceptance-testing-with-the-typo3-testing-framework": [ "TYPO3 Explained", "13.4", - "Testing\/AcceptanceTesting\/Index.html#acceptance-testing-with-the-typo3-testing-framework", + "Testing\/AcceptanceTesting\/Index.html#testing-writing-acceptance", "Acceptance testing with the TYPO3 testing framework" ], "set-up": [ "TYPO3 Explained", "13.4", - "Testing\/AcceptanceTesting\/Index.html#set-up", + "Testing\/AcceptanceTesting\/Index.html#testing-writing-acceptance-setup", "Set up" ], "backend-login": [ "TYPO3 Explained", "13.4", - "Testing\/AcceptanceTesting\/Index.html#backend-login", + "Testing\/AcceptanceTesting\/Index.html#testing-writing-acceptance-login", "Backend login" ], "frames": [ "TYPO3 Explained", "13.4", - "Testing\/AcceptanceTesting\/Index.html#frames", + "Testing\/AcceptanceTesting\/Index.html#testing-writing-acceptance-frames", "Frames" ], "pagetree": [ "TYPO3 Explained", "13.4", - "Testing\/AcceptanceTesting\/Index.html#pagetree", + "Testing\/AcceptanceTesting\/Index.html#testing-writing-acceptance-pagetree", "PageTree" ], "modaldialog": [ "TYPO3 Explained", "13.4", - "Testing\/AcceptanceTesting\/Index.html#modaldialog", + "Testing\/AcceptanceTesting\/Index.html#testing-writing-acceptance-modal", "ModalDialog" ], "core-testing": [ "TYPO3 Explained", "13.4", - "Testing\/CoreTesting.html#core-testing", + "Testing\/CoreTesting.html#testing-core", "Core testing" ], "extension-testing": [ "TYPO3 Explained", "13.4", - "Testing\/ExtensionTesting.html#extension-testing", + "Testing\/ExtensionTesting.html#testing-extensions", "Extension testing" ], "linting": [ "TYPO3 Explained", "13.4", - "Testing\/ExtensionTesting.html#linting", + "Testing\/ExtensionTesting.html#testing-extensions-linting", "Linting" ], "coding-guidelines-cgl": [ "TYPO3 Explained", "13.4", - "Testing\/ExtensionTesting.html#coding-guidelines-cgl", + "Testing\/ExtensionTesting.html#testing-extensions-cgl", "Coding guidelines (CGL)" ], "static-code-analysis": [ "TYPO3 Explained", "13.4", - "Testing\/ExtensionTesting.html#static-code-analysis", + "Testing\/ExtensionTesting.html#testing-extensions-static", "Static code analysis" ], + "unit-tests": [ + "TYPO3 Explained", + "13.4", + "Testing\/ExtensionTesting.html#testing-extensions-unit", + "Unit tests" + ], "functional-tests": [ "TYPO3 Explained", "13.4", - "Testing\/ExtensionTesting.html#functional-tests", + "Testing\/ExtensionTesting.html#testing-extensions-functional", "Functional tests" ], "acceptance-tests": [ "TYPO3 Explained", "13.4", - "Testing\/ExtensionTesting.html#acceptance-tests", + "Testing\/ExtensionTesting.html#testing-extensions-acceptance", "Acceptance tests" ], "organizing-and-storing-the-commands": [ "TYPO3 Explained", "13.4", - "Testing\/ProjectTesting.html#organizing-and-storing-the-commands", + "Testing\/ProjectTesting.html#testing-projects-organization", "Organizing and storing the commands" ], "functional-testing-with-the-typo3-testing-framework": [ "TYPO3 Explained", "13.4", - "Testing\/FunctionalTesting\/Index.html#functional-testing-with-the-typo3-testing-framework", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional", "Functional testing with the TYPO3 testing framework" ], "simple-example": [ "TYPO3 Explained", "13.4", - "Testing\/FunctionalTesting\/Index.html#simple-example", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional-example-simple", "Simple Example" ], "extending-setup": [ "TYPO3 Explained", "13.4", - "Testing\/FunctionalTesting\/Index.html#extending-setup", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional-setup", "Extending setUp" ], "loaded-extensions": [ "TYPO3 Explained", "13.4", - "Testing\/FunctionalTesting\/Index.html#loaded-extensions", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional-load-extensions", "Loaded extensions" ], "database-fixtures": [ "TYPO3 Explained", "13.4", - "Testing\/FunctionalTesting\/Index.html#database-fixtures", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional-fixtures", "Database fixtures" ], "asserting-database": [ "TYPO3 Explained", "13.4", - "Testing\/FunctionalTesting\/Index.html#asserting-database", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional-assert-database", "Asserting database" ], "loading-files": [ "TYPO3 Explained", "13.4", - "Testing\/FunctionalTesting\/Index.html#loading-files", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional-load-files", "Loading files" ], "setting-typo3-conf-vars": [ "TYPO3 Explained", "13.4", - "Testing\/FunctionalTesting\/Index.html#setting-typo3-conf-vars", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional-TYPO3_CONF_VARS", "Setting TYPO3_CONF_VARS" ], "frontend-tests": [ "TYPO3 Explained", "13.4", - "Testing\/FunctionalTesting\/Index.html#frontend-tests", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional-frontend", "Frontend tests" ], "introduction-to-functional-tests": [ "TYPO3 Explained", "13.4", - "Testing\/FunctionalTesting\/Introduction.html#introduction-to-functional-tests", + "Testing\/FunctionalTesting\/Introduction.html#testing-writing-functional-introduction", "Introduction to functional tests" ], "testing-1": [ "TYPO3 Explained", "13.4", - "Testing\/Index.html#testing-1", + "Testing\/Index.html#testing", "Testing" ], "project-testing": [ "TYPO3 Explained", "13.4", - "Testing\/ProjectTesting.html#project-testing", + "Testing\/ProjectTesting.html#testing-projects", "Project testing" ], "differences-between-project-and-extension-testing": [ "TYPO3 Explained", "13.4", - "Testing\/ProjectTesting.html#differences-between-project-and-extension-testing", + "Testing\/ProjectTesting.html#testing-projects-differences", "Differences between project and extension testing" ], "project-structure": [ "TYPO3 Explained", "13.4", - "Testing\/ProjectTesting.html#project-structure", + "Testing\/ProjectTesting.html#testing-projects-structure", "Project structure" ], "install-testing-dependencies": [ "TYPO3 Explained", "13.4", - "Testing\/ProjectTesting.html#install-testing-dependencies", + "Testing\/ProjectTesting.html#testing-projects-installation", "Install testing dependencies" ], "test-configuration-on-project-level": [ "TYPO3 Explained", "13.4", - "Testing\/ProjectTesting.html#test-configuration-on-project-level", + "Testing\/ProjectTesting.html#testing-projects-configuration", "Test configuration on project level" ], "code-style-tests-and-fixing": [ "TYPO3 Explained", "13.4", - "Testing\/ProjectTesting.html#code-style-tests-and-fixing", + "Testing\/ProjectTesting.html#testing-projects-configuration-cs", "Code style tests and fixing" ], "phpstan-static-php-analysis": [ "TYPO3 Explained", "13.4", - "Testing\/ProjectTesting.html#phpstan-static-php-analysis", + "Testing\/ProjectTesting.html#testing-projects-configuration-phpstan", "PHPstan - Static PHP analysis" ], "unit-and-functional-test-configuration": [ "TYPO3 Explained", "13.4", - "Testing\/ProjectTesting.html#unit-and-functional-test-configuration", + "Testing\/ProjectTesting.html#testing-projects-configuration-phpunit", "Unit and Functional test configuration" ], "running-the-tests-locally": [ "TYPO3 Explained", "13.4", - "Testing\/ProjectTesting.html#running-the-tests-locally", + "Testing\/ProjectTesting.html#testing-projects-execution", "Running the tests locally" ], "run-the-php-cs-fixer": [ "TYPO3 Explained", "13.4", - "Testing\/ProjectTesting.html#run-the-php-cs-fixer", + "Testing\/ProjectTesting.html#testing-projects-execution-cs", "Run the php-cs-fixer" ], "run-phpstan": [ "TYPO3 Explained", "13.4", - "Testing\/ProjectTesting.html#run-phpstan", + "Testing\/ProjectTesting.html#testing-projects-execution-phpstan", "Run PHPstan" ], "run-unit-tests": [ "TYPO3 Explained", "13.4", - "Testing\/ProjectTesting.html#run-unit-tests", + "Testing\/ProjectTesting.html#testing-projects-execution-phpunit", "Run Unit tests" ], "run-functional-tests-using-sqlite-and-ddev": [ "TYPO3 Explained", "13.4", - "Testing\/ProjectTesting.html#run-functional-tests-using-sqlite-and-ddev", + "Testing\/ProjectTesting.html#testing-projects-execution-functional-sqlite", "Run Functional tests using sqlite and DDEV" ], "run-functional-tests-using-mysqli-and-ddev": [ "TYPO3 Explained", "13.4", - "Testing\/ProjectTesting.html#run-functional-tests-using-mysqli-and-ddev", + "Testing\/ProjectTesting.html#testing-projects-execution-functional-mysqli", "Run Functional tests using mysqli and DDEV" ], "test-runners-organize-and-execute-tests": [ "TYPO3 Explained", "13.4", - "Testing\/TestRunners.html#test-runners-organize-and-execute-tests", + "Testing\/TestRunners.html#testing-organization", "Test Runners: Organize and execute tests" ], "what-are-test-runners-and-why-do-we-need-them": [ "TYPO3 Explained", "13.4", - "Testing\/TestRunners.html#what-are-test-runners-and-why-do-we-need-them", + "Testing\/TestRunners.html#testing-organization-why", "What are test runners and why do we need them" ], "use-a-bash-alias": [ "TYPO3 Explained", "13.4", - "Testing\/TestRunners.html#use-a-bash-alias", + "Testing\/TestRunners.html#testing-organization-bash-alias", "Use a bash alias" ], "write-a-bash-script": [ "TYPO3 Explained", "13.4", - "Testing\/TestRunners.html#write-a-bash-script", + "Testing\/TestRunners.html#testing-organization-bash-script", "Write a bash script" ], "introduce-custom-ddev-commands": [ "TYPO3 Explained", "13.4", - "Testing\/TestRunners.html#introduce-custom-ddev-commands", + "Testing\/TestRunners.html#testing-organization-ddev", "Introduce custom DDEV commands" ], "introduce-a-composer-script": [ "TYPO3 Explained", "13.4", - "Testing\/TestRunners.html#introduce-a-composer-script", + "Testing\/TestRunners.html#testing-organization-composer", "Introduce a Composer script" ], "create-a-makefile": [ "TYPO3 Explained", "13.4", - "Testing\/TestRunners.html#create-a-makefile", + "Testing\/TestRunners.html#testing-organization-makefile", "Create a Makefile" ], "use-dedicated-tools-like-just": [ "TYPO3 Explained", "13.4", - "Testing\/TestRunners.html#use-dedicated-tools-like-just", + "Testing\/TestRunners.html#testing-organization-just", "Use dedicated tools like just" ], "use-the-file-runtests-sh-script-based-on-the-typo3-core": [ "TYPO3 Explained", "13.4", - "Testing\/TestRunners.html#use-the-file-runtests-sh-script-based-on-the-typo3-core", + "Testing\/TestRunners.html#testing-organization-runtests-core", "Use the runTests.sh script based on the TYPO3-Core" ], "use-a-customized-file-runtests-sh-script-based-on-blog-example": [ "TYPO3 Explained", "13.4", - "Testing\/TestRunners.html#use-a-customized-file-runtests-sh-script-based-on-blog-example", + "Testing\/TestRunners.html#testing-organization-runtests-blog", "Use a customized runTests.sh script based on blog_example" ], "use-a-generator": [ "TYPO3 Explained", "13.4", - "Testing\/TestRunners.html#use-a-generator", + "Testing\/TestRunners.html#testing-organization-generator", "Use a generator" ], "acceptance-testing-of-site-introduction": [ "TYPO3 Explained", "13.4", - "Testing\/Tutorial\/Acceptance.html#acceptance-testing-of-site-introduction", + "Testing\/Tutorial\/Acceptance.html#testing-tutorial-acceptance", "Acceptance testing of site_introduction" ], "project-site-introduction": [ @@ -48919,163 +49345,163 @@ "github-actions": [ "TYPO3 Explained", "13.4", - "Testing\/Tutorial\/Enetcache.html#github-actions", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-github2", "Github Actions" ], "testing-enetcache": [ "TYPO3 Explained", "13.4", - "Testing\/Tutorial\/Enetcache.html#testing-enetcache", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-testing", "Testing enetcache" ], "scope": [ "TYPO3 Explained", "13.4", - "Testing\/Tutorial\/Enetcache.html#scope", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-scope", "Scope" ], "general-strategy": [ "TYPO3 Explained", "13.4", - "Testing\/Tutorial\/Enetcache.html#general-strategy", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-strategy", "General strategy" ], "starting-point": [ "TYPO3 Explained", "13.4", - "Testing\/Tutorial\/Enetcache.html#starting-point", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-start", "Starting point" ], "preparing-composer-json": [ "TYPO3 Explained", "13.4", - "Testing\/Tutorial\/Enetcache.html#preparing-composer-json", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-composer-json", "Preparing composer.json" ], "runtests-sh-and-docker-compose-yml": [ "TYPO3 Explained", "13.4", - "Testing\/Tutorial\/Enetcache.html#runtests-sh-and-docker-compose-yml", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-runtests", "runTests.sh and docker-compose.yml" ], "testing-styleguide": [ "TYPO3 Explained", "13.4", - "Testing\/Tutorial\/Enetcache.html#testing-styleguide", + "Testing\/Tutorial\/Enetcache.html#testing-extensions-styleguide", "Testing styleguide" ], "basic-setup": [ "TYPO3 Explained", "13.4", - "Testing\/Tutorial\/Enetcache.html#basic-setup", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-setup", "Basic setup" ], "functional-testing": [ "TYPO3 Explained", "13.4", - "Testing\/Tutorial\/Enetcache.html#functional-testing", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-functional", "Functional testing" ], "acceptance-testing": [ "TYPO3 Explained", "13.4", - "Testing\/Tutorial\/Enetcache.html#acceptance-testing", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-acceptance", "Acceptance testing" ], "testing-tutorials": [ "TYPO3 Explained", "13.4", - "Testing\/Tutorial\/Index.html#testing-tutorials", + "Testing\/Tutorial\/Index.html#testing-tutorial", "Testing tutorials" ], "unit-testing-with-the-typo3-testing-framework": [ "TYPO3 Explained", "13.4", - "Testing\/UnitTesting\/Index.html#unit-testing-with-the-typo3-testing-framework", + "Testing\/UnitTesting\/Index.html#testing-writing-unit", "Unit testing with the TYPO3 testing framework" ], "unit-test-conventions": [ "TYPO3 Explained", "13.4", - "Testing\/UnitTesting\/Index.html#unit-test-conventions", + "Testing\/UnitTesting\/Index.html#cgl-unit-tests", "Unit test conventions" ], "extending-unittestcase": [ "TYPO3 Explained", "13.4", - "Testing\/UnitTesting\/Index.html#extending-unittestcase", + "Testing\/UnitTesting\/Index.html#testing-writing-unit-extending", "Extending UnitTestCase" ], "general-hints": [ "TYPO3 Explained", "13.4", - "Testing\/UnitTesting\/Index.html#general-hints", + "Testing\/UnitTesting\/Index.html#testing-writing-unit-hints", "General hints" ], "a-casual-data-provider": [ "TYPO3 Explained", "13.4", - "Testing\/UnitTesting\/Index.html#a-casual-data-provider", + "Testing\/UnitTesting\/Index.html#testing-writing-unit-data-provider", "A casual data provider" ], "mocking": [ "TYPO3 Explained", "13.4", - "Testing\/UnitTesting\/Index.html#mocking", + "Testing\/UnitTesting\/Index.html#testing-writing-unit-mocking", "Mocking" ], "static-dependencies": [ "TYPO3 Explained", "13.4", - "Testing\/UnitTesting\/Index.html#static-dependencies", + "Testing\/UnitTesting\/Index.html#testing-writing-unit-dependencies", "Static dependencies" ], "exception-handling": [ "TYPO3 Explained", "13.4", - "Testing\/UnitTesting\/Index.html#exception-handling", + "Testing\/UnitTesting\/Index.html#testing-writing-unit-exception", "Exception handling" ], "introduction-to-unit-tests": [ "TYPO3 Explained", "13.4", - "Testing\/UnitTesting\/Introduction.html#introduction-to-unit-tests", + "Testing\/UnitTesting\/Introduction.html#testing-writing-unit-introduction", "Introduction to unit tests" ], "when-to-unit-test": [ "TYPO3 Explained", "13.4", - "Testing\/UnitTesting\/Introduction.html#when-to-unit-test", + "Testing\/UnitTesting\/Introduction.html#testing-writing-unit-when", "When to unit test" ], "when-not-to-unit-test": [ "TYPO3 Explained", "13.4", - "Testing\/UnitTesting\/Introduction.html#when-not-to-unit-test", + "Testing\/UnitTesting\/Introduction.html#testing-writing-unit-when-not", "When not to unit test" ], "keep-it-simple": [ "TYPO3 Explained", "13.4", - "Testing\/UnitTesting\/Introduction.html#keep-it-simple", + "Testing\/UnitTesting\/Introduction.html#testing-writing-unit-simple", "Keep it simple" ], "running-unit-tests": [ "TYPO3 Explained", "13.4", - "Testing\/UnitTesting\/Running.html#running-unit-tests", + "Testing\/UnitTesting\/Running.html#testing-unit-run", "Running Unit tests" ], "install-phpunit-and-the-typo3-testing-framework": [ "TYPO3 Explained", "13.4", - "Testing\/UnitTesting\/Running.html#install-phpunit-and-the-typo3-testing-framework", + "Testing\/UnitTesting\/Running.html#testing-unit-run-install", "Install PHPUnit and the TYPO3 testing framework" ], "provide-configuration-files-for-unit-tests": [ "TYPO3 Explained", "13.4", - "Testing\/UnitTesting\/Running.html#provide-configuration-files-for-unit-tests", + "Testing\/UnitTesting\/Running.html#testing-unit-run-configure", "Provide configuration files for unit tests" ], "run-the-unit-tests-on-your-system-or-with-ddev": [ @@ -49095,2467 +49521,2467 @@ "opcache-save-comments": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/TuneTYPO3.html#opcache-save-comments", + "Administration\/Installation\/TuneTYPO3.html#confval-opcache-save-comments", "opcache.save_comments" ], "opcache-use-cwd": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/TuneTYPO3.html#opcache-use-cwd", + "Administration\/Installation\/TuneTYPO3.html#confval-opcache-use-cwd", "opcache.use_cwd" ], "opcache-validate-timestamps": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/TuneTYPO3.html#opcache-validate-timestamps", + "Administration\/Installation\/TuneTYPO3.html#confval-opcache-validate-timestamps", "opcache.validate_timestamps" ], "opcache-revalidate-freq": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/TuneTYPO3.html#opcache-revalidate-freq", + "Administration\/Installation\/TuneTYPO3.html#confval-opcache-revalidate-freq", "opcache.revalidate_freq" ], "opcache-revalidate-path": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/TuneTYPO3.html#opcache-revalidate-path", + "Administration\/Installation\/TuneTYPO3.html#confval-opcache-revalidate-path", "opcache.revalidate_path" ], "opcache-max-accelerated-files": [ "TYPO3 Explained", "13.4", - "Administration\/Installation\/TuneTYPO3.html#opcache-max-accelerated-files", + "Administration\/Installation\/TuneTYPO3.html#confval-opcache-max-accelerated-files", "opcache.max_accelerated_files" ], "backend-module-parent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-parent", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-parent", "parent" ], "backend-module-path": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-path", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-path", "path" ], "backend-module-access": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-access", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-access", "access" ], "backend-module-workspaces": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-workspaces", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-workspaces", "workspaces" ], "backend-module-position": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-position", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-position", "position" ], "backend-module-appearance": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-appearance", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-appearance", "appearance" ], "backend-module-appearance-renderinmodulemenu": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-appearance-renderinmodulemenu", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-appearance-renderinmodulemenu", "appearance.renderInModuleMenu" ], "backend-module-iconidentifier": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-iconidentifier", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-iconidentifier", "iconIdentifier" ], "backend-module-icon": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-icon", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-icon", "icon" ], "backend-module-labels": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-labels", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-labels", "labels" ], "backend-module-component": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-component", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-component", "component" ], "backend-module-navigationcomponent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-navigationcomponent", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-navigationcomponent", "navigationComponent" ], "backend-module-navigationcomponentid": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-navigationcomponentid", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-navigationcomponentid", "navigationComponentId" ], "backend-module-inheritnavigationcomponentfrommainmodule": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-inheritnavigationcomponentfrommainmodule", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-inheritnavigationcomponentfrommainmodule", "inheritNavigationComponentFromMainModule" ], "backend-module-moduledata": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-moduledata", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-moduledata", "moduleData" ], "backend-module-aliases": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-aliases", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-aliases", "aliases" ], "backend-module-routeoptions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-routeoptions", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-routeoptions", "routeOptions" ], "backend-module-routes": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-routes", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-routes", "routes" ], "backend-module-extensionname": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-extensionname", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-extensionname", "extensionName" ], "backend-module-controlleractions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-controlleractions", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-controlleractions", "controllerActions" ], "modules-modals-settings-title": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-settings-title", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-settings-title", "title" ], "modules-modals-settings-content": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-settings-content", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-settings-content", "content" ], "modules-modals-settings-severity": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-settings-severity", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-settings-severity", "severity" ], "modules-modals-settings-buttons": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-settings-buttons", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-settings-buttons", "buttons" ], "modules-modals-settings-staticbackdrop": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-settings-staticbackdrop", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-settings-staticbackdrop", "staticBackdrop" ], "modules-modals-button-settings-text": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-button-settings-text", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-button-settings-text", "text" ], "modules-modals-button-settings-trigger": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-button-settings-trigger", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-button-settings-trigger", "trigger \/ action" ], "modules-modals-button-settings-active": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-button-settings-active", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-button-settings-active", "active" ], "modules-modals-button-settings-btnclass": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-button-settings-btnclass", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-button-settings-btnclass", "btnClass" ], "cachedparameterswhitelist": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/Index.html#cachedparameterswhitelist", + "ApiOverview\/CachingFramework\/Index.html#confval-cachedparameterswhitelist", "cachedParametersWhiteList" ], "requirecachehashpresenceparameters": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/Index.html#requirecachehashpresenceparameters", + "ApiOverview\/CachingFramework\/Index.html#confval-requirecachehashpresenceparameters", "requireCacheHashPresenceParameters" ], "excludedparameters": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/Index.html#excludedparameters", + "ApiOverview\/CachingFramework\/Index.html#confval-excludedparameters", "excludedParameters" ], "excludedparametersifempty": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/Index.html#excludedparametersifempty", + "ApiOverview\/CachingFramework\/Index.html#confval-excludedparametersifempty", "excludedParametersIfEmpty" ], "excludeallemptyparameters": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/Index.html#excludeallemptyparameters", + "ApiOverview\/CachingFramework\/Index.html#confval-excludeallemptyparameters", "excludeAllEmptyParameters" ], "enforcevalidation": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CachingFramework\/Index.html#enforcevalidation", + "ApiOverview\/CachingFramework\/Index.html#confval-enforcevalidation", "enforceValidation" ], "code-editor-register-addon-identifier": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CodeEditor\/Index.html#code-editor-register-addon-identifier", + "ApiOverview\/CodeEditor\/Index.html#confval-code-editor-register-addon-identifier", "<identifier>" ], "code-editor-register-addon-module": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CodeEditor\/Index.html#code-editor-register-addon-module", + "ApiOverview\/CodeEditor\/Index.html#confval-code-editor-register-addon-module", "module" ], "code-editor-register-addon-cssfiles": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CodeEditor\/Index.html#code-editor-register-addon-cssfiles", + "ApiOverview\/CodeEditor\/Index.html#confval-code-editor-register-addon-cssfiles", "cssFiles" ], "code-editor-register-addon-options": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CodeEditor\/Index.html#code-editor-register-addon-options", + "ApiOverview\/CodeEditor\/Index.html#confval-code-editor-register-addon-options", "options" ], "code-editor-register-addon-modes": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CodeEditor\/Index.html#code-editor-register-addon-modes", + "ApiOverview\/CodeEditor\/Index.html#confval-code-editor-register-addon-modes", "modes" ], "code-editor-register-mode-identifier": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CodeEditor\/Index.html#code-editor-register-mode-identifier", + "ApiOverview\/CodeEditor\/Index.html#confval-code-editor-register-mode-identifier", "<identifier>" ], "code-editor-register-mode-module": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CodeEditor\/Index.html#code-editor-register-mode-module", + "ApiOverview\/CodeEditor\/Index.html#confval-code-editor-register-mode-module", "module" ], "code-editor-register-mode-extensions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CodeEditor\/Index.html#code-editor-register-mode-extensions", + "ApiOverview\/CodeEditor\/Index.html#confval-code-editor-register-mode-extensions", "extensions" ], "code-editor-register-mode-default": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CodeEditor\/Index.html#code-editor-register-mode-default", + "ApiOverview\/CodeEditor\/Index.html#confval-code-editor-register-mode-default", "default" ], "content-security-policy-mode-append": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-mode-append", + "ApiOverview\/ContentSecurityPolicy\/Index.html#confval-content-security-policy-mode-append", "append" ], "content-security-policy-mode-extend": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-mode-extend", + "ApiOverview\/ContentSecurityPolicy\/Index.html#confval-content-security-policy-mode-extend", "extend" ], "content-security-policy-mode-inherit-again": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-mode-inherit-again", + "ApiOverview\/ContentSecurityPolicy\/Index.html#confval-content-security-policy-mode-inherit-again", "inherit-again" ], "content-security-policy-mode-inherit-once": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-mode-inherit-once", + "ApiOverview\/ContentSecurityPolicy\/Index.html#confval-content-security-policy-mode-inherit-once", "inherit-once" ], "content-security-policy-mode-reduce": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-mode-reduce", + "ApiOverview\/ContentSecurityPolicy\/Index.html#confval-content-security-policy-mode-reduce", "reduce" ], "content-security-policy-mode-remove": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-mode-remove", + "ApiOverview\/ContentSecurityPolicy\/Index.html#confval-content-security-policy-mode-remove", "remove" ], "content-security-policy-mode-set": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-mode-set", + "ApiOverview\/ContentSecurityPolicy\/Index.html#confval-content-security-policy-mode-set", "set" ], "datetime-aspect-timestamp": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#datetime-aspect-timestamp", + "ApiOverview\/Context\/Index.html#confval-datetime-aspect-timestamp", "timestamp" ], "datetime-aspect-timezone": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#datetime-aspect-timezone", + "ApiOverview\/Context\/Index.html#confval-datetime-aspect-timezone", "timezone" ], "datetime-aspect-iso": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#datetime-aspect-iso", + "ApiOverview\/Context\/Index.html#confval-datetime-aspect-iso", "iso" ], "datetime-aspect-full": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#datetime-aspect-full", + "ApiOverview\/Context\/Index.html#confval-datetime-aspect-full", "full" ], "language-aspect-id": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#language-aspect-id", + "ApiOverview\/Context\/Index.html#confval-language-aspect-id", "id" ], "language-aspect-contentid": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#language-aspect-contentid", + "ApiOverview\/Context\/Index.html#confval-language-aspect-contentid", "contentId" ], "language-aspect-fallbackchain": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#language-aspect-fallbackchain", + "ApiOverview\/Context\/Index.html#confval-language-aspect-fallbackchain", "fallbackChain" ], "language-aspect-overlaytype": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#language-aspect-overlaytype", + "ApiOverview\/Context\/Index.html#confval-language-aspect-overlaytype", "overlayType" ], "language-aspect-legacylanguagemode": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#language-aspect-legacylanguagemode", + "ApiOverview\/Context\/Index.html#confval-language-aspect-legacylanguagemode", "legacyLanguageMode" ], "language-aspect-legacyoverlaytype": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#language-aspect-legacyoverlaytype", + "ApiOverview\/Context\/Index.html#confval-language-aspect-legacyoverlaytype", "legacyOverlayType" ], "preview-aspect-ispreview": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#preview-aspect-ispreview", + "ApiOverview\/Context\/Index.html#confval-preview-aspect-ispreview", "isPreview" ], "user-aspect-id": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#user-aspect-id", + "ApiOverview\/Context\/Index.html#confval-user-aspect-id", "id" ], "user-aspect-username": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#user-aspect-username", + "ApiOverview\/Context\/Index.html#confval-user-aspect-username", "username" ], "user-aspect-isloggedin": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#user-aspect-isloggedin", + "ApiOverview\/Context\/Index.html#confval-user-aspect-isloggedin", "isLoggedIn" ], "user-aspect-isadmin": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#user-aspect-isadmin", + "ApiOverview\/Context\/Index.html#confval-user-aspect-isadmin", "isAdmin" ], "user-aspect-groupids": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#user-aspect-groupids", + "ApiOverview\/Context\/Index.html#confval-user-aspect-groupids", "groupIds" ], "user-aspect-groupnames": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#user-aspect-groupnames", + "ApiOverview\/Context\/Index.html#confval-user-aspect-groupnames", "groupNames" ], "visibility-aspect-includehiddenpages": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#visibility-aspect-includehiddenpages", + "ApiOverview\/Context\/Index.html#confval-visibility-aspect-includehiddenpages", "includeHiddenPages" ], "visibility-aspect-includehiddencontent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#visibility-aspect-includehiddencontent", + "ApiOverview\/Context\/Index.html#confval-visibility-aspect-includehiddencontent", "includeHiddenContent" ], "visibility-aspect-includedeletedrecords": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#visibility-aspect-includedeletedrecords", + "ApiOverview\/Context\/Index.html#confval-visibility-aspect-includedeletedrecords", "includeDeletedRecords" ], "workspace-aspect-id": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#workspace-aspect-id", + "ApiOverview\/Context\/Index.html#confval-workspace-aspect-id", "id" ], "workspace-aspect-islive": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#workspace-aspect-islive", + "ApiOverview\/Context\/Index.html#confval-workspace-aspect-islive", "isLive" ], "workspace-aspect-isoffline": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Context\/Index.html#workspace-aspect-isoffline", + "ApiOverview\/Context\/Index.html#confval-workspace-aspect-isoffline", "isOffline" ], "target": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Middleware\/Index.html#target", + "ApiOverview\/Database\/Middleware\/Index.html#confval-target", "target" ], "before": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Middleware\/Index.html#before", + "ApiOverview\/Database\/Middleware\/Index.html#confval-before", "before" ], "after": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Middleware\/Index.html#after", + "ApiOverview\/Database\/Middleware\/Index.html#confval-after", "after" ], "disabled": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Database\/Middleware\/Index.html#disabled", + "ApiOverview\/Database\/Middleware\/Index.html#confval-disabled", "disabled" ], "datahandler-cmd-tablename": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-tablename", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-tablename", "tablename" ], "datahandler-cmd-uid": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-uid", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-uid", "uid" ], "datahandler-cmd-command": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-command", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-command", "command" ], "datahandler-cmd-value": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-value", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-value", "value" ], "datahandler-cmd-copy": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-copy", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-copy", "copy" ], "datahandler-cmd-move": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-move", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-move", "move" ], "datahandler-cmd-delete": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-delete", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-delete", "delete" ], "datahandler-cmd-undelete": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-undelete", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-undelete", "undelete" ], "datahandler-cmd-localize": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-localize", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-localize", "localize" ], "datahandler-cmd-copytolanguage": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-copytolanguage", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-copytolanguage", "copyToLanguage" ], "datahandler-cmd-inlinelocalizesynchronize": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-inlinelocalizesynchronize", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-inlinelocalizesynchronize", "inlineLocalizeSynchronize" ], "datahandler-cmd-version": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-version", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-version", "version" ], "datahandler-data-tablename": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-data-tablename", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-data-tablename", "tablename" ], "datahandler-data-uid": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-data-uid", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-data-uid", "uid" ], "datahandler-data-fieldname": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-data-fieldname", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-data-fieldname", "fieldname" ], "datahandler-data-value": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-data-value", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-data-value", "value" ], "datahandler-clear-cachecmd-integer": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-clear-cachecmd-integer", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-clear-cachecmd-integer", "[integer]" ], "datahandler-clear-cachecmd-all": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-clear-cachecmd-all", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-clear-cachecmd-all", "\"all\"" ], "datahandler-clear-cachecmd-pages": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-clear-cachecmd-pages", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-clear-cachecmd-pages", "\"pages\"" ], "datahandler-flags-copytree": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-flags-copytree", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-flags-copytree", "->copyTree" ], "datahandler-flags-reverseorder": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-flags-reverseorder", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-flags-reverseorder", "->reverseOrder" ], "datahandler-flags-copywhichtables": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-flags-copywhichtables", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-flags-copywhichtables", "->copyWhichTables" ], "datahandler-commit-data": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/TceDb\/Index.html#datahandler-commit-data", + "ApiOverview\/DataHandler\/TceDb\/Index.html#confval-datahandler-commit-data", "data" ], "datahandler-commit-cmd": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/TceDb\/Index.html#datahandler-commit-cmd", + "ApiOverview\/DataHandler\/TceDb\/Index.html#confval-datahandler-commit-cmd", "cmd" ], "datahandler-commit-cachecmd": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/TceDb\/Index.html#datahandler-commit-cachecmd", + "ApiOverview\/DataHandler\/TceDb\/Index.html#confval-datahandler-commit-cachecmd", "cacheCmd" ], "datahandler-commit-redirect": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/TceDb\/Index.html#datahandler-commit-redirect", + "ApiOverview\/DataHandler\/TceDb\/Index.html#confval-datahandler-commit-redirect", "redirect" ], "datahandler-commit-flags": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/TceDb\/Index.html#datahandler-commit-flags", + "ApiOverview\/DataHandler\/TceDb\/Index.html#confval-datahandler-commit-flags", "flags" ], "datahandler-commit-mirror": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/TceDb\/Index.html#datahandler-commit-mirror", + "ApiOverview\/DataHandler\/TceDb\/Index.html#confval-datahandler-commit-mirror", "mirror" ], "datahandler-commit-cb": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/TceDb\/Index.html#datahandler-commit-cb", + "ApiOverview\/DataHandler\/TceDb\/Index.html#confval-datahandler-commit-cb", "CB" ], "datahandler-commit-vc": [ "TYPO3 Explained", "13.4", - "ApiOverview\/DataHandler\/TceDb\/Index.html#datahandler-commit-vc", + "ApiOverview\/DataHandler\/TceDb\/Index.html#confval-datahandler-commit-vc", "vC" ], "logger-log-level": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Logger\/Index.html#logger-log-level", + "ApiOverview\/Logging\/Logger\/Index.html#confval-logger-log-level", "$level" ], "logger-log-message": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Logger\/Index.html#logger-log-message", + "ApiOverview\/Logging\/Logger\/Index.html#confval-logger-log-message", "$message" ], "logger-log-data": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Logger\/Index.html#logger-log-data", + "ApiOverview\/Logging\/Logger\/Index.html#confval-logger-log-data", "$data" ], "logger-debug": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Logger\/Index.html#logger-debug", + "ApiOverview\/Logging\/Logger\/Index.html#confval-logger-debug", "Debug" ], "logger-info": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Logger\/Index.html#logger-info", + "ApiOverview\/Logging\/Logger\/Index.html#confval-logger-info", "Informational" ], "logger-notice": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Logger\/Index.html#logger-notice", + "ApiOverview\/Logging\/Logger\/Index.html#confval-logger-notice", "Notice" ], "logger-warning": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Logger\/Index.html#logger-warning", + "ApiOverview\/Logging\/Logger\/Index.html#confval-logger-warning", "Warning" ], "logger-error": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Logger\/Index.html#logger-error", + "ApiOverview\/Logging\/Logger\/Index.html#confval-logger-error", "Error" ], "logger-critical": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Logger\/Index.html#logger-critical", + "ApiOverview\/Logging\/Logger\/Index.html#confval-logger-critical", "Critical" ], "logger-alert": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Logger\/Index.html#logger-alert", + "ApiOverview\/Logging\/Logger\/Index.html#confval-logger-alert", "Alert" ], "logger-emergency": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Logger\/Index.html#logger-emergency", + "ApiOverview\/Logging\/Logger\/Index.html#confval-logger-emergency", "Emergency" ], "logging-processors-introspection-appendfullbacktrace": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-introspection-appendfullbacktrace", + "ApiOverview\/Logging\/Processors\/Index.html#confval-logging-processors-introspection-appendfullbacktrace", "appendFullBackTrace" ], "logging-processors-introspection-shiftbacktracelevel": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-introspection-shiftbacktracelevel", + "ApiOverview\/Logging\/Processors\/Index.html#confval-logging-processors-introspection-shiftbacktracelevel", "shiftBackTraceLevel" ], "logging-processors-memory-realmemoryusage": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-memory-realmemoryusage", + "ApiOverview\/Logging\/Processors\/Index.html#confval-logging-processors-memory-realmemoryusage", "realMemoryUsage" ], "logging-processors-memory-formatsize": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-memory-formatsize", + "ApiOverview\/Logging\/Processors\/Index.html#confval-logging-processors-memory-formatsize", "formatSize" ], "logging-processors-memory-peak-realmemoryusage": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-memory-peak-realmemoryusage", + "ApiOverview\/Logging\/Processors\/Index.html#confval-logging-processors-memory-peak-realmemoryusage", "realMemoryUsage" ], "logging-processors-memory-peak-formatsize": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-memory-peak-formatsize", + "ApiOverview\/Logging\/Processors\/Index.html#confval-logging-processors-memory-peak-formatsize", "formatSize" ], "database-writer-logtable": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Writers\/Index.html#database-writer-logtable", + "ApiOverview\/Logging\/Writers\/Index.html#confval-database-writer-logtable", "logTable" ], "file-writer-logfile": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Writers\/Index.html#file-writer-logfile", + "ApiOverview\/Logging\/Writers\/Index.html#confval-file-writer-logfile", "logFile" ], "file-writer-logfileinfix": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Writers\/Index.html#file-writer-logfileinfix", + "ApiOverview\/Logging\/Writers\/Index.html#confval-file-writer-logfileinfix", "logFileInfix" ], "rotating-file-writer-interval": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Writers\/Index.html#rotating-file-writer-interval", + "ApiOverview\/Logging\/Writers\/Index.html#confval-rotating-file-writer-interval", "interval" ], "rotating-file-writer-maxfiles": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Writers\/Index.html#rotating-file-writer-maxfiles", + "ApiOverview\/Logging\/Writers\/Index.html#confval-rotating-file-writer-maxfiles", "maxFiles" ], "syslog-writer-facility": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Logging\/Writers\/Index.html#syslog-writer-facility", + "ApiOverview\/Logging\/Writers\/Index.html#confval-syslog-writer-facility", "facility" ], "minimumlength": [ "TYPO3 Explained", "13.4", - "ApiOverview\/PasswordPolicies\/Index.html#minimumlength", + "ApiOverview\/PasswordPolicies\/Index.html#confval-minimumlength", "minimumLength" ], "uppercasecharacterrequired": [ "TYPO3 Explained", "13.4", - "ApiOverview\/PasswordPolicies\/Index.html#uppercasecharacterrequired", + "ApiOverview\/PasswordPolicies\/Index.html#confval-uppercasecharacterrequired", "upperCaseCharacterRequired" ], "lowercasecharacterrequired": [ "TYPO3 Explained", "13.4", - "ApiOverview\/PasswordPolicies\/Index.html#lowercasecharacterrequired", + "ApiOverview\/PasswordPolicies\/Index.html#confval-lowercasecharacterrequired", "lowerCaseCharacterRequired" ], "digitcharacterrequired": [ "TYPO3 Explained", "13.4", - "ApiOverview\/PasswordPolicies\/Index.html#digitcharacterrequired", + "ApiOverview\/PasswordPolicies\/Index.html#confval-digitcharacterrequired", "digitCharacterRequired" ], "specialcharacterrequired": [ "TYPO3 Explained", "13.4", - "ApiOverview\/PasswordPolicies\/Index.html#specialcharacterrequired", + "ApiOverview\/PasswordPolicies\/Index.html#confval-specialcharacterrequired", "specialCharacterRequired" ], "css-transform": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Rte\/Transformations\/Overview.html#css-transform", + "ApiOverview\/Rte\/Transformations\/Overview.html#confval-css-transform", "css_transform" ], "ts-links": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Rte\/Transformations\/Overview.html#ts-links", + "ApiOverview\/Rte\/Transformations\/Overview.html#confval-ts-links", "ts_links" ], "sitehandling-addinglanguages-enabled": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-enabled", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-enabled", "enabled" ], "sitehandling-addinglanguages-languageid": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-languageid", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-languageid", "languageId" ], "sitehandling-addinglanguages-title": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-title", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-title", "title" ], "sitehandling-addinglanguages-websitetitle": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-websitetitle", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-websitetitle", "websiteTitle" ], "sitehandling-addinglanguages-navigationtitle": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-navigationtitle", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-navigationtitle", "navigationTitle" ], "sitehandling-addinglanguages-base": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-base", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-base", "base" ], "sitehandling-addinglanguages-basevariants": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-basevariants", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-basevariants", "baseVariants" ], "sitehandling-addinglanguages-locale": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-locale", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-locale", "locale" ], "sitehandling-addinglanguages-hreflang": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-hreflang", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-hreflang", "hreflang" ], "sitehandling-addinglanguages-typo3language": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-typo3language", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-typo3language", "typo3Language" ], "sitehandling-addinglanguages-flag": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-flag", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-flag", "flag" ], "sitehandling-addinglanguages-fallbacktype": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-fallbacktype", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-fallbacktype", "fallbackType" ], "sitehandling-addinglanguages-fallbacks": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-fallbacks", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-fallbacks", "fallbacks" ], "site-settings-definition-categories": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition-categories", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-settings-definition-categories", "categories" ], "site-settings-definition-categories-label": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition-categories-label", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-settings-definition-categories-label", "label" ], "site-settings-definition-categories-parent": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition-categories-parent", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-settings-definition-categories-parent", "parent" ], "site-settings-definition-settings": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition-settings", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-settings-definition-settings", "settings" ], "site-settings-definition-settings-label": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition-settings-label", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-settings-definition-settings-label", "label" ], "site-settings-definition-settings-description": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition-settings-description", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-settings-definition-settings-description", "description" ], "site-settings-definition-settings-category": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition-settings-category", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-settings-definition-settings-category", "category" ], "site-settings-definition-settings-type": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition-settings-type", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-settings-definition-settings-type", "type" ], "site-settings-definition-settings-default": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition-settings-default", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-settings-definition-settings-default", "default" ], "site-settings-definition-settings-readonly": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition-settings-readonly", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-settings-definition-settings-readonly", "readonly" ], "enum": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#enum", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-enum", "enum" ], "site-setting-type-int": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-setting-type-int", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-setting-type-int", "int" ], "site-setting-type-number": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-setting-type-number", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-setting-type-number", "number" ], "site-setting-type-bool": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-setting-type-bool", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-setting-type-bool", "bool" ], "site-setting-type-string": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-setting-type-string", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-setting-type-string", "string" ], "site-setting-type-text": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-setting-type-text", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-setting-type-text", "text" ], "site-setting-type-stringlist": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-setting-type-stringlist", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-setting-type-stringlist", "stringlist" ], "site-setting-type-color": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-setting-type-color", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-setting-type-color", "color" ], "sys-registry-uid": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SystemRegistry\/Index.html#sys-registry-uid", + "ApiOverview\/SystemRegistry\/Index.html#confval-sys-registry-uid", "uid" ], "sys-registry-entry-namespace": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SystemRegistry\/Index.html#sys-registry-entry-namespace", + "ApiOverview\/SystemRegistry\/Index.html#confval-sys-registry-entry-namespace", "entry_namespace" ], "sys-registry-entry-key": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SystemRegistry\/Index.html#sys-registry-entry-key", + "ApiOverview\/SystemRegistry\/Index.html#confval-sys-registry-entry-key", "entry_key" ], "sys-registry-entry-value": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SystemRegistry\/Index.html#sys-registry-entry-value", + "ApiOverview\/SystemRegistry\/Index.html#confval-sys-registry-entry-value", "entry_value" ], "flag-file-lock-backend": [ "TYPO3 Explained", "13.4", - "Configuration\/FlagFiles\/Index.html#flag-file-lock-backend", + "Configuration\/FlagFiles\/Index.html#confval-flag-file-lock-backend", "LOCK_BACKEND" ], "flag-file-first-install": [ "TYPO3 Explained", "13.4", - "Configuration\/FlagFiles\/Index.html#flag-file-first-install", + "Configuration\/FlagFiles\/Index.html#confval-flag-file-first-install", "FIRST_INSTALL" ], "flag-file-enable-install-tool": [ "TYPO3 Explained", "13.4", - "Configuration\/FlagFiles\/Index.html#flag-file-enable-install-tool", + "Configuration\/FlagFiles\/Index.html#confval-flag-file-enable-install-tool", "ENABLE_INSTALL_TOOL" ], "globals-typo3-conf-vars": [ "TYPO3 Explained", "13.4", - "Configuration\/GlobalVariables.html#globals-typo3-conf-vars", + "Configuration\/GlobalVariables.html#confval-globals-typo3-conf-vars", "TYPO3_CONF_VARS" ], "globals-tca": [ "TYPO3 Explained", "13.4", - "Configuration\/GlobalVariables.html#globals-tca", + "Configuration\/GlobalVariables.html#confval-globals-tca", "TCA" ], "globals-t3-services": [ "TYPO3 Explained", "13.4", - "Configuration\/GlobalVariables.html#globals-t3-services", + "Configuration\/GlobalVariables.html#confval-globals-t3-services", "T3_SERVICES" ], "globals-tsfe": [ "TYPO3 Explained", "13.4", - "Configuration\/GlobalVariables.html#globals-tsfe", + "Configuration\/GlobalVariables.html#confval-globals-tsfe", "TSFE" ], "globals-typo3-user-settings": [ "TYPO3 Explained", "13.4", - "Configuration\/GlobalVariables.html#globals-typo3-user-settings", + "Configuration\/GlobalVariables.html#confval-globals-typo3-user-settings", "TYPO3_USER_SETTINGS" ], "globals-pages-types": [ "TYPO3 Explained", "13.4", - "Configuration\/GlobalVariables.html#globals-pages-types", + "Configuration\/GlobalVariables.html#confval-globals-pages-types", "PAGES_TYPES" ], "globals-be-users": [ "TYPO3 Explained", "13.4", - "Configuration\/GlobalVariables.html#globals-be-users", + "Configuration\/GlobalVariables.html#confval-globals-be-users", "BE_USER" ], "globals-exec-time": [ "TYPO3 Explained", "13.4", - "Configuration\/GlobalVariables.html#globals-exec-time", + "Configuration\/GlobalVariables.html#confval-globals-exec-time", "EXEC_TIME" ], "globals-sim-exec-time": [ "TYPO3 Explained", "13.4", - "Configuration\/GlobalVariables.html#globals-sim-exec-time", + "Configuration\/GlobalVariables.html#confval-globals-sim-exec-time", "SIM_EXEC_TIME" ], "globals-lang": [ "TYPO3 Explained", "13.4", - "Configuration\/GlobalVariables.html#globals-lang", + "Configuration\/GlobalVariables.html#confval-globals-lang", "LANG" ], "globals-typo3-conf-vars-be-fileadmindir": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-fileadmindir", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-fileadmindir", "fileadminDir" ], "globals-typo3-conf-vars-be-lockbackendfile": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-lockbackendfile", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-lockbackendfile", "lockBackendFile" ], "globals-typo3-conf-vars-be-lockrootpath": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-lockrootpath", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-lockrootpath", "lockRootPath" ], "globals-typo3-conf-vars-be-userhomepath": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-userhomepath", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-userhomepath", "userHomePath" ], "globals-typo3-conf-vars-be-grouphomepath": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-grouphomepath", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-grouphomepath", "groupHomePath" ], "globals-typo3-conf-vars-be-useruploaddir": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-useruploaddir", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-useruploaddir", "userUploadDir" ], "globals-typo3-conf-vars-be-warning-email-addr": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-warning-email-addr", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-warning-email-addr", "warning_email_addr" ], "globals-typo3-conf-vars-be-warning-mode": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-warning-mode", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-warning-mode", "warning_mode" ], "globals-typo3-conf-vars-be-passwordreset": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-passwordreset", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-passwordreset", "passwordReset" ], "globals-typo3-conf-vars-be-passwordresetforadmins": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-passwordresetforadmins", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-passwordresetforadmins", "passwordResetForAdmins" ], "globals-typo3-conf-vars-be-requiremfa": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-requiremfa", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-requiremfa", "requireMfa" ], "globals-typo3-conf-vars-be-recommendedmfaprovider": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-recommendedmfaprovider", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-recommendedmfaprovider", "recommendedMfaProvider" ], "globals-typo3-conf-vars-be-loginratelimit": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-loginratelimit", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-loginratelimit", "loginRateLimit" ], "globals-typo3-conf-vars-be-loginratelimitinterval": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-loginratelimitinterval", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-loginratelimitinterval", "loginRateLimitInterval" ], "globals-typo3-conf-vars-be-loginratelimitipexcludelist": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-loginratelimitipexcludelist", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-loginratelimitipexcludelist", "loginRateLimitIpExcludeList" ], "globals-typo3-conf-vars-be-lockip": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-lockip", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-lockip", "lockIP" ], "globals-typo3-conf-vars-be-lockipv6": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-lockipv6", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-lockipv6", "lockIPv6" ], "globals-typo3-conf-vars-be-sessiontimeout": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-sessiontimeout", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-sessiontimeout", "sessionTimeout" ], "globals-typo3-conf-vars-be-ipmasklist": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-ipmasklist", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-ipmasklist", "IPmaskList" ], "globals-typo3-conf-vars-be-lockssl": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-lockssl", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-lockssl", "lockSSL" ], "globals-typo3-conf-vars-be-locksslport": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-locksslport", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-locksslport", "lockSSLPort" ], "globals-typo3-conf-vars-be-cookiedomain": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-cookiedomain", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-cookiedomain", "cookieDomain" ], "globals-typo3-conf-vars-be-cookiename": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-cookiename", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-cookiename", "cookieName" ], "globals-typo3-conf-vars-be-cookiesamesite": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-cookiesamesite", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-cookiesamesite", "cookieSameSite" ], "globals-typo3-conf-vars-be-showrefreshloginpopup": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-showrefreshloginpopup", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-showrefreshloginpopup", "showRefreshLoginPopup" ], "globals-typo3-conf-vars-be-adminonly": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-adminonly", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-adminonly", "adminOnly" ], "globals-typo3-conf-vars-be-disable-exec-function": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-disable-exec-function", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-disable-exec-function", "disable_exec_function" ], "globals-typo3-conf-vars-be-compressionlevel": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-compressionlevel", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-compressionlevel", "compressionLevel" ], "globals-typo3-conf-vars-be-installtoolpassword": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-installtoolpassword", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-installtoolpassword", "installToolPassword" ], "globals-typo3-conf-vars-be-checkstoredrecords": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-checkstoredrecords", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-checkstoredrecords", "checkStoredRecords" ], "globals-typo3-conf-vars-be-checkstoredrecordsloose": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-checkstoredrecordsloose", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-checkstoredrecordsloose", "checkStoredRecordsLoose" ], "globals-typo3-conf-vars-be-defaultusertsconfig": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-defaultusertsconfig", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-defaultusertsconfig", "defaultUserTSconfig" ], "globals-typo3-conf-vars-be-defaultpagetsconfig": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-defaultpagetsconfig", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-defaultpagetsconfig", "defaultPageTSconfig" ], "globals-typo3-conf-vars-be-defaultpermissions": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-defaultpermissions", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-defaultpermissions", "defaultPermissions" ], "globals-typo3-conf-vars-be-defaultuc": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-defaultuc", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-defaultuc", "defaultUC" ], "globals-typo3-conf-vars-be-custompermoptions": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-custompermoptions", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-custompermoptions", "customPermOptions" ], "globals-typo3-conf-vars-be-filedenypattern": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-filedenypattern", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-filedenypattern", "fileDenyPattern" ], "globals-typo3-conf-vars-be-flexformforcecdata": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-flexformforcecdata", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-flexformforcecdata", "flexformForceCDATA" ], "globals-typo3-conf-vars-be-versionnumberinfilename": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-versionnumberinfilename", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-versionnumberinfilename", "versionNumberInFilename" ], "globals-typo3-conf-vars-be-debug": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-debug", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-debug", "debug" ], "globals-typo3-conf-vars-be-http": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-http", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-http", "HTTP" ], "globals-typo3-conf-vars-be-passwordhashing": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-passwordhashing", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-passwordhashing", "passwordHashing" ], "globals-typo3-conf-vars-be-passwordhashing-classname": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-passwordhashing-classname", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-passwordhashing-classname", "className" ], "globals-typo3-conf-vars-be-passwordhashing-options": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-passwordhashing-options", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-passwordhashing-options", "options" ], "globals-typo3-conf-vars-be-passwordpolicy": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-passwordpolicy", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-passwordpolicy", "passwordPolicy" ], "globals-typo3-conf-vars-be-stylesheets": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-stylesheets", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-stylesheets", "stylesheets" ], "globals-typo3-conf-vars-be-contentsecuritypolicyreportingurl": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-contentsecuritypolicyreportingurl", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-contentsecuritypolicyreportingurl", "contentSecurityPolicyReportingUrl" ], "globals-typo3-conf-vars-be-entrypoint": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-entrypoint", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-entrypoint", "entryPoint" ], "typo3-conf-vars-db-additionalqueryrestrictions": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-additionalqueryrestrictions", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-additionalqueryrestrictions", "additionalQueryRestrictions" ], "typo3-conf-vars-db-connections": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connections", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connections", "Connections" ], "typo3-conf-vars-db-connection-name-charset": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-charset", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-charset", "charset" ], "typo3-conf-vars-db-connection-name-dbname": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-dbname", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-dbname", "dbname" ], "typo3-conf-vars-db-connection-name-defaulttableoptions": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-defaulttableoptions", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-defaulttableoptions", "defaultTableOptions" ], "typo3-conf-vars-db-connection-name-driver": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-driver", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-driver", "driver" ], "typo3-conf-vars-db-connection-name-host": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-host", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-host", "host" ], "typo3-conf-vars-db-connection-name-password": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-password", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-password", "password" ], "typo3-conf-vars-db-connection-name-path": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-path", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-path", "path" ], "typo3-conf-vars-db-connection-name-port": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-port", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-port", "port" ], "typo3-conf-vars-db-connection-name-tableoptions": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-tableoptions", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-tableoptions", "tableoptions" ], "typo3-conf-vars-db-connection-name-unix-socket": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-unix-socket", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-unix-socket", "unix_socket" ], "typo3-conf-vars-db-connection-name-user": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-user", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-user", "user" ], "globals-typo3-conf-vars-db-tablemapping": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/DB.html#globals-typo3-conf-vars-db-tablemapping", + "Configuration\/Typo3ConfVars\/DB.html#confval-globals-typo3-conf-vars-db-tablemapping", "TableMapping" ], "globals-typo3-conf-vars-excludeforpackaging": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/EXT.html#globals-typo3-conf-vars-excludeforpackaging", + "Configuration\/Typo3ConfVars\/EXT.html#confval-globals-typo3-conf-vars-excludeforpackaging", "excludeForPackaging" ], "typo3-conf-vars-fe-addallowedpaths": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-addallowedpaths", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-addallowedpaths", "addAllowedPaths" ], "typo3-conf-vars-fe-debug": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-debug", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-debug", "debug" ], "typo3-conf-vars-fe-compressionlevel": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-compressionlevel", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-compressionlevel", "compressionLevel" ], "typo3-conf-vars-fe-pagenotfoundonchasherror": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-pagenotfoundonchasherror", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-pagenotfoundonchasherror", "pageNotFoundOnCHashError" ], "typo3-conf-vars-fe-pageunavailable-force": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-pageunavailable-force", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-pageunavailable-force", "pageUnavailable_force" ], "typo3-conf-vars-fe-addrootlinefields": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-addrootlinefields", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-addrootlinefields", "addRootLineFields" ], "typo3-conf-vars-fe-checkfeuserpid": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-checkfeuserpid", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-checkfeuserpid", "checkFeUserPid" ], "typo3-conf-vars-fe-loginratelimit": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-loginratelimit", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-loginratelimit", "loginRateLimit" ], "typo3-conf-vars-fe-loginratelimitinterval": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-loginratelimitinterval", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-loginratelimitinterval", "loginRateLimitInterval" ], "typo3-conf-vars-fe-loginratelimitipexcludelist": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-loginratelimitipexcludelist", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-loginratelimitipexcludelist", "loginRateLimitIpExcludeList" ], "typo3-conf-vars-fe-lockip": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-lockip", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-lockip", "lockIP" ], "typo3-conf-vars-fe-lockipv6": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-lockipv6", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-lockipv6", "lockIPv6" ], "typo3-conf-vars-fe-lifetime": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-lifetime", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-lifetime", "lifetime" ], "typo3-conf-vars-fe-sessiontimeout": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-sessiontimeout", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-sessiontimeout", "sessionTimeout" ], "typo3-conf-vars-fe-sessiondatalifetime": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-sessiondatalifetime", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-sessiondatalifetime", "sessionDataLifetime" ], "typo3-conf-vars-fe-permalogin": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-permalogin", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-permalogin", "permalogin" ], "typo3-conf-vars-fe-cookiedomain": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cookiedomain", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cookiedomain", "cookieDomain" ], "typo3-conf-vars-fe-cookiename": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cookiename", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cookiename", "cookieName" ], "typo3-conf-vars-fe-cookiesamesite": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cookiesamesite", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cookiesamesite", "cookieSameSite" ], "typo3-conf-vars-fe-defaulttyposcript-constants": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-defaulttyposcript-constants", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-defaulttyposcript-constants", "defaultTypoScript_constants" ], "typo3-conf-vars-fe-defaulttyposcript-setup": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-defaulttyposcript-setup", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-defaulttyposcript-setup", "defaultTypoScript_setup" ], "typo3-conf-vars-fe-additionalabsrefprefixdirectories": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-additionalabsrefprefixdirectories", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-additionalabsrefprefixdirectories", "additionalAbsRefPrefixDirectories" ], "typo3-conf-vars-fe-enable-mount-pids": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-enable-mount-pids", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-enable-mount-pids", "enable_mount_pids" ], "typo3-conf-vars-fe-hidepagesifnottranslatedbydefault": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-hidepagesifnottranslatedbydefault", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-hidepagesifnottranslatedbydefault", "hidePagesIfNotTranslatedByDefault" ], "typo3-conf-vars-fe-eid-include": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-eid-include", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-eid-include", "eID_include" ], "typo3-conf-vars-fe-disablenocacheparameter": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-disablenocacheparameter", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-disablenocacheparameter", "disableNoCacheParameter" ], "typo3-conf-vars-fe-additionalcanonicalizedurlparameters": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-additionalcanonicalizedurlparameters", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-additionalcanonicalizedurlparameters", "additionalCanonicalizedUrlParameters" ], "typo3-conf-vars-fe-cachehash": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cachehash", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cachehash", "cacheHash" ], "typo3-conf-vars-fe-cachehash-cachedparameterswhitelist": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cachehash-cachedparameterswhitelist", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cachehash-cachedparameterswhitelist", "cachedParametersWhiteList" ], "typo3-conf-vars-fe-cachehash-requirecachehashpresenceparameters": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cachehash-requirecachehashpresenceparameters", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cachehash-requirecachehashpresenceparameters", "requireCacheHashPresenceParameters" ], "typo3-conf-vars-fe-cachehash-excludedparameters": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cachehash-excludedparameters", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cachehash-excludedparameters", "excludedParameters" ], "typo3-conf-vars-fe-cachehash-excludedparametersifempty": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cachehash-excludedparametersifempty", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cachehash-excludedparametersifempty", "excludedParametersIfEmpty" ], "typo3-conf-vars-fe-cachehash-excludeallemptyparameters": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cachehash-excludeallemptyparameters", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cachehash-excludeallemptyparameters", "excludeAllEmptyParameters" ], "typo3-conf-vars-fe-cachehash-enforcevalidation": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cachehash-enforcevalidation", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cachehash-enforcevalidation", "enforceValidation" ], "typo3-conf-vars-fe-workspacepreviewlogouttemplate": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-workspacepreviewlogouttemplate", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-workspacepreviewlogouttemplate", "workspacePreviewLogoutTemplate" ], "typo3-conf-vars-fe-versionnumberinfilename": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-versionnumberinfilename", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-versionnumberinfilename", "versionNumberInFilename" ], "typo3-conf-vars-fe-contentrenderingtemplates": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-contentrenderingtemplates", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-contentrenderingtemplates", "contentRenderingTemplates" ], "typo3-conf-vars-fe-typolinkbuilder": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-typolinkbuilder", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-typolinkbuilder", "typolinkBuilder" ], "passwordhashing": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#passwordhashing", + "Configuration\/Typo3ConfVars\/FE.html#confval-passwordhashing", "passwordHashing" ], "typo3-conf-vars-fe-classname": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-classname", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-classname", "className" ], "typo3-conf-vars-fe-options": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-options", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-options", "options" ], "typo3-conf-vars-fe-passwordpolicy": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-passwordpolicy", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-passwordpolicy", "passwordPolicy" ], "typo3-conf-vars-fe-exposeredirectinformation": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-exposeredirectinformation", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-exposeredirectinformation", "exposeRedirectInformation" ], "contentsecuritypolicyreportingurl": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#contentsecuritypolicyreportingurl", + "Configuration\/Typo3ConfVars\/FE.html#confval-contentsecuritypolicyreportingurl", "contentSecurityPolicyReportingUrl" ], "globals-typo3-conf-vars-sys-gfx-thumbnails": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-thumbnails", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-thumbnails", "thumbnails" ], "globals-typo3-conf-vars-sys-gfx-imagefile-ext": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-imagefile-ext", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-imagefile-ext", "imagefile_ext" ], "globals-typo3-conf-vars-sys-gfx-processor-enabled": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-enabled", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-enabled", "processor_enabled" ], "globals-typo3-conf-vars-sys-gfx-processor-path": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-path", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-path", "processor_path" ], "globals-typo3-conf-vars-sys-gfx-processor": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor", "processor" ], "globals-typo3-conf-vars-sys-gfx-processor-effects": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-effects", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-effects", "processor_effects" ], "globals-typo3-conf-vars-sys-gfx-processor-allowupscaling": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-allowupscaling", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-allowupscaling", "processor_allowUpscaling" ], "globals-typo3-conf-vars-sys-gfx-processor-allowframeselection": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-allowframeselection", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-allowframeselection", "processor_allowFrameSelection" ], "globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofilebydefault": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofilebydefault", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofilebydefault", "processor_stripColorProfileByDefault" ], "globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofilecommand": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofilecommand", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofilecommand", "processor_stripColorProfileCommand" ], "globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofileparameters": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofileparameters", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofileparameters", "processor_stripColorProfileParameters" ], "globals-typo3-conf-vars-sys-gfx-processor-colorspace": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-colorspace", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-colorspace", "processor_colorspace" ], "globals-typo3-conf-vars-sys-gfx-processor-interlace": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-interlace", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-interlace", "processor_interlace" ], "globals-typo3-conf-vars-sys-gfx-jpg-quality": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-jpg-quality", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-jpg-quality", "jpg_quality" ], "globals-typo3-conf-vars-sys-gfx-webp-quality": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-webp-quality", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-webp-quality", "webp_quality" ], "globals-typo3-conf-vars-sys-gfx-thumbnails-png": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-thumbnails-png", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-thumbnails-png", "thumbnails_png" ], "globals-typo3-conf-vars-sys-gfx-gif-compress": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-gif-compress", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-gif-compress", "gif_compress" ], "globals-typo3-conf-vars-sys-gfx-processor-allowtemporarymasksaspng": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-allowtemporarymasksaspng", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-allowtemporarymasksaspng", "processor_allowTemporaryMasksAsPng" ], "globals-typo3-conf-vars-sys-gfx-gdlib": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-gdlib", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-gdlib", "gdlib" ], "globals-typo3-conf-vars-sys-gfx-gdlib-png": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-gdlib-png", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-gdlib-png", "gdlib_png" ], "globals-typo3-conf-vars-sys-http-allow-redirects": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-allow-redirects", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-allow-redirects", "allow_redirects" ], "globals-typo3-conf-vars-sys-http-allow-redirects-strict": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-allow-redirects-strict", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-allow-redirects-strict", "strict" ], "globals-typo3-conf-vars-sys-http-allow-redirects-max": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-allow-redirects-max", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-allow-redirects-max", "max" ], "globals-typo3-conf-vars-sys-http-cert": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-cert", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-cert", "cert" ], "globals-typo3-conf-vars-sys-http-connect-timeout": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-connect-timeout", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-connect-timeout", "connect_timeout" ], "globals-typo3-conf-vars-sys-http-proxy": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-proxy", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-proxy", "proxy" ], "globals-typo3-conf-vars-sys-http-ssl-key": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-ssl-key", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-ssl-key", "ssl_key" ], "globals-typo3-conf-vars-sys-http-timeout": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-timeout", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-timeout", "timeout" ], "globals-typo3-conf-vars-sys-http-verify": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-verify", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-verify", "verify" ], "globals-typo3-conf-vars-sys-http-version": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-version", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-version", "version" ], "globals-typo3-conf-vars-mail-format": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-format", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-format", "format" ], "globals-typo3-conf-vars-mail-layoutrootpaths": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-layoutrootpaths", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-layoutrootpaths", "layoutRootPaths" ], "globals-typo3-conf-vars-mail-partialrootpaths": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-partialrootpaths", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-partialrootpaths", "partialRootPaths" ], "globals-typo3-conf-vars-mail-templaterootpaths": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-templaterootpaths", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-templaterootpaths", "templateRootPaths" ], "globals-typo3-conf-vars-mail-validators": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-validators", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-validators", "validators" ], "globals-typo3-conf-vars-mail-transport": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport", "transport" ], "globals-typo3-conf-vars-mail-transport-smtp": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp", "transport_smtp_*" ], "globals-typo3-conf-vars-mail-transport-smtp-server": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-server", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-server", "transport_smtp_server" ], "globals-typo3-conf-vars-mail-transport-smtp-domain": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-domain", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-domain", "transport_smtp_domain" ], "globals-typo3-conf-vars-mail-transport-smtp-stream-options": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-stream-options", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-stream-options", "transport_smtp_stream_options" ], "globals-typo3-conf-vars-mail-transport-smtp-encrypt": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-encrypt", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-encrypt", "transport_smtp_encrypt" ], "globals-typo3-conf-vars-mail-transport-smtp-username": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-username", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-username", "transport_smtp_username" ], "globals-typo3-conf-vars-mail-transport-smtp-password": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-password", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-password", "transport_smtp_password" ], "globals-typo3-conf-vars-mail-transport-smtp-restart-threshold": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-restart-threshold", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-restart-threshold", "transport_smtp_restart_threshold" ], "globals-typo3-conf-vars-mail-transport-smtp-restart-threshold-sleep": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-restart-threshold-sleep", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-restart-threshold-sleep", "transport_smtp_restart_threshold_sleep" ], "globals-typo3-conf-vars-mail-transport-smtp-ping-threshold": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-ping-threshold", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-ping-threshold", "transport_smtp_ping_threshold" ], "globals-typo3-conf-vars-mail-transport-sendmail": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-sendmail", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-sendmail", "transport_sendmail_*" ], "globals-typo3-conf-vars-mail-transport-sendmail-command": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-sendmail-command", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-sendmail-command", "transport_sendmail_command" ], "globals-typo3-conf-vars-mail-transport-mbox": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-mbox", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-mbox", "transport_mbox_*" ], "globals-typo3-conf-vars-mail-transport-mbox-file": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-mbox-file", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-mbox-file", "transport_mbox_file" ], "globals-typo3-conf-vars-mail-transport-spool": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-spool", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-spool", "transport_spool_*" ], "globals-typo3-conf-vars-mail-transport-spool-type": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-spool-type", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-spool-type", "transport_spool_type" ], "globals-typo3-conf-vars-mail-transport-spool-filepath": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-spool-filepath", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-spool-filepath", "transport_spool_filepath" ], "globals-typo3-conf-vars-mail-dsn": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-dsn", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-dsn", "dsn" ], "globals-typo3-conf-vars-mail-defaultmailfromaddress": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-defaultmailfromaddress", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-defaultmailfromaddress", "defaultMailFromAddress" ], "globals-typo3-conf-vars-mail-defaultmailfromname": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-defaultmailfromname", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-defaultmailfromname", "defaultMailFromName" ], "globals-typo3-conf-vars-mail-defaultmailreplytoaddress": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-defaultmailreplytoaddress", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-defaultmailreplytoaddress", "defaultMailReplyToAddress" ], "globals-typo3-conf-vars-mail-defaultmailreplytoname": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-defaultmailreplytoname", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-defaultmailreplytoname", "defaultMailReplyToName" ], "globals-typo3-conf-vars-sys-filecreatemask": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-filecreatemask", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-filecreatemask", "fileCreateMask" ], "globals-typo3-conf-vars-sys-foldercreatemask": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-foldercreatemask", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-foldercreatemask", "folderCreateMask" ], "globals-typo3-conf-vars-sys-creategroup": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-creategroup", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-creategroup", "createGroup" ], "globals-typo3-conf-vars-sys-sitename": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-sitename", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-sitename", "sitename" ], "globals-typo3-conf-vars-sys-defaultscheme": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-defaultscheme", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-defaultscheme", "defaultScheme" ], "globals-typo3-conf-vars-sys-encryptionkey": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-encryptionkey", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-encryptionkey", "encryptionKey" ], "globals-typo3-conf-vars-sys-cookiedomain": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-cookiedomain", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-cookiedomain", "cookieDomain" ], "globals-typo3-conf-vars-sys-trustedhostspattern": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-trustedhostspattern", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-trustedhostspattern", "trustedHostsPattern" ], "globals-typo3-conf-vars-sys-devipmask": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-devipmask", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-devipmask", "devIPmask" ], "globals-typo3-conf-vars-sys-ddmmyy": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-ddmmyy", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-ddmmyy", "ddmmyy" ], "globals-typo3-conf-vars-sys-hhmm": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-hhmm", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-hhmm", "hhmm" ], "globals-typo3-conf-vars-sys-logincopyrightwarrantyprovider": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-logincopyrightwarrantyprovider", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-logincopyrightwarrantyprovider", "loginCopyrightWarrantyProvider" ], "globals-typo3-conf-vars-sys-logincopyrightwarrantyurl": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-logincopyrightwarrantyurl", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-logincopyrightwarrantyurl", "loginCopyrightWarrantyURL" ], "globals-typo3-conf-vars-sys-textfile-ext": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-textfile-ext", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-textfile-ext", "textfile_ext" ], "globals-typo3-conf-vars-sys-mediafile-ext": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-mediafile-ext", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-mediafile-ext", "mediafile_ext" ], "globals-typo3-conf-vars-sys-binpath": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-binpath", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-binpath", "binPath" ], "globals-typo3-conf-vars-sys-binsetup": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-binsetup", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-binsetup", "binSetup" ], "globals-typo3-conf-vars-sys-setmemorylimit": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-setmemorylimit", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-setmemorylimit", "setMemoryLimit" ], "globals-typo3-conf-vars-sys-phptimezone": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-phptimezone", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-phptimezone", "phpTimeZone" ], "globals-typo3-conf-vars-sys-utf8filesystem": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-utf8filesystem", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-utf8filesystem", "UTF8filesystem" ], "globals-typo3-conf-vars-sys-systemlocale": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-systemlocale", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-systemlocale", "systemLocale" ], "globals-typo3-conf-vars-sys-reverseproxyip": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-reverseproxyip", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-reverseproxyip", "reverseProxyIP" ], "globals-typo3-conf-vars-sys-reverseproxyheadermultivalue": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-reverseproxyheadermultivalue", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-reverseproxyheadermultivalue", "reverseProxyHeaderMultiValue" ], "globals-typo3-conf-vars-sys-reverseproxyprefix": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-reverseproxyprefix", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-reverseproxyprefix", "reverseProxyPrefix" ], "globals-typo3-conf-vars-sys-reverseproxyssl": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-reverseproxyssl", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-reverseproxyssl", "reverseProxySSL" ], "globals-typo3-conf-vars-sys-reverseproxyprefixssl": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-reverseproxyprefixssl", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-reverseproxyprefixssl", "reverseProxyPrefixSSL" ], "globals-typo3-conf-vars-sys-displayerrors": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-displayerrors", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-displayerrors", "displayErrors" ], "globals-typo3-conf-vars-sys-productionexceptionhandler": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-productionexceptionhandler", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-productionexceptionhandler", "productionExceptionHandler" ], "globals-typo3-conf-vars-sys-debugexceptionhandler": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-debugexceptionhandler", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-debugexceptionhandler", "debugExceptionHandler" ], "globals-typo3-conf-vars-sys-errorhandler": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-errorhandler", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-errorhandler", "errorHandler" ], "globals-typo3-conf-vars-sys-errorhandlererrors": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-errorhandlererrors", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-errorhandlererrors", "errorHandlerErrors" ], "globals-typo3-conf-vars-sys-exceptionalerrors": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-exceptionalerrors", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-exceptionalerrors", "exceptionalErrors" ], "globals-typo3-conf-vars-sys-belogerrorreporting": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-belogerrorreporting", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-belogerrorreporting", "belogErrorReporting" ], "globals-typo3-conf-vars-sys-generateapachehtaccess": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-generateapachehtaccess", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-generateapachehtaccess", "generateApacheHtaccess" ], "globals-typo3-conf-vars-sys-ipanonymization": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-ipanonymization", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-ipanonymization", "ipAnonymization" ], "globals-typo3-conf-vars-sys-systemmaintainers": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-systemmaintainers", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-systemmaintainers", "systemMaintainers" ], "globals-typo3-conf-vars-sys-features": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features", "features" ], "globals-typo3-conf-vars-sys-features-form-legacyuploadmimetypes": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features-form-legacyuploadmimetypes", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features-form-legacyuploadmimetypes", "form.legacyUploadMimeTypes" ], "globals-typo3-conf-vars-sys-features-redirects-hitcount": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features-redirects-hitcount", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features-redirects-hitcount", "redirects.hitCount" ], "globals-typo3-conf-vars-sys-features-security-backend-enforcereferrer": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features-security-backend-enforcereferrer", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features-security-backend-enforcereferrer", "security.backend.enforceReferrer" ], "globals-typo3-conf-vars-sys-features-security-frontend-enforcecontentsecuritypolicy": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features-security-frontend-enforcecontentsecuritypolicy", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features-security-frontend-enforcecontentsecuritypolicy", "security.frontend.enforceContentSecurityPolicy" ], "globals-typo3-conf-vars-sys-features-security-frontend-reportcontentsecuritypolicy": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features-security-frontend-reportcontentsecuritypolicy", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features-security-frontend-reportcontentsecuritypolicy", "security.frontend.reportContentSecurityPolicy" ], "globals-typo3-conf-vars-sys-features-security-frontend-allowinsecureframeoptioninshowimagecontroller": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features-security-frontend-allowinsecureframeoptioninshowimagecontroller", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features-security-frontend-allowinsecureframeoptioninshowimagecontroller", "security.frontend.allowInsecureFrameOptionInShowImageController" ], "globals-typo3-conf-vars-sys-features-security-frontend-allowinsecuresiteresolutionbyqueryparameters": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features-security-frontend-allowinsecuresiteresolutionbyqueryparameters", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features-security-frontend-allowinsecuresiteresolutionbyqueryparameters", "security.frontend.allowInsecureSiteResolutionByQueryParameters" ], "globals-typo3-conf-vars-sys-features-security-usepasswordpolicyforfrontendusers": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features-security-usepasswordpolicyforfrontendusers", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features-security-usepasswordpolicyforfrontendusers", "security.usePasswordPolicyForFrontendUsers" ], "globals-typo3-conf-vars-sys-availablepasswordhashalgorithms": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-availablepasswordhashalgorithms", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-availablepasswordhashalgorithms", "availablePasswordHashAlgorithms" ], "globals-typo3-conf-vars-sys-linkhandler": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-linkhandler", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-linkhandler", "$GLOBALS['TYPO3_CONF_VARS']['SYS']['linkHandler']" ], "globals-typo3-conf-vars-sys-lang": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-lang", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-lang", "lang" ], "globals-typo3-conf-vars-sys-lang-requireapprovedlocalizations": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-lang-requireapprovedlocalizations", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-lang-requireapprovedlocalizations", "requireApprovedLocalizations" ], "globals-typo3-conf-vars-sys-messenger": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-messenger", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-messenger", "messenger" ], "globals-typo3-conf-vars-sys-messenger-routing": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-messenger-routing", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-messenger-routing", "routing" ], "globals-typo3-conf-vars-sys-fileinfo": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-fileinfo", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-fileinfo", "FileInfo" ], "globals-typo3-conf-vars-sys-fileinfo-fileextensiontomimetype": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-fileinfo-fileextensiontomimetype", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-fileinfo-fileextensiontomimetype", "fileExtensionToMimeType" ], "globals-typo3-conf-vars-sys-allowedphpdisablefunctions": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-allowedphpdisablefunctions", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-allowedphpdisablefunctions", "allowedPhpDisableFunctions" ] }, @@ -52052,6 +52478,12 @@ "ApiOverview\/Events\/Events\/Core\/Domain\/RecordAccessGrantedEvent.html#typo3-cms-core-domain-access-recordaccessgrantedevent", "\\TYPO3\\CMS\\Core\\Domain\\Access\\RecordAccessGrantedEvent" ], + "typo3-cms-core-domain-event-recordcreationevent": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent" + ], "typo3-cms-core-html-event-aftertransformtextforpersistenceevent": [ "TYPO3 Explained", "13.4", @@ -52106,12 +52538,6 @@ "ApiOverview\/Events\/Events\/Core\/LinkHandling\/BeforeTypoLinkEncodedEvent.html#typo3-cms-core-linkhandling-event-beforetypolinkencodedevent", "\\TYPO3\\CMS\\Core\\LinkHandling\\Event\\BeforeTypoLinkEncodedEvent" ], - "typo3-cms-core-mail-event-aftermailerinitializationevent": [ - "TYPO3 Explained", - "13.4", - "ApiOverview\/Events\/Events\/Core\/Mail\/AfterMailerInitializationEvent.html#typo3-cms-core-mail-event-aftermailerinitializationevent", - "\\TYPO3\\CMS\\Core\\Mail\\Event\\AfterMailerInitializationEvent" - ], "typo3-cms-core-mail-event-aftermailersentmessageevent": [ "TYPO3 Explained", "13.4", @@ -52580,6 +53006,12 @@ "ApiOverview\/Events\/Events\/Frontend\/AfterCachedPageIsPersistedEvent.html#typo3-cms-frontend-event-aftercachedpageispersistedevent", "\\TYPO3\\CMS\\Frontend\\Event\\AfterCachedPageIsPersistedEvent" ], + "typo3-cms-frontend-event-aftercontenthasbeenfetchedevent": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Frontend\/AfterContentHasBeenFetchedEvent.html#typo3-cms-frontend-event-aftercontenthasbeenfetchedevent", + "\\TYPO3\\CMS\\Frontend\\Event\\AfterContentHasBeenFetchedEvent" + ], "typo3-cms-frontend-contentobject-event-aftercontentobjectrendererinitializedevent": [ "TYPO3 Explained", "13.4", @@ -56284,6 +56716,72 @@ "ApiOverview\/Events\/Events\/Core\/Domain\/RecordAccessGrantedEvent.html#typo3-cms-core-domain-access-recordaccessgrantedevent-getcontext", "\\TYPO3\\CMS\\Core\\Domain\\Access\\RecordAccessGrantedEvent::getContext" ], + "typo3-cms-core-domain-event-recordcreationevent-setrecord": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-setrecord", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::setRecord" + ], + "typo3-cms-core-domain-event-recordcreationevent-ispropagationstopped": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-ispropagationstopped", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::isPropagationStopped" + ], + "typo3-cms-core-domain-event-recordcreationevent-hasproperty": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-hasproperty", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::hasProperty" + ], + "typo3-cms-core-domain-event-recordcreationevent-setproperty": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-setproperty", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::setProperty" + ], + "typo3-cms-core-domain-event-recordcreationevent-setproperties": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-setproperties", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::setProperties" + ], + "typo3-cms-core-domain-event-recordcreationevent-unsetproperty": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-unsetproperty", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::unsetProperty" + ], + "typo3-cms-core-domain-event-recordcreationevent-getproperty": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-getproperty", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::getProperty" + ], + "typo3-cms-core-domain-event-recordcreationevent-getproperties": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-getproperties", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::getProperties" + ], + "typo3-cms-core-domain-event-recordcreationevent-getrawrecord": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-getrawrecord", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::getRawRecord" + ], + "typo3-cms-core-domain-event-recordcreationevent-getsystemproperties": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-getsystemproperties", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::getSystemProperties" + ], + "typo3-cms-core-domain-event-recordcreationevent-getcontext": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-getcontext", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::getContext" + ], "typo3-cms-core-html-event-aftertransformtextforpersistenceevent-gethtmlcontent": [ "TYPO3 Explained", "13.4", @@ -56536,12 +57034,6 @@ "ApiOverview\/Events\/Events\/Core\/LinkHandling\/BeforeTypoLinkEncodedEvent.html#typo3-cms-core-linkhandling-event-beforetypolinkencodedevent-getemptyvaluesymbol", "\\TYPO3\\CMS\\Core\\LinkHandling\\Event\\BeforeTypoLinkEncodedEvent::getEmptyValueSymbol" ], - "typo3-cms-core-mail-event-aftermailerinitializationevent-getmailer": [ - "TYPO3 Explained", - "13.4", - "ApiOverview\/Events\/Events\/Core\/Mail\/AfterMailerInitializationEvent.html#typo3-cms-core-mail-event-aftermailerinitializationevent-getmailer", - "\\TYPO3\\CMS\\Core\\Mail\\Event\\AfterMailerInitializationEvent::getMailer" - ], "typo3-cms-core-mail-event-aftermailersentmessageevent-getmailer": [ "TYPO3 Explained", "13.4", @@ -61017,103 +61509,103 @@ "backend-module": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-menu-backend-module", "" ], "backend-module-default": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-default", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-menu-backend-module-default", "" ], "backend-module-extbase": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-extbase", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-menu-backend-module-extbase", "" ], "modules-modals-settings": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-settings", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-menu-modules-modals-settings", "" ], "modules-modals-button-settings": [ "TYPO3 Explained", "13.4", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-button-settings", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-menu-modules-modals-button-settings", "" ], "content-security-policy-modes": [ "TYPO3 Explained", "13.4", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-modes", + "ApiOverview\/ContentSecurityPolicy\/Index.html#confval-menu-content-security-policy-modes", "" ], "site-setting-definition": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-setting-definition", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-menu-site-setting-definition", "" ], "site-setting-type": [ "TYPO3 Explained", "13.4", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-setting-type", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-menu-site-setting-type", "" ], "configuration-flagfiles-index": [ "TYPO3 Explained", "13.4", - "Configuration\/FlagFiles\/Index.html#configuration-flagfiles-index", + "Configuration\/FlagFiles\/Index.html#confval-menu-configuration-flagfiles-index", "" ], "globals-typo3-conf-vars-be": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be", + "Configuration\/Typo3ConfVars\/BE.html#confval-menu-globals-typo3-conf-vars-be", "" ], "globals-typo3-conf-vars-db": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/DB.html#globals-typo3-conf-vars-db", + "Configuration\/Typo3ConfVars\/DB.html#confval-menu-globals-typo3-conf-vars-db", "" ], "globals-typo3-conf-vars-ext": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/EXT.html#globals-typo3-conf-vars-ext", + "Configuration\/Typo3ConfVars\/EXT.html#confval-menu-globals-typo3-conf-vars-ext", "" ], "globals-typo3-conf-vars-fe": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/FE.html#globals-typo3-conf-vars-fe", + "Configuration\/Typo3ConfVars\/FE.html#confval-menu-globals-typo3-conf-vars-fe", "" ], "globals-typo3-conf-vars-gfx": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-gfx", + "Configuration\/Typo3ConfVars\/GFX.html#confval-menu-globals-typo3-conf-vars-gfx", "" ], "globals-typo3-conf-vars-http": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-http", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-menu-globals-typo3-conf-vars-http", "" ], "globals-typo3-conf-vars-mail": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-menu-globals-typo3-conf-vars-mail", "" ], "globals-typo3-conf-vars-sys": [ "TYPO3 Explained", "13.4", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys", + "Configuration\/Typo3ConfVars\/SYS.html#confval-menu-globals-typo3-conf-vars-sys", "" ] }, @@ -61281,7 +61773,7 @@ "apioverview-commandcontrollers-listcommands": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#apioverview-commandcontrollers-listcommands", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-list-apioverview-commandcontrollers-listcommands", "" ] }, @@ -61289,247 +61781,247 @@ "completion": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#completion", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-completion", "vendor\/bin\/typo3 completion" ], "help": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#help", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-help", "vendor\/bin\/typo3 help" ], "list": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#list", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-list", "vendor\/bin\/typo3 list" ], "setup": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#setup", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-setup", "vendor\/bin\/typo3 setup" ], "backend-lock": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#backend-lock", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-backend-lock", "vendor\/bin\/typo3 backend:lock" ], "backend-resetpassword": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#backend-resetpassword", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-backend-resetpassword", "vendor\/bin\/typo3 backend:resetpassword" ], "backend-unlock": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#backend-unlock", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-backend-unlock", "vendor\/bin\/typo3 backend:unlock" ], "backend-user-create": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#backend-user-create", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-backend-user-create", "vendor\/bin\/typo3 backend:user:create" ], "cache-flush": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#cache-flush", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cache-flush", "vendor\/bin\/typo3 cache:flush" ], "cache-warmup": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#cache-warmup", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cache-warmup", "vendor\/bin\/typo3 cache:warmup" ], "cleanup-deletedrecords": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#cleanup-deletedrecords", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cleanup-deletedrecords", "vendor\/bin\/typo3 cleanup:deletedrecords" ], "cleanup-flexforms": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#cleanup-flexforms", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cleanup-flexforms", "vendor\/bin\/typo3 cleanup:flexforms" ], "cleanup-localprocessedfiles": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#cleanup-localprocessedfiles", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cleanup-localprocessedfiles", "vendor\/bin\/typo3 cleanup:localprocessedfiles" ], "cleanup-missingrelations": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#cleanup-missingrelations", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cleanup-missingrelations", "vendor\/bin\/typo3 cleanup:missingrelations" ], "cleanup-orphanrecords": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#cleanup-orphanrecords", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cleanup-orphanrecords", "vendor\/bin\/typo3 cleanup:orphanrecords" ], "cleanup-previewlinks": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#cleanup-previewlinks", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cleanup-previewlinks", "vendor\/bin\/typo3 cleanup:previewlinks" ], "cleanup-versions": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#cleanup-versions", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cleanup-versions", "vendor\/bin\/typo3 cleanup:versions" ], "extension-list": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#extension-list", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-extension-list", "vendor\/bin\/typo3 extension:list" ], "extension-setup": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#extension-setup", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-extension-setup", "vendor\/bin\/typo3 extension:setup" ], "fluid-schema-generate": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#fluid-schema-generate", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-fluid-schema-generate", "vendor\/bin\/typo3 fluid:schema:generate" ], "impexp-export": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#impexp-export", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-impexp-export", "vendor\/bin\/typo3 impexp:export" ], "impexp-import": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#impexp-import", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-impexp-import", "vendor\/bin\/typo3 impexp:import" ], "language-update": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#language-update", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-language-update", "vendor\/bin\/typo3 language:update" ], "lint-yaml": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#lint-yaml", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-lint-yaml", "vendor\/bin\/typo3 lint:yaml" ], "mailer-spool-send": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#mailer-spool-send", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-mailer-spool-send", "vendor\/bin\/typo3 mailer:spool:send" ], "messenger-consume": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#messenger-consume", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-messenger-consume", "vendor\/bin\/typo3 messenger:consume" ], "redirects-checkintegrity": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#redirects-checkintegrity", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-redirects-checkintegrity", "vendor\/bin\/typo3 redirects:checkintegrity" ], "redirects-cleanup": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#redirects-cleanup", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-redirects-cleanup", "vendor\/bin\/typo3 redirects:cleanup" ], "referenceindex-update": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#referenceindex-update", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-referenceindex-update", "vendor\/bin\/typo3 referenceindex:update" ], "scheduler-execute": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#scheduler-execute", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-scheduler-execute", "vendor\/bin\/typo3 scheduler:execute" ], "scheduler-list": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#scheduler-list", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-scheduler-list", "vendor\/bin\/typo3 scheduler:list" ], "scheduler-run": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#scheduler-run", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-scheduler-run", "vendor\/bin\/typo3 scheduler:run" ], "setup-begroups-default": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#setup-begroups-default", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-setup-begroups-default", "vendor\/bin\/typo3 setup:begroups:default" ], "site-list": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#site-list", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-site-list", "vendor\/bin\/typo3 site:list" ], "site-sets-list": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#site-sets-list", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-site-sets-list", "vendor\/bin\/typo3 site:sets:list" ], "site-show": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#site-show", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-site-show", "vendor\/bin\/typo3 site:show" ], "syslog-list": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#syslog-list", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-syslog-list", "vendor\/bin\/typo3 syslog:list" ], "upgrade-list": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#upgrade-list", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-upgrade-list", "vendor\/bin\/typo3 upgrade:list" ], "upgrade-mark-undone": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#upgrade-mark-undone", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-upgrade-mark-undone", "vendor\/bin\/typo3 upgrade:mark:undone" ], "upgrade-run": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#upgrade-run", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-upgrade-run", "vendor\/bin\/typo3 upgrade:run" ], "workspace-autopublish": [ "TYPO3 Explained", "13.4", - "ApiOverview\/CommandControllers\/ListCommands.html#workspace-autopublish", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-workspace-autopublish", "vendor\/bin\/typo3 workspace:autopublish" ] }, @@ -61564,6 +62056,18 @@ "ApiOverview\/Events\/Events\/Core\/Security\/PolicyMutatedEvent.html#typo3-cms-core-security-contentsecuritypolicy-event-policymutatedevent-defaultpolicy", "\\TYPO3\\CMS\\Core\\Security\\ContentSecurityPolicy\\Event\\PolicyMutatedEvent::defaultPolicy" ], + "typo3-cms-frontend-event-aftercontenthasbeenfetchedevent-groupedcontent": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Frontend\/AfterContentHasBeenFetchedEvent.html#typo3-cms-frontend-event-aftercontenthasbeenfetchedevent-groupedcontent", + "\\TYPO3\\CMS\\Frontend\\Event\\AfterContentHasBeenFetchedEvent::groupedContent" + ], + "typo3-cms-frontend-event-aftercontenthasbeenfetchedevent-request": [ + "TYPO3 Explained", + "13.4", + "ApiOverview\/Events\/Events\/Frontend\/AfterContentHasBeenFetchedEvent.html#typo3-cms-frontend-event-aftercontenthasbeenfetchedevent-request", + "\\TYPO3\\CMS\\Frontend\\Event\\AfterContentHasBeenFetchedEvent::request" + ], "typo3-cms-indexedsearch-event-beforefinalsearchqueryisexecutedevent-querybuilder": [ "TYPO3 Explained", "13.4", diff --git a/legacy_hook/tests/Unit/Fixtures/Permalinks/m/typo3/reference-coreapi/main/en-us/objects.inv.json b/legacy_hook/tests/Unit/Fixtures/Permalinks/m/typo3/reference-coreapi/main/en-us/objects.inv.json index 8a6c7898..e217616e 100644 --- a/legacy_hook/tests/Unit/Fixtures/Permalinks/m/typo3/reference-coreapi/main/en-us/objects.inv.json +++ b/legacy_hook/tests/Unit/Fixtures/Permalinks/m/typo3/reference-coreapi/main/en-us/objects.inv.json @@ -126,6 +126,18 @@ "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html", "Setting up backend user groups" ], + "Administration\/SystemSettings\/Index": [ + "TYPO3 Explained", + "main", + "Administration\/SystemSettings\/Index.html", + "TYPO3 system settings for administrators" + ], + "Administration\/SystemSettings\/MaintenanceMode\/Index": [ + "TYPO3 Explained", + "main", + "Administration\/SystemSettings\/MaintenanceMode\/Index.html", + "Maintenance mode: Prevent backend logins during upgrade" + ], "Administration\/Troubleshooting\/Database": [ "TYPO3 Explained", "main", @@ -648,6 +660,12 @@ "ApiOverview\/Backend\/LoginProvider.html", "Backend login form API" ], + "ApiOverview\/Backend\/PageTree": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Backend\/PageTree.html", + "The page tree in the TYPO3 backend" + ], "ApiOverview\/Backend\/UriBuilder": [ "TYPO3 Explained", "main", @@ -1116,6 +1134,12 @@ "ApiOverview\/Events\/Events\/Backend\/BeforePagePreviewUriGeneratedEvent.html", "BeforePagePreviewUriGeneratedEvent" ], + "ApiOverview\/Events\/Events\/Backend\/BeforePageTreeIsFilteredEvent": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/BeforePageTreeIsFilteredEvent.html", + "BeforePageTreeIsFilteredEvent" + ], "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadIsExecutedEvent": [ "TYPO3 Explained", "main", @@ -1296,6 +1320,12 @@ "ApiOverview\/Events\/Events\/Backend\/PageContentPreviewRenderingEvent.html", "PageContentPreviewRenderingEvent" ], + "ApiOverview\/Events\/Events\/Backend\/PasswordHasBeenResetEvent": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/PasswordHasBeenResetEvent.html", + "PasswordHasBeenResetEvent" + ], "ApiOverview\/Events\/Events\/Backend\/RenderAdditionalContentToRecordListEvent": [ "TYPO3 Explained", "main", @@ -1530,6 +1560,12 @@ "ApiOverview\/Events\/Events\/Core\/Domain\/RecordAccessGrantedEvent.html", "RecordAccessGrantedEvent" ], + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html", + "RecordCreationEvent" + ], "ApiOverview\/Events\/Events\/Core\/Html\/AfterTransformTextForPersistenceEvent": [ "TYPO3 Explained", "main", @@ -1608,12 +1644,6 @@ "ApiOverview\/Events\/Events\/Core\/LinkHandling\/Index.html", "Link handling" ], - "ApiOverview\/Events\/Events\/Core\/Mail\/AfterMailerInitializationEvent": [ - "TYPO3 Explained", - "main", - "ApiOverview\/Events\/Events\/Core\/Mail\/AfterMailerInitializationEvent.html", - "AfterMailerInitializationEvent" - ], "ApiOverview\/Events\/Events\/Core\/Mail\/AfterMailerSentMessageEvent": [ "TYPO3 Explained", "main", @@ -2190,6 +2220,12 @@ "ApiOverview\/Events\/Events\/Frontend\/AfterCachedPageIsPersistedEvent.html", "AfterCachedPageIsPersistedEvent" ], + "ApiOverview\/Events\/Events\/Frontend\/AfterContentHasBeenFetchedEvent": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Frontend\/AfterContentHasBeenFetchedEvent.html", + "AfterContentHasBeenFetchedEvent" + ], "ApiOverview\/Events\/Events\/Frontend\/AfterContentObjectRendererInitializedEvent": [ "TYPO3 Explained", "main", @@ -3504,6 +3540,18 @@ "ApiOverview\/Seo\/CanonicalApi.html", "Canonical API" ], + "ApiOverview\/Seo\/Configuration\/Index": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html", + "Suggested configuration options for improved SEO in TYPO3" + ], + "ApiOverview\/Seo\/GeneralRecommendations\/Index": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/GeneralRecommendations\/Index.html", + "General SEO Recommendations for TYPO3 projects" + ], "ApiOverview\/Seo\/Index": [ "TYPO3 Explained", "main", @@ -3780,12 +3828,6 @@ "ApiOverview\/SymfonyExpressionLanguage\/Index.html", "Symfony expression language" ], - "ApiOverview\/SystemOverview\/Index": [ - "TYPO3 Explained", - "main", - "ApiOverview\/SystemOverview\/Index.html", - "System Overview" - ], "ApiOverview\/SystemRegistry\/Index": [ "TYPO3 Explained", "main", @@ -3888,54 +3930,6 @@ "CodingGuidelines\/CglYaml.html", "YAML coding guidelines" ], - "CodingGuidelines\/CodingBestPractices\/AccessingTheDatabase": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/AccessingTheDatabase.html", - "Accessing the database" - ], - "CodingGuidelines\/CodingBestPractices\/ClassNamesOfUserFiles": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/ClassNamesOfUserFiles.html", - "Namespaces and class names of user files" - ], - "CodingGuidelines\/CodingBestPractices\/HandlingDeprecations": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/HandlingDeprecations.html", - "Handling deprecations" - ], - "CodingGuidelines\/CodingBestPractices\/Index": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/Index.html", - "PHP best practices" - ], - "CodingGuidelines\/CodingBestPractices\/NamedArguments": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html", - "Named arguments" - ], - "CodingGuidelines\/CodingBestPractices\/Singletons": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/Singletons.html", - "Singletons" - ], - "CodingGuidelines\/CodingBestPractices\/StaticMethods": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/StaticMethods.html", - "Static methods" - ], - "CodingGuidelines\/CodingBestPractices\/UnitTests": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/UnitTests.html", - "Unit Tests" - ], "CodingGuidelines\/Index": [ "TYPO3 Explained", "main", @@ -3948,36 +3942,6 @@ "CodingGuidelines\/Introduction.html", "Introduction to the TYPO3 coding guidelines (CGL)" ], - "CodingGuidelines\/PhpArchitecture\/Index": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/Index.html", - "PHP architecture" - ], - "CodingGuidelines\/PhpArchitecture\/Services": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/Services.html", - "Services" - ], - "CodingGuidelines\/PhpArchitecture\/StaticMethods": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/StaticMethods.html", - "Static Methods, static Classes, Utility Classes" - ], - "CodingGuidelines\/PhpArchitecture\/Traits": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/Traits.html", - "Traits" - ], - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html", - "Working with exceptions" - ], "Configuration\/ApplicationContext": [ "TYPO3 Explained", "main", @@ -4608,6 +4572,12 @@ "ExtensionArchitecture\/HowTo\/BackendModule\/ModuleConfiguration.html", "Backend module configuration examples" ], + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations": [ + "TYPO3 Explained", + "main", + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations.html", + "Security Considerations" + ], "ExtensionArchitecture\/HowTo\/BackendModule\/Tutorials": [ "TYPO3 Explained", "main", @@ -4896,6 +4866,48 @@ "Introduction\/Index.html", "Introduction" ], + "PhpArchitecture\/Index": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/Index.html", + "PHP architecture" + ], + "PhpArchitecture\/NamedArguments": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/NamedArguments.html", + "Named arguments" + ], + "PhpArchitecture\/Services": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/Services.html", + "Services" + ], + "PhpArchitecture\/Singletons": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/Singletons.html", + "Singletons" + ], + "PhpArchitecture\/StaticMethods": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/StaticMethods.html", + "Static Methods, static Classes, Utility Classes" + ], + "PhpArchitecture\/Traits": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/Traits.html", + "Traits" + ], + "PhpArchitecture\/WorkingWithExceptions": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/WorkingWithExceptions.html", + "Working with exceptions" + ], "Security\/Backups\/Index": [ "TYPO3 Explained", "main", @@ -5666,6 +5678,30 @@ "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#describe-naming-conventions-in-tca", "Describe the naming conventions in the TCA" ], + "system-settings": [ + "TYPO3 Explained", + "main", + "Administration\/SystemSettings\/Index.html#system-settings", + "TYPO3 system settings for administrators" + ], + "maintenance-mode": [ + "TYPO3 Explained", + "main", + "Administration\/SystemSettings\/MaintenanceMode\/Index.html#maintenance-mode", + "Maintenance mode: Prevent backend logins during upgrade" + ], + "maintenance-mode-total": [ + "TYPO3 Explained", + "main", + "Administration\/SystemSettings\/MaintenanceMode\/Index.html#maintenance-mode-total", + "Total shutdown for maintenance purposes" + ], + "maintenance-mode-editors": [ + "TYPO3 Explained", + "main", + "Administration\/SystemSettings\/MaintenanceMode\/Index.html#maintenance-mode-editors", + "Lock the TYPO3 backend for editors" + ], "troubleshooting-database": [ "TYPO3 Explained", "main", @@ -7208,6 +7244,24 @@ "ApiOverview\/Backend\/LoginProvider.html#login-provider-examples", "Examples" ], + "page-tree": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Backend\/PageTree.html#page-tree", + "The page tree in the TYPO3 backend" + ], + "page-tree-events": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Backend\/PageTree.html#page-tree-events", + "PSR-14 events to influence the functionality of the page tree" + ], + "page-tree-tsconfig": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Backend\/PageTree.html#page-tree-tsconfig", + "TsConfig settings to influence the page tree" + ], "edit-links": [ "TYPO3 Explained", "main", @@ -8204,6 +8258,12 @@ "ApiOverview\/CropVariants\/Index.html#cropvariants", "Crop Variants for Images" ], + "cgl-database-access": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Database\/BasicCrud\/Index.html#cgl-database-access", + "Basic create, read, update, and delete operations (CRUD)" + ], "database-basic-crud": [ "TYPO3 Explained", "main", @@ -9128,6 +9188,12 @@ "ApiOverview\/Deprecation\/Index.html#deprecation", "Deprecation" ], + "cgl-deprecation": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Deprecation\/Index.html#cgl-deprecation", + "Introduction" + ], "deprecation-introduction": [ "TYPO3 Explained", "main", @@ -9638,6 +9704,30 @@ "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#AfterPageTreeItemsPreparedEvent", "AfterPageTreeItemsPreparedEvent" ], + "afterpagetreeitemspreparedevent-labels": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#AfterPageTreeItemsPreparedEvent-labels", + "Labels" + ], + "afterpagetreeitemspreparedevent-status": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#AfterPageTreeItemsPreparedEvent-status", + "Status information" + ], + "afterpagetreeitemspreparedevent-example": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#AfterPageTreeItemsPreparedEvent-example", + "Example" + ], + "afterpagetreeitemspreparedevent-api": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#AfterPageTreeItemsPreparedEvent-api", + "API" + ], "afterrawpagerowpreparedevent": [ "TYPO3 Explained", "main", @@ -9686,6 +9776,24 @@ "ApiOverview\/Events\/Events\/Backend\/BeforePagePreviewUriGeneratedEvent.html#BeforePagePreviewUriGeneratedEvent", "BeforePagePreviewUriGeneratedEvent" ], + "beforepagetreeisfilteredevent": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/BeforePageTreeIsFilteredEvent.html#BeforePageTreeIsFilteredEvent", + "BeforePageTreeIsFilteredEvent" + ], + "beforepagetreeisfilteredevent-example": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/BeforePageTreeIsFilteredEvent.html#BeforePageTreeIsFilteredEvent-example", + "Example: Add evaluation of document types to the page tree search filter" + ], + "beforepagetreeisfilteredevent-api": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/BeforePageTreeIsFilteredEvent.html#BeforePageTreeIsFilteredEvent-api", + "BeforePageTreeIsFilteredEvent API" + ], "beforerecorddownloadisexecutedevent": [ "TYPO3 Explained", "main", @@ -9920,6 +10028,24 @@ "ApiOverview\/Events\/Events\/Backend\/PageContentPreviewRenderingEvent.html#PageContentPreviewRenderingEvent", "PageContentPreviewRenderingEvent" ], + "passwordhasbeenresetevent": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/PasswordHasBeenResetEvent.html#PasswordHasBeenResetEvent", + "PasswordHasBeenResetEvent" + ], + "passwordhasbeenresetevent-example": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/PasswordHasBeenResetEvent.html#PasswordHasBeenResetEvent-example", + "Example" + ], + "passwordhasbeenresetevent-api": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/PasswordHasBeenResetEvent.html#PasswordHasBeenResetEvent-api", + "API" + ], "renderadditionalcontenttorecordlistevent": [ "TYPO3 Explained", "main", @@ -10172,6 +10298,24 @@ "ApiOverview\/Events\/Events\/Core\/Domain\/RecordAccessGrantedEvent.html#RecordAccessGrantedEvent", "RecordAccessGrantedEvent" ], + "recordcreationevent": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#RecordCreationEvent", + "RecordCreationEvent" + ], + "recordcreationevent-example": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#RecordCreationEvent-example", + "Example" + ], + "recordcreationevent-api": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#RecordCreationEvent-api", + "API" + ], "aftertransformtextforpersistenceevent": [ "TYPO3 Explained", "main", @@ -10280,12 +10424,6 @@ "ApiOverview\/Events\/Events\/Core\/LinkHandling\/Index.html#eventlist-core-link-handling", "Link handling" ], - "aftermailerinitializationevent": [ - "TYPO3 Explained", - "main", - "ApiOverview\/Events\/Events\/Core\/Mail\/AfterMailerInitializationEvent.html#AfterMailerInitializationEvent", - "AfterMailerInitializationEvent" - ], "aftermailersentmessageevent": [ "TYPO3 Explained", "main", @@ -10298,6 +10436,18 @@ "ApiOverview\/Events\/Events\/Core\/Mail\/BeforeMailerSentMessageEvent.html#BeforeMailerSentMessageEvent", "BeforeMailerSentMessageEvent" ], + "beforemailersentmessageevent-example": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Mail\/BeforeMailerSentMessageEvent.html#BeforeMailerSentMessageEvent-example", + "Example" + ], + "beforemailersentmessageevent-api": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Mail\/BeforeMailerSentMessageEvent.html#BeforeMailerSentMessageEvent-api", + "API" + ], "eventlist-core-mail": [ "TYPO3 Explained", "main", @@ -10874,6 +11024,24 @@ "ApiOverview\/Events\/Events\/Frontend\/AfterCachedPageIsPersistedEvent.html#AfterCachedPageIsPersistedEvent", "AfterCachedPageIsPersistedEvent" ], + "aftercontenthasbeenfetchedevent": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Frontend\/AfterContentHasBeenFetchedEvent.html#AfterContentHasBeenFetchedEvent", + "AfterContentHasBeenFetchedEvent" + ], + "aftercontenthasbeenfetchedevent-example": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Frontend\/AfterContentHasBeenFetchedEvent.html#AfterContentHasBeenFetchedEvent-example", + "Example" + ], + "aftercontenthasbeenfetchedevent-api": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Frontend\/AfterContentHasBeenFetchedEvent.html#AfterContentHasBeenFetchedEvent-api", + "API" + ], "aftercontentobjectrendererinitializedevent": [ "TYPO3 Explained", "main", @@ -13238,6 +13406,12 @@ "ApiOverview\/Mail\/Index.html#mail-configuration-fluid", "Fluid paths" ], + "mail-configuration-fluid-example": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Mail\/Index.html#mail-configuration-fluid-example", + "Minimal example for a Fluid-based email template" + ], "mail-configuration-transport": [ "TYPO3 Explained", "main", @@ -14270,6 +14444,132 @@ "ApiOverview\/Seo\/CanonicalApi.html#canonicalapi", "Canonical API" ], + "canonicalapi-additionalparameters": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/CanonicalApi.html#canonicalapi-additionalparameters", + "Including specific arguments for the URL generation" + ], + "seo-configuration": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration", + "Suggested configuration options for improved SEO in TYPO3" + ], + "seo-configuration-site": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-site", + "Site configuration" + ], + "seo-configuration-site-entry-point": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-site-entry-point", + "Entry Point" + ], + "seo-configuration-site-languages": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-site-languages", + "Languages" + ], + "seo-configuration-site-error-handling": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-site-error-handling", + "Error Handling" + ], + "seo-configuration-site-robots-txt": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-site-robots-txt", + "robots.txt" + ], + "seo-configuration-site-routes": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-site-routes", + "Static Routes and redirects" + ], + "config-tags": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#config-tags", + "Tags for SEO purposes in the HTML header" + ], + "config-hreflang-tags": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#config-hreflang-tags", + "Hreflang link-tags" + ], + "config-canonical-tag": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#config-canonical-tag", + "Canonical Tag" + ], + "seo-configuration-links": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-links", + "Working links" + ], + "seo-configuration-typoscript-examples": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-typoscript-examples", + "TypoScript examples" + ], + "seo-configuration-title": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-title", + "Influencing the title tag in the HTML head" + ], + "seo-configuration-typoscript-examples-og": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-typoscript-examples-og", + "Setting missing OpenGraph meta tags" + ], + "seo-configuration-typoscript-examples-metatags": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-typoscript-examples-metatags", + "Setting fallbacks for meta tags" + ], + "seo-configuration-typoscript-examples-og-fallback": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-typoscript-examples-og-fallback", + "Setting fallbacks for og:image and twitter:image" + ], + "seo-configuration-typoscript-examples-author": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-typoscript-examples-author", + "Setting defaults for the author on meta tags" + ], + "seo-recommendations": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/GeneralRecommendations\/Index.html#seo-recommendations", + "General SEO Recommendations for TYPO3 projects" + ], + "seo-recommendations-extensions": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/GeneralRecommendations\/Index.html#seo-recommendations-extensions", + "Recommendations for additional SEO extensions" + ], + "seo-recommendations-field-description": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/GeneralRecommendations\/Index.html#seo-recommendations-field-description", + "Recommendations for the description field" + ], "seo": [ "TYPO3 Explained", "main", @@ -15020,30 +15320,6 @@ "ApiOverview\/SymfonyExpressionLanguage\/Index.html#sel-ts-additional-functions", "Additional functions" ], - "overview": [ - "TYPO3 Explained", - "main", - "ApiOverview\/SystemOverview\/Index.html#overview", - "System Overview" - ], - "system-overview": [ - "TYPO3 Explained", - "main", - "ApiOverview\/SystemOverview\/Index.html#system-overview", - "System Overview" - ], - "system-overview-application": [ - "TYPO3 Explained", - "main", - "ApiOverview\/SystemOverview\/Index.html#system-overview-application", - "Application layer" - ], - "system-overview-ui": [ - "TYPO3 Explained", - "main", - "ApiOverview\/SystemOverview\/Index.html#system-overview-ui", - "User interface layer" - ], "registry": [ "TYPO3 Explained", "main", @@ -15230,6 +15506,12 @@ "CodingGuidelines\/CglPhp\/FileStructure.html#cgl-file-structure", "File structure" ], + "cgl-namespaces-class-names": [ + "TYPO3 Explained", + "main", + "CodingGuidelines\/CglPhp\/FileStructure.html#cgl-namespaces-class-names", + "PHP class" + ], "cgl-general-requirements-for-php-files": [ "TYPO3 Explained", "main", @@ -15308,60 +15590,6 @@ "CodingGuidelines\/CglYaml.html#cgl-yaml", "YAML coding guidelines" ], - "cgl-database-access": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/AccessingTheDatabase.html#cgl-database-access", - "Accessing the database" - ], - "cgl-namespaces-class-names": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/ClassNamesOfUserFiles.html#cgl-namespaces-class-names", - "Namespaces and class names of user files" - ], - "cgl-deprecation": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/HandlingDeprecations.html#cgl-deprecation", - "Handling deprecations" - ], - "cgl-best-practices": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/Index.html#cgl-best-practices", - "PHP best practices" - ], - "cgl-named-arguments": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#cgl-named-arguments", - "Named arguments" - ], - "cgl-named-arguments-pcpp-value-objects": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#cgl-named-arguments-pcpp-value-objects", - "Leveraging Named Arguments in PCPP Value Objects" - ], - "cgl-singletons": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/Singletons.html#cgl-singletons", - "Singletons" - ], - "cgl-static-methods": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/StaticMethods.html#cgl-static-methods", - "Static methods" - ], - "cgl-unit-tests": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/UnitTests.html#cgl-unit-tests", - "Unit Tests" - ], "cgl": [ "TYPO3 Explained", "main", @@ -15398,42 +15626,6 @@ "CodingGuidelines\/Introduction.html#cgl-editorconfig", ".editorconfig" ], - "cgl-php-architecture": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/Index.html#cgl-php-architecture", - "PHP architecture" - ], - "cgl-modeling-cross-cutting-concerns": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/Index.html#cgl-modeling-cross-cutting-concerns", - "PHP architecture" - ], - "cgl-services": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/Services.html#cgl-services", - "Services" - ], - "cgl-model-static-methods": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/StaticMethods.html#cgl-model-static-methods", - "Static Methods, static Classes, Utility Classes" - ], - "cgl-traits": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/Traits.html#cgl-traits", - "Traits" - ], - "cgl-working-with-exceptions": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html#cgl-working-with-exceptions", - "Working with exceptions" - ], "application-context": [ "TYPO3 Explained", "main", @@ -18191,9 +18383,51 @@ "ext-tables-sql": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#ext_tables-sql", + "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#ext-tables-sql", "ext_tables.sql" ], + "ext-tables-sql-fields": [ + "TYPO3 Explained", + "main", + "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#ext-tables-sql-fields", + "Adding additional fields to existing tables" + ], + "ext-tables-sql-types": [ + "TYPO3 Explained", + "main", + "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#ext-tables-sql-types", + "Database types" + ], + "ext-tables-sql-types-fixed-length": [ + "TYPO3 Explained", + "main", + "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#ext-tables-sql-types-fixed-length", + "CHAR and BINARY as fixed length columns" + ], + "ext-tables-sql-types-char": [ + "TYPO3 Explained", + "main", + "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#ext-tables-sql-types-char", + "Fixed-length SQL type CHAR" + ], + "ext-tables-sql-types-char-varchar-difference": [ + "TYPO3 Explained", + "main", + "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#ext-tables-sql-types-char-varchar-difference", + "Key Difference Between CHAR and VARCHAR" + ], + "ext-tables-sql-types-char-when": [ + "TYPO3 Explained", + "main", + "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#ext-tables-sql-types-char-when", + "When to use CHAR columns" + ], + "ext-tables-sql-types-char-hints": [ + "TYPO3 Explained", + "main", + "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#ext-tables-sql-types-char-hints", + "Hints on using fixed-length CHAR columns" + ], "auto-generated-db-structure": [ "TYPO3 Explained", "main", @@ -18332,6 +18566,12 @@ "ExtensionArchitecture\/HowTo\/BackendModule\/ModuleConfiguration.html#backend-modules-configuration-example-debug", "Check if the modules have been properly registered" ], + "backend-modules-security": [ + "TYPO3 Explained", + "main", + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations.html#backend-modules-security", + "Security Considerations" + ], "backend-modules-tutorials": [ "TYPO3 Explained", "main", @@ -19124,6 +19364,72 @@ "Introduction\/Index.html#introduction-getting-help", "Getting help with TYPO3" ], + "cgl-best-practices": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/Index.html#cgl-best-practices", + "PHP architecture" + ], + "cgl-php-architecture": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/Index.html#cgl-php-architecture", + "PHP architecture" + ], + "cgl-modeling-cross-cutting-concerns": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/Index.html#cgl-modeling-cross-cutting-concerns", + "PHP architecture" + ], + "cgl-named-arguments": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/NamedArguments.html#cgl-named-arguments", + "Named arguments" + ], + "cgl-named-arguments-pcpp-value-objects": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/NamedArguments.html#cgl-named-arguments-pcpp-value-objects", + "Leveraging Named Arguments in PCPP Value Objects" + ], + "cgl-services": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/Services.html#cgl-services", + "Services" + ], + "cgl-singletons": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/Singletons.html#cgl-singletons", + "Singletons" + ], + "cgl-static-methods": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/StaticMethods.html#cgl-static-methods", + "Static Methods, static Classes, Utility Classes" + ], + "cgl-model-static-methods": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/StaticMethods.html#cgl-model-static-methods", + "Static Methods, static Classes, Utility Classes" + ], + "cgl-traits": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/Traits.html#cgl-traits", + "Traits" + ], + "cgl-working-with-exceptions": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/WorkingWithExceptions.html#cgl-working-with-exceptions", + "Working with exceptions" + ], "security-backups": [ "TYPO3 Explained", "main", @@ -20150,6 +20456,12 @@ "Testing\/UnitTesting\/Index.html#testing-writing-unit", "Unit testing with the TYPO3 testing framework" ], + "cgl-unit-tests": [ + "TYPO3 Explained", + "main", + "Testing\/UnitTesting\/Index.html#cgl-unit-tests", + "Unit test conventions" + ], "testing-writing-unit-conventions": [ "TYPO3 Explained", "main", @@ -22526,6 +22838,36 @@ "ApiOverview\/Events\/Events\/Backend\/BeforePagePreviewUriGeneratedEvent.html#typo3-cms-backend-routing-event-beforepagepreviewurigeneratedevent-getoptions", "\\TYPO3\\CMS\\Backend\\Routing\\Event\\BeforePagePreviewUriGeneratedEvent::getOptions" ], + "typo3-cms-backend-tree-repository-beforepagetreeisfilteredevent": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/BeforePageTreeIsFilteredEvent.html#typo3-cms-backend-tree-repository-beforepagetreeisfilteredevent", + "\\TYPO3\\CMS\\Backend\\Tree\\Repository\\BeforePageTreeIsFilteredEvent" + ], + "typo3-cms-backend-tree-repository-beforepagetreeisfilteredevent-searchparts": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/BeforePageTreeIsFilteredEvent.html#typo3-cms-backend-tree-repository-beforepagetreeisfilteredevent-searchparts", + "\\TYPO3\\CMS\\Backend\\Tree\\Repository\\BeforePageTreeIsFilteredEvent::searchParts" + ], + "typo3-cms-backend-tree-repository-beforepagetreeisfilteredevent-searchuids": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/BeforePageTreeIsFilteredEvent.html#typo3-cms-backend-tree-repository-beforepagetreeisfilteredevent-searchuids", + "\\TYPO3\\CMS\\Backend\\Tree\\Repository\\BeforePageTreeIsFilteredEvent::searchUids" + ], + "typo3-cms-backend-tree-repository-beforepagetreeisfilteredevent-searchphrase": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/BeforePageTreeIsFilteredEvent.html#typo3-cms-backend-tree-repository-beforepagetreeisfilteredevent-searchphrase", + "\\TYPO3\\CMS\\Backend\\Tree\\Repository\\BeforePageTreeIsFilteredEvent::searchPhrase" + ], + "typo3-cms-backend-tree-repository-beforepagetreeisfilteredevent-querybuilder": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/BeforePageTreeIsFilteredEvent.html#typo3-cms-backend-tree-repository-beforepagetreeisfilteredevent-querybuilder", + "\\TYPO3\\CMS\\Backend\\Tree\\Repository\\BeforePageTreeIsFilteredEvent::queryBuilder" + ], "typo3-cms-backend-recordlist-event-beforerecorddownloadisexecutedevent": [ "TYPO3 Explained", "main", @@ -23978,6 +24320,18 @@ "ApiOverview\/Events\/Events\/Backend\/PageContentPreviewRenderingEvent.html#typo3-cms-backend-view-event-pagecontentpreviewrenderingevent-ispropagationstopped", "\\TYPO3\\CMS\\Backend\\View\\Event\\PageContentPreviewRenderingEvent::isPropagationStopped" ], + "typo3-cms-backend-authentication-event-passwordhasbeenresetevent": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/PasswordHasBeenResetEvent.html#typo3-cms-backend-authentication-event-passwordhasbeenresetevent", + "\\TYPO3\\CMS\\Backend\\Authentication\\Event\\PasswordHasBeenResetEvent" + ], + "typo3-cms-backend-authentication-event-passwordhasbeenresetevent-userid": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/PasswordHasBeenResetEvent.html#typo3-cms-backend-authentication-event-passwordhasbeenresetevent-userid", + "\\TYPO3\\CMS\\Backend\\Authentication\\Event\\PasswordHasBeenResetEvent::userId" + ], "typo3-cms-backend-controller-event-renderadditionalcontenttorecordlistevent": [ "TYPO3 Explained", "main", @@ -24956,6 +25310,78 @@ "ApiOverview\/Events\/Events\/Core\/Domain\/RecordAccessGrantedEvent.html#typo3-cms-core-domain-access-recordaccessgrantedevent-getcontext", "\\TYPO3\\CMS\\Core\\Domain\\Access\\RecordAccessGrantedEvent::getContext" ], + "typo3-cms-core-domain-event-recordcreationevent": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent" + ], + "typo3-cms-core-domain-event-recordcreationevent-setrecord": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-setrecord", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::setRecord" + ], + "typo3-cms-core-domain-event-recordcreationevent-ispropagationstopped": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-ispropagationstopped", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::isPropagationStopped" + ], + "typo3-cms-core-domain-event-recordcreationevent-hasproperty": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-hasproperty", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::hasProperty" + ], + "typo3-cms-core-domain-event-recordcreationevent-setproperty": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-setproperty", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::setProperty" + ], + "typo3-cms-core-domain-event-recordcreationevent-setproperties": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-setproperties", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::setProperties" + ], + "typo3-cms-core-domain-event-recordcreationevent-unsetproperty": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-unsetproperty", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::unsetProperty" + ], + "typo3-cms-core-domain-event-recordcreationevent-getproperty": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-getproperty", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::getProperty" + ], + "typo3-cms-core-domain-event-recordcreationevent-getproperties": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-getproperties", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::getProperties" + ], + "typo3-cms-core-domain-event-recordcreationevent-getrawrecord": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-getrawrecord", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::getRawRecord" + ], + "typo3-cms-core-domain-event-recordcreationevent-getsystemproperties": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-getsystemproperties", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::getSystemProperties" + ], + "typo3-cms-core-domain-event-recordcreationevent-getcontext": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-getcontext", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::getContext" + ], "typo3-cms-core-html-event-aftertransformtextforpersistenceevent": [ "TYPO3 Explained", "main", @@ -25262,18 +25688,6 @@ "ApiOverview\/Events\/Events\/Core\/LinkHandling\/BeforeTypoLinkEncodedEvent.html#typo3-cms-core-linkhandling-event-beforetypolinkencodedevent-getemptyvaluesymbol", "\\TYPO3\\CMS\\Core\\LinkHandling\\Event\\BeforeTypoLinkEncodedEvent::getEmptyValueSymbol" ], - "typo3-cms-core-mail-event-aftermailerinitializationevent": [ - "TYPO3 Explained", - "main", - "ApiOverview\/Events\/Events\/Core\/Mail\/AfterMailerInitializationEvent.html#typo3-cms-core-mail-event-aftermailerinitializationevent", - "\\TYPO3\\CMS\\Core\\Mail\\Event\\AfterMailerInitializationEvent" - ], - "typo3-cms-core-mail-event-aftermailerinitializationevent-getmailer": [ - "TYPO3 Explained", - "main", - "ApiOverview\/Events\/Events\/Core\/Mail\/AfterMailerInitializationEvent.html#typo3-cms-core-mail-event-aftermailerinitializationevent-getmailer", - "\\TYPO3\\CMS\\Core\\Mail\\Event\\AfterMailerInitializationEvent::getMailer" - ], "typo3-cms-core-mail-event-aftermailersentmessageevent": [ "TYPO3 Explained", "main", @@ -27230,6 +27644,24 @@ "ApiOverview\/Events\/Events\/Frontend\/AfterCachedPageIsPersistedEvent.html#typo3-cms-frontend-event-aftercachedpageispersistedevent-getcachelifetime", "\\TYPO3\\CMS\\Frontend\\Event\\AfterCachedPageIsPersistedEvent::getCacheLifetime" ], + "typo3-cms-frontend-event-aftercontenthasbeenfetchedevent": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Frontend\/AfterContentHasBeenFetchedEvent.html#typo3-cms-frontend-event-aftercontenthasbeenfetchedevent", + "\\TYPO3\\CMS\\Frontend\\Event\\AfterContentHasBeenFetchedEvent" + ], + "typo3-cms-frontend-event-aftercontenthasbeenfetchedevent-groupedcontent": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Frontend\/AfterContentHasBeenFetchedEvent.html#typo3-cms-frontend-event-aftercontenthasbeenfetchedevent-groupedcontent", + "\\TYPO3\\CMS\\Frontend\\Event\\AfterContentHasBeenFetchedEvent::groupedContent" + ], + "typo3-cms-frontend-event-aftercontenthasbeenfetchedevent-request": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Frontend\/AfterContentHasBeenFetchedEvent.html#typo3-cms-frontend-event-aftercontenthasbeenfetchedevent-request", + "\\TYPO3\\CMS\\Frontend\\Event\\AfterContentHasBeenFetchedEvent::request" + ], "typo3-cms-frontend-contentobject-event-aftercontentobjectrendererinitializedevent": [ "TYPO3 Explained", "main", @@ -32677,13 +33109,13 @@ "about-this-manual": [ "TYPO3 Explained", "main", - "About.html#about-this-manual", + "About.html#about", "About This Manual" ], "intended-audience": [ "TYPO3 Explained", "main", - "About.html#intended-audience", + "About.html#audience", "Intended Audience" ], "code-examples": [ @@ -32695,7 +33127,7 @@ "feedback-and-contribute": [ "TYPO3 Explained", "main", - "About.html#feedback-and-contribute", + "About.html#feedback", "Feedback and Contribute" ], "credits": [ @@ -32713,55 +33145,55 @@ "typo3-administration": [ "TYPO3 Explained", "main", - "Administration\/Index.html#typo3-administration", + "Administration\/Index.html#administration", "TYPO3 administration" ], "deployer": [ "TYPO3 Explained", "main", - "Administration\/Installation\/Deployer\/Index.html#deployer", + "Administration\/Installation\/Deployer\/Index.html#deployment-deployer", "Deployer" ], "deploying-typo3": [ "TYPO3 Explained", "main", - "Administration\/Installation\/DeployTYPO3.html#deploying-typo3", + "Administration\/Installation\/DeployTYPO3.html#deployment", "Deploying TYPO3" ], "general-deployment-steps": [ "TYPO3 Explained", "main", - "Administration\/Installation\/DeployTYPO3.html#general-deployment-steps", + "Administration\/Installation\/DeployTYPO3.html#deployment-steps", "General Deployment Steps" ], "deployment-automation": [ "TYPO3 Explained", "main", - "Administration\/Installation\/DeployTYPO3.html#deployment-automation", + "Administration\/Installation\/DeployTYPO3.html#deployment-automatic", "Deployment Automation" ], "configuring-environments": [ "TYPO3 Explained", "main", - "Administration\/Installation\/EnvironmentConfiguration.html#configuring-environments", + "Administration\/Installation\/EnvironmentConfiguration.html#environment-configuration", "Configuring environments" ], "env-dotenv-files": [ "TYPO3 Explained", "main", - "Administration\/Installation\/EnvironmentConfiguration.html#env-dotenv-files", + "Administration\/Installation\/EnvironmentConfiguration.html#environment-dotenv", ".env \/ dotenv files" ], "helhum-dotenv-connect": [ "TYPO3 Explained", "main", - "Administration\/Installation\/EnvironmentConfiguration.html#helhum-dotenv-connect", + "Administration\/Installation\/EnvironmentConfiguration.html#environment-helhum-dotenv", "helhum\/dotenv-connect" ], "plain-php-configuration-files": [ "TYPO3 Explained", "main", - "Administration\/Installation\/EnvironmentConfiguration.html#plain-php-configuration-files", + "Administration\/Installation\/EnvironmentConfiguration.html#environment-phpconfig", "Plain PHP configuration files" ], "installation": [ @@ -32773,7 +33205,7 @@ "installing-typo3": [ "TYPO3 Explained", "main", - "Administration\/Installation\/Install.html#installing-typo3", + "Administration\/Installation\/Install.html#installation", "Installing TYPO3" ], "pre-installation-checklist": [ @@ -32809,7 +33241,7 @@ "access-typo3-via-a-web-browser": [ "TYPO3 Explained", "main", - "Administration\/Installation\/Install.html#access-typo3-via-a-web-browser", + "Administration\/Installation\/Install.html#install-access-typo3-via-a-web-browser", "Access TYPO3 via a web browser" ], "scan-environment": [ @@ -32845,55 +33277,55 @@ "installing-extensions-legacy-guide": [ "TYPO3 Explained", "main", - "Administration\/Installation\/LegacyExtensionInstallation.html#installing-extensions-legacy-guide", + "Administration\/Installation\/LegacyExtensionInstallation.html#extensions-legacy-management", "Installing Extensions - Legacy Guide" ], "installing-an-extension-using-the-extension-manager": [ "TYPO3 Explained", "main", - "Administration\/Installation\/LegacyExtensionInstallation.html#installing-an-extension-using-the-extension-manager", + "Administration\/Installation\/LegacyExtensionInstallation.html#extension-install", "Installing an Extension using the Extension Manager" ], "uninstall-an-extension-without-composer": [ "TYPO3 Explained", "main", - "Administration\/Installation\/LegacyExtensionInstallation.html#uninstall-an-extension-without-composer", + "Administration\/Installation\/LegacyExtensionInstallation.html#uninstall-extension-without-composer", "Uninstall an Extension Without Composer" ], "check-dependencies": [ "TYPO3 Explained", "main", - "Administration\/Installation\/LegacyExtensionInstallation.html#check-dependencies", + "Administration\/Installation\/LegacyExtensionInstallation.html#uninstall-extension-without-composer-dependencies", "Check Dependencies" ], "uninstall-deactivate-extension-via-typo3-backend": [ "TYPO3 Explained", "main", - "Administration\/Installation\/LegacyExtensionInstallation.html#uninstall-deactivate-extension-via-typo3-backend", + "Administration\/Installation\/LegacyExtensionInstallation.html#uninstall-extension-backend", "Uninstall \/ Deactivate Extension via TYPO3 Backend" ], "remove-an-extension-via-the-typo3-backend": [ "TYPO3 Explained", "main", - "Administration\/Installation\/LegacyExtensionInstallation.html#remove-an-extension-via-the-typo3-backend", + "Administration\/Installation\/LegacyExtensionInstallation.html#remove-extension-backend", "Remove an Extension via the TYPO3 Backend" ], "uninstalling-an-extension-manually": [ "TYPO3 Explained", "main", - "Administration\/Installation\/LegacyExtensionInstallation.html#uninstalling-an-extension-manually", + "Administration\/Installation\/LegacyExtensionInstallation.html#uninstall-extension-manually", "Uninstalling an Extension Manually" ], "removing-an-extension-manually": [ "TYPO3 Explained", "main", - "Administration\/Installation\/LegacyExtensionInstallation.html#removing-an-extension-manually", + "Administration\/Installation\/LegacyExtensionInstallation.html#remove-extension-manually", "Removing an extension manually" ], "legacy-installation": [ "TYPO3 Explained", "main", - "Administration\/Installation\/LegacyInstallation.html#legacy-installation", + "Administration\/Installation\/LegacyInstallation.html#legacyinstallation", "Legacy Installation" ], "installing-on-a-unix-server": [ @@ -32917,19 +33349,19 @@ "magallanes": [ "TYPO3 Explained", "main", - "Administration\/Installation\/Magallanes\/Index.html#magallanes", + "Administration\/Installation\/Magallanes\/Index.html#deployment-magallanes", "Magallanes" ], "production-settings-1": [ "TYPO3 Explained", "main", - "Administration\/Installation\/ProductionSettings.html#production-settings-1", + "Administration\/Installation\/ProductionSettings.html#production-settings", "Production Settings" ], "typo3-release-integrity": [ "TYPO3 Explained", "main", - "Administration\/Installation\/ReleaseIntegrity.html#typo3-release-integrity", + "Administration\/Installation\/ReleaseIntegrity.html#release_integrity", "TYPO3 release integrity" ], "release-contents": [ @@ -32965,43 +33397,43 @@ "typo3-surf": [ "TYPO3 Explained", "main", - "Administration\/Installation\/Surf\/Index.html#typo3-surf", + "Administration\/Installation\/Surf\/Index.html#deployment-typo3-surf", "TYPO3 Surf" ], "system-requirements-1": [ "TYPO3 Explained", "main", - "Administration\/Installation\/SystemRequirements\/Index.html#system-requirements-1", + "Administration\/Installation\/SystemRequirements\/Index.html#system-requirements", "System Requirements" ], "php": [ "TYPO3 Explained", "main", - "Configuration\/ApplicationContext.html#php", + "Configuration\/ApplicationContext.html#read-application-context-php", "PHP" ], "configure": [ "TYPO3 Explained", "main", - "Administration\/Installation\/SystemRequirements\/Index.html#configure", + "Administration\/Installation\/SystemRequirements\/Index.html#system-requirements-php-configuration", "Configure" ], "required-extensions": [ "TYPO3 Explained", "main", - "Administration\/Installation\/SystemRequirements\/Index.html#required-extensions", + "Administration\/Installation\/SystemRequirements\/Index.html#system-requirements-php-extensions", "Required Extensions" ], "required-database-extensions": [ "TYPO3 Explained", "main", - "Administration\/Installation\/SystemRequirements\/Index.html#required-database-extensions", + "Administration\/Installation\/SystemRequirements\/Index.html#system-requirements-php-database-extensions", "Required Database Extensions" ], "web-server": [ "TYPO3 Explained", "main", - "Administration\/Troubleshooting\/WebServer.html#web-server", + "Administration\/Troubleshooting\/WebServer.html#troubleshooting-webserver", "Web Server" ], "htaccess": [ @@ -33013,7 +33445,7 @@ "virtual-host-record": [ "TYPO3 Explained", "main", - "Administration\/Installation\/SystemRequirements\/Index.html#virtual-host-record", + "Administration\/Installation\/SystemRequirements\/Index.html#vhost-records", "Virtual Host Record" ], "apache-modules": [ @@ -33025,13 +33457,13 @@ "database": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Database\/Index.html#database", + "ApiOverview\/Events\/Events\/Core\/Database\/Index.html#eventlist-core-database", "Database" ], "required-database-privileges": [ "TYPO3 Explained", "main", - "Administration\/Installation\/SystemRequirements\/Index.html#required-database-privileges", + "Administration\/Installation\/SystemRequirements\/Index.html#system-requirements-database", "Required Database Privileges" ], "composer": [ @@ -33043,7 +33475,7 @@ "tuning-typo3": [ "TYPO3 Explained", "main", - "Administration\/Installation\/TuneTYPO3.html#tuning-typo3", + "Administration\/Installation\/TuneTYPO3.html#tunetypo3", "Tuning TYPO3" ], "opcache": [ @@ -33067,43 +33499,43 @@ "example-configuration-of-backend-user-groups": [ "TYPO3 Explained", "main", - "Administration\/PermissionsManagement\/ExampleConfiguration\/Index.html#example-configuration-of-backend-user-groups", + "Administration\/PermissionsManagement\/ExampleConfiguration\/Index.html#example-configuration", "Example configuration of backend user groups" ], "backend-groups-structure-for-a-small-project": [ "TYPO3 Explained", "main", - "Administration\/PermissionsManagement\/ExampleConfiguration\/Index.html#backend-groups-structure-for-a-small-project", + "Administration\/PermissionsManagement\/ExampleConfiguration\/Index.html#single-site-structure", "Backend groups\u2019 structure for a small project" ], "backend-group-structure-for-a-multi-site-project": [ "TYPO3 Explained", "main", - "Administration\/PermissionsManagement\/ExampleConfiguration\/Index.html#backend-group-structure-for-a-multi-site-project", + "Administration\/PermissionsManagement\/ExampleConfiguration\/Index.html#multisite-structure", "Backend group structure for a multi-site project" ], "general-recommendations-1": [ "TYPO3 Explained", "main", - "Administration\/PermissionsManagement\/GeneralRecommendations\/Index.html#general-recommendations-1", + "Administration\/PermissionsManagement\/GeneralRecommendations\/Index.html#general-recommendations", "General recommendations" ], "create-user-specific-accounts": [ "TYPO3 Explained", "main", - "Administration\/PermissionsManagement\/GeneralRecommendations\/Index.html#create-user-specific-accounts", + "Administration\/PermissionsManagement\/GeneralRecommendations\/Index.html#user-specific-accounts", "Create user-specific accounts" ], "how-to-ensure-safety": [ "TYPO3 Explained", "main", - "Administration\/PermissionsManagement\/GeneralRecommendations\/Index.html#how-to-ensure-safety", + "Administration\/PermissionsManagement\/GeneralRecommendations\/Index.html#ensure-safety", "How to ensure safety" ], "set-permissions-via-groups-not-user-records": [ "TYPO3 Explained", "main", - "Administration\/PermissionsManagement\/GeneralRecommendations\/Index.html#set-permissions-via-groups-not-user-records", + "Administration\/PermissionsManagement\/GeneralRecommendations\/Index.html#permissions-via-groups", "Set permissions via groups, not user records" ], "file-mounts-and-files-management": [ @@ -33115,37 +33547,37 @@ "groups-inheritance-1": [ "TYPO3 Explained", "main", - "Administration\/PermissionsManagement\/GroupsInheritance\/Index.html#groups-inheritance-1", + "Administration\/PermissionsManagement\/GroupsInheritance\/Index.html#groups-inheritance", "Groups inheritance" ], "permissions-management-1": [ "TYPO3 Explained", "main", - "Administration\/PermissionsManagement\/Index.html#permissions-management-1", + "Administration\/PermissionsManagement\/Index.html#permissions-management", "Permissions management" ], "introduction": [ "TYPO3 Explained", "main", - "Testing\/Tutorial\/Enetcache.html#introduction", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-introduction", "Introduction" ], "what-access-options-can-be-set-within-typo3": [ "TYPO3 Explained", "main", - "Administration\/PermissionsManagement\/Index.html#what-access-options-can-be-set-within-typo3", + "Administration\/PermissionsManagement\/Index.html#available-acl-options", "What access options can be set within TYPO3?" ], "permissions-synchronization-1": [ "TYPO3 Explained", "main", - "Administration\/PermissionsManagement\/PermissionsSynchronization\/Index.html#permissions-synchronization-1", + "Administration\/PermissionsManagement\/PermissionsSynchronization\/Index.html#permissions-synchronization", "Permissions synchronization" ], "managing-database-configurations-importing-and-exporting": [ "TYPO3 Explained", "main", - "Administration\/PermissionsManagement\/PermissionsSynchronization\/Index.html#managing-database-configurations-importing-and-exporting", + "Administration\/PermissionsManagement\/PermissionsSynchronization\/Index.html#permissions-import-export", "Managing database configurations: importing and exporting" ], "deployable-permissions": [ @@ -33157,7 +33589,7 @@ "setting-up-backend-user-groups-1": [ "TYPO3 Explained", "main", - "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#setting-up-backend-user-groups-1", + "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#setting-up-backend-user-groups", "Setting up backend user groups" ], "system-groups": [ @@ -33169,25 +33601,25 @@ "access-control-list-acl-groups": [ "TYPO3 Explained", "main", - "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#access-control-list-acl-groups", + "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#acl-groups", "Access Control List (ACL) groups" ], "role-groups-as-an-aggregation-of-specific-role-permissions": [ "TYPO3 Explained", "main", - "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#role-groups-as-an-aggregation-of-specific-role-permissions", + "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#role-groups", "Role groups as an aggregation of specific role permissions" ], "implementing-naming-conventions-for-easy-group-management": [ "TYPO3 Explained", "main", - "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#implementing-naming-conventions-for-easy-group-management", + "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#naming-convention", "Implementing naming conventions for easy group management" ], "role-group": [ "TYPO3 Explained", "main", - "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#role-group", + "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#role-group:", "Role Group" ], "page-group": [ @@ -33229,13 +33661,13 @@ "limit-to-languages": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/GroupPermissions\/Index.html#limit-to-languages", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-language-limit", "Limit to Languages" ], "describe-the-naming-conventions-in-the-tca": [ "TYPO3 Explained", "main", - "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#describe-the-naming-conventions-in-the-tca", + "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#describe-naming-conventions-in-tca", "Describe the naming conventions in the TCA" ], "use-the-notes-field-to-describe-the-purpose-of-the-group": [ @@ -33244,6 +33676,30 @@ "Administration\/PermissionsManagement\/SettingUpBackendGroups\/Index.html#use-the-notes-field-to-describe-the-purpose-of-the-group", "Use the Notes field to describe the purpose of the group" ], + "typo3-system-settings-for-administrators": [ + "TYPO3 Explained", + "main", + "Administration\/SystemSettings\/Index.html#system-settings", + "TYPO3 system settings for administrators" + ], + "maintenance-mode-prevent-backend-logins-during-upgrade": [ + "TYPO3 Explained", + "main", + "Administration\/SystemSettings\/MaintenanceMode\/Index.html#maintenance-mode", + "Maintenance mode: Prevent backend logins during upgrade" + ], + "total-shutdown-for-maintenance-purposes": [ + "TYPO3 Explained", + "main", + "Administration\/SystemSettings\/MaintenanceMode\/Index.html#maintenance-mode-total", + "Total shutdown for maintenance purposes" + ], + "lock-the-typo3-backend-for-editors": [ + "TYPO3 Explained", + "main", + "Administration\/SystemSettings\/MaintenanceMode\/Index.html#maintenance-mode-editors", + "Lock the TYPO3 backend for editors" + ], "mysql": [ "TYPO3 Explained", "main", @@ -33259,25 +33715,25 @@ "troubleshooting": [ "TYPO3 Explained", "main", - "ApiOverview\/PasswordHashing\/Troubleshooting.html#troubleshooting", + "ApiOverview\/PasswordHashing\/Troubleshooting.html#password-hashing_troubleshooting", "Troubleshooting" ], "missing-php-modules": [ "TYPO3 Explained", "main", - "Administration\/Troubleshooting\/PHP.html#missing-php-modules", + "Administration\/Troubleshooting\/PHP.html#troubleshooting-php-modules", "Missing PHP Modules" ], "php-caches-extension-classes-etc": [ "TYPO3 Explained", "main", - "Administration\/Troubleshooting\/PHP.html#php-caches-extension-classes-etc", + "Administration\/Troubleshooting\/PHP.html#troubleshooting-php-caches-extension-classes-etc", "PHP Caches, Extension Classes etc." ], "opcode-cache-messages": [ "TYPO3 Explained", "main", - "Administration\/Troubleshooting\/PHP.html#opcode-cache-messages", + "Administration\/Troubleshooting\/PHP.html#troubleshooting-php-troubleshooting_opcode", "Opcode cache messages" ], "no-php-opcode-cache-loaded": [ @@ -33307,121 +33763,121 @@ "system-modules": [ "TYPO3 Explained", "main", - "Administration\/Troubleshooting\/SystemModules.html#system-modules", + "Administration\/Troubleshooting\/SystemModules.html#troubleshooting-system_modules", "System Modules" ], "log": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Quickstart\/Index.html#log", + "ApiOverview\/Logging\/Quickstart\/Index.html#logging-quickstart-log", "Log" ], "db-check": [ "TYPO3 Explained", "main", - "Administration\/Troubleshooting\/SystemModules.html#db-check", + "Administration\/Troubleshooting\/SystemModules.html#troubleshooting-system-modules-dbcheck", "DB Check" ], "configuration": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/Configuration.html#configuration", + "ExtensionArchitecture\/HowTo\/Configuration.html#extension_configuration", "Configuration" ], "reports": [ "TYPO3 Explained", "main", - "Administration\/Troubleshooting\/SystemModules.html#reports", + "Administration\/Troubleshooting\/SystemModules.html#troubleshooting-system-modules-reports", "Reports" ], "typo3": [ "TYPO3 Explained", "main", - "ApiOverview\/GlobalValues\/Constants\/Index.html#typo3", + "ApiOverview\/GlobalValues\/Constants\/Index.html#globals-constants-typo3", "TYPO3" ], "resetting-passwords": [ "TYPO3 Explained", "main", - "Administration\/Troubleshooting\/TYPO3.html#resetting-passwords", + "Administration\/Troubleshooting\/TYPO3.html#troubleshooting-typo3-password-reset", "Resetting Passwords" ], "backend-administrator-password": [ "TYPO3 Explained", "main", - "Administration\/Troubleshooting\/TYPO3.html#backend-administrator-password", + "Administration\/Troubleshooting\/TYPO3.html#troubleshooting-backend-admin-password", "Backend Administrator Password" ], "install-tool-password": [ "TYPO3 Explained", "main", - "Administration\/Troubleshooting\/TYPO3.html#install-tool-password", + "Administration\/Troubleshooting\/TYPO3.html#troubleshooting-install-tool-password", "Install Tool Password" ], "debug-settings": [ "TYPO3 Explained", "main", - "Administration\/Troubleshooting\/TYPO3.html#debug-settings", + "Administration\/Troubleshooting\/TYPO3.html#troubleshooting-debug-mode", "Debug Settings" ], "caching": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Caching.html#caching", + "ExtensionArchitecture\/Extbase\/Reference\/Caching.html#extbase_caching", "Caching" ], "cached-files-in-typo3temp": [ "TYPO3 Explained", "main", - "Administration\/Troubleshooting\/TYPO3.html#cached-files-in-typo3temp", + "Administration\/Troubleshooting\/TYPO3.html#troubleshooting-caching-typo3temp", "Cached Files in typo3temp\/" ], "possible-problems-with-the-cached-files": [ "TYPO3 Explained", "main", - "Administration\/Troubleshooting\/TYPO3.html#possible-problems-with-the-cached-files", + "Administration\/Troubleshooting\/TYPO3.html#troubleshooting-possible-problems-with-the-cached-files", "Possible Problems With the Cached Files" ], "changing-the-absolute-path-to-typo3": [ "TYPO3 Explained", "main", - "Administration\/Troubleshooting\/TYPO3.html#changing-the-absolute-path-to-typo3", + "Administration\/Troubleshooting\/TYPO3.html#troubleshooting-changing-the-absolute-path-to-typo3", "Changing the absolute path to TYPO3" ], "changing-image-processing-settings": [ "TYPO3 Explained", "main", - "Administration\/Troubleshooting\/TYPO3.html#changing-image-processing-settings", + "Administration\/Troubleshooting\/TYPO3.html#troubleshooting-changing-image-processing-settings", "Changing Image Processing Settings" ], "apache": [ "TYPO3 Explained", "main", - "Configuration\/ApplicationContext.html#apache", + "Configuration\/ApplicationContext.html#set-application-context-apache", "Apache" ], "enable-mod-rewrite": [ "TYPO3 Explained", "main", - "Administration\/Troubleshooting\/WebServer.html#enable-mod-rewrite", + "Administration\/Troubleshooting\/WebServer.html#troubleshooting-enable-mod_rewrite", "Enable mod_rewrite" ], "adjust-threadstacksize-on-windows": [ "TYPO3 Explained", "main", - "Administration\/Troubleshooting\/WebServer.html#adjust-threadstacksize-on-windows", + "Administration\/Troubleshooting\/WebServer.html#troubleshooting-adjust-threadstacksize-on-windows", "Adjust ThreadStackSize on Windows" ], "applying-core-patches-1": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/ApplyingCorePatches\/Index.html#applying-core-patches-1", + "Administration\/Upgrade\/ApplyingCorePatches\/Index.html#applying-core-patches", "Applying Core patches" ], "automatic-patch-application-with-cweagans-composer-patches": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/ApplyingCorePatches\/Index.html#automatic-patch-application-with-cweagans-composer-patches", + "Administration\/Upgrade\/ApplyingCorePatches\/Index.html#cweagans-composer-patches", "Automatic patch application with cweagans\/composer-patches" ], "creating-a-diff-from-a-core-change": [ @@ -33433,25 +33889,25 @@ "apply-a-core-patch-manually": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/ApplyingCorePatches\/Index.html#apply-a-core-patch-manually", + "Administration\/Upgrade\/ApplyingCorePatches\/Index.html#apply-core-patch-manually", "Apply a core patch manually" ], "apply-a-core-patch-automatically-via-gilbertsoft-typo3-core-patches": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/ApplyingCorePatches\/Index.html#apply-a-core-patch-automatically-via-gilbertsoft-typo3-core-patches", + "Administration\/Upgrade\/ApplyingCorePatches\/Index.html#apply-core-patch-automatically", "Apply a core patch automatically via gilbertsoft\/typo3-core-patches" ], "upgrading-the-typo3-core-and-extensions": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/Index.html#upgrading-the-typo3-core-and-extensions", + "Administration\/Upgrade\/Index.html#upgrading", "Upgrading the TYPO3 Core and extensions" ], "legacy-upgrade": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/Legacy\/Index.html#legacy-upgrade", + "Administration\/Upgrade\/Legacy\/Index.html#legacy", "Legacy Upgrade" ], "minor-upgrades-using-the-core-updater": [ @@ -33463,7 +33919,7 @@ "major-upgrades-symlink-the-core": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/Legacy\/Index.html#major-upgrades-symlink-the-core", + "Administration\/Upgrade\/Legacy\/Index.html#install-manually", "Major Upgrades - Symlink The Core" ], "disabling-the-core-updater": [ @@ -33481,67 +33937,67 @@ "major-upgrade": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/Major\/Index.html#major-upgrade", + "Administration\/Upgrade\/Major\/Index.html#major", "Major upgrade" ], "post-upgrade-tasks": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#post-upgrade-tasks", + "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#postupgradetasks", "Post-upgrade tasks" ], "run-the-upgrade-wizard": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#run-the-upgrade-wizard", + "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#run_upgrade_wizard", "Run the upgrade wizard" ], "run-the-database-analyser": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#run-the-database-analyser", + "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#run_the_database_analyser", "Run the database analyser" ], "clear-user-settings": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#clear-user-settings", + "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#clear_user_settings", "Clear user settings" ], "clear-caches": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#clear-caches", + "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#post_upgrade_clear_caches", "Clear caches" ], "update-backend-translations": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#update-backend-translations", + "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#update_backend_translation", "Update backend translations" ], "verify-webserver-configuration-htaccess": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#verify-webserver-configuration-htaccess", + "Administration\/Upgrade\/Major\/PostupgradeTasks\/Index.html#maintain-htaccess", "Verify webserver configuration (.htaccess)" ], "pre-upgrade-tasks": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#pre-upgrade-tasks", + "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#preupgradetasks", "Pre-upgrade tasks" ], "make-a-backup": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#make-a-backup", + "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#preupgradetasks_make_a_backup", "Make A Backup" ], "update-reference-index": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#update-reference-index", + "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#update_reference_index", "Update Reference Index" ], "with-command-line-recommended": [ @@ -33559,19 +34015,19 @@ "check-the-changelog": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#check-the-changelog", + "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#check-the-changelog-and-news-md", "Check the ChangeLog" ], "resolve-deprecations": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#resolve-deprecations", + "Administration\/Upgrade\/Major\/PreupgradeTasks\/Index.html#deprecations", "Resolve Deprecations" ], "upgrade-the-core": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/Major\/UpgradeCore.html#upgrade-the-core", + "Administration\/Upgrade\/Major\/UpgradeCore.html#upgradecore", "Upgrade the Core" ], "upgrading-to-a-major-release-using-composer": [ @@ -33607,13 +34063,13 @@ "migrate-content": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/MigrateContent\/Index.html#migrate-content", + "Administration\/Upgrade\/MigrateContent\/Index.html#migratecontent", "Migrate content" ], "prerequisites": [ "TYPO3 Explained", "main", - "ApiOverview\/Routing\/Introduction.html#prerequisites", + "ApiOverview\/Routing\/Introduction.html#routing-prerequisites", "Prerequisites" ], "export-your-data": [ @@ -33655,19 +34111,19 @@ "migrating-and-accessing-public-web-assets-from-typo3conf-ext-to-public-assets": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/MigrateToComposer\/AssetMigration.html#migrating-and-accessing-public-web-assets-from-typo3conf-ext-to-public-assets", + "Administration\/Upgrade\/MigrateToComposer\/AssetMigration.html#migrate-public-assets", "Migrating and accessing public web assets from typo3conf\/ext\/ to public\/_assets" ], "migration": [ "TYPO3 Explained", "main", - "Configuration\/ConfigurationFiles.html#migration", + "Configuration\/ConfigurationFiles.html#configuration-files-migration", "Migration" ], "migrate-a-typo3-project-to-composer": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/MigrateToComposer\/Index.html#migrate-a-typo3-project-to-composer", + "Administration\/Upgrade\/MigrateToComposer\/Index.html#migratetocomposer", "Migrate a TYPO3 project to Composer" ], "migration-steps": [ @@ -33697,7 +34153,7 @@ "install-the-core": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/MigrateToComposer\/MigrationSteps.html#install-the-core", + "Administration\/Upgrade\/MigrateToComposer\/MigrationSteps.html#composer-migration-require-subtree-packages", "Install the Core" ], "install-extensions-from-packagist": [ @@ -33727,13 +34183,13 @@ "install-extension-from-version-control-system-e-g-github-gitlab": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/MigrateToComposer\/MigrationSteps.html#install-extension-from-version-control-system-e-g-github-gitlab", + "Administration\/Upgrade\/MigrateToComposer\/MigrationSteps.html#composer-require-repository", "Install extension from version control system (e.g. GitHub, Gitlab, ...)" ], "include-individual-extensions-like-site-packages": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/MigrateToComposer\/MigrationSteps.html#include-individual-extensions-like-site-packages", + "Administration\/Upgrade\/MigrateToComposer\/MigrationSteps.html#mig-composer-include-individual-extensions", "Include individual extensions like site packages" ], "new-file-locations": [ @@ -33775,7 +34231,7 @@ "version-control": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/SitePackage\/Introduction.html#version-control", + "ExtensionArchitecture\/SitePackage\/Introduction.html#site-package-version-controll", "Version control" ], "add-to-version-control-system": [ @@ -33799,7 +34255,7 @@ "patch-bugfix-update": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/Minor\/Index.html#patch-bugfix-update", + "Administration\/Upgrade\/Minor\/Index.html#minor", "Patch\/Bugfix update" ], "what-are-patch-bugfix-updates": [ @@ -33835,7 +34291,7 @@ "third-party-tools": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/Tools\/Index.html#third-party-tools", + "Administration\/Upgrade\/Tools\/Index.html#tools", "Third-party tools" ], "rector-for-typo3": [ @@ -33865,7 +34321,7 @@ "upgrading-extensions": [ "TYPO3 Explained", "main", - "Administration\/Upgrade\/UpgradingExtensions\/Index.html#upgrading-extensions", + "Administration\/Upgrade\/UpgradingExtensions\/Index.html#upgradingextensions", "Upgrading extensions" ], "list-extensions": [ @@ -33895,7 +34351,7 @@ "changing-the-backend-language": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/BackendLanguages.html#changing-the-backend-language", + "Administration\/UserManagement\/BackendLanguages.html#backendlanguages", "Changing the backend language" ], "install-an-additional-language-pack": [ @@ -33919,25 +34375,25 @@ "backend-privileges": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/BackendPrivileges\/Index.html#backend-privileges", + "Administration\/UserManagement\/BackendPrivileges\/Index.html#privileges", "Backend Privileges" ], "admin": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/BackendPrivileges\/Index.html#admin", + "Administration\/UserManagement\/BackendPrivileges\/Index.html#admin-user", "Admin" ], "system-maintainers": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/BackendPrivileges\/Index.html#system-maintainers", + "Administration\/UserManagement\/BackendPrivileges\/Index.html#system-maintainer", "System Maintainers" ], "create-default-users": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/BackendUsers\/CreateDefaultEditors.html#create-default-users", + "Administration\/UserManagement\/BackendUsers\/CreateDefaultEditors.html#user-management-create-default-editors", "Create Default Users" ], "create-simple-editor": [ @@ -33967,7 +34423,7 @@ "backend-users": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/AccessControl\/OtherOptions\/Index.html#backend-users", + "ApiOverview\/Backend\/AccessControl\/OtherOptions\/Index.html#access-other-options-users", "Backend users" ], "default-editors-in-the-introduction-package": [ @@ -33985,25 +34441,25 @@ "simple-editor": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/BackendUsers\/Index.html#simple-editor", + "Administration\/UserManagement\/BackendUsers\/Index.html#user-management-simple-editor", "\"simple_editor\"" ], "advanced-editor": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/BackendUsers\/Index.html#advanced-editor", + "Administration\/UserManagement\/BackendUsers\/Index.html#user-management-advanced-editor", "\"advanced_editor\"" ], "adding-backend-users": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/BackendUsers.html#adding-backend-users", + "Administration\/UserManagement\/BackendUsers.html#backendusers", "Adding Backend Users" ], "setting-up-user-permissions-1": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/GroupPermissions\/Index.html#setting-up-user-permissions-1", + "Administration\/UserManagement\/GroupPermissions\/Index.html#setting-up-user-permissions", "Setting up User Permissions" ], "general": [ @@ -34015,121 +34471,121 @@ "access-lists": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/AccessControl\/AccessControlOptions\/Index.html#access-lists", + "ApiOverview\/Backend\/AccessControl\/AccessControlOptions\/Index.html#access-options-access-lists", "Access Lists" ], "modules": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/GroupPermissions\/Index.html#modules", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-modules", "Modules" ], "tables": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/GroupPermissions\/Index.html#tables", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-tables", "Tables" ], "page-types": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/GroupPermissions\/Index.html#page-types", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-page-types", "Page Types" ], "allowed-excludefields": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/GroupPermissions\/Index.html#allowed-excludefields", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-allowed-excludefields", "Allowed Excludefields" ], "explicitly-allow-or-deny-field-values": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/GroupPermissions\/Index.html#explicitly-allow-or-deny-field-values", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-explicitly-allow-deny-field-values", "Explicitly Allow or Deny Field Values" ], "mounts-and-workspaces": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/GroupPermissions\/Index.html#mounts-and-workspaces", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-mounts", "Mounts and Workspaces" ], "db-mounts": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/GroupPermissions\/Index.html#db-mounts", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-db-mounts", "DB Mounts" ], "file-mounts": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Administration\/Permissions.html#file-mounts", + "ApiOverview\/Fal\/Administration\/Permissions.html#fal-administration-permissions-mounts", "File mounts" ], "fileoperation-permissions": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/GroupPermissions\/Index.html#fileoperation-permissions", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-file-permissions", "Fileoperation Permissions" ], "category-mounts": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/GroupPermissions\/Index.html#category-mounts", + "Administration\/UserManagement\/GroupPermissions\/Index.html#access-lists-category-permissions", "Category mounts" ], "backend-user-groups": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/Groups\/Index.html#backend-user-groups", + "Administration\/UserManagement\/Groups\/Index.html#groups", "Backend user groups" ], "console-command-to-create-backend-user-groups-from-presets": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/Groups\/Index.html#console-command-to-create-backend-user-groups-from-presets", + "Administration\/UserManagement\/Groups\/Index.html#groups-console", "Console command to create backend user groups from presets" ], "using-the-backend-users-module": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/Groups\/Index.html#using-the-backend-users-module", + "Administration\/UserManagement\/Groups\/Index.html#groups-module", "Using the \"Backend Users\" module" ], "backend-user-management": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/Index.html#backend-user-management", + "Administration\/UserManagement\/Index.html#user-management", "Backend user management" ], "page-permissions-1": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/PagePermissions\/Index.html#page-permissions-1", + "Administration\/UserManagement\/PagePermissions\/Index.html#page-permissions", "Page permissions" ], "setting-up-a-user": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/UserSetup\/Index.html#setting-up-a-user", + "Administration\/UserManagement\/UserSetup\/Index.html#creating-a-new-user-for-the-introduction-site", "Setting up a User" ], "step-1-create-a-new-group": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/UserSetup\/Index.html#step-1-create-a-new-group", + "Administration\/UserManagement\/UserSetup\/Index.html#step-create-a-new-group", "Step 1: Create a New Group" ], "step-2-create-the-user": [ "TYPO3 Explained", "main", - "Administration\/UserManagement\/UserSetup\/Index.html#step-2-create-the-user", + "Administration\/UserManagement\/UserSetup\/Index.html#step-create-the-user", "Step 2: Create the User" ], "assets-css-javascript-media": [ "TYPO3 Explained", "main", - "ApiOverview\/Assets\/Index.html#assets-css-javascript-media", + "ApiOverview\/Assets\/Index.html#assets", "Assets (CSS, JavaScript, Media)" ], "asset-collector": [ @@ -34141,19 +34597,19 @@ "the-api": [ "TYPO3 Explained", "main", - "ApiOverview\/Assets\/Index.html#the-api", + "ApiOverview\/Assets\/Index.html#asset-collector-api", "The API" ], "viewhelper": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Typo3Request.html#viewhelper", + "ApiOverview\/RequestLifeCycle\/Typo3Request.html#typo3-request-viewhelper", "ViewHelper" ], "rendering-order": [ "TYPO3 Explained", "main", - "ApiOverview\/Assets\/Index.html#rendering-order", + "ApiOverview\/Assets\/Index.html#assets-rendering-order", "Rendering order" ], "examples": [ @@ -34165,97 +34621,97 @@ "events": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/Events\/Index.html#events", + "ExtensionArchitecture\/HowTo\/Events\/Index.html#extension-development-events", "Events" ], "former-methods-to-add-assets": [ "TYPO3 Explained", "main", - "ApiOverview\/Assets\/Index.html#former-methods-to-add-assets", + "ApiOverview\/Assets\/Index.html#assets-other-methods", "Former methods to add assets" ], "using-the-page-renderer": [ "TYPO3 Explained", "main", - "ApiOverview\/Assets\/Index.html#using-the-page-renderer", + "ApiOverview\/Assets\/Index.html#assets-page-renderer", "Using the page renderer" ], "using-the-typoscriptfrontendcontroller": [ "TYPO3 Explained", "main", - "ApiOverview\/Assets\/Index.html#using-the-typoscriptfrontendcontroller", + "ApiOverview\/Assets\/Index.html#assets-TypoScriptFrontendController", "Using the TypoScriptFrontendController" ], "csrf-like-request-token-handling": [ "TYPO3 Explained", "main", - "ApiOverview\/Authentication\/CSRFlikeRequestTokenHandling.html#csrf-like-request-token-handling", + "ApiOverview\/Authentication\/CSRFlikeRequestTokenHandling.html#authentication-request-token", "CSRF-like request token handling" ], "workflow": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Workflow.html#workflow", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Workflow.html#crowdin-workflow", "Workflow" ], "authentication-1": [ "TYPO3 Explained", "main", - "ApiOverview\/Authentication\/Index.html#authentication-1", + "ApiOverview\/Authentication\/Index.html#authentication", "Authentication" ], "why-use-services": [ "TYPO3 Explained", "main", - "ApiOverview\/Authentication\/Index.html#why-use-services", + "ApiOverview\/Authentication\/Index.html#authentication-why-services", "Why Use Services?" ], "the-authentication-process": [ "TYPO3 Explained", "main", - "ApiOverview\/Authentication\/Index.html#the-authentication-process", + "ApiOverview\/Authentication\/Index.html#authentication-process", "The Authentication Process" ], "the-login-data": [ "TYPO3 Explained", "main", - "ApiOverview\/Authentication\/Index.html#the-login-data", + "ApiOverview\/Authentication\/Index.html#authentication-data", "The login data" ], "the-auth-services-api": [ "TYPO3 Explained", "main", - "ApiOverview\/Authentication\/Index.html#the-auth-services-api", + "ApiOverview\/Authentication\/Index.html#authentication-api", "The \"auth\" services API" ], "the-service-chain": [ "TYPO3 Explained", "main", - "ApiOverview\/Authentication\/Index.html#the-service-chain", + "ApiOverview\/Authentication\/Index.html#authentication-service-chain", "The service chain" ], "developing-an-authentication-service": [ "TYPO3 Explained", "main", - "ApiOverview\/Authentication\/Index.html#developing-an-authentication-service", + "ApiOverview\/Authentication\/Index.html#authentication-service-development", "Developing an authentication service" ], "advanced-options": [ "TYPO3 Explained", "main", - "ApiOverview\/Authentication\/Index.html#advanced-options", + "ApiOverview\/Authentication\/Index.html#authentication-advanced-options", "Advanced Options" ], "multi-factor-authentication-1": [ "TYPO3 Explained", "main", - "ApiOverview\/Authentication\/MultiFactorAuthentication.html#multi-factor-authentication-1", + "ApiOverview\/Authentication\/MultiFactorAuthentication.html#multi-factor-authentication", "Multi-factor authentication" ], "included-mfa-providers": [ "TYPO3 Explained", "main", - "ApiOverview\/Authentication\/MultiFactorAuthentication.html#included-mfa-providers", + "ApiOverview\/Authentication\/MultiFactorAuthentication.html#multi-factor-authentication-included-providers", "Included MFA providers" ], "time-based-one-time-password-totp": [ @@ -34315,7 +34771,7 @@ "composerclassloader": [ "TYPO3 Explained", "main", - "ApiOverview\/Autoloading\/Background.html#composerclassloader", + "ApiOverview\/Autoloading\/Background.html#composer-class-loader", "ComposerClassLoader" ], "integrating-composer-class-loader-into-typo3": [ @@ -34369,7 +34825,7 @@ "autoloading": [ "TYPO3 Explained", "main", - "ApiOverview\/Autoloading\/Index.html#autoloading", + "ApiOverview\/Autoloading\/Index.html#autoload", "Autoloading" ], "about-php-makeinstance": [ @@ -34381,103 +34837,103 @@ "autoloading-classes": [ "TYPO3 Explained", "main", - "ApiOverview\/Autoloading\/Index.html#autoloading-classes", + "ApiOverview\/Autoloading\/Index.html#autoloading_classes", "Autoloading classes" ], "loading-classes-with-composer-mode": [ "TYPO3 Explained", "main", - "ApiOverview\/Autoloading\/Index.html#loading-classes-with-composer-mode", + "ApiOverview\/Autoloading\/Index.html#autoloading_with_composer_mode", "Loading classes with Composer mode" ], "loading-classes-without-composer-mode": [ "TYPO3 Explained", "main", - "ApiOverview\/Autoloading\/Index.html#loading-classes-without-composer-mode", + "ApiOverview\/Autoloading\/Index.html#autoloading_without_composer_mode", "Loading classes without Composer mode" ], "best-practices": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Logger\/Index.html#best-practices", + "ApiOverview\/Logging\/Logger\/Index.html#logging-logger-best-practices", "Best practices" ], "further-reading": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#further-reading", - "Further reading" + "PhpArchitecture\/Traits.html#further-reading", + "Further Reading" ], "access-control-options": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/AccessControl\/AccessControlOptions\/Index.html#access-control-options", + "ApiOverview\/Backend\/AccessControl\/AccessControlOptions\/Index.html#access-options", "Access Control Options" ], "mounts": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/AccessControl\/AccessControlOptions\/Index.html#mounts", + "ApiOverview\/Backend\/AccessControl\/AccessControlOptions\/Index.html#access-options-mounts", "Mounts" ], "page-permissions": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/AccessControl\/AccessControlOptions\/Index.html#page-permissions", + "ApiOverview\/Backend\/AccessControl\/AccessControlOptions\/Index.html#access-options-page-permissions", "Page Permissions" ], "user-tsconfig": [ "TYPO3 Explained", "main", - "Configuration\/TypoScript\/TSconfig\/Index.html#user-tsconfig", + "Configuration\/TypoScript\/TSconfig\/Index.html#tsconfig-user", "User TSconfig" ], "access-control-in-the-backend-users-and-groups": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/AccessControl\/Index.html#access-control-in-the-backend-users-and-groups", + "ApiOverview\/Backend\/AccessControl\/Index.html#access", "Access control in the backend (users and groups)" ], "more-about-file-mounts": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/AccessControl\/MoreAboutFileMounts\/Index.html#more-about-file-mounts", + "ApiOverview\/Backend\/AccessControl\/MoreAboutFileMounts\/Index.html#access-filemounts-more", "More about file mounts" ], "create-a-new-filemount": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/AccessControl\/MoreAboutFileMounts\/Index.html#create-a-new-filemount", + "ApiOverview\/Backend\/AccessControl\/MoreAboutFileMounts\/Index.html#access-filemounts-create", "Create a new filemount" ], "paths-for-local-driver-storage": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/AccessControl\/MoreAboutFileMounts\/Index.html#paths-for-local-driver-storage", + "ApiOverview\/Backend\/AccessControl\/MoreAboutFileMounts\/Index.html#access-filemounts-more-local-driver", "Paths for local driver storage" ], "home-directories": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/AccessControl\/MoreAboutFileMounts\/Index.html#home-directories", + "ApiOverview\/Backend\/AccessControl\/MoreAboutFileMounts\/Index.html#access-filemounts-home-directories", "Home directories" ], "other-options": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/AccessControl\/OtherOptions\/Index.html#other-options", + "ApiOverview\/Backend\/AccessControl\/OtherOptions\/Index.html#access-other-options", "Other Options" ], "backend-groups": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/AccessControl\/OtherOptions\/Index.html#backend-groups", + "ApiOverview\/Backend\/AccessControl\/OtherOptions\/Index.html#access-other-options-groups", "Backend Groups" ], "backend-users-module": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/AccessControl\/OverviewOfUsers\/Index.html#backend-users-module", + "ApiOverview\/Backend\/AccessControl\/OverviewOfUsers\/Index.html#access-backend-users-module", "Backend users module" ], "comparing-users-or-groups": [ @@ -34495,7 +34951,7 @@ "password-reset-functionality": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/AccessControl\/PasswordReset\/Index.html#password-reset-functionality", + "ApiOverview\/Backend\/AccessControl\/PasswordReset\/Index.html#access-password-reset", "Password reset functionality" ], "notes-on-security": [ @@ -34531,37 +34987,37 @@ "users-and-groups": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#users-and-groups", + "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#access-users-groups", "Users and groups" ], "users": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#users", + "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#access-users-groups-users", "Users" ], "groups": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#groups", + "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#access-users-groups-groups", "Groups" ], "the-admin-user": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#the-admin-user", + "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#access-users-groups-admin", "The \"admin\" user" ], "location-of-users-and-groups": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#location-of-users-and-groups", + "ApiOverview\/Backend\/AccessControl\/UsersAndGroups\/Index.html#access-users-groups-location", "Location of users and groups" ], "ajax-in-the-backend": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/Ajax.html#ajax-in-the-backend", + "ApiOverview\/Backend\/Ajax.html#ajax-backend", "Ajax in the backend" ], "create-a-controller": [ @@ -34585,109 +35041,109 @@ "backend-layout": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendLayout.html#backend-layout", + "ApiOverview\/Backend\/BackendLayout.html#be-layout", "Backend layout" ], "backend-layout-video": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendLayout.html#backend-layout-video", + "ApiOverview\/Backend\/BackendLayout.html#be-layout-video", "Backend layout video" ], "backend-layout-configuration": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendLayout.html#backend-layout-configuration", + "ApiOverview\/Backend\/BackendLayout.html#be-layout-info-module", "Backend layout configuration" ], "backend-layout-definition": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendLayout.html#backend-layout-definition", + "ApiOverview\/Backend\/BackendLayout.html#be-layout-definition", "Backend layout definition" ], "backend-layout-simple-example": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendLayout.html#backend-layout-simple-example", + "ApiOverview\/Backend\/BackendLayout.html#be-layout-simple-example", "Backend layout simple example" ], "backend-layout-advanced-example": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendLayout.html#backend-layout-advanced-example", + "ApiOverview\/Backend\/BackendLayout.html#be-layout-advanced-example", "Backend layout advanced example" ], "output-of-a-backend-layout-in-the-frontend": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendLayout.html#output-of-a-backend-layout-in-the-frontend", + "ApiOverview\/Backend\/BackendLayout.html#be-layout-frontend", "Output of a backend layout in the frontend" ], "reference-implementations-of-backend-layouts": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendLayout.html#reference-implementations-of-backend-layouts", + "ApiOverview\/Backend\/BackendLayout.html#be-layout-reference-implementations", "Reference implementations of backend layouts" ], "extensions-for-backend-layouts": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendLayout.html#extensions-for-backend-layouts", + "ApiOverview\/Backend\/BackendLayout.html#be-layout-extensions", "Extensions for backend layouts" ], "backend-gui-1": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/BackendGUI.html#backend-gui-1", + "ApiOverview\/Backend\/BackendModules\/BackendGUI.html#backend-modules-structure", "Backend GUI" ], "docheadercomponent": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/DocHeaderComponent.html#docheadercomponent", + "ApiOverview\/Backend\/BackendModules\/DocHeaderComponent.html#DocHeaderComponent", "DocHeaderComponent" ], "docheadercomponent-api": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/DocHeaderComponent.html#docheadercomponent-api", + "ApiOverview\/Backend\/BackendModules\/DocHeaderComponent.html#DocHeaderComponent-api", "DocHeaderComponent API" ], "example-build-a-module-header-with-buttons-and-a-menu": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/DocHeaderComponent.html#example-build-a-module-header-with-buttons-and-a-menu", + "ApiOverview\/Backend\/BackendModules\/DocHeaderComponent.html#DocHeaderComponent-example", "Example: Build a module header with buttons and a menu" ], "backend-modules-api-1": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/Index.html#backend-modules-api-1", + "ApiOverview\/Backend\/BackendModules\/Index.html#backend-modules", "Backend modules API" ], "modules-php-backend-module-configuration": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#modules-php-backend-module-configuration", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-modules-configuration", "Modules.php - Backend module configuration" ], "module-configuration-options": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#module-configuration-options", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-modules-configuration-options", "Module configuration options" ], "default-module-configuration-options-without-extbase": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#default-module-configuration-options-without-extbase", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-modules-api-default", "Default module configuration options (without Extbase)" ], "extbase-module-configuration-options": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#extbase-module-configuration-options", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-modules-configuration-extensionName", "Extbase module configuration options" ], "debug-the-module-configuration": [ @@ -34699,13 +35155,13 @@ "backend-modules-with-sudo-mode": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-modules-with-sudo-mode", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-configuration-sudo", "Backend modules with sudo mode" ], "third-level-modules-module-functions": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/ThirdlevelModules.html#third-level-modules-module-functions", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/ThirdlevelModules.html#backend-modules-third-level-module", "Third-level modules \/ module functions" ], "example": [ @@ -34717,7 +35173,7 @@ "toplevel-modules": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/ToplevelModules.html#toplevel-modules", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/ToplevelModules.html#backend-modules-toplevel-module", "Toplevel modules" ], "register-a-custom-toplevel-module": [ @@ -34729,13 +35185,13 @@ "module-data-object": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleDataObject.html#module-data-object", + "ApiOverview\/Backend\/BackendModules\/ModuleDataObject.html#backend-Module-data-object", "Module data object" ], "moduleinterface": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleInterface.html#moduleinterface", + "ApiOverview\/Backend\/BackendModules\/ModuleInterface.html#backend-module-interface", "ModuleInterface" ], "moduleinterface-api": [ @@ -34747,79 +35203,79 @@ "moduleprovider": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleProviderAPI.html#moduleprovider", + "ApiOverview\/Backend\/BackendModules\/ModuleProviderAPI.html#backend-module-provider", "ModuleProvider" ], "moduleprovider-api": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleProviderAPI.html#moduleprovider-api", + "ApiOverview\/Backend\/BackendModules\/ModuleProviderAPI.html#backend-module-provider-api", "ModuleProvider API" ], "moduletemplate": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleTemplate.html#moduletemplate", + "ApiOverview\/Backend\/BackendModules\/ModuleTemplate.html#ModuleTemplate", "ModuleTemplate" ], "example-create-and-use-a-moduletemplate-in-an-extbase-controller": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleTemplate.html#example-create-and-use-a-moduletemplate-in-an-extbase-controller", + "ApiOverview\/Backend\/BackendModules\/ModuleTemplate.html#ModuleTemplate-examples", "Example: Create and use a ModuleTemplate in an Extbase Controller" ], "moduletemplatefactory": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleTemplateFactory.html#moduletemplatefactory", + "ApiOverview\/Backend\/BackendModules\/ModuleTemplateFactory.html#ModuleTemplateFactory", "ModuleTemplateFactory" ], "moduletemplatefactory-api": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleTemplateFactory.html#moduletemplatefactory-api", + "ApiOverview\/Backend\/BackendModules\/ModuleTemplateFactory.html#ModuleTemplateFactory-api", "ModuleTemplateFactory API" ], "example-initialize-module-template": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleTemplateFactory.html#example-initialize-module-template", + "ApiOverview\/Backend\/BackendModules\/ModuleTemplateFactory.html#ModuleTemplateFactory-examples", "Example: Initialize module template" ], "typoscript-configuration-of-modules": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleTypoScript.html#typoscript-configuration-of-modules", + "ApiOverview\/Backend\/BackendModules\/ModuleTypoScript.html#backend-module-typoscript", "TypoScript configuration of modules" ], "sudo-mode-in-typo3-backend-modules": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/SudoMode.html#sudo-mode-in-typo3-backend-modules", + "ApiOverview\/Backend\/BackendModules\/SudoMode.html#backend-module-sudo", "Sudo mode in TYPO3 backend modules" ], "authentication-in-for-sudo-mode-in-extensions-using-the-auth-service": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/SudoMode.html#authentication-in-for-sudo-mode-in-extensions-using-the-auth-service", + "ApiOverview\/Backend\/BackendModules\/SudoMode.html#backend-module-sudo-extensions", "Authentication in for sudo mode in extensions using the auth service" ], "custom-backend-modules-requiring-the-sudo-mode": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/SudoMode.html#custom-backend-modules-requiring-the-sudo-mode", + "ApiOverview\/Backend\/BackendModules\/SudoMode.html#backend-module-sudo-modules", "Custom backend modules requiring the sudo mode" ], "process-in-a-nutshell": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/SudoMode.html#process-in-a-nutshell", + "ApiOverview\/Backend\/BackendModules\/SudoMode.html#backend-module-sudo-modules-process", "Process in a nutshell" ], "backend-routing-1": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendRouting.html#backend-routing-1", + "ApiOverview\/Backend\/BackendRouting.html#backend-routing", "Backend routing" ], "backend-routing-and-cross-site-scripting": [ @@ -34831,7 +35287,7 @@ "dynamic-url-parts-in-backend-urls": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendRouting.html#dynamic-url-parts-in-backend-urls", + "ApiOverview\/Backend\/BackendRouting.html#backend-routing-dynamic-parts", "Dynamic URL parts in backend URLs" ], "generating-backend-urls": [ @@ -34843,19 +35299,19 @@ "via-fluid-viewhelper": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendRouting.html#via-fluid-viewhelper", + "ApiOverview\/Backend\/BackendRouting.html#backend-routing-url-viewhelper", "Via Fluid ViewHelper" ], "via-php": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendRouting.html#via-php", + "ApiOverview\/Backend\/BackendRouting.html#backend-routing-url-php", "Via PHP" ], "sudo-mode": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendRouting.html#sudo-mode", + "ApiOverview\/Backend\/BackendRouting.html#backend-routing-sudo", "Sudo mode" ], "more-information": [ @@ -34867,85 +35323,85 @@ "backend-user-object": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendUserObject.html#backend-user-object", + "ApiOverview\/Backend\/BackendUserObject.html#be-user", "Backend user object" ], "checking-user-access": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendUserObject.html#checking-user-access", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-check", "Checking user access" ], "checking-access-to-any-backend-module": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendUserObject.html#checking-access-to-any-backend-module", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-access-any", "Checking access to any backend module" ], "access-to-tables-and-fields": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendUserObject.html#access-to-tables-and-fields", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-access-tables", "Access to tables and fields?" ], "is-admin": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendUserObject.html#is-admin", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-admin", "Is \"admin\"?" ], "read-access-to-a-page": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendUserObject.html#read-access-to-a-page", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-page", "Read access to a page?" ], "is-a-page-inside-a-db-mount": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendUserObject.html#is-a-page-inside-a-db-mount", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-mount", "Is a page inside a DB mount?" ], "selecting-readable-pages-from-database": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendUserObject.html#selecting-readable-pages-from-database", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-pageperms", "Selecting readable pages from database?" ], "saving-module-data": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendUserObject.html#saving-module-data", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-module-save", "Saving module data" ], "getting-module-data": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendUserObject.html#getting-module-data", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-module-get", "Getting module data" ], "getting-tsconfig": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendUserObject.html#getting-tsconfig", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-tsconfig", "Getting TSconfig" ], "getting-the-username": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendUserObject.html#getting-the-username", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-name", "Getting the Username" ], "get-user-configuration-value": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendUserObject.html#get-user-configuration-value", + "ApiOverview\/Backend\/BackendUserObject.html#be-user-configuration", "Get User Configuration Value" ], "broadcast-channels": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BroadcastChannels.html#broadcast-channels", + "ApiOverview\/Backend\/BroadcastChannels.html#broadcast_channels", "Broadcast channels" ], "send-a-message": [ @@ -34963,7 +35419,7 @@ "button-components-1": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/ButtonComponents.html#button-components-1", + "ApiOverview\/Backend\/ButtonComponents.html#button-components", "Button components" ], "generic-button-component": [ @@ -34981,55 +35437,55 @@ "dropdownbutton": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/ButtonComponents.html#dropdownbutton", + "ApiOverview\/Backend\/ButtonComponents.html#dropdown-button-components-button", "DropDownButton" ], "dropdowndivider": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/ButtonComponents.html#dropdowndivider", + "ApiOverview\/Backend\/ButtonComponents.html#dropdown-button-components-divider", "DropDownDivider" ], "dropdownheader": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/ButtonComponents.html#dropdownheader", + "ApiOverview\/Backend\/ButtonComponents.html#dropdown-button-components-header", "DropDownHeader" ], "dropdownitem": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/ButtonComponents.html#dropdownitem", + "ApiOverview\/Backend\/ButtonComponents.html#dropdown-button-components-item", "DropDownItem" ], "dropdownradio": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/ButtonComponents.html#dropdownradio", + "ApiOverview\/Backend\/ButtonComponents.html#dropdown-button-components-radio", "DropDownRadio" ], "dropdowntoggle": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/ButtonComponents.html#dropdowntoggle", + "ApiOverview\/Backend\/ButtonComponents.html#dropdown-button-components-toggle", "DropDownToggle" ], "clipboard": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/Clipboard.html#clipboard", + "ApiOverview\/Backend\/Clipboard.html#examples-clipboard-put", "Clipboard" ], "context-sensitive-menus": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/ContextualMenu.html#context-sensitive-menus", + "ApiOverview\/Backend\/ContextualMenu.html#context-menu", "Context-sensitive menus" ], "context-menu-rendering-flow": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/ContextualMenu.html#context-menu-rendering-flow", + "ApiOverview\/Backend\/ContextualMenu.html#csm-implementation", "Context menu rendering flow" ], "markup": [ @@ -35083,7 +35539,7 @@ "tutorial-how-to-add-a-custom-context-menu-item": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/ContextualMenu.html#tutorial-how-to-add-a-custom-context-menu-item", + "ApiOverview\/Backend\/ContextualMenu.html#csm-adding", "Tutorial: How to add a custom context menu item" ], "step-1-implementation-of-the-item-provider-class": [ @@ -35107,37 +35563,37 @@ "using-custom-permission-options": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/CustomPermissions.html#using-custom-permission-options", + "ApiOverview\/Backend\/CustomPermissions.html#custom-permissions", "Using Custom Permission Options" ], "registration": [ "TYPO3 Explained", "main", - "ApiOverview\/Icon\/Index.html#registration", + "ApiOverview\/Icon\/Index.html#icon-registration", "Registration" ], "evaluation": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/CustomPermissions.html#evaluation", + "ApiOverview\/Backend\/CustomPermissions.html#custom-permissions-evaluation", "Evaluation" ], "keys-for-options": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/CustomPermissions.html#keys-for-options", + "ApiOverview\/Backend\/CustomPermissions.html#custom-permissions-keys", "Keys for Options" ], "backend-apis": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/Index.html#backend-apis", + "ApiOverview\/Backend\/Index.html#backend", "Backend APIs" ], "ajax-request-1": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/AjaxRequest\/Index.html#ajax-request-1", + "ApiOverview\/Backend\/JavaScript\/AjaxRequest\/Index.html#ajax-request", "Ajax request" ], "prepare-a-request": [ @@ -35167,13 +35623,13 @@ "es6-in-the-typo3-backend": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/ES6\/Index.html#es6-in-the-typo3-backend", + "ApiOverview\/Backend\/JavaScript\/ES6\/Index.html#backend-javascript-es6", "ES6 in the TYPO3 Backend" ], "loading-es6": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/ES6\/Index.html#loading-es6", + "ApiOverview\/Backend\/JavaScript\/ES6\/Index.html#backend-javascript-es6-loading", "Loading ES6" ], "some-tips-on-es6": [ @@ -35197,7 +35653,7 @@ "event-api": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/EventApi\/Index.html#event-api", + "ApiOverview\/Backend\/JavaScript\/EventApi\/Index.html#js-event-api", "Event API" ], "event-binding": [ @@ -35245,7 +35701,7 @@ "throttleevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/EventApi\/Index.html#throttleevent", + "ApiOverview\/Backend\/JavaScript\/EventApi\/Index.html#js-event-api-throttleevent", "ThrottleEvent" ], "requestanimationframeevent": [ @@ -35257,7 +35713,7 @@ "javascript-form-helpers-1": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/Forms\/Index.html#javascript-form-helpers-1", + "ApiOverview\/Backend\/JavaScript\/Forms\/Index.html#javascript-form-helpers", "JavaScript form helpers" ], "empty-checkbox-handling": [ @@ -35275,49 +35731,49 @@ "hotkey-api": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/HotkeyApi\/Index.html#hotkey-api", + "ApiOverview\/Backend\/JavaScript\/HotkeyApi\/Index.html#js-hotkey-api", "Hotkey API" ], "javascript-in-typo3-backend": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/Index.html#javascript-in-typo3-backend", + "ApiOverview\/Backend\/JavaScript\/Index.html#javascript", "JavaScript in TYPO3 backend" ], "documentservice-jquery-ready-substitute": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/Modules\/DocumentService.html#documentservice-jquery-ready-substitute", + "ApiOverview\/Backend\/JavaScript\/Modules\/DocumentService.html#modules-documentservice", "DocumentService (jQuery.ready substitute)" ], "various-javascript-modules": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/Modules\/Index.html#various-javascript-modules", + "ApiOverview\/Backend\/JavaScript\/Modules\/Index.html#modules", "Various JavaScript modules" ], "modals": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modals", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals", "Modals" ], "api": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/UriBuilder.html#api", + "ExtensionArchitecture\/Extbase\/Reference\/UriBuilder.html#uri-builder-api", "API" ], "modal-settings": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modal-settings", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-settings", "Modal settings" ], "button-settings": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#button-settings", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-button-settings", "Button settings" ], "data-attributes": [ @@ -35329,13 +35785,13 @@ "multi-step-wizard": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/Modules\/MultiStepWizard.html#multi-step-wizard", + "ApiOverview\/Backend\/JavaScript\/Modules\/MultiStepWizard.html#modules-multistepwizard", "Multi-step wizard" ], "sessionstorage-wrapper": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/Modules\/SessionStorageWrapper.html#sessionstorage-wrapper", + "ApiOverview\/Backend\/JavaScript\/Modules\/SessionStorageWrapper.html#modules-sessionstorage", "SessionStorage wrapper" ], "api-methods": [ @@ -35347,7 +35803,7 @@ "navigation-via-javascript": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/Navigation\/Index.html#navigation-via-javascript", + "ApiOverview\/Backend\/JavaScript\/Navigation\/Index.html#javascript-navigation", "Navigation via JavaScript" ], "navigate-to-url": [ @@ -35371,31 +35827,31 @@ "requirejs-dependency-handling": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/RequireJS\/Dependency\/Index.html#requirejs-dependency-handling", + "ApiOverview\/Backend\/JavaScript\/RequireJS\/Dependency\/Index.html#requirejs-dependency", "RequireJS dependency handling" ], "use-requirejs-in-your-own-extension": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/RequireJS\/Extensions\/Index.html#use-requirejs-in-your-own-extension", + "ApiOverview\/Backend\/JavaScript\/RequireJS\/Extensions\/Index.html#requirejs-extensions", "Use RequireJS in your own extension" ], "requirejs-removed": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/RequireJS\/Index.html#requirejs-removed", + "ApiOverview\/Backend\/JavaScript\/RequireJS\/Index.html#requirejs", "RequireJS (Removed)" ], "shim-library-to-use-it-as-own-requirejs-modules": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/RequireJS\/Shim\/Index.html#shim-library-to-use-it-as-own-requirejs-modules", + "ApiOverview\/Backend\/JavaScript\/RequireJS\/Shim\/Index.html#requirejs-shim", "Shim library to use it as own RequireJS modules" ], "client-side-templating": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/Templating\/Index.html#client-side-templating", + "ApiOverview\/Backend\/JavaScript\/Templating\/Index.html#js-templating", "Client-side templating" ], "variable-assignment": [ @@ -35419,61 +35875,79 @@ "backend-login-form-api": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/LoginProvider.html#backend-login-form-api", + "ApiOverview\/Backend\/LoginProvider.html#login-provider", "Backend login form API" ], "registering-a-login-provider": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/LoginProvider.html#registering-a-login-provider", + "ApiOverview\/Backend\/LoginProvider.html#login-provider-registration", "Registering a login provider" ], "loginproviderinterface": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/LoginProvider.html#loginproviderinterface", + "ApiOverview\/Backend\/LoginProvider.html#login-provider-interface", "LoginProviderInterface" ], "the-view": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/LoginProvider.html#the-view", + "ApiOverview\/Backend\/LoginProvider.html#login-provider-view", "The view" ], + "the-page-tree-in-the-typo3-backend": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Backend\/PageTree.html#page-tree", + "The page tree in the TYPO3 backend" + ], + "psr-14-events-to-influence-the-functionality-of-the-page-tree": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Backend\/PageTree.html#page-tree-events", + "PSR-14 events to influence the functionality of the page tree" + ], + "tsconfig-settings-to-influence-the-page-tree": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Backend\/PageTree.html#page-tree-tsconfig", + "TsConfig settings to influence the page tree" + ], "use-the-backend-uribuilder-to-link-to-edit-records": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/UriBuilder.html#use-the-backend-uribuilder-to-link-to-edit-records", + "ApiOverview\/Backend\/UriBuilder.html#edit-links", "Use the backend UriBuilder to link to \"Edit Records\"" ], "display-a-link-to-edit-record": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/UriBuilder.html#display-a-link-to-edit-record", + "ApiOverview\/Backend\/UriBuilder.html#edit-links-basic", "Display a link to \"Edit Record\"" ], "examples-of-edit-record-links": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/UriBuilder.html#examples-of-edit-record-links", + "ApiOverview\/Backend\/UriBuilder.html#edit-links-examples", "Examples of \"Edit record\" links" ], "additional-options-for-editing-records": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/UriBuilder.html#additional-options-for-editing-records", + "ApiOverview\/Backend\/UriBuilder.html#edit-links-edit-restricted", "Additional options for editing records" ], "display-a-link-to-create-a-new-record": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/UriBuilder.html#display-a-link-to-create-a-new-record", + "ApiOverview\/Backend\/UriBuilder.html#edit-links-new", "Display a link to \"Create a New Record\"" ], "enumerations": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#enumerations", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#extbase-model-enumerations", "Enumerations" ], "migration-to-backed-enums": [ @@ -35485,145 +35959,145 @@ "bitsets": [ "TYPO3 Explained", "main", - "ApiOverview\/BitSets\/Index.html#bitsets", + "ApiOverview\/BitSets\/Index.html#BitSet", "Bitsets" ], "caching-framework-architecture": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/Architecture\/Index.html#caching-framework-architecture", + "ApiOverview\/CachingFramework\/Architecture\/Index.html#caching-architecture", "Caching framework architecture" ], "basic-know-how": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/Architecture\/Index.html#basic-know-how", + "ApiOverview\/CachingFramework\/Architecture\/Index.html#caching-architecture-base", "Basic know-how" ], "about-the-identifier": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/Architecture\/Index.html#about-the-identifier", + "ApiOverview\/CachingFramework\/Architecture\/Index.html#caching-architecture-identifier", "About the identifier" ], "about-tags": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/Architecture\/Index.html#about-tags", + "ApiOverview\/CachingFramework\/Architecture\/Index.html#caching-architecture-tags", "About tags" ], "caches-in-the-typo3-core": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/Architecture\/Index.html#caches-in-the-typo3-core", + "ApiOverview\/CachingFramework\/Architecture\/Index.html#caching-architecture-core", "Caches in the TYPO3 Core" ], "garbage-collection-task": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/QuickStart\/Index.html#garbage-collection-task", + "ApiOverview\/CachingFramework\/QuickStart\/Index.html#caching-quickstart-garbage", "Garbage collection task" ], "cache-api": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/Architecture\/Index.html#cache-api", + "ApiOverview\/CachingFramework\/Architecture\/Index.html#caching-architecture-api", "Cache API" ], "cache-configurations": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/Configuration\/Index.html#cache-configurations", + "ApiOverview\/CachingFramework\/Configuration\/Index.html#caching-configuration-cache", "Cache configurations" ], "how-to-disable-specific-caches": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/Configuration\/Index.html#how-to-disable-specific-caches", + "ApiOverview\/CachingFramework\/Configuration\/Index.html#caching-disable", "How to disable specific caches" ], "developer-information": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/Developer\/Index.html#developer-information", + "ApiOverview\/CachingFramework\/Developer\/Index.html#caching-developer", "Developer information" ], "cache-registration": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/Developer\/Index.html#cache-registration", + "ApiOverview\/CachingFramework\/Developer\/Index.html#caching-developer-registration", "Cache registration" ], "using-the-cache": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/Developer\/Index.html#using-the-cache", + "ApiOverview\/CachingFramework\/Developer\/Index.html#caching-developer-access", "Using the cache" ], "working-with-cache-tags": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/Developer\/Index.html#working-with-cache-tags", + "ApiOverview\/CachingFramework\/Developer\/Index.html#caching-developer-cache-tags", "Working with cache tags" ], "cache-frontends": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#cache-frontends", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-frontend", "Cache frontends" ], "frontend-api": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#frontend-api", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-frontend-api", "Frontend API" ], "available-frontends": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#available-frontends", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-frontend-avalaible", "Available Frontends" ], "variable-frontend": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#variable-frontend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-frontend-variable", "Variable Frontend" ], "php-frontend": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#php-frontend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-frontend-php", "PHP Frontend" ], "cache-backends": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#cache-backends", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend", "Cache backends" ], "backend-api": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#backend-api", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching_backend-api", "Backend API" ], "common-options": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#common-options", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-options", "Common Options" ], "database-backend": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#database-backend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-db", "Database Backend" ], "innodb-issues": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#innodb-issues", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-db-innodb", "InnoDB Issues" ], "options": [ @@ -35635,67 +36109,67 @@ "memcached-backend": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#memcached-backend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-memcached", "Memcached Backend" ], "warning-and-design-constraints": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#warning-and-design-constraints", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-memcache-warning", "Warning and Design Constraints" ], "redis-backend": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#redis-backend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-redis", "Redis Backend" ], "redis-example": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#redis-example", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-redis-example", "Redis example" ], "redis-server-configuration": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#redis-server-configuration", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#cacheBackendRedisServerConfiguration", "Redis server configuration" ], "file-backend": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Configuration\/Backend\/Index.html#file-backend", + "ExtensionArchitecture\/FileStructure\/Configuration\/Backend\/Index.html#extension-configuration-backend", "Backend" ], "simple-file-backend": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#simple-file-backend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-simple-file", "Simple File Backend" ], "pdo-backend": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#pdo-backend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-pdo", "PDO Backend" ], "transient-memory-backend": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#transient-memory-backend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-transient", "Transient Memory Backend" ], "null-backend": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#null-backend", + "ApiOverview\/CachingFramework\/FrontendsBackends\/Index.html#caching-backend-null", "Null Backend" ], "caching-1": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/Index.html#caching-1", + "ApiOverview\/CachingFramework\/Index.html#caching", "Caching" ], "caching-in-typo3": [ @@ -35707,7 +36181,7 @@ "caching-variants-or-what-is-a-cache-hash": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/Index.html#caching-variants-or-what-is-a-cache-hash", + "ApiOverview\/CachingFramework\/Index.html#chash", "Caching variants - or: What is a \"cache hash\"?" ], "example-excerpt-of-config-system-additional-php": [ @@ -35749,61 +36223,61 @@ "quick-start-for-integrators": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/QuickStart\/Index.html#quick-start-for-integrators", + "ApiOverview\/CachingFramework\/QuickStart\/Index.html#caching-quickstart", "Quick start for integrators" ], "change-specific-cache-options": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/QuickStart\/Index.html#change-specific-cache-options", + "ApiOverview\/CachingFramework\/QuickStart\/Index.html#caching-quickstart-tuning", "Change specific cache options" ], "system-categories": [ "TYPO3 Explained", "main", - "ApiOverview\/Categories\/Index.html#system-categories", + "ApiOverview\/Categories\/Index.html#categories", "System categories" ], "using-categories": [ "TYPO3 Explained", "main", - "ApiOverview\/Categories\/Index.html#using-categories", + "ApiOverview\/Categories\/Index.html#categories-using", "Using Categories" ], "managing-categories": [ "TYPO3 Explained", "main", - "ApiOverview\/Categories\/Index.html#managing-categories", + "ApiOverview\/Categories\/Index.html#categories-managing", "Managing Categories" ], "adding-categories-to-a-table": [ "TYPO3 Explained", "main", - "ApiOverview\/Categories\/Index.html#adding-categories-to-a-table", + "ApiOverview\/Categories\/Index.html#categories-activating", "Adding categories to a table" ], "using-categories-in-flexforms": [ "TYPO3 Explained", "main", - "ApiOverview\/Categories\/Index.html#using-categories-in-flexforms", + "ApiOverview\/Categories\/Index.html#categories-flexforms", "Using categories in FlexForms" ], "system-categories-api": [ "TYPO3 Explained", "main", - "ApiOverview\/Categories\/Index.html#system-categories-api", + "ApiOverview\/Categories\/Index.html#categories-api", "System categories API" ], "category-collections": [ "TYPO3 Explained", "main", - "ApiOverview\/Categories\/Index.html#category-collections", + "ApiOverview\/Categories\/Index.html#categories-collections", "Category Collections" ], "usage-with-typoscript": [ "TYPO3 Explained", "main", - "ApiOverview\/Categories\/Index.html#usage-with-typoscript", + "ApiOverview\/Categories\/Index.html#categories-typoscript", "Usage with TypoScript" ], "user-permissions-for-system-categories": [ @@ -35815,7 +36289,7 @@ "code-editor-1": [ "TYPO3 Explained", "main", - "ApiOverview\/CodeEditor\/Index.html#code-editor-1", + "ApiOverview\/CodeEditor\/Index.html#code-editor", "Code editor" ], "usage-in-tca": [ @@ -35827,37 +36301,37 @@ "extend-the-code-editor": [ "TYPO3 Explained", "main", - "ApiOverview\/CodeEditor\/Index.html#extend-the-code-editor", + "ApiOverview\/CodeEditor\/Index.html#code-editor-extend", "Extend the code editor" ], "register-an-addon": [ "TYPO3 Explained", "main", - "ApiOverview\/CodeEditor\/Index.html#register-an-addon", + "ApiOverview\/CodeEditor\/Index.html#code-editor-register-addon", "Register an addon" ], "register-a-mode": [ "TYPO3 Explained", "main", - "ApiOverview\/CodeEditor\/Index.html#register-a-mode", + "ApiOverview\/CodeEditor\/Index.html#code-editor-register-mode", "Register a mode" ], "console-commands-cli": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/Index.html#console-commands-cli", + "ApiOverview\/CommandControllers\/Index.html#symfony-console-commands", "Console commands (CLI)" ], "run-a-command-from-the-command-line": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/Index.html#run-a-command-from-the-command-line", + "ApiOverview\/CommandControllers\/Index.html#symfony-console-commands-cli", "Run a command from the command line" ], "running-the-command-from-the-scheduler": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/Index.html#running-the-command-from-the-scheduler", + "ApiOverview\/CommandControllers\/Index.html#symfony-console-commands-scheduler", "Running the command from the scheduler" ], "create-a-custom-command": [ @@ -35881,19 +36355,19 @@ "list-of-typo3-console-commands": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#list-of-typo3-console-commands", + "ApiOverview\/CommandControllers\/ListCommands.html#symfony-console-commands-list", "List of TYPO3 console commands" ], "list-all-typo3-console-commands": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#list-all-typo3-console-commands", + "ApiOverview\/CommandControllers\/ListCommands.html#symfony-console-commands-list-list", "List all TYPO3 console commands" ], "tutorial": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/Tutorial.html#tutorial", + "ApiOverview\/CommandControllers\/Tutorial.html#console-command-tutorial", "Tutorial" ], "create-a-console-command-from-scratch": [ @@ -35905,13 +36379,13 @@ "creating-a-basic-command": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/Tutorial.html#creating-a-basic-command", + "ApiOverview\/CommandControllers\/Tutorial.html#console-command-tutorial-create", "Creating a basic command" ], "1-register-the-command": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/Tutorial.html#1-register-the-command", + "ApiOverview\/CommandControllers\/Tutorial.html#console-command-tutorial-registration-services", "1. Register the command" ], "2-create-the-command-class": [ @@ -35929,7 +36403,7 @@ "use-the-php-attribute-to-register-commands": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/Tutorial.html#use-the-php-attribute-to-register-commands", + "ApiOverview\/CommandControllers\/Tutorial.html#console-command-tutorial-registration-attribute", "Use the PHP attribute to register commands" ], "create-a-command-with-arguments-and-interaction": [ @@ -35965,67 +36439,67 @@ "create-a-custom-content-element-type": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#create-a-custom-content-element-type", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#adding-your-own-content-elements", "Create a custom content element type" ], "use-an-extension": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#use-an-extension", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#AddingCE-use-an-extension", "Use an extension" ], "register-the-content-element-type": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#register-the-content-element-type", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#AddingCE-TCA-Overrides-tt_content", "Register the content element type" ], "display-an-icon": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#display-an-icon", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#AddingCE-Icon", "Display an icon" ], "the-new-content-element-wizard": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#the-new-content-element-wizard", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#AddingCE-PageTSconfig", "The new content element wizard" ], "configure-the-backend-form": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#configure-the-backend-form", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#ConfigureCE-Fields", "Configure the backend form" ], "configure-the-frontend-rendering": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#configure-the-frontend-rendering", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#ConfigureCE-Frontend", "Configure the frontend rendering" ], "extended-example-extend-tt-content-and-use-data-processing": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#extended-example-extend-tt-content-and-use-data-processing", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#AddingCE-Extended-Example", "Extended example: Extend tt_content and use data processing" ], "extending-tt-content": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#extending-tt-content", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#ConfigureCE-Extend-tt_content", "Extending tt_content" ], "extending-the-database-schema": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#extending-the-database-schema", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#ConfigureCE-Extend-tt_content-database", "Extending the database schema" ], "defining-the-field-in-the-tca": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#defining-the-field-in-the-tca", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#ConfigureCE-Extend-tt_content-tca", "Defining the field in the TCA" ], "defining-the-field-in-the-tce": [ @@ -36037,13 +36511,13 @@ "data-processing": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#data-processing", + "ApiOverview\/ContentElements\/AddingYourOwnContentElements.html#ConfigureCE-DataProcessors", "Data processing" ], "best-practices-1": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/BestPractices.html#best-practices-1", + "ApiOverview\/ContentElements\/BestPractices.html#best-practices", "Best practices" ], "coding-structure": [ @@ -36061,61 +36535,61 @@ "new-content-element-wizard": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/ContentElementsWizard.html#new-content-element-wizard", + "ApiOverview\/ContentElements\/ContentElementsWizard.html#content-element-wizard", "New content element wizard" ], "plain-content-elements-or-plugins": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/ContentElementsWizard.html#plain-content-elements-or-plugins", + "ApiOverview\/ContentElements\/ContentElementsWizard.html#content-element-wizard-plain", "Plain content elements or plugins" ], "plugins-extbase-in-the-new-content-element-wizard": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/ContentElementsWizard.html#plugins-extbase-in-the-new-content-element-wizard", + "ApiOverview\/ContentElements\/ContentElementsWizard.html#content-element-wizard-extbase", "Plugins (Extbase) in the \"New Content Element\" wizard" ], "override-the-wizard-with-page-tsconfig": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/ContentElementsWizard.html#override-the-wizard-with-page-tsconfig", + "ApiOverview\/ContentElements\/ContentElementsWizard.html#content-element-wizard-page-tsconfig", "Override the wizard with page TSconfig" ], "remove-items-from-the-new-content-element-wizard": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/ContentElementsWizard.html#remove-items-from-the-new-content-element-wizard", + "ApiOverview\/ContentElements\/ContentElementsWizard.html#content-element-wizard-page-tsconfig-remove", "Remove items from the \"New Content Element\" wizard" ], "change-title-description-icon-and-default-values-in-the-wizard": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/ContentElementsWizard.html#change-title-description-icon-and-default-values-in-the-wizard", + "ApiOverview\/ContentElements\/ContentElementsWizard.html#content-element-wizard-page-tsconfig-change", "Change title, description, icon and default values in the wizard" ], "register-a-new-group-in-the-new-content-element-wizard": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/ContentElementsWizard.html#register-a-new-group-in-the-new-content-element-wizard", + "ApiOverview\/ContentElements\/ContentElementsWizard.html#content-element-wizard-create-group", "Register a new group in the \"New Content Element\" wizard" ], "content-elements-compatible-with-typo3-v12-4-and-v13": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/ContentElementsWizard.html#content-elements-compatible-with-typo3-v12-4-and-v13", + "ApiOverview\/ContentElements\/ContentElementsWizard.html#content-element-wizard-v12", "Content elements compatible with TYPO3 v12.4 and v13" ], "create-plugins": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/CreatePlugins.html#create-plugins", + "ApiOverview\/ContentElements\/CreatePlugins.html#Create-plugins", "Create plugins" ], "configure-custom-backend-preview-for-content-element": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/CustomBackendPreview.html#configure-custom-backend-preview-for-content-element", + "ApiOverview\/ContentElements\/CustomBackendPreview.html#ConfigureCE-Preview", "Configure custom backend preview for content element" ], "extend-the-default-preview-renderer": [ @@ -36127,13 +36601,13 @@ "page-tsconfig": [ "TYPO3 Explained", "main", - "Configuration\/TypoScript\/TSconfig\/Index.html#page-tsconfig", + "Configuration\/TypoScript\/TSconfig\/Index.html#tsconfig-page", "Page TSconfig" ], "event-listener": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/CustomBackendPreview.html#event-listener", + "ApiOverview\/ContentElements\/CustomBackendPreview.html#ConfigureCE-Preview-EventListener", "Event listener" ], "writing-a-preview-renderer": [ @@ -36151,145 +36625,145 @@ "custom-data-processors": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/CustomDataProcessing.html#custom-data-processors", + "ApiOverview\/ContentElements\/CustomDataProcessing.html#content-elements-custom-data-processor", "Custom data processors" ], "using-a-custom-data-processor-in-typoscript": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/CustomDataProcessing.html#using-a-custom-data-processor-in-typoscript", + "ApiOverview\/ContentElements\/CustomDataProcessing.html#content-elements-custom-data-processor_typoscript", "Using a custom data processor in TypoScript" ], "register-an-alias-for-the-data-processor-optional": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/CustomDataProcessing.html#register-an-alias-for-the-data-processor-optional", + "ApiOverview\/ContentElements\/CustomDataProcessing.html#content-elements-custom-data-processor_alias", "Register an alias for the data processor (optional)" ], "implementing-the-custom-data-processor": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/CustomDataProcessing.html#implementing-the-custom-data-processor", + "ApiOverview\/ContentElements\/CustomDataProcessing.html#content-elements-custom-data-processor_implementation", "Implementing the custom data processor" ], "content-elements-plugins": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/Index.html#content-elements-plugins", + "ApiOverview\/ContentElements\/Index.html#content-element-and-plugin", "Content Elements & Plugins" ], "content-elements-in-typo3": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/Index.html#content-elements-in-typo3", + "ApiOverview\/ContentElements\/Index.html#content-elements", "Content elements in TYPO3" ], "plugins-in-typo3": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/Index.html#plugins-in-typo3", + "ApiOverview\/ContentElements\/Index.html#plugins", "Plugins in TYPO3" ], "extbase-plugins": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/Index.html#extbase-plugins", + "ApiOverview\/ContentElements\/Index.html#plugins-extbase", "Extbase plugins" ], "plugins-without-extbase": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/Index.html#plugins-without-extbase", + "ApiOverview\/ContentElements\/Index.html#plugins-non-extbase", "Plugins without Extbase" ], "typical-characteristics-of-plugins": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/Index.html#typical-characteristics-of-plugins", + "ApiOverview\/ContentElements\/Index.html#plugins-characteristics", "Typical characteristics of plugins" ], "editing": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/Index.html#editing", + "ApiOverview\/ContentElements\/Index.html#plugins-editing", "Editing" ], "customizing": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/Index.html#customizing", + "ApiOverview\/ContentElements\/Index.html#cePluginsCustomize", "Customizing" ], "creating-custom-content-element-types-or-plugins": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/Index.html#creating-custom-content-element-types-or-plugins", + "ApiOverview\/ContentElements\/Index.html#content-element-and-plugin-creation", "Creating custom content element types or plugins" ], "migration-list-type-plugins-to-ctype": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/MigrationListType.html#migration-list-type-plugins-to-ctype", + "ApiOverview\/ContentElements\/MigrationListType.html#plugins-list-type-migration", "Migration: list_type plugins to CType" ], "migration-example-extbase-plugin": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/MigrationListType.html#migration-example-extbase-plugin", + "ApiOverview\/ContentElements\/MigrationListType.html#plugins-list-type-migration-extbase", "Migration example: Extbase plugin" ], "1-adjust-the-extbase-plugin-configuration": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/MigrationListType.html#1-adjust-the-extbase-plugin-configuration", + "ApiOverview\/ContentElements\/MigrationListType.html#plugins-list-type-migration-extbase-configuration", "1. Adjust the Extbase plugin configuration" ], "2-adjust-the-registration-of-flexforms-and-additional-fields": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/MigrationListType.html#2-adjust-the-registration-of-flexforms-and-additional-fields", + "ApiOverview\/ContentElements\/MigrationListType.html#plugins-list-type-migration-extbase-flexform", "2. Adjust the registration of FlexForms and additional fields" ], "3-provide-an-upgrade-wizard": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/MigrationListType.html#3-provide-an-upgrade-wizard", + "ApiOverview\/ContentElements\/MigrationListType.html#plugins-list-type-migration-extbase-upgrade-wizard", "3. Provide an upgrade wizard" ], "4-search-your-code-and-replace-any-mentioning-of-list-type": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/MigrationListType.html#4-search-your-code-and-replace-any-mentioning-of-list-type", + "ApiOverview\/ContentElements\/MigrationListType.html#plugins-list-type-migration-extbase-replace", "4. Search your code and replace any mentioning of list_type" ], "migration-example-core-based-plugin": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/MigrationListType.html#migration-example-core-based-plugin", + "ApiOverview\/ContentElements\/MigrationListType.html#plugins-list-type-migration-core", "Migration example: Core-based plugin" ], "1-adjust-the-plugin-registration": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/MigrationListType.html#1-adjust-the-plugin-registration", + "ApiOverview\/ContentElements\/MigrationListType.html#plugins-list-type-migration-core-plugin-registration", "1. Adjust the plugin registration" ], "2-adjust-the-typoscript-of-the-plugin": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/MigrationListType.html#2-adjust-the-typoscript-of-the-plugin", + "ApiOverview\/ContentElements\/MigrationListType.html#plugins-list-type-migration-core-plugin-typoscript", "2. Adjust the TypoScript of the plugin" ], "3-provide-an-upgrade-wizard-for-automatic-content-migration-for-typo3-v13-4-and-v12-4": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentElements\/MigrationListType.html#3-provide-an-upgrade-wizard-for-automatic-content-migration-for-typo3-v13-4-and-v12-4", + "ApiOverview\/ContentElements\/MigrationListType.html#plugins-list-type-migration-core-plugin-migration", "3. Provide an upgrade wizard for automatic content migration for TYPO3 v13.4 and v12.4" ], "content-security-policy-1": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-1", + "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy", "Content Security Policy" ], "policy-builder-approach": [ @@ -36301,31 +36775,31 @@ "extension-specific": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentSecurityPolicy\/Index.html#extension-specific", + "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-extension", "Extension-specific" ], "site-specific-frontend": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentSecurityPolicy\/Index.html#site-specific-frontend", + "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-site", "Site-specific (frontend)" ], "disable-csp-for-a-site": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentSecurityPolicy\/Index.html#disable-csp-for-a-site", + "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-site-active", "Disable CSP for a site" ], "modes": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentSecurityPolicy\/Index.html#modes", + "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-modes", "Modes" ], "nonce": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Nonce.html#nonce", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Nonce.html#typo3-request-attribute-nonce", "Nonce" ], "retrieve-with-php": [ @@ -36343,7 +36817,7 @@ "reporting-of-violations": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentSecurityPolicy\/Index.html#reporting-of-violations", + "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-reporting", "Reporting of violations" ], "using-a-third-party-service": [ @@ -36355,67 +36829,67 @@ "psr-14-events": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Events.html#psr-14-events", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events", "PSR-14 events" ], "context-api-and-aspects": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#context-api-and-aspects", + "ApiOverview\/Context\/Index.html#context-api", "Context API and aspects" ], "aspects": [ "TYPO3 Explained", "main", - "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#aspects", + "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#routing-advanced-routing-configuration-aspects", "Aspects" ], "date-time-aspect": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#date-time-aspect", + "ApiOverview\/Context\/Index.html#context_api_aspects_datetime", "Date time aspect" ], "language-aspect": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#language-aspect", + "ApiOverview\/Context\/Index.html#context_api_aspects_language", "Language aspect" ], "overlay-types": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#overlay-types", + "ApiOverview\/Context\/Index.html#context_api_aspects_language_overlay-types", "Overlay types" ], "preview-aspect": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#preview-aspect", + "ApiOverview\/Context\/Index.html#context_api_aspects_preview", "Preview aspect" ], "user-aspect": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#user-aspect", + "ApiOverview\/Context\/Index.html#context_api_aspects_user", "User aspect" ], "visibility-aspect": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#visibility-aspect", + "ApiOverview\/Context\/Index.html#context_api_aspects_visibility", "Visibility aspect" ], "workspace-aspect": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#workspace-aspect", + "ApiOverview\/Context\/Index.html#context_api_aspects_workspace", "Workspace aspect" ], "country-api-1": [ "TYPO3 Explained", "main", - "ApiOverview\/Country\/Index.html#country-api-1", + "ApiOverview\/Country\/Index.html#country-api", "Country API" ], "using-the-php-api": [ @@ -36475,13 +36949,13 @@ "form-viewhelper": [ "TYPO3 Explained", "main", - "ApiOverview\/Country\/Index.html#form-viewhelper", + "ApiOverview\/Country\/Index.html#country-select-viewhelper", "Form ViewHelper" ], "crop-variants-configuration-per-content-element": [ "TYPO3 Explained", "main", - "ApiOverview\/CropVariants\/ContentElement\/Index.html#crop-variants-configuration-per-content-element", + "ApiOverview\/CropVariants\/ContentElement\/Index.html#CE_cropvariants", "Crop variants configuration per content element" ], "disable-crop-variants": [ @@ -36493,7 +36967,7 @@ "general-configuration": [ "TYPO3 Explained", "main", - "ApiOverview\/CropVariants\/General\/Index.html#general-configuration", + "ApiOverview\/CropVariants\/General\/Index.html#cropvariants_general", "General Configuration" ], "crop-area": [ @@ -36523,13 +36997,13 @@ "crop-variants-for-images": [ "TYPO3 Explained", "main", - "ApiOverview\/CropVariants\/Index.html#crop-variants-for-images", + "ApiOverview\/CropVariants\/Index.html#cropvariants", "Crop Variants for Images" ], "basic-create-read-update-and-delete-operations-crud": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/BasicCrud\/Index.html#basic-create-read-update-and-delete-operations-crud", + "ApiOverview\/Database\/BasicCrud\/Index.html#cgl-database-access", "Basic create, read, update, and delete operations (CRUD)" ], "insert-a-row": [ @@ -36541,7 +37015,7 @@ "select-a-single-row": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/BasicCrud\/Index.html#select-a-single-row", + "ApiOverview\/Database\/BasicCrud\/Index.html#database-select", "Select a single row" ], "select-multiple-rows-with-some-where-magic": [ @@ -36565,7 +37039,7 @@ "class-overview": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/ClassOverview\/Index.html#class-overview", + "ApiOverview\/Database\/ClassOverview\/Index.html#database-class-overview", "Class overview" ], "example-one-connection": [ @@ -36583,13 +37057,13 @@ "connection": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Connection\/Index.html#connection", + "ApiOverview\/Database\/Connection\/Index.html#database-connection", "Connection" ], "instantiation": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Logger\/Index.html#instantiation", + "ApiOverview\/Logging\/Logger\/Index.html#logging-logger-instantiation", "Instantiation" ], "using-the-connection-pool": [ @@ -36607,25 +37081,25 @@ "parameter-types": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Connection\/Index.html#parameter-types", + "ApiOverview\/Database\/Connection\/Index.html#database-connection-parameter-types", "Parameter types" ], "insert": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Connection\/Index.html#insert", + "ApiOverview\/Database\/Connection\/Index.html#database-connection-insert", "insert()" ], "bulkinsert": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Connection\/Index.html#bulkinsert", + "ApiOverview\/Database\/Connection\/Index.html#database-connection-bulk-insert", "bulkInsert()" ], "update": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Connection\/Index.html#update", + "ApiOverview\/Database\/Connection\/Index.html#database-connection-update", "update()" ], "delete": [ @@ -36637,61 +37111,61 @@ "truncate": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Connection\/Index.html#truncate", + "ApiOverview\/Database\/Connection\/Index.html#database-connection-truncate", "truncate()" ], "count": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/QueryBuilder\/Index.html#count", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-count", "count()" ], "select": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Connection\/Index.html#select", + "ApiOverview\/Database\/Connection\/Index.html#database-connection-select", "select()" ], "lastinsertid": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Connection\/Index.html#lastinsertid", + "ApiOverview\/Database\/Connection\/Index.html#database-connection-last-insert-id", "lastInsertId()" ], "createquerybuilder": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Connection\/Index.html#createquerybuilder", + "ApiOverview\/Database\/Connection\/Index.html#database-connection-create-query-builder", "createQueryBuilder()" ], "native-json-database-field-type-support": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Connection\/Index.html#native-json-database-field-type-support", + "ApiOverview\/Database\/Connection\/Index.html#json_database_type", "Native JSON database field type support" ], "connectionpool": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/ConnectionPool\/Index.html#connectionpool", + "ApiOverview\/Database\/ConnectionPool\/Index.html#database-connection-pool", "ConnectionPool" ], "pooling-multiple-connections-to-different-database-endpoints": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/ConnectionPool\/Index.html#pooling-multiple-connections-to-different-database-endpoints", + "ApiOverview\/Database\/ConnectionPool\/Index.html#database-connection-pool-pooling", "Pooling: multiple connections to different database endpoints" ], "beware": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/ConnectionPool\/Index.html#beware", + "ApiOverview\/Database\/ConnectionPool\/Index.html#database-connection-pool-beware", "Beware" ], "database-structure-1": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/DatabaseStructure\/Index.html#database-structure-1", + "ApiOverview\/Database\/DatabaseStructure\/Index.html#database-structure-requirements", "Database structure" ], "types-of-tables": [ @@ -36721,151 +37195,151 @@ "the-pages-table": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/DatabaseStructure\/Index.html#the-pages-table", + "ApiOverview\/Database\/DatabaseStructure\/Index.html#database-structure-pages", "The \"pages\" table" ], "mm-relations": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/DatabaseStructure\/Index.html#mm-relations", + "ApiOverview\/Database\/DatabaseStructure\/Index.html#database-structure-mm-relations", "MM relations" ], "other-tables": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/DatabaseStructure\/Index.html#other-tables", + "ApiOverview\/Database\/DatabaseStructure\/Index.html#database-structure-other-tables", "Other tables" ], "upgrade-table-and-field-definitions": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/DatabaseUpgrade\/Index.html#upgrade-table-and-field-definitions", + "ApiOverview\/Database\/DatabaseUpgrade\/Index.html#database-upgrade", "Upgrade table and field definitions" ], "the-ext-tables-sql-files": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/DatabaseUpgrade\/Index.html#the-ext-tables-sql-files", + "ApiOverview\/Database\/DatabaseUpgrade\/Index.html#database-exttables-sql", "The ext_tables.sql files" ], "expression-builder": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#expression-builder", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder", "Expression builder" ], "basic-usage": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/RestRequests\/Index.html#basic-usage", + "ExtensionArchitecture\/HowTo\/RestRequests\/Index.html#http-basic", "Basic usage" ], "junctions": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#junctions", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-basic-junctions", "Junctions" ], "comparisons": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#comparisons", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-basic-comparisons", "Comparisons" ], "aggregate-functions": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#aggregate-functions", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-basic-aggregate-functions", "Aggregate functions" ], "various-expressions": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#various-expressions", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-basic-various-expressions", "Various expressions" ], "php-expressionbuilder-as": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-as", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-as", "ExpressionBuilder::as()" ], "php-expressionbuilder-concat": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-concat", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-concat", "ExpressionBuilder::concat()" ], "php-expressionbuilder-castint": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-castint", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-castInt", "ExpressionBuilder::castInt()" ], "php-expressionbuilder-castvarchar": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-castvarchar", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-castVarchar", "ExpressionBuilder::castVarchar()" ], "php-expressionbuilder-if": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-if", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-if", "ExpressionBuilder::if()" ], "php-expressionbuilder-left": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-left", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-left", "ExpressionBuilder::left()" ], "php-expressionbuilder-leftpad": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-leftpad", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-leftPad", "ExpressionBuilder::leftPad()" ], "php-expressionbuilder-length": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-length", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-length", "ExpressionBuilder::length()" ], "php-expressionbuilder-repeat": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-repeat", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-repeat", "ExpressionBuilder::repeat()" ], "php-expressionbuilder-right": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-right", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-right", "ExpressionBuilder::right()" ], "php-expressionbuilder-rightpad": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-rightpad", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-rightPad", "ExpressionBuilder::rightPad()" ], "php-expressionbuilder-space": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-space", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-space", "ExpressionBuilder::space()" ], "php-expressionbuilder-trim": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/ExpressionBuilder\/Index.html#php-expressionbuilder-trim", + "ApiOverview\/Database\/ExpressionBuilder\/Index.html#database-expression-builder-trim", "ExpressionBuilder::trim()" ], "database-doctrine-dbal": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Index.html#database-doctrine-dbal", + "ApiOverview\/Database\/Index.html#database", "Database (Doctrine DBAL)" ], "doctrine-dbal": [ @@ -36889,13 +37363,13 @@ "doctrine-dbal-driver-middlewares": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Middleware\/Index.html#doctrine-dbal-driver-middlewares", + "ApiOverview\/Database\/Middleware\/Index.html#database-middleware", "Doctrine DBAL driver middlewares" ], "register-a-global-driver-middleware": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Middleware\/Index.html#register-a-global-driver-middleware", + "ApiOverview\/Database\/Middleware\/Index.html#database-middleware-global", "Register a global driver middleware" ], "disable-a-global-middleware-for-a-specific-connection": [ @@ -36907,49 +37381,49 @@ "register-a-driver-middleware-for-a-specific-connection": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Middleware\/Index.html#register-a-driver-middleware-for-a-specific-connection", + "ApiOverview\/Database\/Middleware\/Index.html#database-middleware-specific", "Register a driver middleware for a specific connection" ], "registration-for-driver-middlewares-for-typo3-v12-and-v13": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Middleware\/Index.html#registration-for-driver-middlewares-for-typo3-v12-and-v13", + "ApiOverview\/Database\/Middleware\/Index.html#database-middleware-specific-registration-v12-v13", "Registration for driver middlewares for TYPO3 v12 and v13" ], "sorting-of-driver-middlewares": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Middleware\/Index.html#sorting-of-driver-middlewares", + "ApiOverview\/Database\/Middleware\/Index.html#database-middleware-sorting", "Sorting of driver middlewares" ], "the-interface-php-usableforconnectioninterface": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Middleware\/Index.html#the-interface-php-usableforconnectioninterface", + "ApiOverview\/Database\/Middleware\/Index.html#database-middleware-UsableForConnectionInterface", "The interface UsableForConnectionInterface" ], "query-builder": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/QueryBuilder\/Index.html#query-builder", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder", "Query builder" ], "select-and-addselect": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/QueryBuilder\/Index.html#select-and-addselect", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-select", "select() and addSelect()" ], "default-restrictions": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/QueryBuilder\/Index.html#default-restrictions", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-select-restrictions", "Default Restrictions" ], "update-and-set": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/QueryBuilder\/Index.html#update-and-set", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-update-set", "update() and set()" ], "insert-and-values": [ @@ -36979,7 +37453,7 @@ "orderby-and-addorderby": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/QueryBuilder\/Index.html#orderby-and-addorderby", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-orderby", "orderBy() and addOrderBy()" ], "groupby-and-addgroupby": [ @@ -36997,37 +37471,37 @@ "add": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/QueryBuilder\/Index.html#add", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-add", "add()" ], "getsql": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/QueryBuilder\/Index.html#getsql", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-get-sql", "getSQL()" ], "getparameters": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/QueryBuilder\/Index.html#getparameters", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-get-parameters", "getParameters()" ], "executequery-and-executestatement": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/QueryBuilder\/Index.html#executequery-and-executestatement", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-execute", "executeQuery() and executeStatement()" ], "executequery": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/QueryBuilder\/Index.html#executequery", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-execute-query", "executeQuery()" ], "executestatement": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/QueryBuilder\/Index.html#executestatement", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-execute-statement", "executeStatement()" ], "expr": [ @@ -37039,7 +37513,7 @@ "createnamedparameter": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/QueryBuilder\/Index.html#createnamedparameter", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-create-named-parameter", "createNamedParameter()" ], "more-examples": [ @@ -37057,13 +37531,13 @@ "quoteidentifier-and-quoteidentifiers": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/QueryBuilder\/Index.html#quoteidentifier-and-quoteidentifiers", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-quote-identifier", "quoteIdentifier() and quoteIdentifiers()" ], "escapelikewildcards": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/QueryBuilder\/Index.html#escapelikewildcards", + "ApiOverview\/Database\/QueryBuilder\/Index.html#database-query-builder-escape-like-wildcards", "escapeLikeWildcards()" ], "getrestrictions-setrestrictions-resetrestrictions": [ @@ -37075,13 +37549,13 @@ "restriction-builder": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/RestrictionBuilder\/Index.html#restriction-builder", + "ApiOverview\/Database\/RestrictionBuilder\/Index.html#database-restriction-builder", "Restriction builder" ], "rationale": [ "TYPO3 Explained", "main", - "CodingGuidelines\/PhpArchitecture\/Traits.html#rationale", + "PhpArchitecture\/Traits.html#rationale", "Rationale" ], "main-construct": [ @@ -37105,43 +37579,43 @@ "limit-restrictions-to-tables": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/RestrictionBuilder\/Index.html#limit-restrictions-to-tables", + "ApiOverview\/Database\/RestrictionBuilder\/Index.html#database-limit-restrictions-to-tables", "Limit restrictions to tables" ], "custom-restrictions": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/RestrictionBuilder\/Index.html#custom-restrictions", + "ApiOverview\/Database\/RestrictionBuilder\/Index.html#database-custom-restrictions", "Custom restrictions" ], "result": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Statement\/Index.html#result", + "ApiOverview\/Database\/Statement\/Index.html#database-result", "Result" ], "fetchassociative": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Statement\/Index.html#fetchassociative", + "ApiOverview\/Database\/Statement\/Index.html#database-result-fetch-associative", "fetchAssociative()" ], "fetchallassociative": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Statement\/Index.html#fetchallassociative", + "ApiOverview\/Database\/Statement\/Index.html#database-result-fetch-all-associative", "fetchAllAssociative()" ], "fetchone": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Statement\/Index.html#fetchone", + "ApiOverview\/Database\/Statement\/Index.html#database-result-fetch-one", "fetchOne()" ], "rowcount": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Statement\/Index.html#rowcount", + "ApiOverview\/Database\/Statement\/Index.html#database-result-row-count", "rowCount()" ], "reuse-prepared-statement": [ @@ -37153,7 +37627,7 @@ "various-tips-and-tricks": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/TipsAndTricks\/Index.html#various-tips-and-tricks", + "ApiOverview\/Database\/TipsAndTricks\/Index.html#database-tips-and-tricks", "Various tips and tricks" ], "about-database-error-row-size-too-large": [ @@ -37165,73 +37639,73 @@ "database-records-1": [ "TYPO3 Explained", "main", - "ApiOverview\/DatabaseRecords\/Index.html#database-records-1", + "ApiOverview\/DatabaseRecords\/Index.html#database-records", "Database records" ], "common-examples-of-records-in-typo3": [ "TYPO3 Explained", "main", - "ApiOverview\/DatabaseRecords\/Index.html#common-examples-of-records-in-typo3", + "ApiOverview\/DatabaseRecords\/Index.html#database-records-examples", "Common examples of records in TYPO3:" ], "technical-structure-of-a-record": [ "TYPO3 Explained", "main", - "ApiOverview\/DatabaseRecords\/Index.html#technical-structure-of-a-record", + "ApiOverview\/DatabaseRecords\/Index.html#database-records-technical", "Technical structure of a record:" ], "tca-table-configuration-array": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#tca-table-configuration-array", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_tca", "TCA - Table Configuration Array" ], "types-and-subtypes-in-records": [ "TYPO3 Explained", "main", - "ApiOverview\/DatabaseRecords\/Index.html#types-and-subtypes-in-records", + "ApiOverview\/DatabaseRecords\/Index.html#database-records-types", "Types and subtypes in records" ], "record-objects": [ "TYPO3 Explained", "main", - "ApiOverview\/DatabaseRecords\/RecordObjects.html#record-objects", + "ApiOverview\/DatabaseRecords\/RecordObjects.html#record_objects", "Record objects" ], "extbase-domain-models": [ "TYPO3 Explained", "main", - "ApiOverview\/DatabaseRecords\/Index.html#extbase-domain-models", + "ApiOverview\/DatabaseRecords\/Index.html#database-records-models", "Extbase domain models" ], "provide-records-in-typoscript": [ "TYPO3 Explained", "main", - "ApiOverview\/DatabaseRecords\/RecordObjects.html#provide-records-in-typoscript", + "ApiOverview\/DatabaseRecords\/RecordObjects.html#record_objects_typoscript", "Provide Records in TypoScript" ], "provide-records-in-php": [ "TYPO3 Explained", "main", - "ApiOverview\/DatabaseRecords\/RecordObjects.html#provide-records-in-php", + "ApiOverview\/DatabaseRecords\/RecordObjects.html#record_objects_php", "Provide records in PHP" ], "use-records-in-fluid": [ "TYPO3 Explained", "main", - "ApiOverview\/DatabaseRecords\/RecordObjects.html#use-records-in-fluid", + "ApiOverview\/DatabaseRecords\/RecordObjects.html#record_objects_fluid", "Use records in Fluid" ], "using-the-raw-record": [ "TYPO3 Explained", "main", - "ApiOverview\/DatabaseRecords\/RecordObjects.html#using-the-raw-record", + "ApiOverview\/DatabaseRecords\/RecordObjects.html#record_objects_fluid-raw", "Using the raw record" ], "datahandler-basics-1": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-basics-1", + "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-basics", "DataHandler basics" ], "commands-array": [ @@ -37243,13 +37717,13 @@ "command-keywords-and-values": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#command-keywords-and-values", + "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-command-keywords", "Command keywords and values" ], "examples-of-commands": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#examples-of-commands", + "ApiOverview\/DataHandler\/Database\/Index.html#tce-command-examples", "Examples of commands" ], "accessing-the-uid-of-copied-records": [ @@ -37261,25 +37735,25 @@ "data-array": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#data-array", + "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-data", "Data array" ], "examples-of-data-submission": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#examples-of-data-submission", + "ApiOverview\/DataHandler\/Database\/Index.html#tce-data-examples", "Examples of data submission" ], "clear-cache": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#clear-cache", + "ApiOverview\/DataHandler\/Database\/Index.html#tce-clear-cache", "Clear cache" ], "clear-cache-using-cache-tags": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#clear-cache-using-cache-tags", + "ApiOverview\/DataHandler\/Database\/Index.html#tce-cache-hook", "Clear cache using cache tags" ], "hook-for-cache-post-processing": [ @@ -37291,115 +37765,115 @@ "flags-in-datahandler": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#flags-in-datahandler", + "ApiOverview\/DataHandler\/Database\/Index.html#tce-flags", "Flags in DataHandler" ], "datahandler": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Index.html#datahandler", + "ApiOverview\/DataHandler\/Index.html#data-handler", "DataHandler" ], "files": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Index.html#files", + "ExtensionArchitecture\/FileStructure\/Index.html#extension-files", "Files" ], "the-record-commit-route": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/TceDb\/Index.html#the-record-commit-route", + "ApiOverview\/DataHandler\/TceDb\/Index.html#record-commit-route", "The \"\/record\/commit\" route" ], "using-the-datahandler-in-scripts": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#using-the-datahandler-in-scripts", + "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#using-tcemain", "Using the DataHandler in scripts" ], "using-the-datahandler-in-a-symfony-command": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#using-the-datahandler-in-a-symfony-command", + "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#dataHandler-cli-command", "Using the DataHandler in a Symfony command" ], "datahandler-examples": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#datahandler-examples", + "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#tcemain-examples", "DataHandler examples" ], "submitting-data": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#submitting-data", + "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#tcemain-submit-data", "Submitting data" ], "executing-commands": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#executing-commands", + "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#tcemain-execute-commands", "Executing commands" ], "clearing-cache": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#clearing-cache", + "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#tcemain-clear-cache", "Clearing cache" ], "complex-data-submission": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#complex-data-submission", + "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#tcemain-complex-submission", "Complex data submission" ], "both-data-and-commands-executed-with-alternative-user-object": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#both-data-and-commands-executed-with-alternative-user-object", + "ApiOverview\/DataHandler\/UsingDataHandler\/Index.html#tcemain-data-command-user", "Both data and commands executed with alternative user object" ], "error-handling": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/ErrorHandling\/Index.html#error-handling", + "ApiOverview\/SiteHandling\/ErrorHandling\/Index.html#sitehandling-errorHandling", "Error handling" ], "debugging": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#debugging", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-debugging", "Debugging" ], "typo3-backend-debug-mode": [ "TYPO3 Explained", "main", - "ApiOverview\/Debugging\/Index.html#typo3-backend-debug-mode", + "ApiOverview\/Debugging\/Index.html#examples-debug-backend", "TYPO3 backend debug mode" ], "debugutility-debug": [ "TYPO3 Explained", "main", - "ApiOverview\/Debugging\/Index.html#debugutility-debug", + "ApiOverview\/Debugging\/Index.html#examples-debug-utility", "DebugUtility::debug()" ], "extbase-debuggerutility": [ "TYPO3 Explained", "main", - "ApiOverview\/Debugging\/Index.html#extbase-debuggerutility", + "ApiOverview\/Debugging\/Index.html#examples-debug-extbase-utility", "Extbase DebuggerUtility" ], "fluid-debug-viewhelper": [ "TYPO3 Explained", "main", - "ApiOverview\/Debugging\/Index.html#fluid-debug-viewhelper", + "ApiOverview\/Debugging\/Index.html#examples-debug-fluid", "Fluid Debug ViewHelper" ], "xdebug": [ "TYPO3 Explained", "main", - "ApiOverview\/Debugging\/Index.html#xdebug", + "ApiOverview\/Debugging\/Index.html#examples-debug-xdebug", "Xdebug" ], "dependency-injection": [ @@ -37435,7 +37909,7 @@ "using-di": [ "TYPO3 Explained", "main", - "ApiOverview\/DependencyInjection\/Index.html#using-di", + "ApiOverview\/DependencyInjection\/Index.html#Using-DI", "Using DI" ], "when-to-use-dependency-injection-in-typo3": [ @@ -37447,13 +37921,13 @@ "constructor-injection": [ "TYPO3 Explained", "main", - "ApiOverview\/DependencyInjection\/Index.html#constructor-injection", + "ApiOverview\/DependencyInjection\/Index.html#Constructor-injection", "Constructor injection" ], "method-injection": [ "TYPO3 Explained", "main", - "ApiOverview\/DependencyInjection\/Index.html#method-injection", + "ApiOverview\/DependencyInjection\/Index.html#Method-injection", "Method injection" ], "interface-injection": [ @@ -37471,13 +37945,13 @@ "configure-dependency-injection-in-extensions": [ "TYPO3 Explained", "main", - "ApiOverview\/DependencyInjection\/Index.html#configure-dependency-injection-in-extensions", + "ApiOverview\/DependencyInjection\/Index.html#dependency-injection-in-extensions", "Configure dependency injection in extensions" ], "arguments": [ "TYPO3 Explained", "main", - "ApiOverview\/DependencyInjection\/Index.html#arguments", + "ApiOverview\/DependencyInjection\/Index.html#DependencyInjectionArguments", "Arguments" ], "public": [ @@ -37489,7 +37963,7 @@ "what-to-make-public": [ "TYPO3 Explained", "main", - "ApiOverview\/DependencyInjection\/Index.html#what-to-make-public", + "ApiOverview\/DependencyInjection\/Index.html#What-to-make-public", "What to make public" ], "errors-resulting-from-wrong-configuration": [ @@ -37501,7 +37975,7 @@ "installation-wide-configuration": [ "TYPO3 Explained", "main", - "ApiOverview\/DependencyInjection\/Index.html#installation-wide-configuration", + "ApiOverview\/DependencyInjection\/Index.html#dependency-injection-installation-wide", "Installation-wide configuration" ], "user-functions-and-their-restrictions": [ @@ -37525,13 +37999,13 @@ "deprecation-1": [ "TYPO3 Explained", "main", - "ApiOverview\/Deprecation\/Index.html#deprecation-1", + "ApiOverview\/Deprecation\/Index.html#deprecation", "Deprecation" ], "enabling-deprecation-errors": [ "TYPO3 Explained", "main", - "ApiOverview\/Deprecation\/Index.html#enabling-deprecation-errors", + "ApiOverview\/Deprecation\/Index.html#deprecation_enable_errors", "Enabling deprecation errors" ], "via-gui": [ @@ -37549,25 +38023,25 @@ "find-calls-to-deprecated-functions": [ "TYPO3 Explained", "main", - "ApiOverview\/Deprecation\/Index.html#find-calls-to-deprecated-functions", + "ApiOverview\/Deprecation\/Index.html#deprecation_finding_calls", "Find calls to deprecated functions" ], "deprecate-functions-in-extensions": [ "TYPO3 Explained", "main", - "ApiOverview\/Deprecation\/Index.html#deprecate-functions-in-extensions", + "ApiOverview\/Deprecation\/Index.html#deprecate_functions", "Deprecate functions in extensions" ], "directory-structure-1": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/Index.html#directory-structure-1", + "ApiOverview\/DirectoryStructure\/Index.html#directory-structure", "Directory structure" ], "files-on-project-level": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#files-on-project-level", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-project", "Files on project level" ], "directories-in-a-typical-project": [ @@ -37579,229 +38053,229 @@ "file-config": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/Index.html#file-config", + "ApiOverview\/DirectoryStructure\/Index.html#directory-config", "config\/" ], "file-config-sites": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/Index.html#file-config-sites", + "ApiOverview\/DirectoryStructure\/Index.html#directory-config-sites", "config\/sites\/" ], "file-config-system": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/Index.html#file-config-system", + "ApiOverview\/DirectoryStructure\/Index.html#directory-config-system", "config\/system\/" ], "file-packages": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/Index.html#file-packages", + "ApiOverview\/DirectoryStructure\/Index.html#directory-packages", "packages\/" ], "file-public": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Resources\/Public\/Index.html#file-public", + "ExtensionArchitecture\/FileStructure\/Resources\/Public\/Index.html#extension-Resources-Public", "Public" ], "file-public-assets": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/Index.html#file-public-assets", + "ApiOverview\/DirectoryStructure\/Index.html#directory-public-assets", "public\/_assets\/" ], "file-public-fileadmin": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/Index.html#file-public-fileadmin", + "ApiOverview\/DirectoryStructure\/Index.html#directory-public-fileadmin", "public\/fileadmin\/" ], "file-public-typo3": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/Index.html#file-public-typo3", + "ApiOverview\/DirectoryStructure\/Index.html#directory-public-typo3", "public\/typo3\/" ], "file-public-typo3temp": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/Index.html#file-public-typo3temp", + "ApiOverview\/DirectoryStructure\/Index.html#directory-public-typo3temp", "public\/typo3temp\/" ], "file-public-typo3temp-assets": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/Index.html#file-public-typo3temp-assets", + "ApiOverview\/DirectoryStructure\/Index.html#directory-public-typo3temp-assets", "public\/typo3temp\/assets\/" ], "file-var": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/Index.html#file-var", + "ApiOverview\/DirectoryStructure\/Index.html#directory-var", "var\/" ], "file-var-cache": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/Index.html#file-var-cache", + "ApiOverview\/DirectoryStructure\/Index.html#directory-var-cache", "var\/cache\/" ], "file-var-labels": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/Index.html#file-var-labels", + "ApiOverview\/DirectoryStructure\/Index.html#directory-var-labels", "var\/labels\/" ], "file-var-log": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/Index.html#file-var-log", + "ApiOverview\/DirectoryStructure\/Index.html#directory-var-log", "var\/log\/" ], "file-vendor": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-vendor", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-vendor", "vendor\/" ], "legacy-installations-directory-structure": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-installations-directory-structure", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-structure", "Legacy installations: Directory structure" ], "file-fileadmin": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-fileadmin", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-fileadmin", "fileadmin\/" ], "file-typo3": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3", "typo3\/" ], "file-typo3-sysext": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3-sysext", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3-sysext", "typo3\/sysext\/" ], "file-typo3-source": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3-source", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3_source", "typo3_source\/" ], "file-typo3conf": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3conf", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3conf", "typo3conf\/" ], "file-typo3conf-autoload": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3conf-autoload", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3conf-autoload", "typo3conf\/autoload\/" ], "file-typo3conf-ext": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3conf-ext", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3conf-ext", "typo3conf\/ext\/" ], "file-typo3conf-l10n": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3conf-l10n", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3conf-l10n", "typo3conf\/l10n\/" ], "file-typo3conf-sites": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3conf-sites", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3conf-sites", "typo3conf\/sites\/" ], "file-typo3conf-system": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3conf-system", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3conf-system", "typo3conf\/system\/" ], "file-typo3temp": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3temp", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3temp", "typo3temp\/" ], "file-typo3temp-assets": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3temp-assets", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3temp-assets", "typo3temp\/assets\/" ], "file-typo3temp-var": [ "TYPO3 Explained", "main", - "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#file-typo3temp-var", + "ApiOverview\/DirectoryStructure\/LegacyInstallations.html#legacy-directory-typo3temp-var", "typo3temp\/var\/" ], "environment": [ "TYPO3 Explained", "main", - "ApiOverview\/Environment\/Index.html#environment", + "ApiOverview\/Environment\/Index.html#Environment", "Environment" ], "environment-php-api": [ "TYPO3 Explained", "main", - "ApiOverview\/Environment\/Index.html#environment-php-api", + "ApiOverview\/Environment\/Index.html#Environment-php-api", "Environment PHP API" ], "getprojectpath": [ "TYPO3 Explained", "main", - "ApiOverview\/Environment\/Index.html#getprojectpath", + "ApiOverview\/Environment\/Index.html#Environment-project-path", "getProjectPath()" ], "getpublicpath": [ "TYPO3 Explained", "main", - "ApiOverview\/Environment\/Index.html#getpublicpath", + "ApiOverview\/Environment\/Index.html#Environment-public-path", "getPublicPath()" ], "getvarpath": [ "TYPO3 Explained", "main", - "ApiOverview\/Environment\/Index.html#getvarpath", + "ApiOverview\/Environment\/Index.html#Environment-var-path", "getVarPath()" ], "getconfigpath": [ "TYPO3 Explained", "main", - "ApiOverview\/Environment\/Index.html#getconfigpath", + "ApiOverview\/Environment\/Index.html#Environment-config-path", "getConfigPath()" ], "getlabelspath": [ "TYPO3 Explained", "main", - "ApiOverview\/Environment\/Index.html#getlabelspath", + "ApiOverview\/Environment\/Index.html#Environment-labels-path", "getLabelsPath()" ], "getcurrentscript": [ "TYPO3 Explained", "main", - "ApiOverview\/Environment\/Index.html#getcurrentscript", + "ApiOverview\/Environment\/Index.html#Environment-current-script", "getCurrentScript()" ], "getcontext": [ "TYPO3 Explained", "main", - "ApiOverview\/Environment\/Index.html#getcontext", + "ApiOverview\/Environment\/Index.html#Environment-context", "getContext()" ], "via-the-abbr-gui-graphical-user-interface": [ @@ -37825,37 +38299,37 @@ "debug-exception-handler": [ "TYPO3 Explained", "main", - "ApiOverview\/ErrorAndExceptionHandling\/DebugExceptionHandler\/Index.html#debug-exception-handler", + "ApiOverview\/ErrorAndExceptionHandling\/DebugExceptionHandler\/Index.html#error-handling-debug-exception-handler", "Debug exception handler" ], "error-handler": [ "TYPO3 Explained", "main", - "ApiOverview\/ErrorAndExceptionHandling\/ErrorHandler\/Index.html#error-handler", + "ApiOverview\/ErrorAndExceptionHandling\/ErrorHandler\/Index.html#error-handling-error-handler", "Error Handler" ], "debugging-and-development-setup": [ "TYPO3 Explained", "main", - "ApiOverview\/ErrorAndExceptionHandling\/Examples\/Index.html#debugging-and-development-setup", + "ApiOverview\/ErrorAndExceptionHandling\/Examples\/Index.html#error-handling-configuration-examples-debug", "Debugging and development setup" ], "production-setup": [ "TYPO3 Explained", "main", - "ApiOverview\/ErrorAndExceptionHandling\/Examples\/Index.html#production-setup", + "ApiOverview\/ErrorAndExceptionHandling\/Examples\/Index.html#error-handling-configuration-examples-production", "Production setup" ], "performance-setup": [ "TYPO3 Explained", "main", - "ApiOverview\/ErrorAndExceptionHandling\/Examples\/Index.html#performance-setup", + "ApiOverview\/ErrorAndExceptionHandling\/Examples\/Index.html#error-handling-configuration-examples-performance", "Performance setup" ], "how-to-extend-the-error-and-exception-handling": [ "TYPO3 Explained", "main", - "ApiOverview\/ErrorAndExceptionHandling\/Extending\/Index.html#how-to-extend-the-error-and-exception-handling", + "ApiOverview\/ErrorAndExceptionHandling\/Extending\/Index.html#error-handling-extending", "How to extend the error and exception handling" ], "example-debug-exception-handler": [ @@ -37867,61 +38341,61 @@ "error-and-exception-handling": [ "TYPO3 Explained", "main", - "ApiOverview\/ErrorAndExceptionHandling\/Index.html#error-and-exception-handling", + "ApiOverview\/ErrorAndExceptionHandling\/Index.html#error-handling", "Error and exception handling" ], "production-exception-handler": [ "TYPO3 Explained", "main", - "ApiOverview\/ErrorAndExceptionHandling\/ProductionExceptionHandler\/Index.html#production-exception-handler", + "ApiOverview\/ErrorAndExceptionHandling\/ProductionExceptionHandler\/Index.html#error-handling-production-exception-handler", "Production exception handler" ], "message-oops-an-error-occurred": [ "TYPO3 Explained", "main", - "ApiOverview\/ErrorAndExceptionHandling\/ProductionExceptionHandler\/Index.html#message-oops-an-error-occurred", + "ApiOverview\/ErrorAndExceptionHandling\/ProductionExceptionHandler\/Index.html#error-handling-oops-an-error", "Message \"Oops, an error occurred!\"" ], "show-detailed-exception-output": [ "TYPO3 Explained", "main", - "ApiOverview\/ErrorAndExceptionHandling\/ProductionExceptionHandler\/Index.html#show-detailed-exception-output", + "ApiOverview\/ErrorAndExceptionHandling\/ProductionExceptionHandler\/Index.html#error-handling-oops-an-error-detail", "Show detailed exception output" ], "example-prevent-oops-an-error-occurred-messages-for-logged-in-admins": [ "TYPO3 Explained", "main", - "ApiOverview\/ErrorAndExceptionHandling\/ProductionExceptionHandler\/Index.html#example-prevent-oops-an-error-occurred-messages-for-logged-in-admins", + "ApiOverview\/ErrorAndExceptionHandling\/ProductionExceptionHandler\/Index.html#error-handling-oops-an-error-detail-admin", "Example: prevent \"Oops, an error occurred!\" messages for logged-in admins" ], "extending-the-typo3-core": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Concept\/Index.html#extending-the-typo3-core", + "ApiOverview\/Events\/Concept\/Index.html#hooks-concept", "Extending the TYPO3 Core" ], "typo3-extending-mechanisms-video": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Concept\/Index.html#typo3-extending-mechanisms-video", + "ApiOverview\/Events\/Concept\/Index.html#hooks-video", "TYPO3 extending mechanisms video" ], "events-and-hooks-vs-xclass-extensions": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Concept\/Index.html#events-and-hooks-vs-xclass-extensions", + "ApiOverview\/Events\/Concept\/Index.html#hooks-xclass", "Events and hooks vs. XCLASS extensions" ], "proposing-events": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Concept\/Index.html#proposing-events", + "ApiOverview\/Events\/Concept\/Index.html#events-proposing", "Proposing events" ], "event-dispatcher-psr-14-events": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/EventDispatcher\/Index.html#event-dispatcher-psr-14-events", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcher", "Event dispatcher (PSR-14 events)" ], "quick-start": [ @@ -37933,37 +38407,37 @@ "dispatching-an-event": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/EventDispatcher\/Index.html#dispatching-an-event", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherQuickStartDispatching", "Dispatching an event" ], "description-of-psr-14-in-the-context-of-typo3": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/EventDispatcher\/Index.html#description-of-psr-14-in-the-context-of-typo3", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherDescription", "Description of PSR-14 in the context of TYPO3" ], "the-event-dispatcher-object": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/EventDispatcher\/Index.html#the-event-dispatcher-object", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherObject", "The event dispatcher object" ], "the-listener-provider": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/EventDispatcher\/Index.html#the-listener-provider", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherListenerProvider", "The listener provider" ], "the-events": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/EventDispatcher\/Index.html#the-events", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherEvents", "The events" ], "the-listeners": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/EventDispatcher\/Index.html#the-listeners", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherListeners", "The listeners" ], "advantages-of-the-event-dispatcher-over-hooks": [ @@ -37975,187 +38449,205 @@ "impact-on-typo3-core-development-in-the-future": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/EventDispatcher\/Index.html#impact-on-typo3-core-development-in-the-future", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherImpact", "Impact on TYPO3 Core development in the future" ], "implementing-an-event-listener-in-your-extension": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/EventDispatcher\/Index.html#implementing-an-event-listener-in-your-extension", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherImplementation", "Implementing an event listener in your extension" ], "the-event-listener-class": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/EventDispatcher\/Index.html#the-event-listener-class", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherEventListenerClass", "The event listener class" ], "registering-the-event-listener-via-file-services-yaml": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/EventDispatcher\/Index.html#registering-the-event-listener-via-file-services-yaml", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDispatcherRegistration", "Registering the event listener via Services.yaml" ], "overriding-event-listeners": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/EventDispatcher\/Index.html#overriding-event-listeners", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventListenerOverride", "Overriding event listeners" ], "debugging-event-handling": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/EventDispatcher\/Index.html#debugging-event-handling", + "ApiOverview\/Events\/EventDispatcher\/Index.html#EventDebugging", "Debugging event handling" ], "afterbackendpagerenderevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/AfterBackendPageRenderEvent.html#afterbackendpagerenderevent", + "ApiOverview\/Events\/Events\/Backend\/AfterBackendPageRenderEvent.html#AfterBackendPageRenderEvent", "AfterBackendPageRenderEvent" ], "afterformenginepageinitializedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/AfterFormEnginePageInitializedEvent.html#afterformenginepageinitializedevent", + "ApiOverview\/Events\/Events\/Backend\/AfterFormEnginePageInitializedEvent.html#AfterFormEnginePageInitializedEvent", "AfterFormEnginePageInitializedEvent" ], "afterhistoryrollbackfinishedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/AfterHistoryRollbackFinishedEvent.html#afterhistoryrollbackfinishedevent", + "ApiOverview\/Events\/Events\/Backend\/AfterHistoryRollbackFinishedEvent.html#AfterHistoryRollbackFinishedEvent", "AfterHistoryRollbackFinishedEvent" ], "afterpagecolumnsselectedforlocalizationevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/AfterPageColumnsSelectedForLocalizationEvent.html#afterpagecolumnsselectedforlocalizationevent", + "ApiOverview\/Events\/Events\/Backend\/AfterPageColumnsSelectedForLocalizationEvent.html#AfterPageColumnsSelectedForLocalizationEvent", "AfterPageColumnsSelectedForLocalizationEvent" ], "afterpagepreviewurigeneratedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/AfterPagePreviewUriGeneratedEvent.html#afterpagepreviewurigeneratedevent", + "ApiOverview\/Events\/Events\/Backend\/AfterPagePreviewUriGeneratedEvent.html#AfterPagePreviewUriGeneratedEvent", "AfterPagePreviewUriGeneratedEvent" ], "afterpagetreeitemspreparedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#afterpagetreeitemspreparedevent", + "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#AfterPageTreeItemsPreparedEvent", "AfterPageTreeItemsPreparedEvent" ], "labels": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#labels", + "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#AfterPageTreeItemsPreparedEvent-labels", "Labels" ], "status-information": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#status-information", + "ApiOverview\/Events\/Events\/Backend\/AfterPageTreeItemsPreparedEvent.html#AfterPageTreeItemsPreparedEvent-status", "Status information" ], "afterrawpagerowpreparedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/AfterRawPageRowPreparedEvent.html#afterrawpagerowpreparedevent", + "ApiOverview\/Events\/Events\/Backend\/AfterRawPageRowPreparedEvent.html#AfterRawPageRowPreparedEvent", "AfterRawPageRowPreparedEvent" ], "example-sort-pages-by-title-in-the-page-tree": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/AfterRawPageRowPreparedEvent.html#example-sort-pages-by-title-in-the-page-tree", + "ApiOverview\/Events\/Events\/Backend\/AfterRawPageRowPreparedEvent.html#AfterRawPageRowPreparedEvent-example", "Example: Sort pages by title in the page tree" ], "api-of-afterrawpagerowpreparedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/AfterRawPageRowPreparedEvent.html#api-of-afterrawpagerowpreparedevent", + "ApiOverview\/Events\/Events\/Backend\/AfterRawPageRowPreparedEvent.html#AfterRawPageRowPreparedEvent-api", "API of AfterRawPageRowPreparedEvent" ], "afterrecordsummaryforlocalizationevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/AfterRecordSummaryForLocalizationEvent.html#afterrecordsummaryforlocalizationevent", + "ApiOverview\/Events\/Events\/Backend\/AfterRecordSummaryForLocalizationEvent.html#AfterRecordSummaryForLocalizationEvent", "AfterRecordSummaryForLocalizationEvent" ], "beforeformenginepageinitializedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/BeforeFormEnginePageInitializedEvent.html#beforeformenginepageinitializedevent", + "ApiOverview\/Events\/Events\/Backend\/BeforeFormEnginePageInitializedEvent.html#BeforeFormEnginePageInitializedEvent", "BeforeFormEnginePageInitializedEvent" ], "beforehistoryrollbackstartevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/BeforeHistoryRollbackStartEvent.html#beforehistoryrollbackstartevent", + "ApiOverview\/Events\/Events\/Backend\/BeforeHistoryRollbackStartEvent.html#BeforeHistoryRollbackStartEvent", "BeforeHistoryRollbackStartEvent" ], "beforemodulecreationevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/BeforeModuleCreationEvent.html#beforemodulecreationevent", + "ApiOverview\/Events\/Events\/Backend\/BeforeModuleCreationEvent.html#BeforeModuleCreationEvent", "BeforeModuleCreationEvent" ], "beforepagepreviewurigeneratedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/BeforePagePreviewUriGeneratedEvent.html#beforepagepreviewurigeneratedevent", + "ApiOverview\/Events\/Events\/Backend\/BeforePagePreviewUriGeneratedEvent.html#BeforePagePreviewUriGeneratedEvent", "BeforePagePreviewUriGeneratedEvent" ], + "beforepagetreeisfilteredevent": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/BeforePageTreeIsFilteredEvent.html#BeforePageTreeIsFilteredEvent", + "BeforePageTreeIsFilteredEvent" + ], + "example-add-evaluation-of-document-types-to-the-page-tree-search-filter": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/BeforePageTreeIsFilteredEvent.html#BeforePageTreeIsFilteredEvent-example", + "Example: Add evaluation of document types to the page tree search filter" + ], + "beforepagetreeisfilteredevent-api": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/BeforePageTreeIsFilteredEvent.html#BeforePageTreeIsFilteredEvent-api", + "BeforePageTreeIsFilteredEvent API" + ], "beforerecorddownloadisexecutedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadIsExecutedEvent.html#beforerecorddownloadisexecutedevent", + "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadIsExecutedEvent.html#BeforeRecordDownloadIsExecutedEvent", "BeforeRecordDownloadIsExecutedEvent" ], "example-redact-columns-with-private-content-in-exports": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadIsExecutedEvent.html#example-redact-columns-with-private-content-in-exports", + "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadIsExecutedEvent.html#BeforeRecordDownloadIsExecutedEvent-example", "Example: Redact columns with private content in exports" ], "api-of-beforerecorddownloadisexecutedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadIsExecutedEvent.html#api-of-beforerecorddownloadisexecutedevent", + "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadIsExecutedEvent.html#BeforeRecordDownloadIsExecutedEvent-api", "API of BeforeRecordDownloadIsExecutedEvent" ], "beforerecorddownloadpresetsaredisplayedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadPresetsAreDisplayedEvent.html#beforerecorddownloadpresetsaredisplayedevent", + "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadPresetsAreDisplayedEvent.html#BeforeRecordDownloadPresetsAreDisplayedEvent", "BeforeRecordDownloadPresetsAreDisplayedEvent" ], "example-manipulate-download-presets": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadPresetsAreDisplayedEvent.html#example-manipulate-download-presets", + "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadPresetsAreDisplayedEvent.html#BeforeRecordDownloadPresetsAreDisplayedEvent-example", "Example: Manipulate download presets" ], "api-of-beforerecorddownloadpresetsaredisplayedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadPresetsAreDisplayedEvent.html#api-of-beforerecorddownloadpresetsaredisplayedevent", + "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadPresetsAreDisplayedEvent.html#BeforeRecordDownloadPresetsAreDisplayedEvent-api", "API of BeforeRecordDownloadPresetsAreDisplayedEvent" ], "api-of-downloadpreset": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadPresetsAreDisplayedEvent.html#api-of-downloadpreset", + "ApiOverview\/Events\/Events\/Backend\/BeforeRecordDownloadPresetsAreDisplayedEvent.html#DownloadPreset-api", "API of DownloadPreset" ], "beforesearchindatabaserecordproviderevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/BeforeSearchInDatabaseRecordProviderEvent.html#beforesearchindatabaserecordproviderevent", + "ApiOverview\/Events\/Events\/Backend\/BeforeSearchInDatabaseRecordProviderEvent.html#BeforeSearchInDatabaseRecordProviderEvent", "BeforeSearchInDatabaseRecordProviderEvent" ], "customfilecontrolsevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/CustomFileControlsEvent.html#customfilecontrolsevent", + "ApiOverview\/Events\/Events\/Backend\/CustomFileControlsEvent.html#CustomFileControlsEvent", "CustomFileControlsEvent" ], "backend": [ @@ -38167,139 +38659,139 @@ "iscontentusedonpagelayoutevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/IsContentUsedOnPageLayoutEvent.html#iscontentusedonpagelayoutevent", + "ApiOverview\/Events\/Events\/Backend\/IsContentUsedOnPageLayoutEvent.html#IsContentUsedOnPageLayoutEvent", "IsContentUsedOnPageLayoutEvent" ], "example-display-unused-elements-detected-on-this-page-for-elements-with-missing-parent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/IsContentUsedOnPageLayoutEvent.html#example-display-unused-elements-detected-on-this-page-for-elements-with-missing-parent", + "ApiOverview\/Events\/Events\/Backend\/IsContentUsedOnPageLayoutEvent.html#IsContentUsedOnPageLayoutEvent-example", "Example: Display \"Unused elements detected on this page\" for elements with missing parent" ], "api-of-iscontentusedonpagelayoutevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/IsContentUsedOnPageLayoutEvent.html#api-of-iscontentusedonpagelayoutevent", + "ApiOverview\/Events\/Events\/Backend\/IsContentUsedOnPageLayoutEvent.html#IsContentUsedOnPageLayoutEvent-api", "API of IsContentUsedOnPageLayoutEvent" ], "isfileselectableevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/IsFileSelectableEvent.html#isfileselectableevent", + "ApiOverview\/Events\/Events\/Backend\/IsFileSelectableEvent.html#IsFileSelectableEvent", "IsFileSelectableEvent" ], "modifyalloweditemsevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/ModifyAllowedItemsEvent.html#modifyalloweditemsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyAllowedItemsEvent.html#ModifyAllowedItemsEvent", "ModifyAllowedItemsEvent" ], "modifybuttonbarevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/ModifyButtonBarEvent.html#modifybuttonbarevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyButtonBarEvent.html#ModifyButtonBarEvent", "ModifyButtonBarEvent" ], "modifyclearcacheactionsevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/ModifyClearCacheActionsEvent.html#modifyclearcacheactionsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyClearCacheActionsEvent.html#ModifyClearCacheActionsEvent", "ModifyClearCacheActionsEvent" ], "modifydatabasequeryforcontentevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/ModifyDatabaseQueryForContentEvent.html#modifydatabasequeryforcontentevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyDatabaseQueryForContentEvent.html#ModifyDatabaseQueryForContentEvent", "ModifyDatabaseQueryForContentEvent" ], "modifydatabasequeryforrecordlistingevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/ModifyDatabaseQueryForRecordListingEvent.html#modifydatabasequeryforrecordlistingevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyDatabaseQueryForRecordListingEvent.html#ModifyDatabaseQueryForRecordListingEvent", "ModifyDatabaseQueryForRecordListingEvent" ], "modifyeditformuseraccessevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/ModifyEditFormUserAccessEvent.html#modifyeditformuseraccessevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyEditFormUserAccessEvent.html#ModifyEditFormUserAccessEvent", "ModifyEditFormUserAccessEvent" ], "modifyfilereferencecontrolsevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/ModifyFileReferenceControlsEvent.html#modifyfilereferencecontrolsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyFileReferenceControlsEvent.html#ModifyFileReferenceControlsEvent", "ModifyFileReferenceControlsEvent" ], "modifyfilereferenceenabledcontrolsevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/ModifyFileReferenceEnabledControlsEvent.html#modifyfilereferenceenabledcontrolsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyFileReferenceEnabledControlsEvent.html#ModifyFileReferenceEnabledControlsEvent", "ModifyFileReferenceEnabledControlsEvent" ], "modifygenericbackendmessagesevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/ModifyGenericBackendMessagesEvent.html#modifygenericbackendmessagesevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyGenericBackendMessagesEvent.html#ModifyGenericBackendMessagesEvent", "ModifyGenericBackendMessagesEvent" ], "modifyimagemanipulationpreviewurlevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/ModifyImageManipulationPreviewUrlEvent.html#modifyimagemanipulationpreviewurlevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyImageManipulationPreviewUrlEvent.html#ModifyImageManipulationPreviewUrlEvent", "ModifyImageManipulationPreviewUrlEvent" ], "modifyinlineelementcontrolsevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/ModifyInlineElementControlsEvent.html#modifyinlineelementcontrolsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyInlineElementControlsEvent.html#ModifyInlineElementControlsEvent", "ModifyInlineElementControlsEvent" ], "modifyinlineelementenabledcontrolsevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/ModifyInlineElementEnabledControlsEvent.html#modifyinlineelementenabledcontrolsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyInlineElementEnabledControlsEvent.html#ModifyInlineElementEnabledControlsEvent", "ModifyInlineElementEnabledControlsEvent" ], "modifylinkexplanationevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/ModifyLinkExplanationEvent.html#modifylinkexplanationevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyLinkExplanationEvent.html#ModifyLinkExplanationEvent", "ModifyLinkExplanationEvent" ], "modifylinkhandlersevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/ModifyLinkHandlersEvent.html#modifylinkhandlersevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyLinkHandlersEvent.html#ModifyLinkHandlersEvent", "ModifyLinkHandlersEvent" ], "modifynewcontentelementwizarditemsevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/ModifyNewContentElementWizardItemsEvent.html#modifynewcontentelementwizarditemsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyNewContentElementWizardItemsEvent.html#ModifyNewContentElementWizardItemsEvent", "ModifyNewContentElementWizardItemsEvent" ], "modifypagelayoutcontentevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/ModifyPageLayoutContentEvent.html#modifypagelayoutcontentevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyPageLayoutContentEvent.html#ModifyPageLayoutContentEvent", "ModifyPageLayoutContentEvent" ], "modifypagelayoutonloginproviderselectionevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/ModifyPageLayoutOnLoginProviderSelectionEvent.html#modifypagelayoutonloginproviderselectionevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyPageLayoutOnLoginProviderSelectionEvent.html#ModifyPageLayoutOnLoginProviderSelectionEvent", "ModifyPageLayoutOnLoginProviderSelectionEvent" ], "modifyqueryforlivesearchevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/ModifyQueryForLiveSearchEvent.html#modifyqueryforlivesearchevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyQueryForLiveSearchEvent.html#ModifyQueryForLiveSearchEvent", "ModifyQueryForLiveSearchEvent" ], "modifyrecordlistheadercolumnsevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/ModifyRecordListHeaderColumnsEvent.html#modifyrecordlistheadercolumnsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyRecordListHeaderColumnsEvent.html#ModifyRecordListHeaderColumnsEvent", "ModifyRecordListHeaderColumnsEvent" ], "usage": [ @@ -38311,1033 +38803,1045 @@ "modifyrecordlistrecordactionsevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/ModifyRecordListRecordActionsEvent.html#modifyrecordlistrecordactionsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyRecordListRecordActionsEvent.html#ModifyRecordListRecordActionsEvent", "ModifyRecordListRecordActionsEvent" ], "modifyrecordlisttableactionsevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/ModifyRecordListTableActionsEvent.html#modifyrecordlisttableactionsevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyRecordListTableActionsEvent.html#ModifyRecordListTableActionsEvent", "ModifyRecordListTableActionsEvent" ], "modifyresultiteminlivesearchevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/ModifyResultItemInLiveSearchEvent.html#modifyresultiteminlivesearchevent", + "ApiOverview\/Events\/Events\/Backend\/ModifyResultItemInLiveSearchEvent.html#ModifyResultItemInLiveSearchEvent", "ModifyResultItemInLiveSearchEvent" ], "pagecontentpreviewrenderingevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/PageContentPreviewRenderingEvent.html#pagecontentpreviewrenderingevent", + "ApiOverview\/Events\/Events\/Backend\/PageContentPreviewRenderingEvent.html#PageContentPreviewRenderingEvent", "PageContentPreviewRenderingEvent" ], + "passwordhasbeenresetevent": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/PasswordHasBeenResetEvent.html#PasswordHasBeenResetEvent", + "PasswordHasBeenResetEvent" + ], "renderadditionalcontenttorecordlistevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/RenderAdditionalContentToRecordListEvent.html#renderadditionalcontenttorecordlistevent", + "ApiOverview\/Events\/Events\/Backend\/RenderAdditionalContentToRecordListEvent.html#RenderAdditionalContentToRecordListEvent", "RenderAdditionalContentToRecordListEvent" ], "switchuserevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/SwitchUserEvent.html#switchuserevent", + "ApiOverview\/Events\/Events\/Backend\/SwitchUserEvent.html#SwitchUserEvent", "SwitchUserEvent" ], "systeminformationtoolbarcollectorevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Backend\/SystemInformationToolbarCollectorEvent.html#systeminformationtoolbarcollectorevent", + "ApiOverview\/Events\/Events\/Backend\/SystemInformationToolbarCollectorEvent.html#SystemInformationToolbarCollectorEvent", "SystemInformationToolbarCollectorEvent" ], "aftergroupsresolvedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Authentication\/AfterGroupsResolvedEvent.html#aftergroupsresolvedevent", + "ApiOverview\/Events\/Events\/Core\/Authentication\/AfterGroupsResolvedEvent.html#AfterGroupsResolvedEvent", "AfterGroupsResolvedEvent" ], "afteruserloggedinevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Authentication\/AfterUserLoggedInEvent.html#afteruserloggedinevent", + "ApiOverview\/Events\/Events\/Core\/Authentication\/AfterUserLoggedInEvent.html#AfterUserLoggedInEvent", "AfterUserLoggedInEvent" ], "afteruserloggedoutevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Authentication\/AfterUserLoggedOutEvent.html#afteruserloggedoutevent", + "ApiOverview\/Events\/Events\/Core\/Authentication\/AfterUserLoggedOutEvent.html#AfterUserLoggedOutEvent", "AfterUserLoggedOutEvent" ], "beforerequesttokenprocessedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Authentication\/BeforeRequestTokenProcessedEvent.html#beforerequesttokenprocessedevent", + "ApiOverview\/Events\/Events\/Core\/Authentication\/BeforeRequestTokenProcessedEvent.html#BeforeRequestTokenProcessedEvent", "BeforeRequestTokenProcessedEvent" ], "beforeuserlogoutevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Authentication\/BeforeUserLogoutEvent.html#beforeuserlogoutevent", + "ApiOverview\/Events\/Events\/Core\/Authentication\/BeforeUserLogoutEvent.html#BeforeUserLogoutEvent", "BeforeUserLogoutEvent" ], "authentication": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Authentication\/Index.html#authentication", + "ApiOverview\/Events\/Events\/Core\/Authentication\/Index.html#eventlist-core-authentication", "Authentication" ], "loginattemptfailedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Authentication\/LoginAttemptFailedEvent.html#loginattemptfailedevent", + "ApiOverview\/Events\/Events\/Core\/Authentication\/LoginAttemptFailedEvent.html#LoginAttemptFailedEvent", "LoginAttemptFailedEvent" ], "cacheflushevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Cache\/CacheFlushEvent.html#cacheflushevent", + "ApiOverview\/Events\/Events\/Core\/Cache\/CacheFlushEvent.html#CacheFlushEvent", "CacheFlushEvent" ], "cachewarmupevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Cache\/CacheWarmupEvent.html#cachewarmupevent", + "ApiOverview\/Events\/Events\/Core\/Cache\/CacheWarmupEvent.html#CacheWarmupEvent", "CacheWarmupEvent" ], "cache": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Cache\/Index.html#cache", + "ApiOverview\/Events\/Events\/Core\/Cache\/Index.html#eventlist-core-cache", "Cache" ], "afterflexformdatastructureidentifierinitializedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Configuration\/AfterFlexFormDataStructureIdentifierInitializedEvent.html#afterflexformdatastructureidentifierinitializedevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/AfterFlexFormDataStructureIdentifierInitializedEvent.html#AfterFlexFormDataStructureIdentifierInitializedEvent", "AfterFlexFormDataStructureIdentifierInitializedEvent" ], "afterflexformdatastructureparsedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Configuration\/AfterFlexFormDataStructureParsedEvent.html#afterflexformdatastructureparsedevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/AfterFlexFormDataStructureParsedEvent.html#AfterFlexFormDataStructureParsedEvent", "AfterFlexFormDataStructureParsedEvent" ], "aftertcacompilationevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Configuration\/AfterTcaCompilationEvent.html#aftertcacompilationevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/AfterTcaCompilationEvent.html#AfterTcaCompilationEvent", "AfterTcaCompilationEvent" ], "beforeflexformdatastructureidentifierinitializedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Configuration\/BeforeFlexFormDataStructureIdentifierInitializedEvent.html#beforeflexformdatastructureidentifierinitializedevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/BeforeFlexFormDataStructureIdentifierInitializedEvent.html#BeforeFlexFormDataStructureIdentifierInitializedEvent", "BeforeFlexFormDataStructureIdentifierInitializedEvent" ], "beforeflexformdatastructureparsedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Configuration\/BeforeFlexFormDataStructureParsedEvent.html#beforeflexformdatastructureparsedevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/BeforeFlexFormDataStructureParsedEvent.html#BeforeFlexFormDataStructureParsedEvent", "BeforeFlexFormDataStructureParsedEvent" ], "beforetcaoverridesevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Configuration\/BeforeTcaOverridesEvent.html#beforetcaoverridesevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/BeforeTcaOverridesEvent.html#BeforeTcaOverridesEvent", "BeforeTcaOverridesEvent" ], "modifyloadedpagetsconfigevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Configuration\/ModifyLoadedPageTsConfigEvent.html#modifyloadedpagetsconfigevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/ModifyLoadedPageTsConfigEvent.html#ModifyLoadedPageTsConfigEvent", "ModifyLoadedPageTsConfigEvent" ], "siteconfigurationbeforewriteevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Configuration\/SiteConfigurationBeforeWriteEvent.html#siteconfigurationbeforewriteevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/SiteConfigurationBeforeWriteEvent.html#SiteConfigurationBeforeWriteEvent", "SiteConfigurationBeforeWriteEvent" ], "siteconfigurationloadedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Configuration\/SiteConfigurationLoadedEvent.html#siteconfigurationloadedevent", + "ApiOverview\/Events\/Events\/Core\/Configuration\/SiteConfigurationLoadedEvent.html#SiteConfigurationLoadedEvent", "SiteConfigurationLoadedEvent" ], "bootcompletedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Core\/BootCompletedEvent.html#bootcompletedevent", + "ApiOverview\/Events\/Events\/Core\/Core\/BootCompletedEvent.html#BootCompletedEvent", "BootCompletedEvent" ], "core": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Index.html#core", + "ApiOverview\/Events\/Events\/Core\/Index.html#eventlist-core", "Core" ], "beforecountriesevaluatedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Country\/BeforeCountriesEvaluatedEvent.html#beforecountriesevaluatedevent", + "ApiOverview\/Events\/Events\/Core\/Country\/BeforeCountriesEvaluatedEvent.html#BeforeCountriesEvaluatedEvent", "BeforeCountriesEvaluatedEvent" ], "example-add-a-new-country-to-the-country-selectors": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Country\/BeforeCountriesEvaluatedEvent.html#example-add-a-new-country-to-the-country-selectors", + "ApiOverview\/Events\/Events\/Core\/Country\/BeforeCountriesEvaluatedEvent.html#BeforeCountriesEvaluatedEvent-example", "Example: Add a new country to the country selectors" ], "api-of-event-beforecountriesevaluatedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Country\/BeforeCountriesEvaluatedEvent.html#api-of-event-beforecountriesevaluatedevent", + "ApiOverview\/Events\/Events\/Core\/Country\/BeforeCountriesEvaluatedEvent.html#BeforeCountriesEvaluatedEvent-api", "API of event BeforeCountriesEvaluatedEvent" ], "country": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Country\/Index.html#country", + "ApiOverview\/Events\/Events\/Core\/Country\/Index.html#eventlist-core-country", "Country" ], "altertabledefinitionstatementsevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Database\/AlterTableDefinitionStatementsEvent.html#altertabledefinitionstatementsevent", + "ApiOverview\/Events\/Events\/Core\/Database\/AlterTableDefinitionStatementsEvent.html#AlterTableDefinitionStatementsEvent", "AlterTableDefinitionStatementsEvent" ], "appendlinkhandlerelementsevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/DataHandling\/AppendLinkHandlerElementsEvent.html#appendlinkhandlerelementsevent", + "ApiOverview\/Events\/Events\/Core\/DataHandling\/AppendLinkHandlerElementsEvent.html#AppendLinkHandlerElementsEvent", "AppendLinkHandlerElementsEvent" ], "datahandling": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/DataHandling\/Index.html#datahandling", + "ApiOverview\/Events\/Events\/Core\/DataHandling\/Index.html#eventlist-core-Datahandling", "DataHandling" ], "istableexcludedfromreferenceindexevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/DataHandling\/IsTableExcludedFromReferenceIndexEvent.html#istableexcludedfromreferenceindexevent", + "ApiOverview\/Events\/Events\/Core\/DataHandling\/IsTableExcludedFromReferenceIndexEvent.html#IsTableExcludedFromReferenceIndexEvent", "IsTableExcludedFromReferenceIndexEvent" ], "afterrecordlanguageoverlayevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Domain\/AfterRecordLanguageOverlayEvent.html#afterrecordlanguageoverlayevent", + "ApiOverview\/Events\/Events\/Core\/Domain\/AfterRecordLanguageOverlayEvent.html#AfterRecordLanguageOverlayEvent", "AfterRecordLanguageOverlayEvent" ], "beforepageisretrievedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Domain\/BeforePageIsRetrievedEvent.html#beforepageisretrievedevent", + "ApiOverview\/Events\/Events\/Core\/Domain\/BeforePageIsRetrievedEvent.html#BeforePageIsRetrievedEvent", "BeforePageIsRetrievedEvent" ], "beforepagelanguageoverlayevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Domain\/BeforePageLanguageOverlayEvent.html#beforepagelanguageoverlayevent", + "ApiOverview\/Events\/Events\/Core\/Domain\/BeforePageLanguageOverlayEvent.html#BeforePageLanguageOverlayEvent", "BeforePageLanguageOverlayEvent" ], "beforerecordlanguageoverlayevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Domain\/BeforeRecordLanguageOverlayEvent.html#beforerecordlanguageoverlayevent", + "ApiOverview\/Events\/Events\/Core\/Domain\/BeforeRecordLanguageOverlayEvent.html#BeforeRecordLanguageOverlayEvent", "BeforeRecordLanguageOverlayEvent" ], "domain": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Domain\/Index.html#domain", + "ApiOverview\/Events\/Events\/Core\/Domain\/Index.html#eventlist-core-domain", "Domain" ], "modifydefaultconstraintsfordatabasequeryevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Domain\/ModifyDefaultConstraintsForDatabaseQueryEvent.html#modifydefaultconstraintsfordatabasequeryevent", + "ApiOverview\/Events\/Events\/Core\/Domain\/ModifyDefaultConstraintsForDatabaseQueryEvent.html#ModifyDefaultConstraintsForDatabaseQueryEvent", "ModifyDefaultConstraintsForDatabaseQueryEvent" ], "recordaccessgrantedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Domain\/RecordAccessGrantedEvent.html#recordaccessgrantedevent", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordAccessGrantedEvent.html#RecordAccessGrantedEvent", "RecordAccessGrantedEvent" ], + "recordcreationevent": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#RecordCreationEvent", + "RecordCreationEvent" + ], "aftertransformtextforpersistenceevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Html\/AfterTransformTextForPersistenceEvent.html#aftertransformtextforpersistenceevent", + "ApiOverview\/Events\/Events\/Core\/Html\/AfterTransformTextForPersistenceEvent.html#AfterTransformTextForPersistenceEvent", "AfterTransformTextForPersistenceEvent" ], "example-transform-a-text-before-saving-to-database": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Html\/AfterTransformTextForPersistenceEvent.html#example-transform-a-text-before-saving-to-database", + "ApiOverview\/Events\/Events\/Core\/Html\/AfterTransformTextForPersistenceEvent.html#AfterTransformTextForPersistenceEvent-example", "Example: Transform a text before saving to database" ], "api-of-aftertransformtextforpersistenceevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Html\/AfterTransformTextForPersistenceEvent.html#api-of-aftertransformtextforpersistenceevent", + "ApiOverview\/Events\/Events\/Core\/Html\/AfterTransformTextForPersistenceEvent.html#AfterTransformTextForPersistenceEvent-api", "API of AfterTransformTextForPersistenceEvent" ], "aftertransformtextforrichtexteditorevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Html\/AfterTransformTextForRichTextEditorEvent.html#aftertransformtextforrichtexteditorevent", + "ApiOverview\/Events\/Events\/Core\/Html\/AfterTransformTextForRichTextEditorEvent.html#AfterTransformTextForRichTextEditorEvent", "AfterTransformTextForRichTextEditorEvent" ], "api-of-aftertransformtextforrichtexteditorevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Html\/AfterTransformTextForRichTextEditorEvent.html#api-of-aftertransformtextforrichtexteditorevent", + "ApiOverview\/Events\/Events\/Core\/Html\/AfterTransformTextForRichTextEditorEvent.html#AfterTransformTextForRichTextEditorEvent-api", "API of AfterTransformTextForRichTextEditorEvent" ], "beforetransformtextforpersistenceevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Html\/BeforeTransformTextForPersistenceEvent.html#beforetransformtextforpersistenceevent", + "ApiOverview\/Events\/Events\/Core\/Html\/BeforeTransformTextForPersistenceEvent.html#BeforeTransformTextForPersistenceEvent", "BeforeTransformTextForPersistenceEvent" ], "api-of-beforetransformtextforpersistenceevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Html\/BeforeTransformTextForPersistenceEvent.html#api-of-beforetransformtextforpersistenceevent", + "ApiOverview\/Events\/Events\/Core\/Html\/BeforeTransformTextForPersistenceEvent.html#BeforeTransformTextForPersistenceEvent-api", "API of BeforeTransformTextForPersistenceEvent" ], "beforetransformtextforrichtexteditorevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Html\/BeforeTransformTextForRichTextEditorEvent.html#beforetransformtextforrichtexteditorevent", + "ApiOverview\/Events\/Events\/Core\/Html\/BeforeTransformTextForRichTextEditorEvent.html#BeforeTransformTextForRichTextEditorEvent", "BeforeTransformTextForRichTextEditorEvent" ], "api-of-beforetransformtextforrichtexteditorevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Html\/BeforeTransformTextForRichTextEditorEvent.html#api-of-beforetransformtextforrichtexteditorevent", + "ApiOverview\/Events\/Events\/Core\/Html\/BeforeTransformTextForRichTextEditorEvent.html#BeforeTransformTextForRichTextEditorEvent-api", "API of BeforeTransformTextForRichTextEditorEvent" ], "brokenlinkanalysisevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Html\/BrokenLinkAnalysisEvent.html#brokenlinkanalysisevent", + "ApiOverview\/Events\/Events\/Core\/Html\/BrokenLinkAnalysisEvent.html#BrokenLinkAnalysisEvent", "BrokenLinkAnalysisEvent" ], "html": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Html\/Index.html#html", + "ApiOverview\/Events\/Events\/Core\/Html\/Index.html#eventlist-core-html", "Html" ], "imaging": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Imaging\/Index.html#imaging", + "ApiOverview\/Events\/Events\/Core\/Imaging\/Index.html#eventlist-core-imaging", "Imaging" ], "modifyrecordoverlayiconidentifierevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Imaging\/ModifyRecordOverlayIconIdentifierEvent.html#modifyrecordoverlayiconidentifierevent", + "ApiOverview\/Events\/Events\/Core\/Imaging\/ModifyRecordOverlayIconIdentifierEvent.html#ModifyRecordOverlayIconIdentifierEvent", "ModifyRecordOverlayIconIdentifierEvent" ], "afterlinkresolvedbystringrepresentationevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/LinkHandling\/AfterLinkResolvedByStringRepresentationEvent.html#afterlinkresolvedbystringrepresentationevent", + "ApiOverview\/Events\/Events\/Core\/LinkHandling\/AfterLinkResolvedByStringRepresentationEvent.html#AfterLinkResolvedByStringRepresentationEvent", "AfterLinkResolvedByStringRepresentationEvent" ], "aftertypolinkdecodedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/LinkHandling\/AfterTypoLinkDecodedEvent.html#aftertypolinkdecodedevent", + "ApiOverview\/Events\/Events\/Core\/LinkHandling\/AfterTypoLinkDecodedEvent.html#AfterTypoLinkDecodedEvent", "AfterTypoLinkDecodedEvent" ], "beforetypolinkencodedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/LinkHandling\/BeforeTypoLinkEncodedEvent.html#beforetypolinkencodedevent", + "ApiOverview\/Events\/Events\/Core\/LinkHandling\/BeforeTypoLinkEncodedEvent.html#BeforeTypoLinkEncodedEvent", "BeforeTypoLinkEncodedEvent" ], "link-handling": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/Index.html#link-handling", + "ApiOverview\/LinkHandling\/Index.html#LinkHandling", "Link handling" ], - "aftermailerinitializationevent": [ - "TYPO3 Explained", - "main", - "ApiOverview\/Events\/Events\/Core\/Mail\/AfterMailerInitializationEvent.html#aftermailerinitializationevent", - "AfterMailerInitializationEvent" - ], "aftermailersentmessageevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Mail\/AfterMailerSentMessageEvent.html#aftermailersentmessageevent", + "ApiOverview\/Events\/Events\/Core\/Mail\/AfterMailerSentMessageEvent.html#AfterMailerSentMessageEvent", "AfterMailerSentMessageEvent" ], "beforemailersentmessageevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Mail\/BeforeMailerSentMessageEvent.html#beforemailersentmessageevent", + "ApiOverview\/Events\/Events\/Core\/Mail\/BeforeMailerSentMessageEvent.html#BeforeMailerSentMessageEvent", "BeforeMailerSentMessageEvent" ], "mail": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Mail\/Index.html#mail", + "ApiOverview\/Events\/Events\/Core\/Mail\/Index.html#eventlist-core-mail", "Mail" ], "afterpackageactivationevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Package\/AfterPackageActivationEvent.html#afterpackageactivationevent", + "ApiOverview\/Events\/Events\/Core\/Package\/AfterPackageActivationEvent.html#AfterPackageActivationEvent", "AfterPackageActivationEvent" ], "afterpackagedeactivationevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Package\/AfterPackageDeactivationEvent.html#afterpackagedeactivationevent", + "ApiOverview\/Events\/Events\/Core\/Package\/AfterPackageDeactivationEvent.html#AfterPackageDeactivationEvent", "AfterPackageDeactivationEvent" ], "beforepackageactivationevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Package\/BeforePackageActivationEvent.html#beforepackageactivationevent", + "ApiOverview\/Events\/Events\/Core\/Package\/BeforePackageActivationEvent.html#BeforePackageActivationEvent", "BeforePackageActivationEvent" ], "package": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Package\/Index.html#package", + "ApiOverview\/Events\/Events\/Core\/Package\/Index.html#eventlist-core-package", "Package" ], "packageinitializationevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Package\/PackageInitializationEvent.html#packageinitializationevent", + "ApiOverview\/Events\/Events\/Core\/Package\/PackageInitializationEvent.html#PackageInitializationEvent", "PackageInitializationEvent" ], "packagesmayhavechangedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Package\/PackagesMayHaveChangedEvent.html#packagesmayhavechangedevent", + "ApiOverview\/Events\/Events\/Core\/Package\/PackagesMayHaveChangedEvent.html#PackagesMayHaveChangedEvent", "PackagesMayHaveChangedEvent" ], "beforejavascriptsrenderingevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Page\/BeforeJavaScriptsRenderingEvent.html#beforejavascriptsrenderingevent", + "ApiOverview\/Events\/Events\/Core\/Page\/BeforeJavaScriptsRenderingEvent.html#BeforeJavaScriptsRenderingEvent", "BeforeJavaScriptsRenderingEvent" ], "beforestylesheetsrenderingevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Page\/BeforeStylesheetsRenderingEvent.html#beforestylesheetsrenderingevent", + "ApiOverview\/Events\/Events\/Core\/Page\/BeforeStylesheetsRenderingEvent.html#BeforeStylesheetsRenderingEvent", "BeforeStylesheetsRenderingEvent" ], "page": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Page\/Index.html#page", + "ApiOverview\/Events\/Events\/Core\/Page\/Index.html#eventlist-core-page", "Page" ], "enrichpasswordvalidationcontextdataevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/PasswordPolicy\/EnrichPasswordValidationContextDataEvent.html#enrichpasswordvalidationcontextdataevent", + "ApiOverview\/Events\/Events\/Core\/PasswordPolicy\/EnrichPasswordValidationContextDataEvent.html#EnrichPasswordValidationContextDataEvent", "EnrichPasswordValidationContextDataEvent" ], "password-policy": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/PasswordPolicy\/Index.html#password-policy", + "ApiOverview\/Events\/Events\/Core\/PasswordPolicy\/Index.html#eventlist-core-password-policy", "Password policy" ], "afterdefaultuploadfolderwasresolvedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterDefaultUploadFolderWasResolvedEvent.html#afterdefaultuploadfolderwasresolvedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterDefaultUploadFolderWasResolvedEvent.html#AfterDefaultUploadFolderWasResolvedEvent", "AfterDefaultUploadFolderWasResolvedEvent" ], "afterfileaddedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileAddedEvent.html#afterfileaddedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileAddedEvent.html#AfterFileAddedEvent", "AfterFileAddedEvent" ], "afterfileaddedtoindexevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileAddedToIndexEvent.html#afterfileaddedtoindexevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileAddedToIndexEvent.html#AfterFileAddedToIndexEvent", "AfterFileAddedToIndexEvent" ], "afterfilecommandprocessedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileCommandProcessedEvent.html#afterfilecommandprocessedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileCommandProcessedEvent.html#AfterFileCommandProcessedEvent", "AfterFileCommandProcessedEvent" ], "afterfilecontentssetevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileContentsSetEvent.html#afterfilecontentssetevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileContentsSetEvent.html#AfterFileContentsSetEvent", "AfterFileContentsSetEvent" ], "afterfilecopiedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileCopiedEvent.html#afterfilecopiedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileCopiedEvent.html#AfterFileCopiedEvent", "AfterFileCopiedEvent" ], "afterfilecreatedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileCreatedEvent.html#afterfilecreatedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileCreatedEvent.html#AfterFileCreatedEvent", "AfterFileCreatedEvent" ], "afterfiledeletedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileDeletedEvent.html#afterfiledeletedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileDeletedEvent.html#AfterFileDeletedEvent", "AfterFileDeletedEvent" ], "afterfilemarkedasmissingevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMarkedAsMissingEvent.html#afterfilemarkedasmissingevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMarkedAsMissingEvent.html#AfterFileMarkedAsMissingEvent", "AfterFileMarkedAsMissingEvent" ], "afterfilemetadatacreatedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMetaDataCreatedEvent.html#afterfilemetadatacreatedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMetaDataCreatedEvent.html#AfterFileMetaDataCreatedEvent", "AfterFileMetaDataCreatedEvent" ], "afterfilemetadatadeletedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMetaDataDeletedEvent.html#afterfilemetadatadeletedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMetaDataDeletedEvent.html#AfterFileMetaDataDeletedEvent", "AfterFileMetaDataDeletedEvent" ], "afterfilemetadataupdatedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMetaDataUpdatedEvent.html#afterfilemetadataupdatedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMetaDataUpdatedEvent.html#AfterFileMetaDataUpdatedEvent", "AfterFileMetaDataUpdatedEvent" ], "afterfilemovedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMovedEvent.html#afterfilemovedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileMovedEvent.html#AfterFileMovedEvent", "AfterFileMovedEvent" ], "afterfileprocessingevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileProcessingEvent.html#afterfileprocessingevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileProcessingEvent.html#AfterFileProcessingEvent", "AfterFileProcessingEvent" ], "afterfileremovedfromindexevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileRemovedFromIndexEvent.html#afterfileremovedfromindexevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileRemovedFromIndexEvent.html#AfterFileRemovedFromIndexEvent", "AfterFileRemovedFromIndexEvent" ], "afterfilerenamedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileRenamedEvent.html#afterfilerenamedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileRenamedEvent.html#AfterFileRenamedEvent", "AfterFileRenamedEvent" ], "afterfilereplacedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileReplacedEvent.html#afterfilereplacedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileReplacedEvent.html#AfterFileReplacedEvent", "AfterFileReplacedEvent" ], "afterfileupdatedinindexevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileUpdatedInIndexEvent.html#afterfileupdatedinindexevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFileUpdatedInIndexEvent.html#AfterFileUpdatedInIndexEvent", "AfterFileUpdatedInIndexEvent" ], "afterfolderaddedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderAddedEvent.html#afterfolderaddedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderAddedEvent.html#AfterFolderAddedEvent", "AfterFolderAddedEvent" ], "afterfoldercopiedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderCopiedEvent.html#afterfoldercopiedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderCopiedEvent.html#AfterFolderCopiedEvent", "AfterFolderCopiedEvent" ], "afterfolderdeletedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderDeletedEvent.html#afterfolderdeletedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderDeletedEvent.html#AfterFolderDeletedEvent", "AfterFolderDeletedEvent" ], "afterfoldermovedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderMovedEvent.html#afterfoldermovedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderMovedEvent.html#AfterFolderMovedEvent", "AfterFolderMovedEvent" ], "afterfolderrenamedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderRenamedEvent.html#afterfolderrenamedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterFolderRenamedEvent.html#AfterFolderRenamedEvent", "AfterFolderRenamedEvent" ], "afterresourcestorageinitializationevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterResourceStorageInitializationEvent.html#afterresourcestorageinitializationevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterResourceStorageInitializationEvent.html#AfterResourceStorageInitializationEvent", "AfterResourceStorageInitializationEvent" ], "aftervideopreviewfetchedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/AfterVideoPreviewFetchedEvent.html#aftervideopreviewfetchedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/AfterVideoPreviewFetchedEvent.html#AfterVideoPreviewFetchedEvent", "AfterVideoPreviewFetchedEvent" ], "beforefileaddedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileAddedEvent.html#beforefileaddedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileAddedEvent.html#BeforeFileAddedEvent", "BeforeFileAddedEvent" ], "beforefilecontentssetevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileContentsSetEvent.html#beforefilecontentssetevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileContentsSetEvent.html#BeforeFileContentsSetEvent", "BeforeFileContentsSetEvent" ], "beforefilecopiedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileCopiedEvent.html#beforefilecopiedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileCopiedEvent.html#BeforeFileCopiedEvent", "BeforeFileCopiedEvent" ], "beforefilecreatedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileCreatedEvent.html#beforefilecreatedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileCreatedEvent.html#BeforeFileCreatedEvent", "BeforeFileCreatedEvent" ], "beforefiledeletedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileDeletedEvent.html#beforefiledeletedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileDeletedEvent.html#BeforeFileDeletedEvent", "BeforeFileDeletedEvent" ], "beforefilemovedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileMovedEvent.html#beforefilemovedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileMovedEvent.html#BeforeFileMovedEvent", "BeforeFileMovedEvent" ], "beforefileprocessingevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileProcessingEvent.html#beforefileprocessingevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileProcessingEvent.html#BeforeFileProcessingEvent", "BeforeFileProcessingEvent" ], "beforefilerenamedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileRenamedEvent.html#beforefilerenamedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileRenamedEvent.html#BeforeFileRenamedEvent", "BeforeFileRenamedEvent" ], "beforefilereplacedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileReplacedEvent.html#beforefilereplacedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFileReplacedEvent.html#BeforeFileReplacedEvent", "BeforeFileReplacedEvent" ], "beforefolderaddedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderAddedEvent.html#beforefolderaddedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderAddedEvent.html#BeforeFolderAddedEvent", "BeforeFolderAddedEvent" ], "beforefoldercopiedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderCopiedEvent.html#beforefoldercopiedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderCopiedEvent.html#BeforeFolderCopiedEvent", "BeforeFolderCopiedEvent" ], "beforefolderdeletedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderDeletedEvent.html#beforefolderdeletedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderDeletedEvent.html#BeforeFolderDeletedEvent", "BeforeFolderDeletedEvent" ], "beforefoldermovedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderMovedEvent.html#beforefoldermovedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderMovedEvent.html#BeforeFolderMovedEvent", "BeforeFolderMovedEvent" ], "beforefolderrenamedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderRenamedEvent.html#beforefolderrenamedevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeFolderRenamedEvent.html#BeforeFolderRenamedEvent", "BeforeFolderRenamedEvent" ], "beforeresourcestorageinitializationevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeResourceStorageInitializationEvent.html#beforeresourcestorageinitializationevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/BeforeResourceStorageInitializationEvent.html#BeforeResourceStorageInitializationEvent", "BeforeResourceStorageInitializationEvent" ], "enrichfilemetadataevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/EnrichFileMetaDataEvent.html#enrichfilemetadataevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/EnrichFileMetaDataEvent.html#EnrichFileMetaDataEvent", "EnrichFileMetaDataEvent" ], "generatepublicurlforresourceevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/GeneratePublicUrlForResourceEvent.html#generatepublicurlforresourceevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/GeneratePublicUrlForResourceEvent.html#GeneratePublicUrlForResourceEvent", "GeneratePublicUrlForResourceEvent" ], "resource": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/Index.html#resource", + "ApiOverview\/Events\/Events\/Core\/Resource\/Index.html#eventlist-core-resource", "Resource" ], "modifyfiledumpevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/ModifyFileDumpEvent.html#modifyfiledumpevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/ModifyFileDumpEvent.html#ModifyFileDumpEvent", "ModifyFileDumpEvent" ], "modifyiconforresourcepropertiesevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/ModifyIconForResourcePropertiesEvent.html#modifyiconforresourcepropertiesevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/ModifyIconForResourcePropertiesEvent.html#ModifyIconForResourcePropertiesEvent", "ModifyIconForResourcePropertiesEvent" ], "sanitizefilenameevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Resource\/SanitizeFileNameEvent.html#sanitizefilenameevent", + "ApiOverview\/Events\/Events\/Core\/Resource\/SanitizeFileNameEvent.html#SanitizeFileNameEvent", "SanitizeFileNameEvent" ], "security": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/SitePackage\/Introduction.html#security", + "ExtensionArchitecture\/SitePackage\/Introduction.html#site-package-security", "Security" ], "investigatemutationsevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Security\/InvestigateMutationsEvent.html#investigatemutationsevent", + "ApiOverview\/Events\/Events\/Core\/Security\/InvestigateMutationsEvent.html#InvestigateMutationsEvent", "InvestigateMutationsEvent" ], "policymutatedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Security\/PolicyMutatedEvent.html#policymutatedevent", + "ApiOverview\/Events\/Events\/Core\/Security\/PolicyMutatedEvent.html#PolicyMutatedEvent", "PolicyMutatedEvent" ], "tree": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Tree\/Index.html#tree", + "ApiOverview\/Events\/Events\/Core\/Tree\/Index.html#eventlist-core-tree", "Tree" ], "modifytreedataevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/Tree\/ModifyTreeDataEvent.html#modifytreedataevent", + "ApiOverview\/Events\/Events\/Core\/Tree\/ModifyTreeDataEvent.html#ModifyTreeDataEvent", "ModifyTreeDataEvent" ], "aftertemplateshavebeendeterminedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/TypoScript\/AfterTemplatesHaveBeenDeterminedEvent.html#aftertemplateshavebeendeterminedevent", + "ApiOverview\/Events\/Events\/Core\/TypoScript\/AfterTemplatesHaveBeenDeterminedEvent.html#AfterTemplatesHaveBeenDeterminedEvent", "AfterTemplatesHaveBeenDeterminedEvent" ], "beforeloadedpagetsconfigevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/TypoScript\/BeforeLoadedPageTsConfigEvent.html#beforeloadedpagetsconfigevent", + "ApiOverview\/Events\/Events\/Core\/TypoScript\/BeforeLoadedPageTsConfigEvent.html#BeforeLoadedPageTsConfigEvent", "BeforeLoadedPageTsConfigEvent" ], "beforeloadedusertsconfigevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/TypoScript\/BeforeLoadedUserTsConfigEvent.html#beforeloadedusertsconfigevent", + "ApiOverview\/Events\/Events\/Core\/TypoScript\/BeforeLoadedUserTsConfigEvent.html#BeforeLoadedUserTsConfigEvent", "BeforeLoadedUserTsConfigEvent" ], "evaluatemodifierfunctionevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Core\/TypoScript\/EvaluateModifierFunctionEvent.html#evaluatemodifierfunctionevent", + "ApiOverview\/Events\/Events\/Core\/TypoScript\/EvaluateModifierFunctionEvent.html#EvaluateModifierFunctionEvent", "EvaluateModifierFunctionEvent" ], "typoscript": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/Typoscript.html#typoscript", + "Security\/GuidelinesIntegrators\/Typoscript.html#security-typoscript", "TypoScript" ], "beforeflexformconfigurationoverrideevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Extbase\/Configuration\/BeforeFlexFormConfigurationOverrideEvent.html#beforeflexformconfigurationoverrideevent", + "ApiOverview\/Events\/Events\/Extbase\/Configuration\/BeforeFlexFormConfigurationOverrideEvent.html#BeforeFlexFormConfigurationOverrideEvent", "BeforeFlexFormConfigurationOverrideEvent" ], "extbase": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Extbase\/Index.html#extbase", + "ApiOverview\/Events\/Events\/Extbase\/Index.html#eventlist-extbase", "Extbase" ], "afterrequestdispatchedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Extbase\/Mvc\/AfterRequestDispatchedEvent.html#afterrequestdispatchedevent", + "ApiOverview\/Events\/Events\/Extbase\/Mvc\/AfterRequestDispatchedEvent.html#AfterRequestDispatchedEvent", "AfterRequestDispatchedEvent" ], "beforeactioncallevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Extbase\/Mvc\/BeforeActionCallEvent.html#beforeactioncallevent", + "ApiOverview\/Events\/Events\/Extbase\/Mvc\/BeforeActionCallEvent.html#BeforeActionCallEvent", "BeforeActionCallEvent" ], "mvc": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Extbase\/Mvc\/Index.html#mvc", + "ApiOverview\/Events\/Events\/Extbase\/Mvc\/Index.html#eventlist-extbase-mvc", "Mvc" ], "afterobjectthawedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Extbase\/Persistence\/AfterObjectThawedEvent.html#afterobjectthawedevent", + "ApiOverview\/Events\/Events\/Extbase\/Persistence\/AfterObjectThawedEvent.html#AfterObjectThawedEvent", "AfterObjectThawedEvent" ], "entityaddedtopersistenceevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Extbase\/Persistence\/EntityAddedToPersistenceEvent.html#entityaddedtopersistenceevent", + "ApiOverview\/Events\/Events\/Extbase\/Persistence\/EntityAddedToPersistenceEvent.html#EntityAddedToPersistenceEvent", "EntityAddedToPersistenceEvent" ], "entitypersistedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Extbase\/Persistence\/EntityPersistedEvent.html#entitypersistedevent", + "ApiOverview\/Events\/Events\/Extbase\/Persistence\/EntityPersistedEvent.html#EntityPersistedEvent", "EntityPersistedEvent" ], "entityremovedfrompersistenceevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Extbase\/Persistence\/EntityRemovedFromPersistenceEvent.html#entityremovedfrompersistenceevent", + "ApiOverview\/Events\/Events\/Extbase\/Persistence\/EntityRemovedFromPersistenceEvent.html#EntityRemovedFromPersistenceEvent", "EntityRemovedFromPersistenceEvent" ], "entityupdatedinpersistenceevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Extbase\/Persistence\/EntityUpdatedInPersistenceEvent.html#entityupdatedinpersistenceevent", + "ApiOverview\/Events\/Events\/Extbase\/Persistence\/EntityUpdatedInPersistenceEvent.html#EntityUpdatedInPersistenceEvent", "EntityUpdatedInPersistenceEvent" ], "persistence": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Persistence.html#persistence", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Persistence.html#extbase-Persistence", "Persistence" ], "modifyquerybeforefetchingobjectdataevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Extbase\/Persistence\/ModifyQueryBeforeFetchingObjectDataEvent.html#modifyquerybeforefetchingobjectdataevent", + "ApiOverview\/Events\/Events\/Extbase\/Persistence\/ModifyQueryBeforeFetchingObjectDataEvent.html#ModifyQueryBeforeFetchingObjectDataEvent", "ModifyQueryBeforeFetchingObjectDataEvent" ], "modifyresultafterfetchingobjectdataevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Extbase\/Persistence\/ModifyResultAfterFetchingObjectDataEvent.html#modifyresultafterfetchingobjectdataevent", + "ApiOverview\/Events\/Events\/Extbase\/Persistence\/ModifyResultAfterFetchingObjectDataEvent.html#ModifyResultAfterFetchingObjectDataEvent", "ModifyResultAfterFetchingObjectDataEvent" ], "afterextensiondatabasecontenthasbeenimportedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/ExtensionManager\/AfterExtensionDatabaseContentHasImportedEvent.html#afterextensiondatabasecontenthasbeenimportedevent", + "ApiOverview\/Events\/Events\/ExtensionManager\/AfterExtensionDatabaseContentHasImportedEvent.html#AfterExtensionDatabaseContentHasBeenImportedEvent", "AfterExtensionDatabaseContentHasBeenImportedEvent" ], "afterextensionfileshavebeenimportedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/ExtensionManager\/AfterExtensionFilesHaveBeenImportedEvent.html#afterextensionfileshavebeenimportedevent", + "ApiOverview\/Events\/Events\/ExtensionManager\/AfterExtensionFilesHaveBeenImportedEvent.html#AfterExtensionFilesHaveBeenImportedEvent", "AfterExtensionFilesHaveBeenImportedEvent" ], "afterextensionstaticdatabasecontenthasbeenimportedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/ExtensionManager\/AfterExtensionStaticDatabaseContentHasBeenImportedEvent.html#afterextensionstaticdatabasecontenthasbeenimportedevent", + "ApiOverview\/Events\/Events\/ExtensionManager\/AfterExtensionStaticDatabaseContentHasBeenImportedEvent.html#AfterExtensionStaticDatabaseContentHasBeenImportedEvent", "AfterExtensionStaticDatabaseContentHasBeenImportedEvent" ], "availableactionsforextensionevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/ExtensionManager\/AvailableActionsForExtensionEvent.html#availableactionsforextensionevent", + "ApiOverview\/Events\/Events\/ExtensionManager\/AvailableActionsForExtensionEvent.html#AvailableActionsForExtensionEvent", "AvailableActionsForExtensionEvent" ], "extensionmanager": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/ExtensionManager\/Index.html#extensionmanager", + "ApiOverview\/Events\/Events\/ExtensionManager\/Index.html#eventlist-backend-extension-manager", "ExtensionManager" ], "filelist": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Filelist\/Index.html#filelist", + "ApiOverview\/Events\/Events\/Filelist\/Index.html#eventlist-filelist", "Filelist" ], "modifyeditfileformdataevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Filelist\/ModifyEditFileFormDataEvent.html#modifyeditfileformdataevent", + "ApiOverview\/Events\/Events\/Filelist\/ModifyEditFileFormDataEvent.html#ModifyEditFileFormDataEvent", "ModifyEditFileFormDataEvent" ], "processfilelistactionsevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Filelist\/ProcessFileListActionsEvent.html#processfilelistactionsevent", + "ApiOverview\/Events\/Events\/Filelist\/ProcessFileListActionsEvent.html#ProcessFileListActionsEvent", "ProcessFileListActionsEvent" ], "afterformdefinitionloadedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Form\/AfterLinkResolvedByStringRepresentationEvent.html#afterformdefinitionloadedevent", + "ApiOverview\/Events\/Events\/Form\/AfterLinkResolvedByStringRepresentationEvent.html#AfterFormDefinitionLoadedEvent", "AfterFormDefinitionLoadedEvent" ], "form": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Form\/Index.html#form", + "ApiOverview\/Events\/Events\/Form\/Index.html#eventlist-form", "Form" ], "aftercacheablecontentisgeneratedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/AfterCacheableContentIsGeneratedEvent.html#aftercacheablecontentisgeneratedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterCacheableContentIsGeneratedEvent.html#AfterCacheableContentIsGeneratedEvent", "AfterCacheableContentIsGeneratedEvent" ], "aftercachedpageispersistedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/AfterCachedPageIsPersistedEvent.html#aftercachedpageispersistedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterCachedPageIsPersistedEvent.html#AfterCachedPageIsPersistedEvent", "AfterCachedPageIsPersistedEvent" ], + "aftercontenthasbeenfetchedevent": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Frontend\/AfterContentHasBeenFetchedEvent.html#AfterContentHasBeenFetchedEvent", + "AfterContentHasBeenFetchedEvent" + ], "aftercontentobjectrendererinitializedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/AfterContentObjectRendererInitializedEvent.html#aftercontentobjectrendererinitializedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterContentObjectRendererInitializedEvent.html#AfterContentObjectRendererInitializedEvent", "AfterContentObjectRendererInitializedEvent" ], "aftergetdataresolvedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/AfterGetDataResolvedEvent.html#aftergetdataresolvedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterGetDataResolvedEvent.html#AfterGetDataResolvedEvent", "AfterGetDataResolvedEvent" ], "afterimageresourceresolvedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/AfterImageResourceResolvedEvent.html#afterimageresourceresolvedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterImageResourceResolvedEvent.html#AfterImageResourceResolvedEvent", "AfterImageResourceResolvedEvent" ], "afterlinkisgeneratedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/AfterLinkIsGeneratedEvent.html#afterlinkisgeneratedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterLinkIsGeneratedEvent.html#AfterLinkIsGeneratedEvent", "AfterLinkIsGeneratedEvent" ], "afterpageandlanguageisresolvedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/AfterPageAndLanguageIsResolvedEvent.html#afterpageandlanguageisresolvedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterPageAndLanguageIsResolvedEvent.html#AfterPageAndLanguageIsResolvedEvent", "AfterPageAndLanguageIsResolvedEvent" ], "afterpagewithrootlineisresolvedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/AfterPageWithRootLineIsResolvedEvent.html#afterpagewithrootlineisresolvedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterPageWithRootLineIsResolvedEvent.html#AfterPageWithRootLineIsResolvedEvent", "AfterPageWithRootLineIsResolvedEvent" ], "afterstdwrapfunctionsexecutedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/AfterStdWrapFunctionsExecutedEvent.html#afterstdwrapfunctionsexecutedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterStdWrapFunctionsExecutedEvent.html#AfterStdWrapFunctionsExecutedEvent", "AfterStdWrapFunctionsExecutedEvent" ], "afterstdwrapfunctionsinitializedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/AfterStdWrapFunctionsInitializedEvent.html#afterstdwrapfunctionsinitializedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterStdWrapFunctionsInitializedEvent.html#AfterStdWrapFunctionsInitializedEvent", "AfterStdWrapFunctionsInitializedEvent" ], "aftertyposcriptdeterminedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/AfterTypoScriptDeterminedEvent.html#aftertyposcriptdeterminedevent", + "ApiOverview\/Events\/Events\/Frontend\/AfterTypoScriptDeterminedEvent.html#AfterTypoScriptDeterminedEvent", "AfterTypoScriptDeterminedEvent" ], "beforepagecacheidentifierishashedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/BeforePageCacheIdentifierIsHashedEvent.html#beforepagecacheidentifierishashedevent", + "ApiOverview\/Events\/Events\/Frontend\/BeforePageCacheIdentifierIsHashedEvent.html#BeforePageCacheIdentifierIsHashedEvent", "BeforePageCacheIdentifierIsHashedEvent" ], "beforepageisresolvedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/BeforePageIsResolvedEvent.html#beforepageisresolvedevent", + "ApiOverview\/Events\/Events\/Frontend\/BeforePageIsResolvedEvent.html#BeforePageIsResolvedEvent", "BeforePageIsResolvedEvent" ], "beforestdwrapcontentstoredincacheevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/BeforeStdWrapContentStoredInCacheEvent.html#beforestdwrapcontentstoredincacheevent", + "ApiOverview\/Events\/Events\/Frontend\/BeforeStdWrapContentStoredInCacheEvent.html#BeforeStdWrapContentStoredInCacheEvent", "BeforeStdWrapContentStoredInCacheEvent" ], "beforestdwrapfunctionsexecutedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/BeforeStdWrapFunctionsExecutedEvent.html#beforestdwrapfunctionsexecutedevent", + "ApiOverview\/Events\/Events\/Frontend\/BeforeStdWrapFunctionsExecutedEvent.html#BeforeStdWrapFunctionsExecutedEvent", "BeforeStdWrapFunctionsExecutedEvent" ], "beforestdwrapfunctionsinitializedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/BeforeStdWrapFunctionsInitializedEvent.html#beforestdwrapfunctionsinitializedevent", + "ApiOverview\/Events\/Events\/Frontend\/BeforeStdWrapFunctionsInitializedEvent.html#BeforeStdWrapFunctionsInitializedEvent", "BeforeStdWrapFunctionsInitializedEvent" ], "enhancestdwrapevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/EnhanceStdWrapEvent.html#enhancestdwrapevent", + "ApiOverview\/Events\/Events\/Frontend\/EnhanceStdWrapEvent.html#EnhanceStdWrapEvent", "EnhanceStdWrapEvent" ], "filtermenuitemsevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/FilterMenuItemsEvent.html#filtermenuitemsevent", + "ApiOverview\/Events\/Events\/Frontend\/FilterMenuItemsEvent.html#FilterMenuItemsEvent", "FilterMenuItemsEvent" ], "frontend": [ @@ -39349,79 +39853,79 @@ "modifycachelifetimeforpageevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/ModifyCacheLifetimeForPageEvent.html#modifycachelifetimeforpageevent", + "ApiOverview\/Events\/Events\/Frontend\/ModifyCacheLifetimeForPageEvent.html#ModifyCacheLifetimeForPageEvent", "ModifyCacheLifetimeForPageEvent" ], "modifyhreflangtagsevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/ModifyHrefLangTagsEvent.html#modifyhreflangtagsevent", + "ApiOverview\/Events\/Events\/Frontend\/ModifyHrefLangTagsEvent.html#ModifyHrefLangTagsEvent", "ModifyHrefLangTagsEvent" ], "modifyimagesourcecollectionevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/ModifyImageSourceCollectionEvent.html#modifyimagesourcecollectionevent", + "ApiOverview\/Events\/Events\/Frontend\/ModifyImageSourceCollectionEvent.html#ModifyImageSourceCollectionEvent", "ModifyImageSourceCollectionEvent" ], "modifypagelinkconfigurationevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/ModifyPageLinkConfigurationEvent.html#modifypagelinkconfigurationevent", + "ApiOverview\/Events\/Events\/Frontend\/ModifyPageLinkConfigurationEvent.html#ModifyPageLinkConfigurationEvent", "ModifyPageLinkConfigurationEvent" ], "modifyrecordsafterfetchingcontentevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/ModifyRecordsAfterFetchingContentEvent.html#modifyrecordsafterfetchingcontentevent", + "ApiOverview\/Events\/Events\/Frontend\/ModifyRecordsAfterFetchingContentEvent.html#ModifyRecordsAfterFetchingContentEvent", "ModifyRecordsAfterFetchingContentEvent" ], "modifyresolvedfrontendgroupsevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/ModifyResolvedFrontendGroupsEvent.html#modifyresolvedfrontendgroupsevent", + "ApiOverview\/Events\/Events\/Frontend\/ModifyResolvedFrontendGroupsEvent.html#ModifyResolvedFrontendGroupsEvent", "ModifyResolvedFrontendGroupsEvent" ], "modifytyposcriptconfigevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/ModifyTypoScriptConfigEvent.html#modifytyposcriptconfigevent", + "ApiOverview\/Events\/Events\/Frontend\/ModifyTypoScriptConfigEvent.html#ModifyTypoScriptConfigEvent", "ModifyTypoScriptConfigEvent" ], "shouldusecachedpagedataifavailableevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Frontend\/ShouldUseCachedPageDataIfAvailableEvent.html#shouldusecachedpagedataifavailableevent", + "ApiOverview\/Events\/Events\/Frontend\/ShouldUseCachedPageDataIfAvailableEvent.html#ShouldUseCachedPageDataIfAvailableEvent", "ShouldUseCachedPageDataIfAvailableEvent" ], "beforeredirectevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/FrontendLogin\/BeforeRedirectEvent.html#beforeredirectevent", + "ApiOverview\/Events\/Events\/FrontendLogin\/BeforeRedirectEvent.html#BeforeRedirectEvent", "BeforeRedirectEvent" ], "frontendlogin": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/FrontendLogin\/Index.html#frontendlogin", + "ApiOverview\/Events\/Events\/FrontendLogin\/Index.html#eventlist-felogin", "FrontendLogin" ], "loginconfirmedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/FrontendLogin\/LoginConfirmedEvent.html#loginconfirmedevent", + "ApiOverview\/Events\/Events\/FrontendLogin\/LoginConfirmedEvent.html#LoginConfirmedEvent", "LoginConfirmedEvent" ], "loginerroroccurredevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/FrontendLogin\/LoginErrorOccurredEvent.html#loginerroroccurredevent", + "ApiOverview\/Events\/Events\/FrontendLogin\/LoginErrorOccurredEvent.html#LoginErrorOccurredEvent", "LoginErrorOccurredEvent" ], "logoutconfirmedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/FrontendLogin\/LogoutConfirmedEvent.html#logoutconfirmedevent", + "ApiOverview\/Events\/Events\/FrontendLogin\/LogoutConfirmedEvent.html#LogoutConfirmedEvent", "LogoutConfirmedEvent" ], "example-delete-stored-private-key-from-disk-on-logout": [ @@ -39433,13 +39937,13 @@ "modifyloginformviewevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/FrontendLogin\/ModifyLoginFormViewEvent.html#modifyloginformviewevent", + "ApiOverview\/Events\/Events\/FrontendLogin\/ModifyLoginFormViewEvent.html#ModifyLoginFormViewEvent", "ModifyLoginFormViewEvent" ], "modifyredirecturlvalidationresultevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/FrontendLogin\/ModifyRedirectUrlValidationResultEvent.html#modifyredirecturlvalidationresultevent", + "ApiOverview\/Events\/Events\/FrontendLogin\/ModifyRedirectUrlValidationResultEvent.html#ModifyRedirectUrlValidationResultEvent", "ModifyRedirectUrlValidationResultEvent" ], "example-validate-that-the-redirect-after-frontend-login-goes-to-a-trusted-domain": [ @@ -39451,55 +39955,55 @@ "passwordchangeevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/FrontendLogin\/PasswordChangeEvent.html#passwordchangeevent", + "ApiOverview\/Events\/Events\/FrontendLogin\/PasswordChangeEvent.html#PasswordChangeEvent", "PasswordChangeEvent" ], "sendrecoveryemailevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/FrontendLogin\/SendRecoveryEmailEvent.html#sendrecoveryemailevent", + "ApiOverview\/Events\/Events\/FrontendLogin\/SendRecoveryEmailEvent.html#SendRecoveryEmailEvent", "SendRecoveryEmailEvent" ], "beforeimportevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Impexp\/BeforeImportEvent.html#beforeimportevent", + "ApiOverview\/Events\/Events\/Impexp\/BeforeImportEvent.html#BeforeImportEvent", "BeforeImportEvent" ], "impexp": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Impexp\/Index.html#impexp", + "ApiOverview\/Events\/Events\/Impexp\/Index.html#eventlist-impexp", "Impexp" ], "event-list": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Index.html#event-list", + "ApiOverview\/Events\/Events\/Index.html#eventlist", "Event list" ], "beforefinalsearchqueryisexecutedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/IndexedSearch\/BeforeFinalSearchQueryIsExecutedEvent.html#beforefinalsearchqueryisexecutedevent", + "ApiOverview\/Events\/Events\/IndexedSearch\/BeforeFinalSearchQueryIsExecutedEvent.html#BeforeFinalSearchQueryIsExecutedEvent", "BeforeFinalSearchQueryIsExecutedEvent" ], "indexed-search": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/IndexedSearch\/Index.html#indexed-search", + "ApiOverview\/Events\/Events\/IndexedSearch\/Index.html#eventlist-indexed-search", "Indexed search" ], "info": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Info\/Index.html#info", + "ApiOverview\/Events\/Events\/Info\/Index.html#eventlist-info", "Info" ], "modifyinfomodulecontentevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Info\/ModifyInfoModuleContentEvent.html#modifyinfomodulecontentevent", + "ApiOverview\/Events\/Events\/Info\/ModifyInfoModuleContentEvent.html#ModifyInfoModuleContentEvent", "ModifyInfoModuleContentEvent" ], "access-control": [ @@ -39511,85 +40015,85 @@ "install": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Install\/Index.html#install", + "ApiOverview\/Events\/Events\/Install\/Index.html#eventlist-install", "Install" ], "modifylanguagepackremotebaseurlevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Install\/ModifyLanguagePackRemoteBaseUrlEvent.html#modifylanguagepackremotebaseurlevent", + "ApiOverview\/Events\/Events\/Install\/ModifyLanguagePackRemoteBaseUrlEvent.html#ModifyLanguagePackRemoteBaseUrlEvent", "ModifyLanguagePackRemoteBaseUrlEvent" ], "modifylanguagepacksevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Install\/ModifyLanguagePacksEvent.html#modifylanguagepacksevent", + "ApiOverview\/Events\/Events\/Install\/ModifyLanguagePacksEvent.html#ModifyLanguagePacksEvent", "ModifyLanguagePacksEvent" ], "beforerecordisanalyzedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Linkvalidator\/BeforeRecordIsAnalyzedEvent.html#beforerecordisanalyzedevent", + "ApiOverview\/Events\/Events\/Linkvalidator\/BeforeRecordIsAnalyzedEvent.html#BeforeRecordIsAnalyzedEvent", "BeforeRecordIsAnalyzedEvent" ], "linkvalidator": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Linkvalidator\/Index.html#linkvalidator", + "ApiOverview\/Events\/Events\/Linkvalidator\/Index.html#eventlist-linkvalidator", "Linkvalidator" ], "modifyvalidatortaskemailevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Linkvalidator\/ModifyValidatorTaskEmailEvent.html#modifyvalidatortaskemailevent", + "ApiOverview\/Events\/Events\/Linkvalidator\/ModifyValidatorTaskEmailEvent.html#ModifyValidatorTaskEmailEvent", "ModifyValidatorTaskEmailEvent" ], "lowlevel": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Lowlevel\/Index.html#lowlevel", + "ApiOverview\/Events\/Events\/Lowlevel\/Index.html#eventlist-lowlevel", "Lowlevel" ], "modifyblindedconfigurationoptionsevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Lowlevel\/ModifyBlindedConfigurationOptionsEvent.html#modifyblindedconfigurationoptionsevent", + "ApiOverview\/Events\/Events\/Lowlevel\/ModifyBlindedConfigurationOptionsEvent.html#ModifyBlindedConfigurationOptionsEvent", "ModifyBlindedConfigurationOptionsEvent" ], "afterautocreateredirecthasbeenpersistedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Redirects\/AfterAutoCreateRedirectHasBeenPersistedEvent.html#afterautocreateredirecthasbeenpersistedevent", + "ApiOverview\/Events\/Events\/Redirects\/AfterAutoCreateRedirectHasBeenPersistedEvent.html#AfterAutoCreateRedirectHasBeenPersistedEvent", "AfterAutoCreateRedirectHasBeenPersistedEvent" ], "beforeredirectmatchdomainevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Redirects\/BeforeRedirectMatchDomainEvent.html#beforeredirectmatchdomainevent", + "ApiOverview\/Events\/Events\/Redirects\/BeforeRedirectMatchDomainEvent.html#BeforeRedirectMatchDomainEvent", "BeforeRedirectMatchDomainEvent" ], "redirects": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Redirects\/Index.html#redirects", + "ApiOverview\/Events\/Events\/Redirects\/Index.html#eventlist-redirects", "Redirects" ], "modifyautocreateredirectrecordbeforepersistingevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Redirects\/ModifyAutoCreateRedirectRecordBeforePersistingEvent.html#modifyautocreateredirectrecordbeforepersistingevent", + "ApiOverview\/Events\/Events\/Redirects\/ModifyAutoCreateRedirectRecordBeforePersistingEvent.html#ModifyAutoCreateRedirectRecordBeforePersistingEvent", "ModifyAutoCreateRedirectRecordBeforePersistingEvent" ], "modifyredirectmanagementcontrollerviewdataevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Redirects\/ModifyRedirectManagementControllerViewDataEvent.html#modifyredirectmanagementcontrollerviewdataevent", + "ApiOverview\/Events\/Events\/Redirects\/ModifyRedirectManagementControllerViewDataEvent.html#ModifyRedirectManagementControllerViewDataEvent", "ModifyRedirectManagementControllerViewDataEvent" ], "redirectwashitevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Redirects\/RedirectWasHitEvent.html#redirectwashitevent", + "ApiOverview\/Events\/Events\/Redirects\/RedirectWasHitEvent.html#RedirectWasHitEvent", "RedirectWasHitEvent" ], "example-disable-the-hit-count-increment-for-monitoring-tools": [ @@ -39601,13 +40105,13 @@ "slugredirectchangeitemcreatedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Redirects\/SlugRedirectChangeItemCreatedEvent.html#slugredirectchangeitemcreatedevent", + "ApiOverview\/Events\/Events\/Redirects\/SlugRedirectChangeItemCreatedEvent.html#SlugRedirectChangeItemCreatedEvent", "SlugRedirectChangeItemCreatedEvent" ], "using-the-php-pagetypesource": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Redirects\/SlugRedirectChangeItemCreatedEvent.html#using-the-php-pagetypesource", + "ApiOverview\/Events\/Events\/Redirects\/SlugRedirectChangeItemCreatedEvent.html#use_pagetypesource", "Using the PageTypeSource" ], "with-a-custom-source-implementation": [ @@ -39631,19 +40135,19 @@ "seo": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/SEO\/Index.html#seo", + "ApiOverview\/Events\/Events\/SEO\/Index.html#eventlist-seo", "Seo" ], "modifyurlforcanonicaltagevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/SEO\/ModifyUrlForCanonicalTagEvent.html#modifyurlforcanonicaltagevent", + "ApiOverview\/Events\/Events\/SEO\/ModifyUrlForCanonicalTagEvent.html#ModifyUrlForCanonicalTagEvent", "ModifyUrlForCanonicalTagEvent" ], "addjavascriptmodulesevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Setup\/AddJavaScriptModulesEvent.html#addjavascriptmodulesevent", + "ApiOverview\/Events\/Events\/Setup\/AddJavaScriptModulesEvent.html#AddJavaScriptModulesEvent", "AddJavaScriptModulesEvent" ], "setup": [ @@ -39655,109 +40159,109 @@ "aftercompiledcacheabledataforworkspaceevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Workspaces\/AfterCompiledCacheableDataForWorkspaceEvent.html#aftercompiledcacheabledataforworkspaceevent", + "ApiOverview\/Events\/Events\/Workspaces\/AfterCompiledCacheableDataForWorkspaceEvent.html#AfterCompiledCacheableDataForWorkspaceEvent", "AfterCompiledCacheableDataForWorkspaceEvent" ], "afterdatageneratedforworkspaceevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Workspaces\/AfterDataGeneratedForWorkspaceEvent.html#afterdatageneratedforworkspaceevent", + "ApiOverview\/Events\/Events\/Workspaces\/AfterDataGeneratedForWorkspaceEvent.html#AfterDataGeneratedForWorkspaceEvent", "AfterDataGeneratedForWorkspaceEvent" ], "afterrecordpublishedevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Workspaces\/AfterRecordPublishedEvent.html#afterrecordpublishedevent", + "ApiOverview\/Events\/Events\/Workspaces\/AfterRecordPublishedEvent.html#AfterRecordPublishedEvent", "AfterRecordPublishedEvent" ], "getversioneddataevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Workspaces\/GetVersionedDataEvent.html#getversioneddataevent", + "ApiOverview\/Events\/Events\/Workspaces\/GetVersionedDataEvent.html#GetVersionedDataEvent", "GetVersionedDataEvent" ], "workspaces": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Workspaces\/Index.html#workspaces", + "ApiOverview\/Events\/Events\/Workspaces\/Index.html#eventlist-workspaces", "Workspaces" ], "modifyversiondifferencesevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Workspaces\/ModifyVersionDifferencesEvent.html#modifyversiondifferencesevent", + "ApiOverview\/Events\/Events\/Workspaces\/ModifyVersionDifferencesEvent.html#ModifyVersionDifferencesEvent", "ModifyVersionDifferencesEvent" ], "sortversioneddataevent": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Events\/Workspaces\/SortVersionedDataEvent.html#sortversioneddataevent", + "ApiOverview\/Events\/Events\/Workspaces\/SortVersionedDataEvent.html#SortVersionedDataEvent", "SortVersionedDataEvent" ], "hooks": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Hooks\/Index.html#hooks", + "ApiOverview\/Events\/Hooks\/Index.html#hooks-general", "Hooks" ], "using-hooks": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Hooks\/Index.html#using-hooks", + "ApiOverview\/Events\/Hooks\/Index.html#hooks-basics", "Using hooks" ], "creating-hooks": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Hooks\/Index.html#creating-hooks", + "ApiOverview\/Events\/Hooks\/Index.html#hooks-creation", "Creating hooks" ], "using-typo3-cms-core-utility-generalutility-makeinstance": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Hooks\/Index.html#using-typo3-cms-core-utility-generalutility-makeinstance", + "ApiOverview\/Events\/Hooks\/Index.html#hooks-creation-object", "Using \\TYPO3\\CMS\\Core\\Utility\\GeneralUtility::makeInstance()" ], "using-with-typo3-cms-core-utility-generalutility-calluserfunction": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Hooks\/Index.html#using-with-typo3-cms-core-utility-generalutility-calluserfunction", + "ApiOverview\/Events\/Hooks\/Index.html#hooks-creation-function", "Using with \\TYPO3\\CMS\\Core\\Utility\\GeneralUtility::callUserFunction()" ], "hook-configuration": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Hooks\/Index.html#hook-configuration", + "ApiOverview\/Events\/Hooks\/Index.html#hooks-configuration", "Hook configuration" ], "globals-typo3-conf-vars-extconf": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Hooks\/Index.html#globals-typo3-conf-vars-extconf", + "ApiOverview\/Events\/Hooks\/Index.html#hooks-extensions", "$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']" ], "globals-typo3-conf-vars-sc-options": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Hooks\/Index.html#globals-typo3-conf-vars-sc-options", + "ApiOverview\/Events\/Hooks\/Index.html#hooks-core", "$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']" ], "events-and-hooks": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/Index.html#events-and-hooks", + "ApiOverview\/Events\/Index.html#hooks", "Events and hooks" ], "debounce-event": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/JavaScript\/DebounceEvent\/Index.html#debounce-event", + "ApiOverview\/Events\/JavaScript\/DebounceEvent\/Index.html#Events_JavaScript_Debounce", "Debounce event" ], "javascript-event-api": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/JavaScript\/Index.html#javascript-event-api", + "ApiOverview\/Events\/JavaScript\/Index.html#Events_JavaScript", "JavaScript Event API" ], "bind-to-an-element": [ @@ -39775,265 +40279,265 @@ "regular-event": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/JavaScript\/RegularEvent\/Index.html#regular-event", + "ApiOverview\/Events\/JavaScript\/RegularEvent\/Index.html#Events_JavaScript_Regular", "Regular event" ], "requestanimationframe-event": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/JavaScript\/RequestAnimationFrameEvent\/Index.html#requestanimationframe-event", + "ApiOverview\/Events\/JavaScript\/RequestAnimationFrameEvent\/Index.html#Events_JavaScript_rAF", "RequestAnimationFrame event" ], "throttle-event": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/JavaScript\/ThrottleEvent\/Index.html#throttle-event", + "ApiOverview\/Events\/JavaScript\/ThrottleEvent\/Index.html#Events_JavaScript_Throttle", "Throttle event" ], "signals-and-slots-removed": [ "TYPO3 Explained", "main", - "ApiOverview\/Events\/SignalsSlots\/Index.html#signals-and-slots-removed", + "ApiOverview\/Events\/SignalsSlots\/Index.html#signals-basics", "Signals and slots (removed)" ], "administration": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Administration\/Index.html#administration", + "ApiOverview\/Fal\/Administration\/Index.html#fal-administration", "Administration" ], "maintenance": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Administration\/Maintenance.html#maintenance", + "ApiOverview\/Fal\/Administration\/Maintenance.html#fal-administration-maintenance", "Maintenance" ], "scheduler-tasks": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Administration\/Maintenance.html#scheduler-tasks", + "ApiOverview\/Fal\/Administration\/Maintenance.html#fal-administration-maintenance-scheduler", "Scheduler tasks" ], "processed-files": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Folders.html#processed-files", + "ApiOverview\/Fal\/Architecture\/Folders.html#fal-architecture-folders-processed-files", "Processed files" ], "permissions": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Administration\/Permissions.html#permissions", + "ApiOverview\/Fal\/Administration\/Permissions.html#fal-administration-permissions", "Permissions" ], "system-permissions": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Administration\/Permissions.html#system-permissions", + "ApiOverview\/Fal\/Administration\/Permissions.html#fal-administration-permissions-system", "System permissions" ], "user-permissions": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Administration\/Permissions.html#user-permissions", + "ApiOverview\/Fal\/Administration\/Permissions.html#fal-administration-permissions-user", "User permissions" ], "user-permissions-per-storage": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Administration\/Permissions.html#user-permissions-per-storage", + "ApiOverview\/Fal\/Administration\/Permissions.html#fal-administration-permissions-user-storage", "User permissions per storage" ], "user-permissions-details": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Administration\/Permissions.html#user-permissions-details", + "ApiOverview\/Fal\/Administration\/Permissions.html#fal-administration-permissions-user-details", "User permissions details" ], "default-upload-folder": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Administration\/Permissions.html#default-upload-folder", + "ApiOverview\/Fal\/Administration\/Permissions.html#fal-administration-permissions-upload-folder", "Default upload folder" ], "frontend-permissions": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Administration\/Permissions.html#frontend-permissions", + "ApiOverview\/Fal\/Administration\/Permissions.html#fal-administration-permissions-frontend", "Frontend permissions" ], "file-storages": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Administration\/Storages.html#file-storages", + "ApiOverview\/Fal\/Administration\/Storages.html#fal-administration-storages", "File storages" ], "components": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Components.html#components", + "ApiOverview\/Fal\/Architecture\/Components.html#fal-architecture-components", "Components" ], "files-and-folders": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Components.html#files-and-folders", + "ApiOverview\/Fal\/Architecture\/Components.html#fal-architecture-components-files-folders", "Files and folders" ], "file-references": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Concepts\/Index.html#file-references", + "ApiOverview\/Fal\/Concepts\/Index.html#fal-concepts-file-references", "File references" ], "storage": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Components.html#storage", + "ApiOverview\/Fal\/Architecture\/Components.html#fal-architecture-components-storage", "Storage" ], "drivers": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Components.html#drivers", + "ApiOverview\/Fal\/Architecture\/Components.html#fal-architecture-components-drivers", "Drivers" ], "the-file-index": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Components.html#the-file-index", + "ApiOverview\/Fal\/Architecture\/Components.html#fal-architecture-components-file-index", "The file index" ], "collections": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Components.html#collections", + "ApiOverview\/Fal\/Architecture\/Components.html#fal-architecture-components-collections", "Collections" ], "services": [ "TYPO3 Explained", "main", - "CodingGuidelines\/PhpArchitecture\/Services.html#services", + "PhpArchitecture\/Services.html#cgl-services", "Services" ], "database-structure": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Database.html#database-structure", + "ApiOverview\/Fal\/Architecture\/Database.html#fal-architecture-database", "Database structure" ], "sql-sys-file": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Database.html#sql-sys-file", + "ApiOverview\/Fal\/Architecture\/Database.html#fal-architecture-database-sys-file", "sys_file" ], "sql-sys-file-metadata": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Database.html#sql-sys-file-metadata", + "ApiOverview\/Fal\/Architecture\/Database.html#fal-architecture-database-sys-file-metadata", "sys_file_metadata" ], "sql-sys-file-reference": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Database.html#sql-sys-file-reference", + "ApiOverview\/Fal\/Architecture\/Database.html#fal-architecture-database-sys-file-reference", "sys_file_reference" ], "sql-sys-file-processedfile": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Database.html#sql-sys-file-processedfile", + "ApiOverview\/Fal\/Architecture\/Database.html#fal-architecture-database-sys-file-processedfile", "sys_file_processedfile" ], "sql-sys-file-collection": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Database.html#sql-sys-file-collection", + "ApiOverview\/Fal\/Architecture\/Database.html#fal-architecture-database-sys-file-collection", "sys_file_collection" ], "sql-sys-file-storage": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Database.html#sql-sys-file-storage", + "ApiOverview\/Fal\/Architecture\/Database.html#fal-architecture-database-sys-file-storage", "sys_file_storage" ], "sql-sys-filemounts": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Database.html#sql-sys-filemounts", + "ApiOverview\/Fal\/Architecture\/Database.html#fal-architecture-database-sys-filemounts", "sys_filemounts" ], "php-typo3-cms-core-resource-defaultuploadfolderresolver": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Events.html#php-typo3-cms-core-resource-defaultuploadfolderresolver", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events-default-upload-folder-resolver", "\\TYPO3\\CMS\\Core\\Resource\\DefaultUploadFolderResolver" ], "php-typo3-cms-core-resource-onlinemedia-processing-previewprocessing": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Events.html#php-typo3-cms-core-resource-onlinemedia-processing-previewprocessing", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events-preview-processing", "\\TYPO3\\CMS\\Core\\Resource\\OnlineMedia\\Processing\\PreviewProcessing" ], "php-typo3-cms-core-resource-resourcestorage": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Events.html#php-typo3-cms-core-resource-resourcestorage", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events-resource-storage", "\\TYPO3\\CMS\\Core\\Resource\\ResourceStorage" ], "php-typo3-cms-core-resource-storagerepository": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Events.html#php-typo3-cms-core-resource-storagerepository", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events-storage-repository", "\\TYPO3\\CMS\\Core\\Resource\\StorageRepository" ], "php-typo3-cms-core-resource-index-fileindexrepository": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Events.html#php-typo3-cms-core-resource-index-fileindexrepository", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events-file-index-repository", "\\TYPO3\\CMS\\Core\\Resource\\Index\\FileIndexRepository" ], "php-typo3-cms-core-resource-index-metadatarepository": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Events.html#php-typo3-cms-core-resource-index-metadatarepository", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events-metadata-repository", "\\TYPO3\\CMS\\Core\\Resource\\Index\\MetaDataRepository" ], "php-typo3-cms-core-resource-service-fileprocessingservice": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Events.html#php-typo3-cms-core-resource-service-fileprocessingservice", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events-file-processing-service", "\\TYPO3\\CMS\\Core\\Resource\\Service\\FileProcessingService" ], "php-typo3-cms-core-utility-file-extendedfileutility": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Events.html#php-typo3-cms-core-utility-file-extendedfileutility", + "ApiOverview\/Fal\/Architecture\/Events.html#fal-architecture-events-extended-file-utility", "\\TYPO3\\CMS\\Core\\Utility\\File\\ExtendedFileUtility" ], "folders": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Folders.html#folders", + "ApiOverview\/Fal\/Architecture\/Folders.html#architecture-folders", "Folders" ], "architecture": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Architecture\/Index.html#architecture", + "ApiOverview\/Fal\/Architecture\/Index.html#fal-architecture", "Architecture" ], "overview": [ "TYPO3 Explained", "main", - "Testing\/FunctionalTesting\/Introduction.html#overview", + "Testing\/FunctionalTesting\/Introduction.html#testing-writing-functional-overview", "Overview" ], "file-collections": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Collections\/Index.html#file-collections", + "ApiOverview\/Fal\/Collections\/Index.html#collections-files", "File collections" ], "collections-api": [ @@ -40045,43 +40549,43 @@ "basic-concepts": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Concepts\/Index.html#basic-concepts", + "ApiOverview\/Fal\/Concepts\/Index.html#fal-concepts", "Basic concepts" ], "storages-and-drivers": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Concepts\/Index.html#storages-and-drivers", + "ApiOverview\/Fal\/Concepts\/Index.html#fal-concepts-storages-drivers", "Storages and drivers" ], "files-and-metadata": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Concepts\/Index.html#files-and-metadata", + "ApiOverview\/Fal\/Concepts\/Index.html#fal-concepts-files-metadata", "Files and metadata" ], "file-abstraction-layer-fal": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/Index.html#file-abstraction-layer-fal", + "ApiOverview\/Fal\/Index.html#fal_introduction", "File abstraction layer (FAL)" ], "working-with-collections": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/UsingFal\/ExamplesCollection.html#working-with-collections", + "ApiOverview\/Fal\/UsingFal\/ExamplesCollection.html#fal-using-fal-examples-collections", "Working with collections" ], "working-with-files-folders-and-file-references": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#working-with-files-folders-and-file-references", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder", "Working with files, folders and file references" ], "getting-a-file": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#getting-a-file", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-get-file", "Getting a file" ], "by-uid": [ @@ -40111,61 +40615,61 @@ "copying-a-file": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#copying-a-file", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-copy-file", "Copying a file" ], "deleting-a-file": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#deleting-a-file", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-delete-file", "Deleting a file" ], "adding-a-file": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#adding-a-file", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-add-file", "Adding a file" ], "creating-a-file-reference": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#creating-a-file-reference", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-create-reference", "Creating a file reference" ], "in-backend-context": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#in-backend-context", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-create-reference-backend", "In backend context" ], "in-frontend-context": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#in-frontend-context", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-create-reference-frontend", "In frontend context" ], "getting-referenced-files": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#getting-referenced-files", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-get-references", "Getting referenced files" ], "get-files-in-a-folder": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#get-files-in-a-folder", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-list-files", "Get files in a folder" ], "dumping-a-file-via-eid-script": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#dumping-a-file-via-eid-script", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileFolder.html#fal-using-fal-examples-file-folder-eid", "Dumping a file via eID script" ], "searching-for-files": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/UsingFal\/ExamplesFileSearch.html#searching-for-files", + "ApiOverview\/Fal\/UsingFal\/ExamplesFileSearch.html#fal-using-fal-examples-file-search", "Searching for files" ], "searching-for-files-in-a-folder": [ @@ -40195,37 +40699,37 @@ "the-storagerepository-class": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/UsingFal\/ExamplesStorageRepository.html#the-storagerepository-class", + "ApiOverview\/Fal\/UsingFal\/ExamplesStorageRepository.html#fal-using-fal-examples-storage-repository", "The StorageRepository class" ], "getting-the-default-storage": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/UsingFal\/ExamplesStorageRepository.html#getting-the-default-storage", + "ApiOverview\/Fal\/UsingFal\/ExamplesStorageRepository.html#fal-using-fal-examples-storage-repository-default-storage", "Getting the default storage" ], "getting-any-storage": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/UsingFal\/ExamplesStorageRepository.html#getting-any-storage", + "ApiOverview\/Fal\/UsingFal\/ExamplesStorageRepository.html#fal-using-fal-examples-storage-repository-getting-storage", "Getting any storage" ], "using-fal-in-the-frontend": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/UsingFal\/Frontend.html#using-fal-in-the-frontend", + "ApiOverview\/Fal\/UsingFal\/Frontend.html#fal-using-fal-frontend", "Using FAL in the frontend" ], "fluid": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-custom-viewhelper-fluid", "Fluid" ], "the-imageviewhelper": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/UsingFal\/Frontend.html#the-imageviewhelper", + "ApiOverview\/Fal\/UsingFal\/Frontend.html#fal-using-fal-frontend-fluid-image", "The ImageViewHelper" ], "get-file-properties": [ @@ -40237,19 +40741,19 @@ "fluidtemplate": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/UseSiteInTypoScript.html#fluidtemplate", + "ApiOverview\/SiteHandling\/UseSiteInTypoScript.html#sitehandling-fluidtemplate", "FLUIDTEMPLATE" ], "using-fal-1": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/UsingFal\/Index.html#using-fal-1", + "ApiOverview\/Fal\/UsingFal\/Index.html#using-fal", "Using FAL" ], "tca-definition": [ "TYPO3 Explained", "main", - "ApiOverview\/Fal\/UsingFal\/Tca.html#tca-definition", + "ApiOverview\/Fal\/UsingFal\/Tca.html#fal-using-fal-tca", "TCA definition" ], "migration-from-php-extensionmanagementutility-getfilefieldtcaconfig": [ @@ -40261,31 +40765,31 @@ "custom-file-processors": [ "TYPO3 Explained", "main", - "ApiOverview\/FileProcessing\/Index.html#custom-file-processors", + "ApiOverview\/FileProcessing\/Index.html#file_processing", "Custom file processors" ], "create-a-new-processor-class": [ "TYPO3 Explained", "main", - "ApiOverview\/FileProcessing\/Index.html#create-a-new-processor-class", + "ApiOverview\/FileProcessing\/Index.html#file_processing-create", "Create a new processor class" ], "register-the-file-processor": [ "TYPO3 Explained", "main", - "ApiOverview\/FileProcessing\/Index.html#register-the-file-processor", + "ApiOverview\/FileProcessing\/Index.html#file_processing-register", "Register the file processor" ], "flash-messages-in-extbase": [ "TYPO3 Explained", "main", - "ApiOverview\/FlashMessages\/Extbase.html#flash-messages-in-extbase", + "ApiOverview\/FlashMessages\/Extbase.html#flash-messages-extbase", "Flash messages in Extbase" ], "flash-messages-api-1": [ "TYPO3 Explained", "main", - "ApiOverview\/FlashMessages\/FlashMessagesApi.html#flash-messages-api-1", + "ApiOverview\/FlashMessages\/FlashMessagesApi.html#flash-messages-api", "Flash messages API" ], "instantiate-a-flash-message": [ @@ -40309,13 +40813,13 @@ "flash-messages-1": [ "TYPO3 Explained", "main", - "ApiOverview\/FlashMessages\/Index.html#flash-messages-1", + "ApiOverview\/FlashMessages\/Index.html#flash-messages", "Flash messages" ], "javascript-based-flash-messages-notification-api": [ "TYPO3 Explained", "main", - "ApiOverview\/FlashMessages\/NotificationApi.html#javascript-based-flash-messages-notification-api", + "ApiOverview\/FlashMessages\/NotificationApi.html#notification_api", "JavaScript-based flash messages (Notification API)" ], "actions": [ @@ -40327,25 +40831,25 @@ "immediate-action": [ "TYPO3 Explained", "main", - "ApiOverview\/FlashMessages\/NotificationApi.html#immediate-action", + "ApiOverview\/FlashMessages\/NotificationApi.html#notification_api_immediate_action", "Immediate action" ], "deferred-action": [ "TYPO3 Explained", "main", - "ApiOverview\/FlashMessages\/NotificationApi.html#deferred-action", + "ApiOverview\/FlashMessages\/NotificationApi.html#notification_api_deferred_action", "Deferred action" ], "flash-messages-renderer-1": [ "TYPO3 Explained", "main", - "ApiOverview\/FlashMessages\/Render.html#flash-messages-renderer-1", + "ApiOverview\/FlashMessages\/Render.html#flash-messages-renderer", "Flash messages renderer" ], "flexforms-1": [ "TYPO3 Explained", "main", - "ApiOverview\/FlexForms\/Index.html#flexforms-1", + "ApiOverview\/FlexForms\/Index.html#flexforms", "FlexForms" ], "example-use-cases": [ @@ -40375,55 +40879,55 @@ "populate-a-select-field-with-a-php-function-itemsprocfunc": [ "TYPO3 Explained", "main", - "ApiOverview\/FlexForms\/Index.html#populate-a-select-field-with-a-php-function-itemsprocfunc", + "ApiOverview\/FlexForms\/Index.html#flexforms-itemsProcFunc", "Populate a select field with a PHP Function (itemsProcFunc)" ], "display-fields-conditionally-displaycond": [ "TYPO3 Explained", "main", - "ApiOverview\/FlexForms\/Index.html#display-fields-conditionally-displaycond", + "ApiOverview\/FlexForms\/Index.html#flexformDisplayCond", "Display fields conditionally (displayCond)" ], "reload-on-change": [ "TYPO3 Explained", "main", - "ApiOverview\/FlexForms\/Index.html#reload-on-change", + "ApiOverview\/FlexForms\/Index.html#flexformReload", "Reload on change" ], "how-to-read-flexforms-from-an-extbase-controller-action": [ "TYPO3 Explained", "main", - "ApiOverview\/FlexForms\/Index.html#how-to-read-flexforms-from-an-extbase-controller-action", + "ApiOverview\/FlexForms\/Index.html#read-flexforms-extbase", "How to read FlexForms from an Extbase controller action" ], "read-flexforms-values-in-php": [ "TYPO3 Explained", "main", - "ApiOverview\/FlexForms\/Index.html#read-flexforms-values-in-php", + "ApiOverview\/FlexForms\/Index.html#read-flexforms-php", "Read FlexForms values in PHP" ], "how-to-modify-flexforms-from-php": [ "TYPO3 Explained", "main", - "ApiOverview\/FlexForms\/Index.html#how-to-modify-flexforms-from-php", + "ApiOverview\/FlexForms\/Index.html#modify-flexforms-php", "How to modify FlexForms from PHP" ], "how-to-access-flexforms-from-typoscript": [ "TYPO3 Explained", "main", - "ApiOverview\/FlexForms\/Index.html#how-to-access-flexforms-from-typoscript", + "ApiOverview\/FlexForms\/Index.html#read-flexforms-ts", "How to access FlexForms From TypoScript" ], "providing-default-values-for-flexforms-attributes": [ "TYPO3 Explained", "main", - "ApiOverview\/FlexForms\/Index.html#providing-default-values-for-flexforms-attributes", + "ApiOverview\/FlexForms\/Index.html#default-flexforms-attribute", "Providing default values for FlexForms attributes" ], "how-to-access-flexforms-from-fluid": [ "TYPO3 Explained", "main", - "ApiOverview\/FlexForms\/Index.html#how-to-access-flexforms-from-fluid", + "ApiOverview\/FlexForms\/Index.html#read-flexforms-fluid", "How to access FlexForms from Fluid" ], "steps-to-perform-editor": [ @@ -40435,37 +40939,37 @@ "t3datastructure": [ "TYPO3 Explained", "main", - "ApiOverview\/FlexForms\/T3datastructure\/Index.html#t3datastructure", + "ApiOverview\/FlexForms\/T3datastructure\/Index.html#t3ds", "T3DataStructure" ], "elements": [ "TYPO3 Explained", "main", - "ApiOverview\/FlexForms\/T3datastructure\/Elements\/Index.html#elements", + "ApiOverview\/FlexForms\/T3datastructure\/Elements\/Index.html#t3ds-elements", "Elements" ], "elements-nesting-other-elements-array-elements": [ "TYPO3 Explained", "main", - "ApiOverview\/FlexForms\/T3datastructure\/Elements\/Index.html#elements-nesting-other-elements-array-elements", + "ApiOverview\/FlexForms\/T3datastructure\/Elements\/Index.html#t3ds-elements-array", "Elements Nesting Other Elements (\"Array\" Elements)" ], "elements-containing-values-value-elements": [ "TYPO3 Explained", "main", - "ApiOverview\/FlexForms\/T3datastructure\/Elements\/Index.html#elements-containing-values-value-elements", + "ApiOverview\/FlexForms\/T3datastructure\/Elements\/Index.html#t3ds-elements-value", "Elements Containing Values (\"Value\" Elements)" ], "parsing-a-data-structure": [ "TYPO3 Explained", "main", - "ApiOverview\/FlexForms\/T3datastructure\/Parsing\/Index.html#parsing-a-data-structure", + "ApiOverview\/FlexForms\/T3datastructure\/Parsing\/Index.html#t3ds-parsing", "Parsing a Data Structure" ], "sheet-references": [ "TYPO3 Explained", "main", - "ApiOverview\/FlexForms\/T3datastructure\/SheetReferences\/Index.html#sheet-references", + "ApiOverview\/FlexForms\/T3datastructure\/SheetReferences\/Index.html#t3ds-sheet-references", "Sheet References" ], "property-additionalattributes": [ @@ -40477,31 +40981,31 @@ "developing-a-custom-viewhelper": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#developing-a-custom-viewhelper", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-custom-viewhelper", "Developing a custom ViewHelper" ], "abstractviewhelper-implementation": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#abstractviewhelper-implementation", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-custom-viewhelper-implementation", "AbstractViewHelper implementation" ], "php-abstractviewhelper": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#php-abstractviewhelper", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-custom-viewhelper-AbstractViewHelper", "AbstractViewHelper" ], "disable-escaping-the-output": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#disable-escaping-the-output", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-viewhelper-custom-escaping-of-output", "Disable escaping the output" ], "php-initializearguments": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#php-initializearguments", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-viewhelper-custom-initializeArguments", "initializeArguments()" ], "render": [ @@ -40513,49 +41017,49 @@ "creating-html-xml-tags-with-the-php-abstracttagbasedviewhelper": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#creating-html-xml-tags-with-the-php-abstracttagbasedviewhelper", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#creating-html-tags-using-tagbasedviewhelper", "Creating HTML\/XML tags with the AbstractTagBasedViewHelper" ], "abstracttagbasedviewhelper": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#abstracttagbasedviewhelper", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#AbstractTagBasedViewHelper", "AbstractTagBasedViewHelper" ], "php-tagname": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#php-tagname", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#AbstractTagBasedViewHelper-tagname", "$tagName" ], "php-this-tag-addattribute": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#php-this-tag-addattribute", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#AbstractTagBasedViewHelper-addAttribute", "$this->tag->addAttribute()" ], "php-this-tag-render": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#php-this-tag-render", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#AbstractTagBasedViewHelper-render", "$this->tag->render()" ], "php-this-registertagattribute": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#php-this-registertagattribute", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#AbstractTagBasedViewHelper-registerTagAttribute", "$this->registerTagAttribute()" ], "migration-remove-registeruniversaltagattributes-and-registertagattribute": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#migration-remove-registeruniversaltagattributes-and-registertagattribute", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#AbstractTagBasedViewHelper-registerTagAttribute-migration", "Migration: Remove registerUniversalTagAttributes and registerTagAttribute" ], "insert-optional-arguments-with-default-values": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#insert-optional-arguments-with-default-values", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#insert-optional-arguments", "Insert optional arguments with default values" ], "prepare-viewhelper-for-inline-syntax": [ @@ -40597,19 +41101,19 @@ "migration-remove-deprecated-compliling-traits": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#migration-remove-deprecated-compliling-traits", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-custom-viewhelper-migration", "Migration: Remove deprecated compliling traits" ], "migration-remove-deprecated-trait-compilewithrenderstatic": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#migration-remove-deprecated-trait-compilewithrenderstatic", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-viewhelper-custom-renderStatic", "Migration: Remove deprecated trait CompileWithRenderStatic" ], "migration-remove-deprecated-trait-compilewithcontentargumentandrenderstatic": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#migration-remove-deprecated-trait-compilewithcontentargumentandrenderstatic", + "ApiOverview\/Fluid\/DevelopCustomViewhelper.html#fluid-custom-viewhelper-CompileWithContentArgumentAndRenderStatic-migration", "Migration: Remove deprecated trait CompileWithContentArgumentAndRenderStatic" ], "remove-calls-to-removed-renderstatic-method-of-another-viewhelper": [ @@ -40621,109 +41125,109 @@ "fluid-1": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/Index.html#fluid-1", + "ApiOverview\/Fluid\/Index.html#fluid", "Fluid" ], "introduction-to-fluid": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/Introduction.html#introduction-to-fluid", + "ApiOverview\/Fluid\/Introduction.html#fluid-introduction", "Introduction to Fluid" ], "example-fluid-snippet": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/Introduction.html#example-fluid-snippet", + "ApiOverview\/Fluid\/Introduction.html#fluid-introduction-example", "Example Fluid snippet" ], "directory-structure": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/Introduction.html#directory-structure", + "ApiOverview\/Fluid\/Introduction.html#fluid-directory-structure", "Directory structure" ], "file-templates": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/Introduction.html#file-templates", + "ApiOverview\/Fluid\/Introduction.html#fluid-templates", "Templates" ], "file-layouts": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/Introduction.html#file-layouts", + "ApiOverview\/Fluid\/Introduction.html#fluid-layouts", "Layouts" ], "file-partials": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/Introduction.html#file-partials", + "ApiOverview\/Fluid\/Introduction.html#fluid-partials", "Partials" ], "example-using-fluid-to-create-a-theme": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/Introduction.html#example-using-fluid-to-create-a-theme", + "ApiOverview\/Fluid\/Introduction.html#fluid-theme-example", "Example: Using Fluid to create a theme" ], "fluid-syntax-1": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/Syntax.html#fluid-syntax-1", + "ApiOverview\/Fluid\/Syntax.html#fluid-syntax", "Fluid syntax" ], "variables": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/Syntax.html#variables", + "ApiOverview\/Fluid\/Syntax.html#fluid-variables", "Variables" ], "reserved-variables-in-fluid": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/Syntax.html#reserved-variables-in-fluid", + "ApiOverview\/Fluid\/Syntax.html#fluid-variables-reserved", "Reserved variables in Fluid" ], "boolean-values": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/Syntax.html#boolean-values", + "ApiOverview\/Fluid\/Syntax.html#fluid-boolean", "Boolean values" ], "arrays-and-objects": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/Syntax.html#arrays-and-objects", + "ApiOverview\/Fluid\/Syntax.html#fluid-arrays", "Arrays and objects" ], "accessing-dynamic-keys-properties": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/Syntax.html#accessing-dynamic-keys-properties", + "ApiOverview\/Fluid\/Syntax.html#fluid-dynamic-properties", "Accessing dynamic keys\/properties" ], "viewhelpers": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/Syntax.html#viewhelpers", + "ApiOverview\/Fluid\/Syntax.html#fluid-syntax-viewhelpers", "ViewHelpers" ], "import-viewhelper-namespaces": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/Syntax.html#import-viewhelper-namespaces", + "ApiOverview\/Fluid\/Syntax.html#fluid-syntax-viewhelpers-import-namespaces", "Import ViewHelper namespaces" ], "viewhelper-attributes": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/Syntax.html#viewhelper-attributes", + "ApiOverview\/Fluid\/Syntax.html#fluid-viewhelper-attributes", "ViewHelper attributes" ], "simple": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/Syntax.html#simple", + "ApiOverview\/Fluid\/Syntax.html#fluid-viewhelper-attributes-simple", "Simple" ], "fluid-inline-notation": [ @@ -40735,7 +41239,7 @@ "boolean-conditions": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/Syntax.html#boolean-conditions", + "ApiOverview\/Fluid\/Syntax.html#fluid-syntax-boolean-conditions", "Boolean conditions" ], "comments": [ @@ -40747,13 +41251,13 @@ "using-fluid-in-typo3": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/UsingFluidInTypo3.html#using-fluid-in-typo3", + "ApiOverview\/Fluid\/UsingFluidInTypo3.html#fluid-usage-in-typo3", "Using Fluid in TYPO3" ], "using-the-generic-view-factory-viewfactoryinterface": [ "TYPO3 Explained", "main", - "ApiOverview\/Fluid\/UsingFluidInTypo3.html#using-the-generic-view-factory-viewfactoryinterface", + "ApiOverview\/Fluid\/UsingFluidInTypo3.html#generic-view-factory", "Using the generic view factory (ViewFactoryInterface)" ], "cobject-viewhelper": [ @@ -40765,7 +41269,7 @@ "data-compiling": [ "TYPO3 Explained", "main", - "ApiOverview\/FormEngine\/DataCompiling\/Index.html#data-compiling", + "ApiOverview\/FormEngine\/DataCompiling\/Index.html#FormEngine-DataCompiling", "Data compiling" ], "data-groups-and-providers": [ @@ -40795,37 +41299,37 @@ "formengine": [ "TYPO3 Explained", "main", - "ApiOverview\/FormEngine\/Index.html#formengine", + "ApiOverview\/FormEngine\/Index.html#FormEngine", "FormEngine" ], "main-rendering-workflow": [ "TYPO3 Explained", "main", - "ApiOverview\/FormEngine\/Overview\/Index.html#main-rendering-workflow", + "ApiOverview\/FormEngine\/Overview\/Index.html#FormEngine-Overview", "Main rendering workflow" ], "rendering": [ "TYPO3 Explained", "main", - "ApiOverview\/FormEngine\/Rendering\/Index.html#rendering", + "ApiOverview\/FormEngine\/Rendering\/Index.html#FormEngine-Rendering", "Rendering" ], "class-inheritance": [ "TYPO3 Explained", "main", - "ApiOverview\/FormEngine\/Rendering\/Index.html#class-inheritance", + "ApiOverview\/FormEngine\/Rendering\/Index.html#FormEngine-Rendering-ClassInheritance", "Class Inheritance" ], "nodefactory": [ "TYPO3 Explained", "main", - "ApiOverview\/FormEngine\/Rendering\/Index.html#nodefactory", + "ApiOverview\/FormEngine\/Rendering\/Index.html#FormEngine-Rendering-NodeFactory", "NodeFactory" ], "result-array": [ "TYPO3 Explained", "main", - "ApiOverview\/FormEngine\/Rendering\/Index.html#result-array", + "ApiOverview\/FormEngine\/Rendering\/Index.html#FormEngine-Rendering-ResultArray", "Result Array" ], "adding-javascript-modules": [ @@ -40837,7 +41341,7 @@ "node-expansion": [ "TYPO3 Explained", "main", - "ApiOverview\/FormEngine\/Rendering\/Index.html#node-expansion", + "ApiOverview\/FormEngine\/Rendering\/Index.html#FormEngine-Rendering-NodeExpansion", "Node Expansion" ], "add-fieldcontrol-example": [ @@ -40849,13 +41353,13 @@ "form-protection-tool": [ "TYPO3 Explained", "main", - "ApiOverview\/FormProtection\/Index.html#form-protection-tool", + "ApiOverview\/FormProtection\/Index.html#csrf-backend", "Form protection tool" ], "constants": [ "TYPO3 Explained", "main", - "ApiOverview\/GlobalValues\/Constants\/Index.html#constants", + "ApiOverview\/GlobalValues\/Constants\/Index.html#globals-constants", "Constants" ], "security-related-constant": [ @@ -40873,7 +41377,7 @@ "file-types": [ "TYPO3 Explained", "main", - "ApiOverview\/GlobalValues\/Constants\/Index.html#file-types", + "ApiOverview\/GlobalValues\/Constants\/Index.html#globals-constants-file-types", "File types" ], "http-status-codes": [ @@ -40885,13 +41389,13 @@ "global-values": [ "TYPO3 Explained", "main", - "ApiOverview\/GlobalValues\/Index.html#global-values", + "ApiOverview\/GlobalValues\/Index.html#globals-values", "Global values" ], "icon-api": [ "TYPO3 Explained", "main", - "ApiOverview\/Icon\/Index.html#icon-api", + "ApiOverview\/Icon\/Index.html#icon", "Icon API" ], "icon-provider": [ @@ -40903,7 +41407,7 @@ "using-icons-in-your-code": [ "TYPO3 Explained", "main", - "ApiOverview\/Icon\/Index.html#using-icons-in-your-code", + "ApiOverview\/Icon\/Index.html#icon-usage", "Using icons in your code" ], "the-php-way": [ @@ -40933,13 +41437,13 @@ "api-a-z": [ "TYPO3 Explained", "main", - "ApiOverview\/Index.html#api-a-z", + "ApiOverview\/Index.html#api", "API A-Z" ], "link-handler-configuration-1": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/Configuration.html#link-handler-configuration-1", + "ApiOverview\/LinkHandling\/Configuration.html#link-handler-configuration", "Link handler configuration" ], "record-link-handler-configuration": [ @@ -40957,13 +41461,13 @@ "core-link-handler-1": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/CoreLinkHandler.html#core-link-handler-1", + "ApiOverview\/LinkHandling\/CoreLinkHandler.html#core-link-handler", "Core link handler" ], "linkbrowser-api-1": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/LinkBrowserApi\/Index.html#linkbrowser-api-1", + "ApiOverview\/LinkHandling\/LinkBrowserApi\/Index.html#LinkBrowser", "LinkBrowser API" ], "description": [ @@ -40975,43 +41479,43 @@ "tab-registration": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/LinkBrowserApi\/Index.html#tab-registration", + "ApiOverview\/LinkHandling\/LinkBrowserApi\/Index.html#linkbrowser-api-tab-registration", "Tab registration" ], "frontend-link-builder": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/LinkBuilder.html#frontend-link-builder", + "ApiOverview\/LinkHandling\/LinkBuilder.html#link-builder", "Frontend link builder" ], "implementing-a-custom-linkhandler": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/Linkhandler\/CustomLinkHandlers.html#implementing-a-custom-linkhandler", + "ApiOverview\/LinkHandling\/Linkhandler\/CustomLinkHandlers.html#customlinkhandler", "Implementing a custom LinkHandler" ], "implementing-the-linkhandler": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/Linkhandler\/CustomLinkHandlers.html#implementing-the-linkhandler", + "ApiOverview\/LinkHandling\/Linkhandler\/CustomLinkHandlers.html#customlinkhandler-implementation", "Implementing the LinkHandler" ], "events-to-modify-link-handler": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/Linkhandler\/Events.html#events-to-modify-link-handler", + "ApiOverview\/LinkHandling\/Linkhandler\/Events.html#modifyLinkHandlers", "Events to modify link handler" ], "the-linkhandler-api": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/Linkhandler\/Index.html#the-linkhandler-api", + "ApiOverview\/LinkHandling\/Linkhandler\/Index.html#linkhandler", "The LinkHandler API" ], "linkhandler-page-tsconfig-options": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/Linkhandler\/Index.html#linkhandler-page-tsconfig-options", + "ApiOverview\/LinkHandling\/Linkhandler\/Index.html#linkhandler-pagetsconfig", "LinkHandler page TSconfig options" ], "example-news-records-from-one-storage-pid": [ @@ -41023,7 +41527,7 @@ "linkhandler-typoscript-options": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/Linkhandler\/RecordLinkHandler.html#linkhandler-typoscript-options", + "ApiOverview\/LinkHandling\/Linkhandler\/RecordLinkHandler.html#linkhandler-typoscript_options", "LinkHandler TypoScript options" ], "example-news-records-displayed-on-fixed-detail-page": [ @@ -41035,7 +41539,7 @@ "the-pagelinkhandler": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/Linkhandler\/PageLinkHandler.html#the-pagelinkhandler", + "ApiOverview\/LinkHandling\/Linkhandler\/PageLinkHandler.html#pagelinkhandler", "The PageLinkHandler" ], "enable-direct-input-of-the-page-id": [ @@ -41047,31 +41551,31 @@ "the-recordlinkhandler": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/Linkhandler\/RecordLinkHandler.html#the-recordlinkhandler", + "ApiOverview\/LinkHandling\/Linkhandler\/RecordLinkHandler.html#recordlinkhandler", "The RecordLinkHandler" ], "recordlinkhandler-page-tsconfig-options": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/Linkhandler\/RecordLinkHandler.html#recordlinkhandler-page-tsconfig-options", + "ApiOverview\/LinkHandling\/Linkhandler\/RecordLinkHandler.html#linkhandler-pagetsconfig_options", "RecordLinkHandler page TSconfig options" ], "create-a-custom-link-browser": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#create-a-custom-link-browser", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial-github-link-handler", "Create a custom link browser" ], "1-register-the-custom-link-browser-tab-in-page-tsconfig": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#1-register-the-custom-link-browser-tab-in-page-tsconfig", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial_backend_link_handler-tsconfig", "1. Register the custom link browser tab in page TSconfig" ], "2-create-a-link-browser-tab": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#2-create-a-link-browser-tab", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial_backend_link_handler", "2. Create a link browser tab" ], "initialization-and-dependencies": [ @@ -41089,49 +41593,49 @@ "render-the-link-browser-tab": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#render-the-link-browser-tab", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial_backend_link_handler_render", "Render the link browser tab" ], "set-the-link-via-javascript": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#set-the-link-via-javascript", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial_backend_link_handler_javascript", "Set the link via JavaScript" ], "can-we-handle-this-link": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#can-we-handle-this-link", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial_backend_link_handler_canHandleLink", "Can we handle this link?" ], "format-current-url": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#format-current-url", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial_backend_link_handler_formatCurrentUrl", "Format current URL" ], "3-introduce-the-custom-link-format": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#3-introduce-the-custom-link-format", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial-core-link-handler", "3. Introduce the custom link format" ], "4-render-the-custom-link-format-in-the-frontend": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#4-render-the-custom-link-format-in-the-frontend", + "ApiOverview\/LinkHandling\/Tutorials\/CustomLinkBrowser.html#tutorial-typolink-builder", "4. Render the custom link format in the frontend" ], "linkbrowser-tutorials": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/Tutorials\/Index.html#linkbrowser-tutorials", + "ApiOverview\/LinkHandling\/Tutorials\/Index.html#LinkBrowserTutorials", "LinkBrowser Tutorials" ], "browse-records-of-a-table": [ "TYPO3 Explained", "main", - "ApiOverview\/LinkHandling\/Tutorials\/RecordLinkBrowser.html#browse-records-of-a-table", + "ApiOverview\/LinkHandling\/Tutorials\/RecordLinkBrowser.html#TableRecordLinkBrowserTutorials", "Browse records of a table" ], "backend-configure-the-link-browser-with-page-tsconfig": [ @@ -41149,13 +41653,13 @@ "localization-1": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/Index.html#localization-1", + "ApiOverview\/Localization\/Index.html#localization", "Localization" ], "supported-languages": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/Languages.html#supported-languages", + "ApiOverview\/Localization\/Languages.html#i18n_languages", "Supported languages" ], "localization-api": [ @@ -41167,7 +41671,7 @@ "languageservice": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/LocalizationApi\/LanguageService.html#languageservice", + "ApiOverview\/Localization\/LocalizationApi\/LanguageService.html#LanguageService-api", "LanguageService" ], "example-use": [ @@ -41179,55 +41683,55 @@ "languageservicefactory": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/LocalizationApi\/LanguageServiceFactory.html#languageservicefactory", + "ApiOverview\/Localization\/LocalizationApi\/LanguageServiceFactory.html#LanguageServiceFactory-api", "LanguageServiceFactory" ], "locale": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/LocalizationApi\/Locale.html#locale", + "ApiOverview\/Localization\/LocalizationApi\/Locale.html#Locale-api", "Locale" ], "localizationutility-extbase": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/LocalizationApi\/LocalizationUtility.html#localizationutility-extbase", + "ApiOverview\/Localization\/LocalizationApi\/LocalizationUtility.html#extbase-localization-utility-api", "LocalizationUtility (Extbase)" ], "managing-translations": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/ManagingTranslations.html#managing-translations", + "ApiOverview\/Localization\/ManagingTranslations.html#managing-translating", "Managing translations" ], "fetching-translations": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/ManagingTranslations.html#fetching-translations", + "ApiOverview\/Localization\/ManagingTranslations.html#xliff-translating-fetch", "Fetching translations" ], "local-translations": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/ManagingTranslations.html#local-translations", + "ApiOverview\/Localization\/ManagingTranslations.html#xliff-translating-local", "Local translations" ], "custom-translations": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/ManagingTranslations.html#custom-translations", + "ApiOverview\/Localization\/ManagingTranslations.html#xliff-translating-custom", "Custom translations" ], "custom-languages": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/ManagingTranslations.html#custom-languages", + "ApiOverview\/Localization\/ManagingTranslations.html#xliff-translating-languages", "Custom languages" ], "extension-integration": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#extension-integration", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#crowdin-extension-integration", "Extension integration" ], "integration": [ @@ -41239,31 +41743,31 @@ "step-by-step-instructions-for-github": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#step-by-step-instructions-for-github", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#crowdin-extension-integration-github", "Step-by-step instructions for GitHub" ], "step-1-create-a-crowdin-configuration-file": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#step-1-create-a-crowdin-configuration-file", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#crowdin-extension-integration-github-crowdin-config", "Step 1: Create a Crowdin configuration file" ], "step-2-configure-the-github-integration": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#step-2-configure-the-github-integration", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#crowdin-extension-integration-github-configure", "Step 2: Configure the GitHub integration" ], "step-3-import-existing-translations": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#step-3-import-existing-translations", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/ExtensionIntegration.html#crowdin-extension-integration-github-import", "Step 3: Import existing translations" ], "frequently-asked-questions-faq": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#frequently-asked-questions-faq", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq", "Frequently asked questions (FAQ)" ], "general-questions": [ @@ -41275,25 +41779,25 @@ "my-favorite-extension-is-not-available-on-crowdin": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#my-favorite-extension-is-not-available-on-crowdin", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq-extension-missing", "My favorite extension is not available on Crowdin" ], "my-favorite-language-is-not-available-for-an-extension": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#my-favorite-language-is-not-available-for-an-extension", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq-extension-language-missing", "My favorite language is not available for an extension" ], "will-the-old-translation-server-be-disabled": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#will-the-old-translation-server-be-disabled", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq-pootle", "Will the old translation server be disabled?" ], "how-to-convert-to-the-new-language-xliff-file-format": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#how-to-convert-to-the-new-language-xliff-file-format", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq-language-xlf-format", "How to convert to the new language XLIFF file format" ], "questions-about-extension-integration": [ @@ -41305,31 +41809,31 @@ "why-does-crowdin-show-me-translations-in-source-language": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#why-does-crowdin-show-me-translations-in-source-language", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq-duplicated-labels", "Why does Crowdin show me translations in source language?" ], "can-i-upload-translated-xliff-files": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#can-i-upload-translated-xliff-files", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq-upload-xliff-files", "Can I upload translated XLIFF files?" ], "how-can-i-disable-the-pushing-of-changes": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#how-can-i-disable-the-pushing-of-changes", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq-disable-push-changes", "How can I disable the pushing of changes?" ], "how-can-i-migrate-translations-from-pootle": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#how-can-i-migrate-translations-from-pootle", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#migrate-from-pootle", "How can I migrate translations from Pootle?" ], "crowdin-yml-crowdin-yml-or-crowdin-yaml": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-yml-crowdin-yml-or-crowdin-yaml", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/Faq.html#crowdin-faq-crowdin-yml", "crowdin.yml, .crowdin.yml or crowdin.yaml?" ], "questions-about-typo3-core-integration": [ @@ -41347,7 +41851,7 @@ "online-translation-with-crowdin": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/TranslationServer\/Crowdin\/OnlineTranslation.html#online-translation-with-crowdin", + "ApiOverview\/Localization\/TranslationServer\/Crowdin\/OnlineTranslation.html#crowdin-crowdin-translation", "Online translation with Crowdin" ], "getting-started": [ @@ -41443,7 +41947,7 @@ "localization-with-crowdin": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/TranslationServer\/Crowdin.html#localization-with-crowdin", + "ApiOverview\/Localization\/TranslationServer\/Crowdin.html#xliff-translating-server-crowdin", "Localization with Crowdin" ], "what-is-crowdin": [ @@ -41467,19 +41971,19 @@ "custom-translation-servers": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/TranslationServer\/Custom.html#custom-translation-servers", + "ApiOverview\/Localization\/TranslationServer\/Custom.html#custom-translation-server", "Custom translation servers" ], "translation-servers": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/TranslationServer\/Index.html#translation-servers", + "ApiOverview\/Localization\/TranslationServer\/Index.html#xliff-translating-servers", "Translation servers" ], "working-with-xliff-files": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/XliffApi.html#working-with-xliff-files", + "ApiOverview\/Localization\/XliffApi.html#xliff_api", "Working with XLIFF files" ], "access-labels": [ @@ -41503,31 +42007,31 @@ "xliff-format": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/XliffFormat.html#xliff-format", + "ApiOverview\/Localization\/XliffFormat.html#xliff", "XLIFF Format" ], "basics": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/XliffFormat.html#basics", + "ApiOverview\/Localization\/XliffFormat.html#xliff-basics", "Basics" ], "file-locations-and-naming": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/XliffFormat.html#file-locations-and-naming", + "ApiOverview\/Localization\/XliffFormat.html#xliff-files", "File locations and naming" ], "id-naming": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/XliffFormat.html#id-naming", + "ApiOverview\/Localization\/XliffFormat.html#xliff-id-naming", "ID naming" ], "separate-by-dots": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/XliffFormat.html#separate-by-dots", + "ApiOverview\/Localization\/XliffFormat.html#xliff-id-naming-dots", "Separate by dots" ], "namespace": [ @@ -41539,13 +42043,13 @@ "lowercamelcase": [ "TYPO3 Explained", "main", - "ApiOverview\/Localization\/XliffFormat.html#lowercamelcase", + "ApiOverview\/Localization\/XliffFormat.html#xliff-id-naming-lower-camel", "lowerCamelCase" ], "locking-api-1": [ "TYPO3 Explained", "main", - "ApiOverview\/LockingApi\/Index.html#locking-api-1", + "ApiOverview\/LockingApi\/Index.html#locking-api", "Locking API" ], "locking-strategies": [ @@ -41575,13 +42079,13 @@ "extend-locking-in-extensions": [ "TYPO3 Explained", "main", - "ApiOverview\/LockingApi\/Index.html#extend-locking-in-extensions", + "ApiOverview\/LockingApi\/Index.html#use-locking-api-in-extensions", "Extend locking in Extensions" ], "caveats": [ "TYPO3 Explained", "main", - "ApiOverview\/LockingApi\/Index.html#caveats", + "ApiOverview\/LockingApi\/Index.html#locking-api-caveats", "Caveats" ], "filelockstrategy-nfs": [ @@ -41599,61 +42103,61 @@ "related-information": [ "TYPO3 Explained", "main", - "ApiOverview\/LockingApi\/Index.html#related-information", + "ApiOverview\/LockingApi\/Index.html#locking-api-more-info", "Related Information" ], "configuration-of-the-logging-system": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Configuration\/Index.html#configuration-of-the-logging-system", + "ApiOverview\/Logging\/Configuration\/Index.html#logging-configuration", "Configuration of the logging system" ], "writer-configuration": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Configuration\/Index.html#writer-configuration", + "ApiOverview\/Logging\/Configuration\/Index.html#logging-configuration-writer", "Writer configuration" ], "processor-configuration": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Configuration\/Index.html#processor-configuration", + "ApiOverview\/Logging\/Configuration\/Index.html#logging-configuration-processor", "Processor configuration" ], "disable-all-logging": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Configuration\/Index.html#disable-all-logging", + "ApiOverview\/Logging\/Configuration\/Index.html#logging-configuration-disable", "Disable all logging" ], "logging-1": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Index.html#logging-1", + "ApiOverview\/Logging\/Index.html#logging", "Logging" ], "logger": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Logger\/Index.html#logger", + "ApiOverview\/Logging\/Logger\/Index.html#logging-logger", "Logger" ], "the-log-method": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Logger\/Index.html#the-log-method", + "ApiOverview\/Logging\/Logger\/Index.html#logging-logger-log", "The log() method" ], "log-levels-and-shorthand-methods": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Logger\/Index.html#log-levels-and-shorthand-methods", + "ApiOverview\/Logging\/Logger\/Index.html#logging-logger-shortcuts", "Log levels and shorthand methods" ], "channels": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Logger\/Index.html#channels", + "ApiOverview\/Logging\/Logger\/Index.html#logging-channels", "Channels" ], "using-the-channel": [ @@ -41695,61 +42199,61 @@ "the-logrecord-model": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Model\/Index.html#the-logrecord-model", + "ApiOverview\/Logging\/Model\/Index.html#logging-model", "The LogRecord model" ], "log-processors": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Processors\/Index.html#log-processors", + "ApiOverview\/Logging\/Processors\/Index.html#logging-processors", "Log processors" ], "built-in-log-processors": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Processors\/Index.html#built-in-log-processors", + "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-builtin", "Built-in log processors" ], "introspectionprocessor": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Processors\/Index.html#introspectionprocessor", + "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-introspection", "IntrospectionProcessor" ], "memoryusageprocessor": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Processors\/Index.html#memoryusageprocessor", + "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-memory", "MemoryUsageProcessor" ], "memorypeakusageprocessor": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Processors\/Index.html#memorypeakusageprocessor", + "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-memory-peak", "MemoryPeakUsageProcessor" ], "webprocessor": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Processors\/Index.html#webprocessor", + "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-web", "WebProcessor" ], "custom-log-processors": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Processors\/Index.html#custom-log-processors", + "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-custom", "Custom log processors" ], "quickstart": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Quickstart\/Index.html#quickstart", + "ApiOverview\/Logging\/Quickstart\/Index.html#logging-quickstart", "Quickstart" ], "instantiate-a-logger-for-the-current-class": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Quickstart\/Index.html#instantiate-a-logger-for-the-current-class", + "ApiOverview\/Logging\/Quickstart\/Index.html#logging-quicksart-instantiate-logger", "Instantiate a logger for the current class" ], "set-logging-output": [ @@ -41761,61 +42265,61 @@ "log-writers": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Writers\/Index.html#log-writers", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers", "Log writers" ], "built-in-log-writers": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Writers\/Index.html#built-in-log-writers", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers-builtin", "Built-in log writers" ], "databasewriter": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Writers\/Index.html#databasewriter", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers-database", "DatabaseWriter" ], "filewriter": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Writers\/Index.html#filewriter", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers-FileWriter", "FileWriter" ], "rotatingfilewriter": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Writers\/Index.html#rotatingfilewriter", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers-RotatingFileWriter", "RotatingFileWriter" ], "phperrorlogwriter": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Writers\/Index.html#phperrorlogwriter", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers-php", "PhpErrorLogWriter" ], "syslogwriter": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Writers\/Index.html#syslogwriter", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers-syslog", "SyslogWriter" ], "custom-log-writers": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Writers\/Index.html#custom-log-writers", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers-custom", "Custom log writers" ], "usage-in-a-custom-class": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Writers\/Index.html#usage-in-a-custom-class", + "ApiOverview\/Logging\/Writers\/Index.html#logging-writers-usage", "Usage in a custom class" ], "mail-api": [ "TYPO3 Explained", "main", - "ApiOverview\/Mail\/Index.html#mail-api", + "ApiOverview\/Mail\/Index.html#mail", "Mail API" ], "format": [ @@ -41827,49 +42331,55 @@ "fluid-paths": [ "TYPO3 Explained", "main", - "ApiOverview\/Mail\/Index.html#fluid-paths", + "ApiOverview\/Mail\/Index.html#mail-configuration-fluid", "Fluid paths" ], + "minimal-example-for-a-fluid-based-email-template": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Mail\/Index.html#mail-configuration-fluid-example", + "Minimal example for a Fluid-based email template" + ], "transport": [ "TYPO3 Explained", "main", - "ApiOverview\/Mail\/Index.html#transport", + "ApiOverview\/Mail\/Index.html#mail-configuration-transport", "transport" ], "smtp": [ "TYPO3 Explained", "main", - "ApiOverview\/Mail\/Index.html#smtp", + "ApiOverview\/Mail\/Index.html#mail-configuration-smtp", "smtp" ], "sendmail": [ "TYPO3 Explained", "main", - "ApiOverview\/Mail\/Index.html#sendmail", + "ApiOverview\/Mail\/Index.html#mail-configuration-sendmail", "sendmail" ], "mbox": [ "TYPO3 Explained", "main", - "ApiOverview\/Mail\/Index.html#mbox", + "ApiOverview\/Mail\/Index.html#mail-configuration-mbox", "mbox" ], "classname": [ "TYPO3 Explained", "main", - "ApiOverview\/Mail\/Index.html#classname", + "ApiOverview\/Mail\/Index.html#mail-configuration-classname", "<classname>" ], "validators": [ "TYPO3 Explained", "main", - "ApiOverview\/Mail\/Index.html#validators", + "ApiOverview\/Mail\/Index.html#mail-validators", "Validators" ], "spooling": [ "TYPO3 Explained", "main", - "ApiOverview\/Mail\/Index.html#spooling", + "ApiOverview\/Mail\/Index.html#mail-spooling", "Spooling" ], "spooling-in-memory": [ @@ -41893,49 +42403,49 @@ "how-to-create-and-send-emails": [ "TYPO3 Explained", "main", - "ApiOverview\/Mail\/Index.html#how-to-create-and-send-emails", + "ApiOverview\/Mail\/Index.html#mail-create", "How to create and send emails" ], "send-email-with-fluidemail": [ "TYPO3 Explained", "main", - "ApiOverview\/Mail\/Index.html#send-email-with-fluidemail", + "ApiOverview\/Mail\/Index.html#mail-fluid-email", "Send email with FluidEmail" ], "set-the-current-request-object-for-fluidemail": [ "TYPO3 Explained", "main", - "ApiOverview\/Mail\/Index.html#set-the-current-request-object-for-fluidemail", + "ApiOverview\/Mail\/Index.html#mail-fluid-email-set-request", "Set the current request object for FluidEmail" ], "send-email-with-mailmessage": [ "TYPO3 Explained", "main", - "ApiOverview\/Mail\/Index.html#send-email-with-mailmessage", + "ApiOverview\/Mail\/Index.html#mail-mail-message", "Send email with MailMessage" ], "how-to-add-attachments": [ "TYPO3 Explained", "main", - "ApiOverview\/Mail\/Index.html#how-to-add-attachments", + "ApiOverview\/Mail\/Index.html#mail-attachments", "How to add attachments" ], "how-to-add-inline-media": [ "TYPO3 Explained", "main", - "ApiOverview\/Mail\/Index.html#how-to-add-inline-media", + "ApiOverview\/Mail\/Index.html#mail-inline", "How to add inline media" ], "how-to-set-and-use-a-default-sender": [ "TYPO3 Explained", "main", - "ApiOverview\/Mail\/Index.html#how-to-set-and-use-a-default-sender", + "ApiOverview\/Mail\/Index.html#mail-sender", "How to set and use a default sender" ], "register-a-custom-mailer": [ "TYPO3 Explained", "main", - "ApiOverview\/Mail\/Index.html#register-a-custom-mailer", + "ApiOverview\/Mail\/Index.html#register-custom-mailer", "Register a custom mailer" ], "psr-14-events-on-sending-messages": [ @@ -41947,13 +42457,13 @@ "symfony-mail-documentation": [ "TYPO3 Explained", "main", - "ApiOverview\/Mail\/Index.html#symfony-mail-documentation", + "ApiOverview\/Mail\/Index.html#mail-symfony-mime", "Symfony mail documentation" ], "message-bus-1": [ "TYPO3 Explained", "main", - "ApiOverview\/MessageBus\/Index.html#message-bus-1", + "ApiOverview\/MessageBus\/Index.html#message-bus", "Message bus" ], "everyday-usage-as-a-developer": [ @@ -41971,19 +42481,19 @@ "register-a-handler": [ "TYPO3 Explained", "main", - "ApiOverview\/MessageBus\/Index.html#register-a-handler", + "ApiOverview\/MessageBus\/Index.html#message-bus-handler", "Register a handler" ], "everyday-usage-as-a-system-administrator-integrator": [ "TYPO3 Explained", "main", - "ApiOverview\/MessageBus\/Index.html#everyday-usage-as-a-system-administrator-integrator", + "ApiOverview\/MessageBus\/Index.html#message-bus-routing", "\"Everyday\" usage - as a system administrator\/integrator" ], "async-message-handling-the-consume-command": [ "TYPO3 Explained", "main", - "ApiOverview\/MessageBus\/Index.html#async-message-handling-the-consume-command", + "ApiOverview\/MessageBus\/Index.html#message-bus-consume-command", "Async message handling - The consume command" ], "advanced-usage": [ @@ -41995,7 +42505,7 @@ "configure-a-custom-transport-senders-receivers": [ "TYPO3 Explained", "main", - "ApiOverview\/MessageBus\/Index.html#configure-a-custom-transport-senders-receivers", + "ApiOverview\/MessageBus\/Index.html#message-bus-custom-transport", "Configure a custom transport (Senders\/Receivers)" ], "inmemorytransport-for-testing": [ @@ -42013,7 +42523,7 @@ "mount-points": [ "TYPO3 Explained", "main", - "ApiOverview\/MountPoints\/Index.html#mount-points", + "ApiOverview\/MountPoints\/Index.html#MountPoints", "Mount points" ], "simple-usage-example": [ @@ -42031,7 +42541,7 @@ "limitations": [ "TYPO3 Explained", "main", - "ApiOverview\/Xclasses\/Index.html#limitations", + "ApiOverview\/Xclasses\/Index.html#xclasses-limitations", "Limitations" ], "see-also": [ @@ -42043,37 +42553,37 @@ "namespaces-1": [ "TYPO3 Explained", "main", - "ApiOverview\/Namespaces\/Index.html#namespaces-1", + "ApiOverview\/Namespaces\/Index.html#namespaces", "Namespaces" ], "core-example": [ "TYPO3 Explained", "main", - "ApiOverview\/Namespaces\/Index.html#core-example", + "ApiOverview\/Namespaces\/Index.html#namespaces-example", "Core example" ], "usage-in-extensions": [ "TYPO3 Explained", "main", - "ApiOverview\/Namespaces\/Index.html#usage-in-extensions", + "ApiOverview\/Namespaces\/Index.html#namespaces-extensions", "Usage in extensions" ], "namespaces-in-extbase": [ "TYPO3 Explained", "main", - "ApiOverview\/Namespaces\/Index.html#namespaces-in-extbase", + "ApiOverview\/Namespaces\/Index.html#namespaces-extbase", "Namespaces in Extbase" ], "namespaces-for-test-classes": [ "TYPO3 Explained", "main", - "ApiOverview\/Namespaces\/Index.html#namespaces-for-test-classes", + "ApiOverview\/Namespaces\/Index.html#namespaces-test", "Namespaces for test classes" ], "creating-instances": [ "TYPO3 Explained", "main", - "ApiOverview\/Namespaces\/Index.html#creating-instances", + "ApiOverview\/Namespaces\/Index.html#namespaces-instances", "Creating Instances" ], "include-and-required": [ @@ -42085,19 +42595,19 @@ "references": [ "TYPO3 Explained", "main", - "ApiOverview\/SessionStorageFramework\/SessionStorage.html#references", + "ApiOverview\/SessionStorageFramework\/SessionStorage.html#sessions-references", "References" ], "create-new-page-type": [ "TYPO3 Explained", "main", - "ApiOverview\/PageTypes\/CreateNewPageType.html#create-new-page-type", + "ApiOverview\/PageTypes\/CreateNewPageType.html#page-types-example", "Create new Page Type" ], "page-types-1": [ "TYPO3 Explained", "main", - "ApiOverview\/PageTypes\/Index.html#page-types-1", + "ApiOverview\/PageTypes\/Index.html#page-types", "Page types" ], "the-globals-page-types-array": [ @@ -42115,13 +42625,13 @@ "types-of-pages": [ "TYPO3 Explained", "main", - "ApiOverview\/PageTypes\/TypesOfPages.html#types-of-pages", + "ApiOverview\/PageTypes\/TypesOfPages.html#list-of-page-types", "Types of pages" ], "pagination-1": [ "TYPO3 Explained", "main", - "ApiOverview\/Pagination\/Index.html#pagination-1", + "ApiOverview\/Pagination\/Index.html#pagination", "Pagination" ], "sliding-window-pagination": [ @@ -42133,43 +42643,43 @@ "parsing-html-1": [ "TYPO3 Explained", "main", - "ApiOverview\/ParsingHtml\/Index.html#parsing-html-1", + "ApiOverview\/ParsingHtml\/Index.html#parsing-html", "Parsing HTML" ], "extracting-blocks-from-an-html-document": [ "TYPO3 Explained", "main", - "ApiOverview\/ParsingHtml\/Index.html#extracting-blocks-from-an-html-document", + "ApiOverview\/ParsingHtml\/Index.html#parsing-html-extraction-blocks", "Extracting Blocks From an HTML Document" ], "extracting-single-tags": [ "TYPO3 Explained", "main", - "ApiOverview\/ParsingHtml\/Index.html#extracting-single-tags", + "ApiOverview\/ParsingHtml\/Index.html#parsing-html-extraction-single", "Extracting Single Tags" ], "cleaning-html-content": [ "TYPO3 Explained", "main", - "ApiOverview\/ParsingHtml\/Index.html#cleaning-html-content", + "ApiOverview\/ParsingHtml\/Index.html#parsing-html-cleanup", "Cleaning HTML Content" ], "advanced-processing": [ "TYPO3 Explained", "main", - "ApiOverview\/ParsingHtml\/Index.html#advanced-processing", + "ApiOverview\/ParsingHtml\/Index.html#parsing-html-advanced", "Advanced Processing" ], "password-hashing-1": [ "TYPO3 Explained", "main", - "ApiOverview\/PasswordHashing\/Index.html#password-hashing-1", + "ApiOverview\/PasswordHashing\/Index.html#password-hashing", "Password hashing" ], "basic-knowledge": [ "TYPO3 Explained", "main", - "ApiOverview\/PasswordHashing\/Index.html#basic-knowledge", + "ApiOverview\/PasswordHashing\/Index.html#password-hashing-basic-knowledge", "Basic knowledge" ], "what-does-it-look-like": [ @@ -42187,7 +42697,7 @@ "available-hash-algorithms": [ "TYPO3 Explained", "main", - "ApiOverview\/PasswordHashing\/Index.html#available-hash-algorithms", + "ApiOverview\/PasswordHashing\/Index.html#password-hashing-available-algorithms", "Available hash algorithms" ], "argon2i-argon2id": [ @@ -42229,7 +42739,7 @@ "php-api": [ "TYPO3 Explained", "main", - "Configuration\/TypoScript\/PhpApi\/Index.html#php-api", + "Configuration\/TypoScript\/PhpApi\/Index.html#typoscript-syntax-custom-typoscript", "PHP API" ], "creating-a-hash": [ @@ -42289,13 +42799,13 @@ "password-policies-1": [ "TYPO3 Explained", "main", - "ApiOverview\/PasswordPolicies\/Index.html#password-policies-1", + "ApiOverview\/PasswordPolicies\/Index.html#password-policies", "Password policies" ], "configuring-password-policies": [ "TYPO3 Explained", "main", - "ApiOverview\/PasswordPolicies\/Index.html#configuring-password-policies", + "ApiOverview\/PasswordPolicies\/Index.html#configure-password-policies", "Configuring password policies" ], "password-policy-validators": [ @@ -42319,7 +42829,7 @@ "third-party-validators": [ "TYPO3 Explained", "main", - "ApiOverview\/PasswordPolicies\/Index.html#third-party-validators", + "ApiOverview\/PasswordPolicies\/Index.html#password-policies-third-party-validators", "Third-party validators" ], "disable-password-policies-globally": [ @@ -42331,7 +42841,7 @@ "custom-password-validator": [ "TYPO3 Explained", "main", - "ApiOverview\/PasswordPolicies\/Index.html#custom-password-validator", + "ApiOverview\/PasswordPolicies\/Index.html#password-policies-custom-validator", "Custom password validator" ], "validate-a-password-manually": [ @@ -42349,7 +42859,7 @@ "bootstrapping-1": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#bootstrapping-1", + "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#bootstrapping", "Bootstrapping" ], "applications": [ @@ -42385,7 +42895,7 @@ "initialization": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#initialization", + "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#backend-initialization", "Initialization" ], "1-initialize-the-class-loader": [ @@ -42421,331 +42931,331 @@ "application-context": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#application-context", + "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#bootstrapping-context", "Application context" ], "custom-contexts": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#custom-contexts", + "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#bootstrapping-context-custom", "Custom contexts" ], "usage-example": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#usage-example", + "ApiOverview\/RequestLifeCycle\/Bootstrapping.html#bootstrapping-context-example", "Usage example" ], "request-life-cycle-1": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Index.html#request-life-cycle-1", + "ApiOverview\/RequestLifeCycle\/Index.html#request-life-cycle", "Request Life Cycle" ], "middlewares-request-handling": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#middlewares-request-handling", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling", "Middlewares (Request handling)" ], "basic-concept": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#basic-concept", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-basic-concept", "Basic concept" ], "typo3-implementation": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#typo3-implementation", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-typo3-implementation", "TYPO3 implementation" ], "middlewares": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#middlewares", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-middlewares", "Middlewares" ], "using-extbase": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#using-extbase", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-middlewares-extbase", "Using Extbase" ], "middleware-examples": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#middleware-examples", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-middleware-examples", "Middleware examples" ], "returning-a-custom-response": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#returning-a-custom-response", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-returning-custom-response", "Returning a custom response" ], "enriching-the-request": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#enriching-the-request", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-enriching-request", "Enriching the request" ], "enriching-the-response": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#enriching-the-response", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-enriching-response", "Enriching the response" ], "configuring-middlewares": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#configuring-middlewares", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-configuring-middlewares", "Configuring middlewares" ], "override-ordering-of-middlewares": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#override-ordering-of-middlewares", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-configuring-middlewares-override", "Override ordering of middlewares" ], "creating-new-request-response-objects": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#creating-new-request-response-objects", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-psr-17", "Creating new request \/ response objects" ], "executing-http-requests-in-middlewares": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#executing-http-requests-in-middlewares", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-psr-18", "Executing HTTP requests in middlewares" ], "example-usage": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Middlewares.html#example-usage", + "ApiOverview\/RequestLifeCycle\/Middlewares.html#request-handling-psr-18-example", "Example usage" ], "application-type": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/ApplicationType.html#application-type", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/ApplicationType.html#typo3-request-attribute-application-type", "Application type" ], "current-content-object": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/CurrentContentObject.html#current-content-object", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/CurrentContentObject.html#typo3-request-attribute-current-content-object", "Current content object" ], "frontend-cache-collector": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#frontend-cache-collector", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#typo3-request-attribute-frontend-cache-collector", "Frontend cache collector" ], "example-add-a-single-cache-tag": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#example-add-a-single-cache-tag", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#typo3-request-attribute-frontend-cache-collector-example-add-single-cache-tag", "Example: Add a single cache tag" ], "example-add-multiple-cache-tags-with-different-lifetimes": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#example-add-multiple-cache-tags-with-different-lifetimes", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#typo3-request-attribute-frontend-cache-collector-example-add-multiple-cache-tags", "Example: Add multiple cache tags with different lifetimes" ], "example-remove-a-single-cache-tag": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#example-remove-a-single-cache-tag", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#typo3-request-attribute-frontend-cache-collector-example-remove-single-cache-tag", "Example: Remove a single cache tag" ], "example-remove-multiple-cache-tags": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#example-remove-multiple-cache-tags", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#typo3-request-attribute-frontend-cache-collector-example-remove-multiple-cache-tags", "Example: Remove multiple cache tags" ], "example-get-minimum-lifetime-calculated-from-all-cache-tags": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#example-get-minimum-lifetime-calculated-from-all-cache-tags", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#typo3-request-attribute-frontend-cache-collector-example-get-minimum-lifetime", "Example: Get minimum lifetime, calculated from all cache tags" ], "example-get-all-cache-tags": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#example-get-all-cache-tags", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheCollector.html#typo3-request-attribute-frontend-cache-collector-example-get-all-cache-tags", "Example: Get all cache tags" ], "frontend-cache-instruction": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheInstruction.html#frontend-cache-instruction", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendCacheInstruction.html#typo3-request-attribute-frontend-cache-instruction", "Frontend cache instruction" ], "frontend-controller": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendController.html#frontend-controller", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendController.html#typo3-request-attribute-frontend-controller", "Frontend controller" ], "frontend-page-information": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendPageInformation.html#frontend-page-information", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendPageInformation.html#typo3-request-attribute-frontend-page-information", "Frontend page information" ], "frontend-typoscript": [ "TYPO3 Explained", "main", - "Configuration\/TypoScript\/PhpApi\/Index.html#frontend-typoscript", + "Configuration\/TypoScript\/PhpApi\/Index.html#typoscript-access_frontend_typoscript", "Frontend TypoScript" ], "frontend-user": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendUser.html#frontend-user", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/FrontendUser.html#typo3-request-attribute-frontend-user", "Frontend user" ], "typo3-request-attributes": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Index.html#typo3-request-attributes", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Index.html#request-attributes", "TYPO3 request attributes" ], "language": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Language.html#language", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Language.html#typo3-request-attribute-language", "Language" ], "module": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Module.html#module", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Module.html#typo3-request-attribute-module", "Module" ], "moduledata": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/ModuleData.html#moduledata", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/ModuleData.html#typo3-request-attribute-module-data", "ModuleData" ], "normalized-parameters": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/NormalizedParams.html#normalized-parameters", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/NormalizedParams.html#typo3-request-attribute-normalizedParams", "Normalized parameters" ], "migrating-from-php-generalutility-getindpenv": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/NormalizedParams.html#migrating-from-php-generalutility-getindpenv", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/NormalizedParams.html#GeneralUtility-getIndpEnv-migration", "Migrating from GeneralUtility::getIndpEnv()" ], "route": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Route.html#route", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Route.html#typo3-request-attribute-route", "Route" ], "routing": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Routing.html#routing", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Routing.html#typo3-request-attribute-routing", "Routing" ], "site": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSets.html#site", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-php-api-site", "Site" ], "target": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Target.html#target", + "ApiOverview\/RequestLifeCycle\/RequestAttributes\/Target.html#typo3-request-attribute-target", "Target" ], "typo3-request-object": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Typo3Request.html#typo3-request-object", + "ApiOverview\/RequestLifeCycle\/Typo3Request.html#typo3-request", "TYPO3 request object" ], "getting-the-psr-7-request-object": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Typo3Request.html#getting-the-psr-7-request-object", + "ApiOverview\/RequestLifeCycle\/Typo3Request.html#getting-typo3-request-object", "Getting the PSR-7 request object" ], "extbase-controller": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Typo3Request.html#extbase-controller", + "ApiOverview\/RequestLifeCycle\/Typo3Request.html#typo3-request-extbase-controller", "Extbase controller" ], "user-function": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Typo3Request.html#user-function", + "ApiOverview\/RequestLifeCycle\/Typo3Request.html#typo3-request-user-function", "User function" ], "data-processor": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Typo3Request.html#data-processor", + "ApiOverview\/RequestLifeCycle\/Typo3Request.html#typo3-request-data-processor", "Data processor" ], "last-resort-global-variable": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Typo3Request.html#last-resort-global-variable", + "ApiOverview\/RequestLifeCycle\/Typo3Request.html#typo3-request-global-variable", "Last resort: global variable" ], "attributes": [ "TYPO3 Explained", "main", - "ApiOverview\/RequestLifeCycle\/Typo3Request.html#attributes", + "ApiOverview\/RequestLifeCycle\/Typo3Request.html#typo3-request-attributes", "Attributes" ], "advanced-routing-configuration-for-extensions": [ "TYPO3 Explained", "main", - "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#advanced-routing-configuration-for-extensions", + "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#routing-advanced-routing-configuration", "Advanced routing configuration (for extensions)" ], "enhancers": [ "TYPO3 Explained", "main", - "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#enhancers", + "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#routing-advanced-routing-configuration-enhancers", "Enhancers" ], "simple-enhancer": [ "TYPO3 Explained", "main", - "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#simple-enhancer", + "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#routing-simple-enhancer", "Simple enhancer" ], "plugin-enhancer": [ "TYPO3 Explained", "main", - "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#plugin-enhancer", + "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#routing-plugin-enhancer", "Plugin enhancer" ], "extbase-plugin-enhancer": [ "TYPO3 Explained", "main", - "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#extbase-plugin-enhancer", + "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#routing-extbase-plugin-enhancer", "Extbase plugin enhancer" ], "pagetype-decorator": [ "TYPO3 Explained", "main", - "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#pagetype-decorator", + "ApiOverview\/Routing\/AdvancedRoutingConfiguration.html#routing-pagetype-decorator", "PageType decorator" ], "staticvaluemapper": [ @@ -42799,7 +43309,7 @@ "collection-of-various-routing-examples": [ "TYPO3 Explained", "main", - "ApiOverview\/Routing\/Examples.html#collection-of-various-routing-examples", + "ApiOverview\/Routing\/Examples.html#routing-examples", "Collection of various routing examples" ], "ext-news": [ @@ -42877,7 +43387,7 @@ "extending-routing": [ "TYPO3 Explained", "main", - "ApiOverview\/Routing\/ExtendingRouting.html#extending-routing", + "ApiOverview\/Routing\/ExtendingRouting.html#routing-extending-routing", "Extending Routing" ], "writing-custom-aspects": [ @@ -42901,13 +43411,13 @@ "routing-speaking-urls-in-typo3": [ "TYPO3 Explained", "main", - "ApiOverview\/Routing\/Index.html#routing-speaking-urls-in-typo3", + "ApiOverview\/Routing\/Index.html#routing", "Routing - \"Speaking URLs\" in TYPO3" ], "introduction-to-routing": [ "TYPO3 Explained", "main", - "ApiOverview\/Routing\/Introduction.html#introduction-to-routing", + "ApiOverview\/Routing\/Introduction.html#routing-introduction", "Introduction to Routing" ], "what-is-routing": [ @@ -42919,19 +43429,19 @@ "key-terminology": [ "TYPO3 Explained", "main", - "ApiOverview\/Routing\/Introduction.html#key-terminology", + "ApiOverview\/Routing\/Introduction.html#routing-terminology", "Key Terminology" ], "routing-in-typo3": [ "TYPO3 Explained", "main", - "ApiOverview\/Routing\/Introduction.html#routing-in-typo3", + "ApiOverview\/Routing\/Introduction.html#routing-terminology-symfony", "Routing in TYPO3" ], "tips": [ "TYPO3 Explained", "main", - "ApiOverview\/Routing\/Introduction.html#tips", + "ApiOverview\/Routing\/Introduction.html#routing-tips", "Tips" ], "using-imports-in-yaml-files": [ @@ -42943,7 +43453,7 @@ "page-based-routing": [ "TYPO3 Explained", "main", - "ApiOverview\/Routing\/PageBasedRouting.html#page-based-routing", + "ApiOverview\/Routing\/PageBasedRouting.html#routing-page-based-routing", "Page based Routing" ], "upgrading": [ @@ -42955,61 +43465,61 @@ "historical-perspective-on-rte-transformations": [ "TYPO3 Explained", "main", - "ApiOverview\/Rte\/HistoricalRteTransformations\/Index.html#historical-perspective-on-rte-transformations", + "ApiOverview\/Rte\/HistoricalRteTransformations\/Index.html#appendix-a", "Historical Perspective on RTE Transformations" ], "properties-and-transformations": [ "TYPO3 Explained", "main", - "ApiOverview\/Rte\/HistoricalRteTransformations\/PropertiesAndTransformations.html#properties-and-transformations", + "ApiOverview\/Rte\/HistoricalRteTransformations\/PropertiesAndTransformations.html#appendix-a-properties", "Properties and Transformations" ], "rte-transformations-in-content-elements": [ "TYPO3 Explained", "main", - "ApiOverview\/Rte\/HistoricalRteTransformations\/RteTransformationsInContentElements.html#rte-transformations-in-content-elements", + "ApiOverview\/Rte\/HistoricalRteTransformations\/RteTransformationsInContentElements.html#appendix-a-content-elements", "RTE Transformations in Content Elements" ], "conclusion": [ "TYPO3 Explained", "main", - "ApiOverview\/Rte\/HistoricalRteTransformations\/RteTransformationsInContentElements.html#conclusion", + "ApiOverview\/Rte\/HistoricalRteTransformations\/RteTransformationsInContentElements.html#appendix-a-content-elements-conclusion", "Conclusion" ], "rich-text-editors-rte": [ "TYPO3 Explained", "main", - "ApiOverview\/Rte\/Index.html#rich-text-editors-rte", + "ApiOverview\/Rte\/Index.html#rte", "Rich text editors (RTE)" ], "rich-text-editors-in-the-typo3-backend": [ "TYPO3 Explained", "main", - "ApiOverview\/Rte\/InTheBackend\/Index.html#rich-text-editors-in-the-typo3-backend", + "ApiOverview\/Rte\/InTheBackend\/Index.html#rte-backend", "Rich text editors in the TYPO3 backend" ], "plugging-in-a-custom-rte": [ "TYPO3 Explained", "main", - "ApiOverview\/Rte\/InTheBackend\/PlugRte.html#plugging-in-a-custom-rte", + "ApiOverview\/Rte\/InTheBackend\/PlugRte.html#rte-plug", "Plugging in a custom RTE" ], "api-for-rich-text-editors": [ "TYPO3 Explained", "main", - "ApiOverview\/Rte\/InTheBackend\/PlugRte.html#api-for-rich-text-editors", + "ApiOverview\/Rte\/InTheBackend\/PlugRte.html#rte-api", "API for rich text editors" ], "rich-text-editors-rte-in-the-typo3-frontend": [ "TYPO3 Explained", "main", - "ApiOverview\/Rte\/InTheFrontend\/Index.html#rich-text-editors-rte-in-the-typo3-frontend", + "ApiOverview\/Rte\/InTheFrontend\/Index.html#rte-frontend", "Rich Text Editors (RTE) in the TYPO3 frontend" ], "including-a-rich-text-editor-rte-in-the-frontend": [ "TYPO3 Explained", "main", - "ApiOverview\/Rte\/InTheFrontend\/Introduction.html#including-a-rich-text-editor-rte-in-the-frontend", + "ApiOverview\/Rte\/InTheFrontend\/Introduction.html#rte-frontend-introduction", "Including a Rich Text Editor (RTE) in the frontend" ], "the-optional-features": [ @@ -43033,7 +43543,7 @@ "rendering-in-the-frontend": [ "TYPO3 Explained", "main", - "ApiOverview\/Rte\/RenderingInTheFrontend\/Index.html#rendering-in-the-frontend", + "ApiOverview\/Rte\/RenderingInTheFrontend\/Index.html#rte-rendering-frontend", "Rendering in the Frontend" ], "fluid-templates": [ @@ -43051,62 +43561,62 @@ "ckeditor-rich-text-editor": [ "TYPO3 Explained", "main", - "ApiOverview\/Rte\/RteCkeditorSysext.html#ckeditor-rich-text-editor", + "ApiOverview\/Rte\/RteCkeditorSysext.html#rte_ckeditor", "CKEditor Rich Text Editor" ], "rte-transformations": [ "TYPO3 Explained", "main", - "ApiOverview\/Rte\/Transformations\/Index.html#rte-transformations", + "ApiOverview\/Rte\/Transformations\/Index.html#transformations", "RTE Transformations" ], "hybrid-modes": [ "TYPO3 Explained", "main", - "ApiOverview\/Rte\/Transformations\/Introduction.html#hybrid-modes", + "ApiOverview\/Rte\/Transformations\/Introduction.html#transformations-hybrid-modes", "Hybrid modes" ], "in-the-database": [ "TYPO3 Explained", "main", - "ApiOverview\/Rte\/Transformations\/Introduction.html#in-the-database", + "ApiOverview\/Rte\/Transformations\/Introduction.html#transformations-hybrid-modes-db", "In the database" ], "in-rte": [ "TYPO3 Explained", "main", - "ApiOverview\/Rte\/Transformations\/Introduction.html#in-rte", + "ApiOverview\/Rte\/Transformations\/Introduction.html#transformations-hybrid-modes-rte", "In RTE" ], "where-transformations-are-performed": [ "TYPO3 Explained", "main", - "ApiOverview\/Rte\/Transformations\/Introduction.html#where-transformations-are-performed", + "ApiOverview\/Rte\/Transformations\/Introduction.html#transformations-where", "Where transformations are performed" ], "transformation-overview": [ "TYPO3 Explained", "main", - "ApiOverview\/Rte\/Transformations\/Overview.html#transformation-overview", + "ApiOverview\/Rte\/Transformations\/Overview.html#transformations-tsconfig-processing-user", "Transformation overview" ], "transformation-filters": [ "TYPO3 Explained", "main", - "ApiOverview\/Rte\/Transformations\/Overview.html#transformation-filters", + "ApiOverview\/Rte\/Transformations\/Overview.html#transformations-overview-filters", "Transformation filters" ], "canonical-api": [ "TYPO3 Explained", "main", - "ApiOverview\/Seo\/CanonicalApi.html#canonical-api", + "ApiOverview\/Seo\/CanonicalApi.html#canonicalapi", "Canonical API" ], - "excluding-arguments-from-the-generation": [ + "including-specific-arguments-for-the-url-generation": [ "TYPO3 Explained", "main", - "ApiOverview\/Seo\/CanonicalApi.html#excluding-arguments-from-the-generation", - "Excluding arguments from the generation" + "ApiOverview\/Seo\/CanonicalApi.html#canonicalapi-additionalparameters", + "Including specific arguments for the URL generation" ], "using-an-event-to-define-the-url": [ "TYPO3 Explained", @@ -43114,40 +43624,154 @@ "ApiOverview\/Seo\/CanonicalApi.html#using-an-event-to-define-the-url", "Using an event to define the URL" ], + "suggested-configuration-options-for-improved-seo-in-typo3": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration", + "Suggested configuration options for improved SEO in TYPO3" + ], + "site-configuration": [ + "TYPO3 Explained", + "main", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution-kickstart-site", + "Site configuration" + ], + "entry-point": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-site-entry-point", + "Entry Point" + ], + "languages": [ + "TYPO3 Explained", + "main", + "ApiOverview\/SiteHandling\/Basics.html#languages", + "languages" + ], + "robots-txt": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-site-robots-txt", + "robots.txt" + ], + "static-routes-and-redirects": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-site-routes", + "Static Routes and redirects" + ], + "tags-for-seo-purposes-in-the-html-header": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#config-tags", + "Tags for SEO purposes in the HTML header" + ], + "hreflang-link-tags": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#config-hreflang-tags", + "Hreflang link-tags" + ], + "canonical-tag": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#config-canonical-tag", + "Canonical Tag" + ], + "working-links": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-links", + "Working links" + ], + "typoscript-examples": [ + "TYPO3 Explained", + "main", + "ApiOverview\/SiteHandling\/UseSiteInConditions.html#typoscript-examples", + "TypoScript examples" + ], + "influencing-the-title-tag-in-the-html-head": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-title", + "Influencing the title tag in the HTML head" + ], + "setting-missing-opengraph-meta-tags": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-typoscript-examples-og", + "Setting missing OpenGraph meta tags" + ], + "setting-fallbacks-for-meta-tags": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-typoscript-examples-metatags", + "Setting fallbacks for meta tags" + ], + "setting-fallbacks-for-og-image-and-twitter-image": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-typoscript-examples-og-fallback", + "Setting fallbacks for og:image and twitter:image" + ], + "setting-defaults-for-the-author-on-meta-tags": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/Configuration\/Index.html#seo-configuration-typoscript-examples-author", + "Setting defaults for the author on meta tags" + ], + "general-seo-recommendations-for-typo3-projects": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/GeneralRecommendations\/Index.html#seo-recommendations", + "General SEO Recommendations for TYPO3 projects" + ], + "recommendations-for-additional-seo-extensions": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/GeneralRecommendations\/Index.html#seo-recommendations-extensions", + "Recommendations for additional SEO extensions" + ], + "recommendations-for-the-description-field": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Seo\/GeneralRecommendations\/Index.html#seo-recommendations-field-description", + "Recommendations for the description field" + ], "search-engine-optimization-seo": [ "TYPO3 Explained", "main", - "ApiOverview\/Seo\/Index.html#search-engine-optimization-seo", + "ApiOverview\/Seo\/Index.html#seo", "Search engine optimization (SEO)" ], "metatag-api": [ "TYPO3 Explained", "main", - "ApiOverview\/Seo\/MetaTagApi.html#metatag-api", + "ApiOverview\/Seo\/MetaTagApi.html#metatagapi", "MetaTag API" ], "using-the-metatag-api": [ "TYPO3 Explained", "main", - "ApiOverview\/Seo\/MetaTagApi.html#using-the-metatag-api", + "ApiOverview\/Seo\/MetaTagApi.html#metatagapi-usage", "Using the MetaTag API" ], "creating-your-own-metatagmanager": [ "TYPO3 Explained", "main", - "ApiOverview\/Seo\/MetaTagApi.html#creating-your-own-metatagmanager", + "ApiOverview\/Seo\/MetaTagApi.html#metatagapi-create-your-own", "Creating Your Own MetaTagManager" ], "typoscript-and-php": [ "TYPO3 Explained", "main", - "ApiOverview\/Seo\/MetaTagApi.html#typoscript-and-php", + "ApiOverview\/Seo\/MetaTagApi.html#metatagapi-configuration", "TypoScript and PHP" ], "page-title-api": [ "TYPO3 Explained", "main", - "ApiOverview\/Seo\/PageTitleApi.html#page-title-api", + "ApiOverview\/Seo\/PageTitleApi.html#pagetitle", "Page title API" ], "create-your-own-page-title-provider": [ @@ -43177,7 +43801,7 @@ "xml-sitemap": [ "TYPO3 Explained", "main", - "ApiOverview\/Seo\/XmlSitemap.html#xml-sitemap", + "ApiOverview\/Seo\/XmlSitemap.html#xmlsitemap", "XML sitemap" ], "how-to-access-your-xml-sitemap": [ @@ -43213,7 +43837,7 @@ "change-frequency-and-priority": [ "TYPO3 Explained", "main", - "ApiOverview\/Seo\/XmlSitemap.html#change-frequency-and-priority", + "ApiOverview\/Seo\/XmlSitemap.html#xmlsitemap-changefreq-priority", "Change frequency and priority" ], "sitemap-of-records-without-sorting-field": [ @@ -43231,193 +43855,193 @@ "use-a-customized-sitemap-xsl-file": [ "TYPO3 Explained", "main", - "ApiOverview\/Seo\/XmlSitemap.html#use-a-customized-sitemap-xsl-file", + "ApiOverview\/Seo\/XmlSitemap.html#sitemap-xslFile", "Use a customized sitemap XSL file" ], "override-service-registration": [ "TYPO3 Explained", "main", - "ApiOverview\/Services\/Configuration\/RegistrationChanges.html#override-service-registration", + "ApiOverview\/Services\/Configuration\/RegistrationChanges.html#services-configuration-registration-changes", "Override service registration" ], "service-configuration": [ "TYPO3 Explained", "main", - "ApiOverview\/Services\/Configuration\/ServiceConfiguration.html#service-configuration", + "ApiOverview\/Services\/Configuration\/ServiceConfiguration.html#services-configuration-service-configuration", "Service configuration" ], "service-type-configuration": [ "TYPO3 Explained", "main", - "ApiOverview\/Services\/Configuration\/ServiceTypeConfiguration.html#service-type-configuration", + "ApiOverview\/Services\/Configuration\/ServiceTypeConfiguration.html#services-configuration-service-type-configuration", "Service type configuration" ], "implementing-a-service": [ "TYPO3 Explained", "main", - "ApiOverview\/Services\/Developer\/Implementing.html#implementing-a-service", + "ApiOverview\/Services\/Developer\/Implementing.html#services-developer-implementing", "Implementing a service" ], "service-registration": [ "TYPO3 Explained", "main", - "ApiOverview\/Services\/Developer\/Implementing.html#service-registration", + "ApiOverview\/Services\/Developer\/Implementing.html#services-developer-implementing-registration", "Service registration" ], "php-class": [ "TYPO3 Explained", "main", - "CodingGuidelines\/CglPhp\/FileStructure.html#php-class", + "CodingGuidelines\/CglPhp\/FileStructure.html#cgl-namespaces-class-names", "PHP class" ], "developer-s-guide": [ "TYPO3 Explained", "main", - "ApiOverview\/Services\/Developer\/Index.html#developer-s-guide", + "ApiOverview\/Services\/Developer\/Index.html#services-developer", "Developer's Guide" ], "introducing-a-new-service-type": [ "TYPO3 Explained", "main", - "ApiOverview\/Services\/Developer\/NewServiceType.html#introducing-a-new-service-type", + "ApiOverview\/Services\/Developer\/NewServiceType.html#services-developer-new-service-type", "Introducing a new service type" ], "service-api": [ "TYPO3 Explained", "main", - "ApiOverview\/Services\/Developer\/ServiceApi.html#service-api", + "ApiOverview\/Services\/Developer\/ServiceApi.html#services-developer-service-api", "Service API" ], "service-implementation": [ "TYPO3 Explained", "main", - "ApiOverview\/Services\/Developer\/ServiceApi.html#service-implementation", + "ApiOverview\/Services\/Developer\/ServiceApi.html#services-developer-service-api-implementation", "Service Implementation" ], "getter-methods-for-service-information": [ "TYPO3 Explained", "main", - "ApiOverview\/Services\/Developer\/ServiceApi.html#getter-methods-for-service-information", + "ApiOverview\/Services\/Developer\/ServiceApi.html#services-developer-service-api-getters", "Getter Methods for Service Information" ], "general-service-functions": [ "TYPO3 Explained", "main", - "ApiOverview\/Services\/Developer\/ServiceApi.html#general-service-functions", + "ApiOverview\/Services\/Developer\/ServiceApi.html#services-developer-service-api-general", "General Service Functions" ], "i-o-tools": [ "TYPO3 Explained", "main", - "ApiOverview\/Services\/Developer\/ServiceApi.html#i-o-tools", + "ApiOverview\/Services\/Developer\/ServiceApi.html#services-developer-service-api-io-tools", "I\/O Tools" ], "i-o-input-and-i-o-output": [ "TYPO3 Explained", "main", - "ApiOverview\/Services\/Developer\/ServiceApi.html#i-o-input-and-i-o-output", + "ApiOverview\/Services\/Developer\/ServiceApi.html#services-developer-service-api-io-input-output", "I\/O Input and I\/O Output" ], "services-api": [ "TYPO3 Explained", "main", - "ApiOverview\/Services\/Developer\/ServiceRelatedApi.html#services-api", + "ApiOverview\/Services\/Developer\/ServiceRelatedApi.html#services-developer-service-related-api", "Services API" ], "typo3-cms-core-utility-extensionmanagementutility": [ "TYPO3 Explained", "main", - "ApiOverview\/Services\/Developer\/ServiceRelatedApi.html#typo3-cms-core-utility-extensionmanagementutility", + "ApiOverview\/Services\/Developer\/ServiceRelatedApi.html#services-developer-service-related-api-extension-management-utility", "\\TYPO3\\CMS\\Core\\Utility\\ExtensionManagementUtility" ], "typo3-cms-core-utility-generalutility": [ "TYPO3 Explained", "main", - "ApiOverview\/Services\/Developer\/ServiceRelatedApi.html#typo3-cms-core-utility-generalutility", + "ApiOverview\/Services\/Developer\/ServiceRelatedApi.html#services-developer-service-related-api-general-utility", "\\TYPO3\\CMS\\Core\\Utility\\GeneralUtility" ], "services-1": [ "TYPO3 Explained", "main", - "ApiOverview\/Services\/Index.html#services-1", + "ApiOverview\/Services\/Index.html#services", "Services" ], "reasons-for-using-the-services-api": [ "TYPO3 Explained", "main", - "ApiOverview\/Services\/Introduction\/Index.html#reasons-for-using-the-services-api", + "ApiOverview\/Services\/Introduction\/Index.html#services-introduction-good-reasons-extensibility", "Reasons for using the Services API" ], "using-services": [ "TYPO3 Explained", "main", - "ApiOverview\/Services\/UsingServices\/Index.html#using-services", + "ApiOverview\/Services\/UsingServices\/Index.html#services-using-services", "Using Services" ], "calling-a-chain-of-services": [ "TYPO3 Explained", "main", - "ApiOverview\/Services\/UsingServices\/ServiceChain.html#calling-a-chain-of-services", + "ApiOverview\/Services\/UsingServices\/ServiceChain.html#services-using-services-service-chain", "Calling a chain of services" ], "service-precedence": [ "TYPO3 Explained", "main", - "ApiOverview\/Services\/UsingServices\/ServicePrecedence.html#service-precedence", + "ApiOverview\/Services\/UsingServices\/ServicePrecedence.html#services-using-services-precedence", "Service precedence" ], "simple-usage": [ "TYPO3 Explained", "main", - "ApiOverview\/Services\/UsingServices\/SimpleUse.html#simple-usage", + "ApiOverview\/Services\/UsingServices\/SimpleUse.html#services-using-services-simple", "Simple usage" ], "use-with-subtypes": [ "TYPO3 Explained", "main", - "ApiOverview\/Services\/UsingServices\/UseWithSubtypes.html#use-with-subtypes", + "ApiOverview\/Services\/UsingServices\/UseWithSubtypes.html#services-using-services-subtypes", "Use with subtypes" ], "session-handling-in-typo3": [ "TYPO3 Explained", "main", - "ApiOverview\/SessionStorageFramework\/Index.html#session-handling-in-typo3", + "ApiOverview\/SessionStorageFramework\/Index.html#sessions", "Session handling in TYPO3" ], "session-storage-framework": [ "TYPO3 Explained", "main", - "ApiOverview\/SessionStorageFramework\/SessionStorage.html#session-storage-framework", + "ApiOverview\/SessionStorageFramework\/SessionStorage.html#session-storage", "Session storage framework" ], "database-storage-backend": [ "TYPO3 Explained", "main", - "ApiOverview\/SessionStorageFramework\/SessionStorage.html#database-storage-backend", + "ApiOverview\/SessionStorageFramework\/SessionStorage.html#sessions-database", "Database storage backend" ], "using-redis-to-store-sessions": [ "TYPO3 Explained", "main", - "ApiOverview\/SessionStorageFramework\/SessionStorage.html#using-redis-to-store-sessions", + "ApiOverview\/SessionStorageFramework\/SessionStorage.html#sessions-redis", "Using Redis to store sessions" ], "writing-your-own-session-storage": [ "TYPO3 Explained", "main", - "ApiOverview\/SessionStorageFramework\/SessionStorage.html#writing-your-own-session-storage", + "ApiOverview\/SessionStorageFramework\/SessionStorage.html#sessions-custom", "Writing your own session storage" ], "php-sessionmanager-api": [ "TYPO3 Explained", "main", - "ApiOverview\/SessionStorageFramework\/SessionStorage.html#php-sessionmanager-api", + "ApiOverview\/SessionStorageFramework\/SessionStorage.html#sessions-manager", "SessionManager API" ], "user-session-management": [ "TYPO3 Explained", "main", - "ApiOverview\/SessionStorageFramework\/UserSessionManagement.html#user-session-management", + "ApiOverview\/SessionStorageFramework\/UserSessionManagement.html#session-management", "User session management" ], "public-api-of-php-usersessionmanager": [ @@ -43435,7 +44059,7 @@ "php-api-accessing-site-configuration": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/AccessingSiteConfiguration.html#php-api-accessing-site-configuration", + "ApiOverview\/SiteHandling\/AccessingSiteConfiguration.html#sitehandling-php-api", "PHP API: accessing site configuration" ], "accessing-the-current-site-object": [ @@ -43447,19 +44071,19 @@ "finding-a-site-object-with-the-php-sitefinder-class": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/AccessingSiteConfiguration.html#finding-a-site-object-with-the-php-sitefinder-class", + "ApiOverview\/SiteHandling\/AccessingSiteConfiguration.html#sitehandling-sitefinder-object", "Finding a site object with the SiteFinder class" ], "the-php-site-object": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/AccessingSiteConfiguration.html#the-php-site-object", + "ApiOverview\/SiteHandling\/AccessingSiteConfiguration.html#sitehandling-site-object", "The Site object" ], "the-php-sitelanguage-object": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/AccessingSiteConfiguration.html#the-php-sitelanguage-object", + "ApiOverview\/SiteHandling\/AccessingSiteConfiguration.html#sitehandling-sitelanguage-object", "The SiteLanguage object" ], "the-php-sitesettings-object": [ @@ -43471,25 +44095,25 @@ "adding-languages": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/AddLanguages.html#adding-languages", + "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addingLanguages", "Adding Languages" ], "configuration-properties": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/AddLanguages.html#configuration-properties", + "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addingLanguages-properties", "Configuration properties" ], "base-variants": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/BaseVariants.html#base-variants", + "ApiOverview\/SiteHandling\/BaseVariants.html#sitehandling-baseVariants", "Base variants" ], "properties": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/ComposerJson.html#properties", + "ExtensionArchitecture\/FileStructure\/ComposerJson.html#ext-composer-json-properties", "Properties" ], "functions": [ @@ -43501,25 +44125,25 @@ "site-handling-basics": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/Basics.html#site-handling-basics", + "ApiOverview\/SiteHandling\/Basics.html#sitehandling-basics", "Site handling basics" ], "site-configuration-storage": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/Basics.html#site-configuration-storage", + "ApiOverview\/SiteHandling\/Basics.html#site-storage", "Site configuration storage" ], "the-configuration-file": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/Basics.html#the-configuration-file", + "ApiOverview\/SiteHandling\/Basics.html#site-configuration-file", "The configuration file" ], "site-identifier": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/Basics.html#site-identifier", + "ApiOverview\/SiteHandling\/Basics.html#sitehandling-basics-site-identifier", "Site identifier" ], "root-page-id": [ @@ -43531,7 +44155,7 @@ "websitetitle": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/Basics.html#websitetitle", + "ApiOverview\/SiteHandling\/Basics.html#sitehandling-basics-websiteTitle", "websiteTitle" ], "base": [ @@ -43540,12 +44164,6 @@ "ApiOverview\/SiteHandling\/Basics.html#base", "base" ], - "languages": [ - "TYPO3 Explained", - "main", - "ApiOverview\/SiteHandling\/Basics.html#languages", - "languages" - ], "errorhandling": [ "TYPO3 Explained", "main", @@ -43567,7 +44185,7 @@ "cli-tools-for-site-handling": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/CliTools.html#cli-tools-for-site-handling", + "ApiOverview\/SiteHandling\/CliTools.html#sitehandling-cliTools", "CLI tools for site handling" ], "list-all-configured-sites": [ @@ -43585,19 +44203,19 @@ "creating-a-new-site-configuration": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/CreateNew.html#creating-a-new-site-configuration", + "ApiOverview\/SiteHandling\/CreateNew.html#sitehandling-create-new", "Creating a new site configuration" ], "fluid-based-error-handler": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/ErrorHandling\/FluidErrorHandler.html#fluid-based-error-handler", + "ApiOverview\/SiteHandling\/ErrorHandling\/FluidErrorHandler.html#sitehandling-errorHandling_fluid", "Fluid-based error handler" ], "page-based-error-handler": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/ErrorHandling\/PageErrorHandler.html#page-based-error-handler", + "ApiOverview\/SiteHandling\/ErrorHandling\/PageErrorHandler.html#sitehandling-errorHandling_page", "Page-based error handler" ], "internal-error-page": [ @@ -43615,7 +44233,7 @@ "writing-a-custom-page-error-handler": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/ErrorHandling\/WriteCustomErrorHandler.html#writing-a-custom-page-error-handler", + "ApiOverview\/SiteHandling\/ErrorHandling\/WriteCustomErrorHandler.html#sitehandling-customErrorHandler", "Writing a custom page error handler" ], "example-for-a-simple-404-error-handler": [ @@ -43627,7 +44245,7 @@ "extending-site-configuration": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/ExtendingSiteConfig.html#extending-site-configuration", + "ApiOverview\/SiteHandling\/ExtendingSiteConfig.html#sitehandling-extendingSiteConfiguration", "Extending site configuration" ], "adding-custom-project-specific-options-to-site-configuration": [ @@ -43645,157 +44263,157 @@ "site-handling": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/Index.html#site-handling", + "ApiOverview\/SiteHandling\/Index.html#sitehandling", "Site handling" ], "site-sets-1": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-1", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets", "Site sets" ], "site-set-definition": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSets.html#site-set-definition", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-definition", "Site set definition" ], "hidden-site-sets": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSets.html#hidden-site-sets", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-hidden", "Hidden site sets" ], "using-a-site-set-as-dependency-in-a-site": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSets.html#using-a-site-set-as-dependency-in-a-site", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-usage", "Using a site set as dependency in a site" ], "settings-definitions": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSets.html#settings-definitions", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-settings-definition", "Settings definitions" ], "override-site-settings-defaults-in-a-subsets": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSets.html#override-site-settings-defaults-in-a-subsets", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-settings", "Override site settings defaults in a subsets" ], "typoscript-provider": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSets.html#typoscript-provider", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-typoscript", "TypoScript provider" ], "page-tsconfig-provider": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSets.html#page-tsconfig-provider", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-page-tsconfig", "Page TSconfig provider" ], "analyzing-the-available-site-sets-via-console-command": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSets.html#analyzing-the-available-site-sets-via-console-command", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-cli", "Analyzing the available site sets via console command" ], "example-using-a-set-within-a-site-package": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSets.html#example-using-a-set-within-a-site-package", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-example-site-package", "Example: Using a set within a site package" ], "defining-the-site-set-with-a-fluid-styled-content-dependency": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSets.html#defining-the-site-set-with-a-fluid-styled-content-dependency", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-example-site-package-set", "Defining the site set with a fluid_styled_content dependency" ], "using-the-site-set-as-dependency-of-a-site": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSets.html#using-the-site-set-as-dependency-of-a-site", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-example-usage", "Using the site set as dependency of a site" ], "loading-typoscript-via-the-site-package-s-set": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSets.html#loading-typoscript-via-the-site-package-s-set", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-example-typoscript", "Loading TypoScript via the site package's set" ], "using-the-site-set-to-override-default-settings": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSets.html#using-the-site-set-to-override-default-settings", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-example-settings", "Using the site set to override default settings" ], "example-providing-a-site-set-in-an-extension": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSets.html#example-providing-a-site-set-in-an-extension", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-example-extension", "Example: Providing a site set in an extension" ], "multiple-site-sets-to-include-separate-functionality": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSets.html#multiple-site-sets-to-include-separate-functionality", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-example-extension-multiple-sets", "Multiple site sets to include separate functionality" ], "site-set-php-api": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSets.html#site-set-php-api", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-php-api", "Site Set PHP API" ], "setregistry": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSets.html#setregistry", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-php-api-setregistry", "SetRegistry" ], "getsets": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSets.html#getsets", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-php-api-setregistry-getsets", "getSets" ], "hasset": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSets.html#hasset", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-php-api-setregistry-hasset", "hasSet" ], "getset": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSets.html#getset", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-php-api-setregistry-getset", "getSet" ], "setcollector": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSets.html#setcollector", + "ApiOverview\/SiteHandling\/SiteSets.html#site-sets-php-api-setcollector", "SetCollector" ], "site-settings-definitions": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definitions", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition", "Site settings definitions" ], "site-setting-definition-example": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-setting-definition-example", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition-example", "Site setting definition example" ], "site-setting-definition-properties": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-setting-definition-properties", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition-properties", "Site setting definition properties" ], "definition-types": [ @@ -43807,37 +44425,37 @@ "site-settings": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettings.html#site-settings", + "ApiOverview\/SiteHandling\/SiteSettings.html#sitehandling-settings", "Site settings" ], "adding-site-settings": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettings.html#adding-site-settings", + "ApiOverview\/SiteHandling\/SiteSettings.html#sitehandling-settings-add", "Adding site settings" ], "accessing-site-settings-in-page-tsconfig-or-typoscript": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettings.html#accessing-site-settings-in-page-tsconfig-or-typoscript", + "ApiOverview\/SiteHandling\/SiteSettings.html#sitehandling-settings-access", "Accessing site settings in page TSconfig or TypoScript" ], "site-settings-editor-1": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettingsEditor.html#site-settings-editor-1", + "ApiOverview\/SiteHandling\/SiteSettingsEditor.html#site-settings-editor", "Site settings editor" ], "configuring-the-site-settings-editor": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettingsEditor.html#configuring-the-site-settings-editor", + "ApiOverview\/SiteHandling\/SiteSettingsEditor.html#sitehandling-settings-editor-configuration", "Configuring the site settings editor" ], "static-routes": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/StaticRoutes.html#static-routes", + "ApiOverview\/SiteHandling\/StaticRoutes.html#sitehandling-staticRoutes", "Static routes" ], "yaml-statictext": [ @@ -43861,15 +44479,9 @@ "using-site-configuration-in-conditions": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/UseSiteInConditions.html#using-site-configuration-in-conditions", + "ApiOverview\/SiteHandling\/UseSiteInConditions.html#sitehandling-inConditions", "Using site configuration in conditions" ], - "typoscript-examples": [ - "TYPO3 Explained", - "main", - "ApiOverview\/SiteHandling\/UseSiteInConditions.html#typoscript-examples", - "TypoScript examples" - ], "example-for-ext-form": [ "TYPO3 Explained", "main", @@ -43879,7 +44491,7 @@ "using-site-configuration-in-tca-foreign-table-where": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/UseSiteInTCA.html#using-site-configuration-in-tca-foreign-table-where", + "ApiOverview\/SiteHandling\/UseSiteInTCA.html#sitehandling-inTCA", "Using site configuration in TCA foreign_table_where" ], "tca-foreign-table-where": [ @@ -43891,7 +44503,7 @@ "using-site-configuration-in-typoscript-and-fluid-templates": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/UseSiteInTypoScript.html#using-site-configuration-in-typoscript-and-fluid-templates", + "ApiOverview\/SiteHandling\/UseSiteInTypoScript.html#sitehandling-inTypoScript", "Using site configuration in TypoScript and Fluid templates" ], "gettext": [ @@ -43903,25 +44515,25 @@ "non-extbase-fluid-view": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/UseSiteInTypoScript.html#non-extbase-fluid-view", + "ApiOverview\/SiteHandling\/UseSiteInTypoScript.html#sitehandling-non-extbase-fluid", "Non-Extbase Fluid view" ], "using-environment-variables-in-the-site-configuration": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/UsingEnvVars.html#using-environment-variables-in-the-site-configuration", + "ApiOverview\/SiteHandling\/UsingEnvVars.html#sitehandling-using-env-vars", "Using environment variables in the site configuration" ], "soft-references-1": [ "TYPO3 Explained", "main", - "ApiOverview\/SoftReferences\/Index.html#soft-references-1", + "ApiOverview\/SoftReferences\/Index.html#soft-references", "Soft references" ], "default-soft-reference-parsers": [ "TYPO3 Explained", "main", - "ApiOverview\/SoftReferences\/Index.html#default-soft-reference-parsers", + "ApiOverview\/SoftReferences\/Index.html#soft-references-default-parsers", "Default soft reference parsers" ], "property-php-content": [ @@ -43939,7 +44551,7 @@ "user-defined-soft-reference-parsers": [ "TYPO3 Explained", "main", - "ApiOverview\/SoftReferences\/Index.html#user-defined-soft-reference-parsers", + "ApiOverview\/SoftReferences\/Index.html#soft-references-custom-parsers", "User-defined soft reference parsers" ], "using-the-soft-reference-parser": [ @@ -43951,7 +44563,7 @@ "symfony-expression-language-1": [ "TYPO3 Explained", "main", - "ApiOverview\/SymfonyExpressionLanguage\/Index.html#symfony-expression-language-1", + "ApiOverview\/SymfonyExpressionLanguage\/Index.html#symfony-expression-language", "Symfony expression language" ], "main-api": [ @@ -43963,67 +44575,49 @@ "registering-new-provider": [ "TYPO3 Explained", "main", - "ApiOverview\/SymfonyExpressionLanguage\/Index.html#registering-new-provider", + "ApiOverview\/SymfonyExpressionLanguage\/Index.html#sel-ts-registering-new-provider-within-extension", "Registering new provider" ], "implementing-a-provider": [ "TYPO3 Explained", "main", - "ApiOverview\/SymfonyExpressionLanguage\/Index.html#implementing-a-provider", + "ApiOverview\/SymfonyExpressionLanguage\/Index.html#sel-ts-implement-provider-within-extension", "Implementing a provider" ], "additional-variables": [ "TYPO3 Explained", "main", - "ApiOverview\/SymfonyExpressionLanguage\/Index.html#additional-variables", + "ApiOverview\/SymfonyExpressionLanguage\/Index.html#sel-ts-additional-variables", "Additional variables" ], "additional-functions": [ "TYPO3 Explained", "main", - "ApiOverview\/SymfonyExpressionLanguage\/Index.html#additional-functions", + "ApiOverview\/SymfonyExpressionLanguage\/Index.html#sel-ts-additional-functions", "Additional functions" ], - "system-overview-1": [ - "TYPO3 Explained", - "main", - "ApiOverview\/SystemOverview\/Index.html#system-overview-1", - "System Overview" - ], - "application-layer": [ - "TYPO3 Explained", - "main", - "ApiOverview\/SystemOverview\/Index.html#application-layer", - "Application layer" - ], - "user-interface-layer": [ - "TYPO3 Explained", - "main", - "ApiOverview\/SystemOverview\/Index.html#user-interface-layer", - "User interface layer" - ], "system-registry": [ "TYPO3 Explained", "main", - "ApiOverview\/SystemRegistry\/Index.html#system-registry", + "ApiOverview\/SystemRegistry\/Index.html#registry", "System registry" ], "the-registry-api": [ "TYPO3 Explained", "main", - "ApiOverview\/SystemRegistry\/Index.html#the-registry-api", + "ApiOverview\/SystemRegistry\/Index.html#registry-api", "The registry API" ], "the-registry-table-sys-registry": [ "TYPO3 Explained", "main", - "ApiOverview\/SystemRegistry\/Index.html#the-registry-table-sys-registry", + "ApiOverview\/SystemRegistry\/Index.html#registry-table", "The registry table (sys_registry)" ], "tsfe-1": [ "TYPO3 Explained", "main", - "ApiOverview\/TSFE\/Index.html#tsfe-1", + "ApiOverview\/TSFE\/Index.html#tsfe", "TSFE" ], "what-is-tsfe": [ @@ -44047,43 +44641,43 @@ "access-contentobjectrenderer": [ "TYPO3 Explained", "main", - "ApiOverview\/TSFE\/Index.html#access-contentobjectrenderer", + "ApiOverview\/TSFE\/Index.html#tsfe_ContentObjectRenderer", "Access ContentObjectRenderer" ], "access-current-page-id": [ "TYPO3 Explained", "main", - "ApiOverview\/TSFE\/Index.html#access-current-page-id", + "ApiOverview\/TSFE\/Index.html#tsfe_pageId", "Access current page ID" ], "access-frontend-user-information": [ "TYPO3 Explained", "main", - "ApiOverview\/TSFE\/Index.html#access-frontend-user-information", + "ApiOverview\/TSFE\/Index.html#tsfe_frontendUser", "Access frontend user information" ], "get-current-base-url": [ "TYPO3 Explained", "main", - "ApiOverview\/TSFE\/Index.html#get-current-base-url", + "ApiOverview\/TSFE\/Index.html#tsfe_baseURL", "Get current base URL" ], "webhooks-and-reactions": [ "TYPO3 Explained", "main", - "ApiOverview\/Webhooks\/Index.html#webhooks-and-reactions", + "ApiOverview\/Webhooks\/Index.html#webhooks", "Webhooks and reactions" ], "versioning-and-workspaces": [ "TYPO3 Explained", "main", - "ApiOverview\/Workspaces\/Index.html#versioning-and-workspaces", + "ApiOverview\/Workspaces\/Index.html#workspaces", "Versioning and Workspaces" ], "frontend-challenges-in-general": [ "TYPO3 Explained", "main", - "ApiOverview\/Workspaces\/Index.html#frontend-challenges-in-general", + "ApiOverview\/Workspaces\/Index.html#workspaces-frontend", "Frontend challenges in general" ], "summary": [ @@ -44095,49 +44689,49 @@ "frontend-implementation-guidelines": [ "TYPO3 Explained", "main", - "ApiOverview\/Workspaces\/Index.html#frontend-implementation-guidelines", + "ApiOverview\/Workspaces\/Index.html#workspaces-frontend-guidelines", "Frontend implementation guidelines" ], "frontend-scenarios-impossible-to-preview": [ "TYPO3 Explained", "main", - "ApiOverview\/Workspaces\/Index.html#frontend-scenarios-impossible-to-preview", + "ApiOverview\/Workspaces\/Index.html#workspaces-frontend-problems", "Frontend scenarios impossible to preview" ], "backend-challenges": [ "TYPO3 Explained", "main", - "ApiOverview\/Workspaces\/Index.html#backend-challenges", + "ApiOverview\/Workspaces\/Index.html#workspaces-backend", "Backend challenges" ], "workspace-related-api-for-backend-modules": [ "TYPO3 Explained", "main", - "ApiOverview\/Workspaces\/Index.html#workspace-related-api-for-backend-modules", + "ApiOverview\/Workspaces\/Index.html#workspaces-backend-api", "Workspace-related API for backend modules" ], "backend-module-access": [ "TYPO3 Explained", "main", - "ApiOverview\/Workspaces\/Index.html#backend-module-access", + "ApiOverview\/Workspaces\/Index.html#workspaces-backend-acess", "Backend module access" ], "detecting-current-workspace": [ "TYPO3 Explained", "main", - "ApiOverview\/Workspaces\/Index.html#detecting-current-workspace", + "ApiOverview\/Workspaces\/Index.html#workspaces-detection", "Detecting current workspace" ], "using-datahandler-with-workspaces": [ "TYPO3 Explained", "main", - "ApiOverview\/Workspaces\/Index.html#using-datahandler-with-workspaces", + "ApiOverview\/Workspaces\/Index.html#workspaces-tcemain", "Using DataHandler with workspaces" ], "moving-in-workspaces": [ "TYPO3 Explained", "main", - "ApiOverview\/Workspaces\/Index.html#moving-in-workspaces", + "ApiOverview\/Workspaces\/Index.html#workspaces-moving", "Moving in workspaces" ], "persistence-in-depth-scenarios": [ @@ -44209,31 +44803,31 @@ "xclasses-extending-classes": [ "TYPO3 Explained", "main", - "ApiOverview\/Xclasses\/Index.html#xclasses-extending-classes", + "ApiOverview\/Xclasses\/Index.html#xclasses", "XCLASSes (Extending Classes)" ], "how-does-it-work": [ "TYPO3 Explained", "main", - "ApiOverview\/Xclasses\/Index.html#how-does-it-work", + "ApiOverview\/Xclasses\/Index.html#xclasses-mechanism", "How does it work?" ], "declaration": [ "TYPO3 Explained", "main", - "ApiOverview\/Xclasses\/Index.html#declaration", + "ApiOverview\/Xclasses\/Index.html#xclasses-declaration", "Declaration" ], "coding-practices": [ "TYPO3 Explained", "main", - "ApiOverview\/Xclasses\/Index.html#coding-practices", + "ApiOverview\/Xclasses\/Index.html#xclasses-coding", "Coding practices" ], "javascript-coding-guidelines": [ "TYPO3 Explained", "main", - "CodingGuidelines\/CglJavaScript\/Index.html#javascript-coding-guidelines", + "CodingGuidelines\/CglJavaScript\/Index.html#cgl-javascript", "JavaScript coding guidelines" ], "directories-and-filenames": [ @@ -44245,7 +44839,7 @@ "file-structure": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Index.html#file-structure", + "ExtensionArchitecture\/FileStructure\/Index.html#extension-reserved-folders-legacy", "File structure" ], "copyright-notice": [ @@ -44275,7 +44869,7 @@ "general-requirements-for-php-files": [ "TYPO3 Explained", "main", - "CodingGuidelines\/CglPhp\/GeneralRequirementsForPhpFiles.html#general-requirements-for-php-files", + "CodingGuidelines\/CglPhp\/GeneralRequirementsForPhpFiles.html#cgl-general-requirements-for-php-files", "General requirements for PHP files" ], "typo3-coding-standards": [ @@ -44317,13 +44911,13 @@ "php-coding-guidelines": [ "TYPO3 Explained", "main", - "CodingGuidelines\/CglPhp\/Index.html#php-coding-guidelines", + "CodingGuidelines\/CglPhp\/Index.html#cgl-php", "PHP coding guidelines" ], "php-syntax-formatting": [ "TYPO3 Explained", "main", - "CodingGuidelines\/CglPhp\/PhpSyntaxFormatting.html#php-syntax-formatting", + "CodingGuidelines\/CglPhp\/PhpSyntaxFormatting.html#cgl-php-syntax-formatting", "PHP syntax formatting" ], "identifiers": [ @@ -44401,7 +44995,7 @@ "using-phpdoc": [ "TYPO3 Explained", "main", - "CodingGuidelines\/CglPhp\/UsingPhpdoc.html#using-phpdoc", + "CodingGuidelines\/CglPhp\/UsingPhpdoc.html#cgl-using-phpdoc", "Using phpDoc" ], "function-information-block": [ @@ -44419,7 +45013,7 @@ "restructuredtext-rest": [ "TYPO3 Explained", "main", - "CodingGuidelines\/CglRest\/Index.html#restructuredtext-rest", + "CodingGuidelines\/CglRest\/Index.html#cgl-rest", "reStructuredText (reST)" ], "directory-and-file-names": [ @@ -44431,13 +45025,13 @@ "tsconfig-coding-guidelines": [ "TYPO3 Explained", "main", - "CodingGuidelines\/CglTsConfig.html#tsconfig-coding-guidelines", + "CodingGuidelines\/CglTsConfig.html#cgl-tsconfig", "TSconfig coding guidelines" ], "typescript-coding-guidelines": [ "TYPO3 Explained", "main", - "CodingGuidelines\/CglTypeScript\/Index.html#typescript-coding-guidelines", + "CodingGuidelines\/CglTypeScript\/Index.html#cgl-typescript", "TypeScript coding guidelines" ], "directories-and-file-names": [ @@ -44449,19 +45043,19 @@ "typoscript-coding-guidelines": [ "TYPO3 Explained", "main", - "CodingGuidelines\/CglTypoScript\/Index.html#typoscript-coding-guidelines", + "CodingGuidelines\/CglTypoScript\/Index.html#cgl-typoscript", "TypoScript coding guidelines" ], "xliff-coding-guidelines": [ "TYPO3 Explained", "main", - "CodingGuidelines\/CglXliff\/Index.html#xliff-coding-guidelines", + "CodingGuidelines\/CglXliff\/Index.html#cgl-xliff", "XLIFF coding guidelines" ], "language-keys": [ "TYPO3 Explained", "main", - "CodingGuidelines\/CglXliff\/Index.html#language-keys", + "CodingGuidelines\/CglXliff\/Index.html#cgl-xliff-language-keys", "Language keys" ], "defining-localized-strings": [ @@ -44473,277 +45067,61 @@ "yaml-coding-guidelines": [ "TYPO3 Explained", "main", - "CodingGuidelines\/CglYaml.html#yaml-coding-guidelines", + "CodingGuidelines\/CglYaml.html#cgl-yaml", "YAML coding guidelines" ], - "accessing-the-database": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/AccessingTheDatabase.html#accessing-the-database", - "Accessing the database" - ], - "namespaces-and-class-names-of-user-files": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/ClassNamesOfUserFiles.html#namespaces-and-class-names-of-user-files", - "Namespaces and class names of user files" - ], - "handling-deprecations": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/HandlingDeprecations.html#handling-deprecations", - "Handling deprecations" - ], - "php-best-practices": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/Index.html#php-best-practices", - "PHP best practices" - ], - "named-arguments": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#named-arguments", - "Named arguments" - ], - "named-arguments-in-public-apis": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#named-arguments-in-public-apis", - "Named arguments in public APIs" - ], - "utilizing-named-arguments-in-extensions": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#utilizing-named-arguments-in-extensions", - "Utilizing named arguments in extensions" - ], - "typo3-core-development": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#typo3-core-development", - "TYPO3 Core development" - ], - "leveraging-named-arguments-in-pcpp-value-objects": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#leveraging-named-arguments-in-pcpp-value-objects", - "Leveraging Named Arguments in PCPP Value Objects" - ], - "invoking-2nd-party-non-core-library-dependency-methods": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#invoking-2nd-party-non-core-library-dependency-methods", - "Invoking 2nd-party (non-Core library) dependency methods" - ], - "invoking-core-api": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#invoking-core-api", - "Invoking Core API" - ], - "utilizing-named-arguments-in-phpunit-test-data-providers": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#utilizing-named-arguments-in-phpunit-test-data-providers", - "Utilizing named arguments in PHPUnit test data providers" - ], - "leveraging-named-arguments-when-invoking-php-functions": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/NamedArguments.html#leveraging-named-arguments-when-invoking-php-functions", - "Leveraging named arguments when invoking PHP functions" - ], - "singletons": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/Singletons.html#singletons", - "Singletons" - ], - "static-methods": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/StaticMethods.html#static-methods", - "Static methods" - ], - "unit-tests": [ - "TYPO3 Explained", - "main", - "Testing\/ExtensionTesting.html#unit-tests", - "Unit tests" - ], - "unit-test-files": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/UnitTests.html#unit-test-files", - "Unit test files" - ], - "using-unit-tests": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/UnitTests.html#using-unit-tests", - "Using unit tests" - ], - "adding-unit-tests": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/UnitTests.html#adding-unit-tests", - "Adding unit tests" - ], - "conventions-for-unit-tests": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/CodingBestPractices\/UnitTests.html#conventions-for-unit-tests", - "Conventions for unit tests" - ], "coding-guidelines": [ "TYPO3 Explained", "main", - "CodingGuidelines\/Index.html#coding-guidelines", + "CodingGuidelines\/Index.html#cgl", "Coding guidelines" ], "introduction-to-the-typo3-coding-guidelines-cgl": [ "TYPO3 Explained", "main", - "CodingGuidelines\/Introduction.html#introduction-to-the-typo3-coding-guidelines-cgl", + "CodingGuidelines\/Introduction.html#cgl-introduction", "Introduction to the TYPO3 coding guidelines (CGL)" ], "the-cgl-as-a-means-of-quality-assurance": [ "TYPO3 Explained", "main", - "CodingGuidelines\/Introduction.html#the-cgl-as-a-means-of-quality-assurance", + "CodingGuidelines\/Introduction.html#cgl-quality-assurance", "The CGL as a means of quality assurance" ], "general-recommendations": [ "TYPO3 Explained", "main", - "CodingGuidelines\/Introduction.html#general-recommendations", + "CodingGuidelines\/Introduction.html#cgl-general-recommendations", "General recommendations" ], "setup-ide-editor": [ "TYPO3 Explained", "main", - "CodingGuidelines\/Introduction.html#setup-ide-editor", + "CodingGuidelines\/Introduction.html#cgl-ide", "Setup IDE \/ editor" ], "editorconfig": [ "TYPO3 Explained", "main", - "CodingGuidelines\/Introduction.html#editorconfig", + "CodingGuidelines\/Introduction.html#cgl-editorconfig", ".editorconfig" ], - "php-architecture": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/Index.html#php-architecture", - "PHP architecture" - ], - "characteristics": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/Services.html#characteristics", - "Characteristics" - ], - "good-examples": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html#good-examples", - "Good examples" - ], - "bad-examples": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html#bad-examples", - "Bad examples" - ], - "static-methods-static-classes-utility-classes": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/StaticMethods.html#static-methods-static-classes-utility-classes", - "Static Methods, static Classes, Utility Classes" - ], - "characteristica": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/Traits.html#characteristica", - "Characteristica" - ], - "red-flags": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/StaticMethods.html#red-flags", - "Red Flags" - ], - "traits": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/Traits.html#traits", - "Traits" - ], - "working-with-exceptions": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html#working-with-exceptions", - "Working with exceptions" - ], - "exception-types": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html#exception-types", - "Exception types" - ], - "typical-cases-for-exceptions-that-are-designed-to-be-caught": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html#typical-cases-for-exceptions-that-are-designed-to-be-caught", - "Typical cases for exceptions that are designed to be caught" - ], - "typical-cases-for-exceptions-that-should-not-be-caught": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html#typical-cases-for-exceptions-that-should-not-be-caught", - "Typical cases for exceptions that should not be caught" - ], - "typical-exception-arguments": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html#typical-exception-arguments", - "Typical exception arguments" - ], - "exception-inheritance": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html#exception-inheritance", - "Exception inheritance" - ], - "extending-exceptions": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html#extending-exceptions", - "Extending exceptions" - ], - "further-readings": [ - "TYPO3 Explained", - "main", - "CodingGuidelines\/PhpArchitecture\/WorkingWithExceptions.html#further-readings", - "Further readings" - ], "application-context-1": [ "TYPO3 Explained", "main", - "Configuration\/ApplicationContext.html#application-context-1", + "Configuration\/ApplicationContext.html#application-context", "Application Context" ], "default-applicationcontext": [ "TYPO3 Explained", "main", - "Configuration\/ApplicationContext.html#default-applicationcontext", + "Configuration\/ApplicationContext.html#default-application-context", "Default ApplicationContext" ], "set-the-applicationcontext": [ "TYPO3 Explained", "main", - "Configuration\/ApplicationContext.html#set-the-applicationcontext", + "Configuration\/ApplicationContext.html#set-application-context", "Set the ApplicationContext" ], "nginx": [ @@ -44755,7 +45133,7 @@ "env-composer-only": [ "TYPO3 Explained", "main", - "Configuration\/ApplicationContext.html#env-composer-only", + "Configuration\/ApplicationContext.html#set-application-context-env", ".env (Composer only)" ], "env": [ @@ -44767,73 +45145,67 @@ "autoloader-composer-only": [ "TYPO3 Explained", "main", - "Configuration\/ApplicationContext.html#autoloader-composer-only", + "Configuration\/ApplicationContext.html#set-application-context-autoloader", "AutoLoader (Composer only)" ], "php-ini": [ "TYPO3 Explained", "main", - "Configuration\/ApplicationContext.html#php-ini", + "Configuration\/ApplicationContext.html#set-application-context-php-ini", "php.ini" ], "index-php": [ "TYPO3 Explained", "main", - "Configuration\/ApplicationContext.html#index-php", + "Configuration\/ApplicationContext.html#set-application-context-index-php", "index.php" ], "sub-applicationcontext": [ "TYPO3 Explained", "main", - "Configuration\/ApplicationContext.html#sub-applicationcontext", + "Configuration\/ApplicationContext.html#sub-application-context", "Sub ApplicationContext" ], "root-applicationcontext": [ "TYPO3 Explained", "main", - "Configuration\/ApplicationContext.html#root-applicationcontext", + "Configuration\/ApplicationContext.html#root-application-context", "Root ApplicationContext" ], "parent-applicationcontext": [ "TYPO3 Explained", "main", - "Configuration\/ApplicationContext.html#parent-applicationcontext", + "Configuration\/ApplicationContext.html#parent-application-context", "Parent ApplicationContext" ], "reading-the-applicationcontext": [ "TYPO3 Explained", "main", - "Configuration\/ApplicationContext.html#reading-the-applicationcontext", + "Configuration\/ApplicationContext.html#read-application-context", "Reading the ApplicationContext" ], - "site-configuration": [ - "TYPO3 Explained", - "main", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#site-configuration", - "Site configuration" - ], "configuration-presets": [ "TYPO3 Explained", "main", - "Configuration\/ApplicationContext.html#configuration-presets", + "Configuration\/ApplicationContext.html#application-context-configuration-presets", "Configuration presets" ], "backend-entry-point-1": [ "TYPO3 Explained", "main", - "Configuration\/BackendEntryPoint\/Index.html#backend-entry-point-1", + "Configuration\/BackendEntryPoint\/Index.html#backend-entry-point", "Backend entry point" ], "configure-a-specific-path": [ "TYPO3 Explained", "main", - "Configuration\/BackendEntryPoint\/Index.html#configure-a-specific-path", + "Configuration\/BackendEntryPoint\/Index.html#backend-entry-point-specific-path", "Configure a specific path" ], "use-a-distinct-subdomain": [ "TYPO3 Explained", "main", - "Configuration\/BackendEntryPoint\/Index.html#use-a-distinct-subdomain", + "Configuration\/BackendEntryPoint\/Index.html#backend-entry-point-specific-subdomain", "Use a distinct subdomain" ], "apache-configuration": [ @@ -44851,19 +45223,19 @@ "configuration-files-1": [ "TYPO3 Explained", "main", - "Configuration\/ConfigurationFiles.html#configuration-files-1", + "Configuration\/ConfigurationFiles.html#configuration-files", "Configuration files" ], "history": [ "TYPO3 Explained", "main", - "Testing\/History.html#history", + "Testing\/History.html#testing-history", "History" ], "configuration-module": [ "TYPO3 Explained", "main", - "Configuration\/ConfigurationModule\/Index.html#configuration-module", + "Configuration\/ConfigurationModule\/Index.html#config-module", "Configuration module" ], "extending-the-configuration-module": [ @@ -44893,13 +45265,13 @@ "blinding-configuration-options": [ "TYPO3 Explained", "main", - "Configuration\/ConfigurationModule\/Index.html#blinding-configuration-options", + "Configuration\/ConfigurationModule\/Index.html#config-module-blind-options", "Blinding configuration options" ], "configuration-overview": [ "TYPO3 Explained", "main", - "Configuration\/ConfigurationOverview.html#configuration-overview", + "Configuration\/ConfigurationOverview.html#config-overview", "Configuration overview" ], "configuration-overview-files": [ @@ -44929,7 +45301,7 @@ "configuration-methods": [ "TYPO3 Explained", "main", - "Configuration\/Glossary.html#configuration-methods", + "Configuration\/Glossary.html#classification-config-methods", "Configuration methods" ], "ref-tsconfig-t3tsref-typoscript-syntax-using-setting": [ @@ -44965,7 +45337,7 @@ "feature-toggles-1": [ "TYPO3 Explained", "main", - "Configuration\/FeatureToggles.html#feature-toggles-1", + "Configuration\/FeatureToggles.html#feature-toggles", "Feature toggles" ], "naming-of-feature-toggles": [ @@ -44977,19 +45349,19 @@ "using-the-api-as-extension-author": [ "TYPO3 Explained", "main", - "Configuration\/FeatureToggles.html#using-the-api-as-extension-author", + "Configuration\/FeatureToggles.html#feature-toggles-api", "Using the API as extension author" ], "core-feature-toggles": [ "TYPO3 Explained", "main", - "Configuration\/FeatureToggles.html#core-feature-toggles", + "Configuration\/FeatureToggles.html#feature-toggles-core", "Core feature toggles" ], "enable-disable-feature-toggle": [ "TYPO3 Explained", "main", - "Configuration\/FeatureToggles.html#enable-disable-feature-toggle", + "Configuration\/FeatureToggles.html#feature-toggles-enable", "Enable \/ disable feature toggle" ], "feature-toggles-in-typoscript": [ @@ -45001,31 +45373,31 @@ "feature-toggles-in-fluid": [ "TYPO3 Explained", "main", - "Configuration\/FeatureToggles.html#feature-toggles-in-fluid", + "Configuration\/FeatureToggles.html#feature-toggles-viewhelper", "Feature toggles in Fluid" ], "flag-files-1": [ "TYPO3 Explained", "main", - "Configuration\/FlagFiles\/Index.html#flag-files-1", + "Configuration\/FlagFiles\/Index.html#flag-files", "Flag files" ], "globals": [ "TYPO3 Explained", "main", - "Configuration\/GlobalVariables.html#globals", + "Configuration\/GlobalVariables.html#globals-variables", "$GLOBALS" ], "exploring-global-variables": [ "TYPO3 Explained", "main", - "Configuration\/GlobalVariables.html#exploring-global-variables", + "Configuration\/GlobalVariables.html#globals-exploring", "Exploring global variables" ], "glossary": [ "TYPO3 Explained", "main", - "Configuration\/Glossary.html#glossary", + "Configuration\/Glossary.html#configuration-classification", "Glossary" ], "configuration-vs-settings": [ @@ -45055,97 +45427,97 @@ "configuration-1": [ "TYPO3 Explained", "main", - "Configuration\/Index.html#configuration-1", + "Configuration\/Index.html#configuration", "Configuration" ], "be-backend-configuration": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#be-backend-configuration", + "Configuration\/Typo3ConfVars\/BE.html#typo3ConfVars_be", "BE - backend configuration" ], "db-database-connections": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/DB.html#db-database-connections", + "Configuration\/Typo3ConfVars\/DB.html#typo3ConfVars_db", "DB - Database connections" ], "ext-extension-manager-configuration": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/EXT.html#ext-extension-manager-configuration", + "Configuration\/Typo3ConfVars\/EXT.html#typo3ConfVars_ext", "EXT - Extension manager configuration" ], "fe-frontend-configuration": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#fe-frontend-configuration", + "Configuration\/Typo3ConfVars\/FE.html#typo3ConfVars_fe", "FE - frontend configuration" ], "gfx-graphics-configuration": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/GFX.html#gfx-graphics-configuration", + "Configuration\/Typo3ConfVars\/GFX.html#typo3ConfVars_gfx", "GFX - graphics configuration" ], "http-tune-requests": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/HTTP.html#http-tune-requests", + "Configuration\/Typo3ConfVars\/HTTP.html#typo3ConfVars_http", "HTTP - tune requests" ], "typo3-conf-vars": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/Index.html#typo3-conf-vars", + "Configuration\/Typo3ConfVars\/Index.html#typo3ConfVars", "TYPO3_CONF_VARS" ], "file-file-config-system-settings-php": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/Index.html#file-file-config-system-settings-php", + "Configuration\/Typo3ConfVars\/Index.html#typo3ConfVars-localConfiguration", "File config\/system\/settings.php" ], "file-config-system-additional-php": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/Index.html#file-config-system-additional-php", + "Configuration\/Typo3ConfVars\/Index.html#typo3ConfVars-additionalConfiguration", "File config\/system\/additional.php" ], "file-defaultconfiguration-php": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/Index.html#file-defaultconfiguration-php", + "Configuration\/Typo3ConfVars\/Index.html#typo3ConfVars-defaultConfiguration", "File DefaultConfiguration.php" ], "log-logging-configuration": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/LOG.html#log-logging-configuration", + "Configuration\/Typo3ConfVars\/LOG.html#typo3ConfVars_log", "LOG - Logging configuration" ], "mail-settings": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#mail-settings", + "Configuration\/Typo3ConfVars\/MAIL.html#typo3ConfVars_mail", "MAIL settings" ], "sys-system-configuration": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#sys-system-configuration", + "Configuration\/Typo3ConfVars\/SYS.html#typo3ConfVars_sys", "SYS - System configuration" ], "global-meta-information-about-typo3": [ "TYPO3 Explained", "main", - "Configuration\/Typo3Information.html#global-meta-information-about-typo3", + "Configuration\/Typo3Information.html#typo3Information", "Global meta information about TYPO3" ], "general-information": [ "TYPO3 Explained", "main", - "Security\/GeneralInformation\/Index.html#general-information", + "Security\/GeneralInformation\/Index.html#security-general-information", "General Information" ], "version-information": [ @@ -45157,7 +45529,7 @@ "typoscript-1": [ "TYPO3 Explained", "main", - "Configuration\/TypoScript\/Index.html#typoscript-1", + "Configuration\/TypoScript\/Index.html#typoscript", "TypoScript" ], "what-is-typoscript": [ @@ -45169,73 +45541,73 @@ "typoscript-parsing": [ "TYPO3 Explained", "main", - "Configuration\/TypoScript\/Introduction\/Index.html#typoscript-parsing", + "Configuration\/TypoScript\/Introduction\/Index.html#typoscript-syntax-parsed-php-array", "TypoScript parsing" ], "myths-and-faq": [ "TYPO3 Explained", "main", - "Configuration\/TypoScript\/MythsFaq\/Index.html#myths-and-faq", + "Configuration\/TypoScript\/MythsFaq\/Index.html#typoscript-syntax-details", "Myths and FAQ" ], "myth-typoscript-is-a-scripting-language": [ "TYPO3 Explained", "main", - "Configuration\/TypoScript\/MythsFaq\/Index.html#myth-typoscript-is-a-scripting-language", + "Configuration\/TypoScript\/MythsFaq\/Index.html#typoscript-syntax-myth-scripting-language", "Myth: \"TypoScript Is a scripting language\"" ], "myth-typoscript-has-the-same-syntax-as-javascript": [ "TYPO3 Explained", "main", - "Configuration\/TypoScript\/MythsFaq\/Index.html#myth-typoscript-has-the-same-syntax-as-javascript", + "Configuration\/TypoScript\/MythsFaq\/Index.html#typoscript-syntax-myth-javascript", "Myth: \"TypoScript has the same syntax as JavaScript\"" ], "myth-typoscript-is-a-proprietary-standard": [ "TYPO3 Explained", "main", - "Configuration\/TypoScript\/MythsFaq\/Index.html#myth-typoscript-is-a-proprietary-standard", + "Configuration\/TypoScript\/MythsFaq\/Index.html#typoscript-syntax-myth-proprietary", "Myth: \"TypoScript is a proprietary standard\"" ], "myth-typoscript-is-very-complex": [ "TYPO3 Explained", "main", - "Configuration\/TypoScript\/MythsFaq\/Index.html#myth-typoscript-is-very-complex", + "Configuration\/TypoScript\/MythsFaq\/Index.html#typoscript-syntax-myth-complex", "Myth: \"TypoScript is very complex\"" ], "faq-why-not-xml-instead": [ "TYPO3 Explained", "main", - "Configuration\/TypoScript\/MythsFaq\/Index.html#faq-why-not-xml-instead", + "Configuration\/TypoScript\/MythsFaq\/Index.html#typoscript-syntax-xml", "FAQ: \"Why not XML Instead?\"" ], "syntax": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#syntax", + "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#extension-options-syntax", "Syntax" ], "tsconfig-1": [ "TYPO3 Explained", "main", - "Configuration\/TypoScript\/TSconfig\/Index.html#tsconfig-1", + "Configuration\/TypoScript\/TSconfig\/Index.html#tsconfig", "TSconfig" ], "view-the-configuration": [ "TYPO3 Explained", "main", - "Configuration\/UserSettingsConfiguration\/Checking.html#view-the-configuration", + "Configuration\/UserSettingsConfiguration\/Checking.html#user-settings-checking", "View the configuration" ], "columns-section": [ "TYPO3 Explained", "main", - "Configuration\/UserSettingsConfiguration\/Columns.html#columns-section", + "Configuration\/UserSettingsConfiguration\/Columns.html#user-settings-columns", "['columns'] Section" ], "extending-the-user-settings": [ "TYPO3 Explained", "main", - "Configuration\/UserSettingsConfiguration\/Extending.html#extending-the-user-settings", + "Configuration\/UserSettingsConfiguration\/Extending.html#user-settings-extending", "Extending the user settings" ], "on-click-on-confirmation-javascript-callbacks": [ @@ -45247,31 +45619,31 @@ "user-settings-configuration": [ "TYPO3 Explained", "main", - "Configuration\/UserSettingsConfiguration\/Index.html#user-settings-configuration", + "Configuration\/UserSettingsConfiguration\/Index.html#user-settings", "User settings configuration" ], "showitem-section": [ "TYPO3 Explained", "main", - "Configuration\/UserSettingsConfiguration\/Showitem.html#showitem-section", + "Configuration\/UserSettingsConfiguration\/Showitem.html#user-settings-showitem", "['showitem'] section" ], "services-yaml": [ "TYPO3 Explained", "main", - "Configuration\/Yaml\/ServicesYaml.html#services-yaml", + "Configuration\/Yaml\/ServicesYaml.html#ServicesYaml", "Services.yaml" ], "yaml-api-1": [ "TYPO3 Explained", "main", - "Configuration\/Yaml\/YamlApi.html#yaml-api-1", + "Configuration\/Yaml\/YamlApi.html#yaml-api", "YAML API" ], "yamlfileloader": [ "TYPO3 Explained", "main", - "Configuration\/Yaml\/YamlApi.html#yamlfileloader", + "Configuration\/Yaml\/YamlApi.html#yamlFileLoader", "YamlFileLoader" ], "custom-placeholder-processing": [ @@ -45283,25 +45655,25 @@ "yaml-syntax-1": [ "TYPO3 Explained", "main", - "Configuration\/Yaml\/YamlSyntax.html#yaml-syntax-1", + "Configuration\/Yaml\/YamlSyntax.html#yaml-syntax", "YAML syntax" ], "configuration-files-ext-tables-php-ext-localconf-php": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/BestPractises\/ConfigurationFiles.html#configuration-files-ext-tables-php-ext-localconf-php", + "ExtensionArchitecture\/BestPractises\/ConfigurationFiles.html#extension-conventions-configuration-files", "Configuration Files (ext_tables.php & ext_localconf.php)" ], "rules-and-best-practices": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/BestPractises\/ConfigurationFiles.html#rules-and-best-practices", + "ExtensionArchitecture\/BestPractises\/ConfigurationFiles.html#rules_ext_tables_localconf_php", "Rules and best practices" ], "choosing-an-extension-key": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/BestPractises\/ExtensionKey.html#choosing-an-extension-key", + "ExtensionArchitecture\/BestPractises\/ExtensionKey.html#extension-key", "Choosing an extension key" ], "rules-for-the-extension-key": [ @@ -45313,37 +45685,37 @@ "about-gpl-and-extensions": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/BestPractises\/ExtensionKey.html#about-gpl-and-extensions", + "ExtensionArchitecture\/BestPractises\/ExtensionKey.html#extension-license", "About GPL and extensions" ], "registering-an-extension-key": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/BestPractises\/ExtensionKey.html#registering-an-extension-key", + "ExtensionArchitecture\/BestPractises\/ExtensionKey.html#extension-key-registration", "Registering an extension key" ], "best-practises-and-conventions": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/BestPractises\/Index.html#best-practises-and-conventions", + "ExtensionArchitecture\/BestPractises\/Index.html#extension-Best-practises", "Best practises and conventions" ], "naming-conventions": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#naming-conventions", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#extension-naming", "Naming conventions" ], "abbreviations-glossary": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#abbreviations-glossary", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#extension-naming-extensionName", "Abbreviations & Glossary" ], "extension-key-extkey": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#extension-key-extkey", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#naming-conventions-extkey", "Extension key (extkey)" ], "vendor-name": [ @@ -45355,19 +45727,19 @@ "database-table-name": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#database-table-name", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#naming-tables", "Database table name" ], "extbase-domain-model-tables": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#extbase-domain-model-tables", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#naming-tables-extbase", "Extbase domain model tables" ], "mm-tables-for-multiple-multiple-relations-between-tables": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#mm-tables-for-multiple-multiple-relations-between-tables", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#naming-tables-mm", "MM-tables for multiple-multiple relations between tables" ], "database-column-name": [ @@ -45379,7 +45751,7 @@ "backend-module-key-modkey": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#backend-module-key-modkey", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#BackendModuleKey", "Backend module key (modkey)" ], "backend-module-signature": [ @@ -45391,19 +45763,19 @@ "plugin-signature": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#plugin-signature", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#naming-conventions-plugin-signature", "Plugin signature" ], "example-register-and-configure-a-non-extbase-plugin": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#example-register-and-configure-a-non-extbase-plugin", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#naming-conventions-plugin-signature-non-extbase", "Example register and configure a non-Extbase plugin:" ], "plugin-key-extbase-only": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#plugin-key-extbase-only", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#naming-conventions-plugin-key", "Plugin key (Extbase only)" ], "example-register-and-configure-an-extbase-plugin": [ @@ -45427,25 +45799,25 @@ "note-on-old-extensions": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/BestPractises\/NamingConventions.html#note-on-old-extensions", + "ExtensionArchitecture\/BestPractises\/NamingConventions.html#extension-old-extensions", "Note on \"old\" extensions" ], "software-design-principles": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/BestPractises\/SoftwareDesignPrinciples.html#software-design-principles", + "ExtensionArchitecture\/BestPractises\/SoftwareDesignPrinciples.html#extension-software-design-principles", "Software Design Principles" ], "dto-data-transfer-objects": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/BestPractises\/SoftwareDesignPrinciples.html#dto-data-transfer-objects", + "ExtensionArchitecture\/BestPractises\/SoftwareDesignPrinciples.html#concept-dto", "DTO \/ Data Transfer Objects" ], "concepts": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Concepts\/Index.html#concepts", + "ExtensionArchitecture\/Concepts\/Index.html#extension-concepts", "Concepts" ], "types-of-extensions": [ @@ -45463,37 +45835,37 @@ "extensions-and-the-core": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Concepts\/Introduction.html#extensions-and-the-core", + "ExtensionArchitecture\/Concepts\/Introduction.html#extensions-and-core", "Extensions and the Core" ], "notable-system-extensions": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Concepts\/Introduction.html#notable-system-extensions", + "ExtensionArchitecture\/Concepts\/Introduction.html#extensions-core", "Notable system extensions" ], "system-third-party-and-custom-extensions": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Concepts\/SystemAndLocalExtensions.html#system-third-party-and-custom-extensions", + "ExtensionArchitecture\/Concepts\/SystemAndLocalExtensions.html#extension-scope", "System, third-party and custom extensions" ], "third-party-and-custom-extensions": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Concepts\/SystemAndLocalExtensions.html#third-party-and-custom-extensions", + "ExtensionArchitecture\/Concepts\/SystemAndLocalExtensions.html#extension-local", "Third-party and custom extensions" ], "system-extensions": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Concepts\/SystemAndLocalExtensions.html#system-extensions", + "ExtensionArchitecture\/Concepts\/SystemAndLocalExtensions.html#extension-system", "System Extensions" ], "extbase-examples": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Examples\/Index.html#extbase-examples", + "ExtensionArchitecture\/Extbase\/Examples\/Index.html#extbase_examples", "Extbase Examples" ], "example-extensions": [ @@ -45535,13 +45907,13 @@ "extbase-1": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Index.html#extbase-1", + "ExtensionArchitecture\/Extbase\/Index.html#extbase", "Extbase" ], "extbase-introduction-1": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Introduction\/Index.html#extbase-introduction-1", + "ExtensionArchitecture\/Extbase\/Introduction\/Index.html#extbase-introduction", "Extbase introduction" ], "what-is-extbase": [ @@ -45559,7 +45931,7 @@ "annotations": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#annotations", + "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#extbase-annotations", "Annotations" ], "annotations-provided-by-extbase": [ @@ -45571,67 +45943,67 @@ "validate": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#validate", + "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#extbase-annotation-validate", "Validate" ], "ignorevalidation": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#ignorevalidation", + "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#extbase-annotation-ignore-validation", "IgnoreValidation" ], "orm-object-relational-model-annotations": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#orm-object-relational-model-annotations", + "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#extbase-annotation-orm", "ORM (object relational model) annotations" ], "cascade": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#cascade", + "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#extbase-annotation-cascade", "Cascade" ], "transient": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#transient", + "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#extbase-annotation-transient", "Transient" ], "lazy": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#lazy", + "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#extbase-annotation-lazy", "Lazy" ], "combining-annotations": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#combining-annotations", + "ExtensionArchitecture\/Extbase\/Reference\/Annotations.html#extbase-annotation-combine", "Combining annotations" ], "actioncontroller": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ActionController.html#actioncontroller", + "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ActionController.html#extbase-action-controller", "ActionController" ], "define-initialization-code": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ActionController.html#define-initialization-code", + "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ActionController.html#extbase_class_hierarchy-define_initialization_code", "Define initialization code" ], "catching-validation-errors-with-erroraction": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ActionController.html#catching-validation-errors-with-erroraction", + "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ActionController.html#extbase_class_hierarchy-catching_validation_errors_with_error_action", "Catching validation errors with errorAction" ], "forward-to-a-different-controller": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ActionController.html#forward-to-a-different-controller", + "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ActionController.html#extbase-action-controller-forward", "Forward to a different controller" ], "stop-further-processing-in-a-controller-s-action": [ @@ -45643,19 +46015,19 @@ "error-action": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ErrorAction.html#error-action", + "ExtensionArchitecture\/Extbase\/Reference\/Controller\/ErrorAction.html#extbase_error_action", "Error action" ], "controller": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/Tea\/Controller.html#controller", + "ExtensionArchitecture\/Tutorials\/Tea\/Controller.html#extbase_tutorial_tea_controller", "Controller" ], "property-mapping": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Controller\/PropertyMapping.html#property-mapping", + "ExtensionArchitecture\/Extbase\/Reference\/Controller\/PropertyMapping.html#extbase_property_mapping", "Property mapping" ], "how-to-use-property-mappers": [ @@ -45667,7 +46039,7 @@ "type-converters": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Controller\/TypeConverter.html#type-converters", + "ExtensionArchitecture\/Extbase\/Reference\/Controller\/TypeConverter.html#extbase_Type_converters", "Type converters" ], "custom-type-converters": [ @@ -45679,13 +46051,13 @@ "model-domain": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Index.html#model-domain", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Index.html#extbase-domain", "Model \/ Domain" ], "model": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#model", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#extbase-model", "Model" ], "connecting-the-model-to-the-database": [ @@ -45709,7 +46081,7 @@ "nullable-relations": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#nullable-relations", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#extbase-model-nullable-relations", "Nullable relations" ], "1-1-relationship": [ @@ -45739,7 +46111,7 @@ "hydrating-objects": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#hydrating-objects", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#extbase-model-hydrating", "Hydrating objects" ], "creating-objects-with-constructor-arguments": [ @@ -45787,7 +46159,7 @@ "identifiers-in-localized-models": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#identifiers-in-localized-models", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Model.html#extbase-model-localizedUid", "Identifiers in localized models" ], "extending-existing-models": [ @@ -45799,13 +46171,13 @@ "use-arbitrary-database-tables-with-an-extbase-model": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Persistence.html#use-arbitrary-database-tables-with-an-extbase-model", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Persistence.html#extbase_manual_mapping", "Use arbitrary database tables with an Extbase model" ], "record-types-and-persistence": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Persistence.html#record-types-and-persistence", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Persistence.html#extbase-persistance-record-types", "Record types and persistence" ], "create-a-custom-model-for-a-core-table": [ @@ -45817,49 +46189,49 @@ "repository": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/Tea\/Repository.html#repository", + "ExtensionArchitecture\/Tutorials\/Tea\/Repository.html#extbase_tutorial_tea_repositoy", "Repository" ], "find-methods": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#find-methods", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#extbase-repository-find-methods", "Find methods" ], "custom-find-methods": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#custom-find-methods", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#extbase-repository-find-by-custom", "Custom find methods" ], "query-settings": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#query-settings", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#extbase-repository-query-setting", "Query settings" ], "repository-api": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#repository-api", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#extbase-repository-api", "Repository API" ], "typo3querysettings-and-localization": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#typo3querysettings-and-localization", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#extbase-repository-localization", "Typo3QuerySettings and localization" ], "debugging-an-extbase-query": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#debugging-an-extbase-query", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Repository.html#extbase-repository-debug-query", "Debugging an Extbase query" ], "validator": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Validator.html#validator", + "ExtensionArchitecture\/Extbase\/Reference\/Domain\/Validator.html#extbase_domain_validator", "Validator" ], "custom-validator-for-a-property-of-the-domain-model": [ @@ -45883,181 +46255,181 @@ "file-upload": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#file-upload", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload", "File upload" ], "accessing-a-file-reference-in-an-extbase-domain-model": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#accessing-a-file-reference-in-an-extbase-domain-model", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_accessing", "Accessing a file reference in an Extbase domain model" ], "writing-filereference-entries": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#writing-filereference-entries", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_writing", "Writing FileReference entries" ], "manual-handling": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#manual-handling", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_writing-manual", "Manual handling" ], "automatic-handling-based-on-php-attributes": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#automatic-handling-based-on-php-attributes", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_writing-attributes", "Automatic handling based on PHP attributes" ], "reference-for-the-php-fileupload-php-attribute": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#reference-for-the-php-fileupload-php-attribute", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute", "Reference for the FileUpload PHP attribute" ], "file-upload-configuration-with-the-fileupload-attribute": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#file-upload-configuration-with-the-fileupload-attribute", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute_configuration", "File upload configuration with the FileUpload attribute" ], "manual-file-upload-configuration": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#manual-file-upload-configuration", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-manual-configuration", "Manual file upload configuration" ], "configuration-options-for-file-uploads": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#configuration-options-for-file-uploads", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-options", "Configuration options for file uploads" ], "property-name": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#property-name", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-property-name", "Property name:" ], "validation": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Validation.html#validation", + "ExtensionArchitecture\/Extbase\/Reference\/Validation.html#extbase_validation", "Validation" ], "required": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#required", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-required", "Required" ], "minimum-files": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#minimum-files", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-minimum-files", "Minimum files" ], "maximum-files": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#maximum-files", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-maximum-files", "Maximum files" ], "upload-folder": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#upload-folder", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-upload-folder", "Upload folder" ], "upload-folder-creation-when-missing": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#upload-folder-creation-when-missing", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-upload-folder-creation", "Upload folder creation, when missing" ], "add-random-suffix": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#add-random-suffix", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-random-suffix", "Add random suffix" ], "duplication-behavior": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#duplication-behavior", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-duplication-behavior", "Duplication behavior" ], "modifying-existing-configuration": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#modifying-existing-configuration", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-configuration-change", "Modifying existing configuration" ], "using-typoscript-configuration-for-file-uploads-configuration": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#using-typoscript-configuration-for-file-uploads-configuration", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-typoscript", "Using TypoScript configuration for file uploads configuration" ], "file-upload-validation": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#file-upload-validation", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-validationkeys", "File upload validation" ], "deletion-of-uploaded-files-and-file-references": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#deletion-of-uploaded-files-and-file-references", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-deletion", "Deletion of uploaded files and file references" ], "modifyuploadedfiletargetfilenameevent": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#modifyuploadedfiletargetfilenameevent", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_attribute-psr-event", "ModifyUploadedFileTargetFilenameEvent" ], "multi-step-form-handling": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#multi-step-form-handling", + "ExtensionArchitecture\/Extbase\/Reference\/FileUpload.html#extbase_fileupload_multistep", "Multi-step form handling" ], "registration-of-frontend-plugins": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FrontendPlugins.html#registration-of-frontend-plugins", + "ExtensionArchitecture\/Extbase\/Reference\/FrontendPlugins.html#extbase_registration_of_frontend_plugins", "Registration of frontend plugins" ], "frontend-plugin-as-content-element": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FrontendPlugins.html#frontend-plugin-as-content-element", + "ExtensionArchitecture\/Extbase\/Reference\/FrontendPlugins.html#extbase_frontend_plugin_content_element", "Frontend plugin as content element" ], "frontend-plugin-as-pure-typoscript": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/FrontendPlugins.html#frontend-plugin-as-pure-typoscript", + "ExtensionArchitecture\/Extbase\/Reference\/FrontendPlugins.html#extbase_frontend_plugin_typoscript", "Frontend plugin as pure TypoScript" ], "extbase-reference": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/Index.html#extbase-reference", + "ExtensionArchitecture\/Extbase\/Reference\/Index.html#extbase_reference", "Extbase reference" ], "localization": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/Localization\/Index.html#localization", + "ExtensionArchitecture\/HowTo\/Localization\/Index.html#extension_localization", "Localization" ], "typoscript-configuration": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/TypoScriptConfiguration.html#typoscript-configuration", + "ExtensionArchitecture\/Extbase\/Reference\/TypoScriptConfiguration.html#extbase_typoscript_configuration", "TypoScript configuration" ], "plugin-configuration": [ @@ -46075,7 +46447,7 @@ "uri-builder-extbase": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/UriBuilder.html#uri-builder-extbase", + "ExtensionArchitecture\/Extbase\/Reference\/UriBuilder.html#extbase-uri-builder", "URI builder (Extbase)" ], "usage-in-an-extbase-controller": [ @@ -46093,7 +46465,7 @@ "example-in-extbase-viewhelper": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/UriBuilder.html#example-in-extbase-viewhelper", + "ExtensionArchitecture\/Extbase\/Reference\/UriBuilder.html#extbase-uri-builder-viewhelper", "Example in Extbase ViewHelper" ], "why-is-validation-needed": [ @@ -46135,7 +46507,7 @@ "view": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/View\/Index.html#view", + "ExtensionArchitecture\/Extbase\/Reference\/View\/Index.html#extbase-view", "View" ], "view-configuration": [ @@ -46147,7 +46519,7 @@ "responses": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Extbase\/Reference\/View\/Index.html#responses", + "ExtensionArchitecture\/Extbase\/Reference\/View\/Index.html#extbase_responses", "Responses" ], "html-response": [ @@ -46171,13 +46543,13 @@ "file-classes": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Classes\/Index.html#file-classes", + "ExtensionArchitecture\/FileStructure\/Classes\/Index.html#extension-classes", "Classes" ], "file-composer-json": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/ComposerJson.html#file-composer-json", + "ExtensionArchitecture\/FileStructure\/ComposerJson.html#files-composer-json", "composer.json" ], "about-the-composer-json-file": [ @@ -46189,13 +46561,13 @@ "minimal-composer-json": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/ComposerJson.html#minimal-composer-json", + "ExtensionArchitecture\/FileStructure\/ComposerJson.html#ext-composer-json-minimal", "Minimal composer.json" ], "extended-composer-json": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/ComposerJson.html#extended-composer-json", + "ExtensionArchitecture\/FileStructure\/ComposerJson.html#ext-composer-json-extended", "Extended composer.json" ], "name": [ @@ -46207,7 +46579,7 @@ "type": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/ComposerJson.html#type", + "ExtensionArchitecture\/FileStructure\/ComposerJson.html#ext-composer-json-property-type", "type" ], "license": [ @@ -46237,7 +46609,7 @@ "extra-typo3-cms-extension-key": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/ComposerJson.html#extra-typo3-cms-extension-key", + "ExtensionArchitecture\/FileStructure\/ComposerJson.html#ext-composer-json-property-extension-key", "extra.typo3\/cms.extension-key" ], "properties-no-longer-used": [ @@ -46261,115 +46633,115 @@ "file-ajaxroutes-php": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Configuration\/Backend\/Index.html#file-ajaxroutes-php", + "ExtensionArchitecture\/FileStructure\/Configuration\/Backend\/Index.html#extension-configuration-backend-ajaxroutes", "AjaxRoutes.php" ], "file-routes-php": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Configuration\/Backend\/Index.html#file-routes-php", + "ExtensionArchitecture\/FileStructure\/Configuration\/Backend\/Index.html#extension-configuration-backend-routes", "Routes.php" ], "file-modules-php": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Configuration\/Backend\/Index.html#file-modules-php", + "ExtensionArchitecture\/FileStructure\/Configuration\/Backend\/Index.html#extension-configuration-backend-modules", "Modules.php" ], "file-contentsecuritypolicies-php": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Configuration\/ContentSecurityPolicies.html#file-contentsecuritypolicies-php", + "ExtensionArchitecture\/FileStructure\/Configuration\/ContentSecurityPolicies.html#extension-configuration-ContentSecurityPolicies-php", "ContentSecurityPolicies.php" ], "file-extbase": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Configuration\/Extbase\/Index.html#file-extbase", + "ExtensionArchitecture\/FileStructure\/Configuration\/Extbase\/Index.html#extension-configuration-extbase", "Extbase" ], "file-persistence": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Configuration\/Extbase\/Persistence\/Index.html#file-persistence", + "ExtensionArchitecture\/FileStructure\/Configuration\/Extbase\/Persistence\/Index.html#extension-configuration-extbase-persistence", "Persistence" ], "file-classes-php": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Configuration\/Extbase\/Persistence\/Index.html#file-classes-php", + "ExtensionArchitecture\/FileStructure\/Configuration\/Extbase\/Persistence\/Index.html#extension-configuration-extbase-persistence-classes", "Classes.php" ], "file-icons-php": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Configuration\/Icons.html#file-icons-php", + "ExtensionArchitecture\/FileStructure\/Configuration\/Icons.html#extension-configuration-Icons-php", "Icons.php" ], "file-configuration": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Configuration\/Index.html#file-configuration", + "ExtensionArchitecture\/FileStructure\/Configuration\/Index.html#extension-configuration-files", "Configuration" ], "file-page-tsconfig": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#file-page-tsconfig", + "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#extension-configuration-sets-page-tsconfig", "page.tsconfig" ], "file-requestmiddlewares-php": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Configuration\/RequestMiddlewaresPhp.html#file-requestmiddlewares-php", + "ExtensionArchitecture\/FileStructure\/Configuration\/RequestMiddlewaresPhp.html#extension-configuration-RequestMiddlewares-php", "RequestMiddlewares.php" ], "file-services-yaml": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Configuration\/ServicesYaml.html#file-services-yaml", + "ExtensionArchitecture\/FileStructure\/Configuration\/ServicesYaml.html#extension-configuration-services-yaml", "Services.yaml" ], "file-sets": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#file-sets", + "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#extension-configuration-sets", "Sets" ], "file-config-yaml-mandatory": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#file-config-yaml-mandatory", + "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#extension-configuration-sets-config-yaml", "config.yaml (mandatory)" ], "file-settings-yaml": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#file-settings-yaml", + "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#extension-configuration-sets-settings-yaml", "settings.yaml" ], "file-settings-definitions-yaml": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#file-settings-definitions-yaml", + "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#extension-configuration-sets-settings-definitions-yaml", "settings.definitions.yaml" ], "file-setup-typoscript": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#file-setup-typoscript", + "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#extension-configuration-sets-setup-typoscript", "setup.typoscript" ], "file-constants-typoscript": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#file-constants-typoscript", + "ExtensionArchitecture\/FileStructure\/Configuration\/Sets\/Index.html#extension-configuration-sets-constants-typoscript", "constants.typoscript" ], "file-tca": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Configuration\/TCA\/Index.html#file-tca", + "ExtensionArchitecture\/FileStructure\/Configuration\/TCA\/Index.html#extension-configuration-tca", "TCA" ], "file-tablename-php": [ @@ -46381,61 +46753,61 @@ "file-overrides": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Configuration\/TCA\/Index.html#file-overrides", + "ExtensionArchitecture\/FileStructure\/Configuration\/TCA\/Index.html#extension-configuration-tca-overrides", "Overrides" ], "file-tsconfig": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Configuration\/TsConfig\/Index.html#file-tsconfig", + "ExtensionArchitecture\/FileStructure\/Configuration\/TsConfig\/Index.html#extension-configuration-tsconfig", "TsConfig" ], "file-typoscript": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Configuration\/TypoScript\/Index.html#file-typoscript", + "ExtensionArchitecture\/FileStructure\/Configuration\/TypoScript\/Index.html#extension-configuration-typoscript", "TypoScript" ], "file-user-tsconfig": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Configuration\/UserTsconfig.html#file-user-tsconfig", + "ExtensionArchitecture\/FileStructure\/Configuration\/UserTsconfig.html#extension-configuration-user_tsconfig", "user.tsconfig" ], "file-documentation": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Documentation\/Index.html#file-documentation", + "ExtensionArchitecture\/FileStructure\/Documentation\/Index.html#extension-files-documentation", "Documentation" ], "file-ext-conf-template-txt": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#file-ext-conf-template-txt", + "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#extension-options", "ext_conf_template.txt" ], "available-option-types": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#available-option-types", + "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#extension-options-available-option-types", "Available option types" ], "accessing-saved-options": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#accessing-saved-options", + "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#extension-options-api", "Accessing saved options" ], "nested-structure": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#nested-structure", + "ExtensionArchitecture\/FileStructure\/ExtConfTemplate.html#extension-options-nested-structure", "Nested structure" ], "file-ext-emconf-php": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/ExtEmconf.html#file-ext-emconf-php", + "ExtensionArchitecture\/FileStructure\/ExtEmconf.html#ext_emconf-php", "ext_emconf.php" ], "deprecated-configuration": [ @@ -46447,7 +46819,7 @@ "file-ext-localconf-php": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/ExtLocalconf.html#file-ext-localconf-php", + "ExtensionArchitecture\/FileStructure\/ExtLocalconf.html#ext-localconf-php", "ext_localconf.php" ], "should-not-be-used-for": [ @@ -46465,85 +46837,127 @@ "file-ext-tables-php": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/ExtTables.html#file-ext-tables-php", + "ExtensionArchitecture\/FileStructure\/ExtTables.html#ext-tables-php", "ext_tables.php" ], "registering-a-scheduler-task": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/ExtTables.html#registering-a-scheduler-task", + "ExtensionArchitecture\/FileStructure\/ExtTables.html#extension-configuration-files-scheduler", "Registering a scheduler task" ], "registering-a-backend-module": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/ExtTables.html#registering-a-backend-module", + "ExtensionArchitecture\/FileStructure\/ExtTables.html#extension-configuration-files-backend-module", "Registering a backend module" ], "allowing-a-tables-records-to-be-added-to-standard-pages": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/ExtTables.html#allowing-a-tables-records-to-be-added-to-standard-pages", + "ExtensionArchitecture\/FileStructure\/ExtTables.html#extension-configuration-files-allow-table-standard", "Allowing a tables records to be added to Standard pages" ], "file-ext-tables-sql": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#file-ext-tables-sql", + "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#ext-tables-sql", "ext_tables.sql" ], + "adding-additional-fields-to-existing-tables": [ + "TYPO3 Explained", + "main", + "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#ext-tables-sql-fields", + "Adding additional fields to existing tables" + ], + "database-types": [ + "TYPO3 Explained", + "main", + "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#ext-tables-sql-types", + "Database types" + ], + "char-and-binary-as-fixed-length-columns": [ + "TYPO3 Explained", + "main", + "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#ext-tables-sql-types-fixed-length", + "CHAR and BINARY as fixed length columns" + ], + "fixed-length-sql-type-char": [ + "TYPO3 Explained", + "main", + "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#ext-tables-sql-types-char", + "Fixed-length SQL type CHAR" + ], + "key-difference-between-char-and-varchar": [ + "TYPO3 Explained", + "main", + "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#ext-tables-sql-types-char-varchar-difference", + "Key Difference Between CHAR and VARCHAR" + ], + "when-to-use-char-columns": [ + "TYPO3 Explained", + "main", + "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#ext-tables-sql-types-char-when", + "When to use CHAR columns" + ], + "hints-on-using-fixed-length-char-columns": [ + "TYPO3 Explained", + "main", + "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#ext-tables-sql-types-char-hints", + "Hints on using fixed-length CHAR columns" + ], "auto-generated-structure": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#auto-generated-structure", + "ExtensionArchitecture\/FileStructure\/ExtTablesSql.html#auto-generated-db-structure", "Auto-generated structure" ], "file-ext-tables-static-adt-sql": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/ExtTablesStaticAdtSql.html#file-ext-tables-static-adt-sql", + "ExtensionArchitecture\/FileStructure\/ExtTablesStaticAdtSql.html#ext_tables_static+adt.sql", "ext_tables_static+adt.sql" ], "file-ext-typoscript-constants-typoscript": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/ExtTyposcriptConstantsTyposcript.html#file-ext-typoscript-constants-typoscript", + "ExtensionArchitecture\/FileStructure\/ExtTyposcriptConstantsTyposcript.html#ext_typoscript_constants_typoscript", "ext_typoscript_constants.typoscript" ], "file-ext-typoscript-setup-typoscript": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/ExtTyposcriptSetupTyposcript.html#file-ext-typoscript-setup-typoscript", + "ExtensionArchitecture\/FileStructure\/ExtTyposcriptSetupTyposcript.html#ext_typoscript_setup_typoscript", "ext_typoscript_setup.typoscript" ], "reserved-file-names": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Index.html#reserved-file-names", + "ExtensionArchitecture\/FileStructure\/Index.html#extension-reserved-filenames", "Reserved file names" ], "reserved-folders": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Index.html#reserved-folders", + "ExtensionArchitecture\/FileStructure\/Index.html#extension-reserved-folders", "Reserved Folders" ], "file-resources": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Resources\/Index.html#file-resources", + "ExtensionArchitecture\/FileStructure\/Resources\/Index.html#extension-Resources", "Resources" ], "file-private": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Resources\/Private\/Index.html#file-private", + "ExtensionArchitecture\/FileStructure\/Resources\/Private\/Index.html#extension-Resources-Private", "Private" ], "file-language": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Resources\/Private\/Language.html#file-language", + "ExtensionArchitecture\/FileStructure\/Resources\/Private\/Language.html#extension-Resources-Private-Language", "Language" ], "locallang-xlf": [ @@ -46585,19 +46999,19 @@ "file-tests": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/FileStructure\/Tests\/Index.html#file-tests", + "ExtensionArchitecture\/FileStructure\/Tests\/Index.html#extension-files-tests", "Tests" ], "create-a-backend-module-with-core-functionality": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModule.html#create-a-backend-module-with-core-functionality", + "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModule.html#backend-modules-template-without-extbase", "Create a backend module with Core functionality" ], "basic-controller": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModule.html#basic-controller", + "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModule.html#backend-modules-template-without-extbase-manual-tagging", "Basic controller" ], "main-entry-point": [ @@ -46609,31 +47023,31 @@ "the-docheader": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModule.html#the-docheader", + "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModule.html#backend-modules-template-without-extbase-docheader", "The DocHeader" ], "template-example": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModule.html#template-example", - "Template example" + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations.html#template-example", + "Template Example" ], "create-a-backend-module-with-extbase": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModuleWithExtbase.html#create-a-backend-module-with-extbase", + "ExtensionArchitecture\/HowTo\/BackendModule\/CreateModuleWithExtbase.html#backend-modules-template", "Create a backend module with Extbase" ], "backend-modules": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/BackendModule\/Index.html#backend-modules", + "ExtensionArchitecture\/HowTo\/BackendModule\/Index.html#backend-modules-how-to", "Backend modules" ], "backend-module-configuration-examples": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/BackendModule\/ModuleConfiguration.html#backend-module-configuration-examples", + "ExtensionArchitecture\/HowTo\/BackendModule\/ModuleConfiguration.html#backend-modules-configuration-examples", "Backend module configuration examples" ], "example-register-two-backend-modules": [ @@ -46645,13 +47059,43 @@ "check-if-the-modules-have-been-properly-registered": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/BackendModule\/ModuleConfiguration.html#check-if-the-modules-have-been-properly-registered", + "ExtensionArchitecture\/HowTo\/BackendModule\/ModuleConfiguration.html#backend-modules-configuration-example-debug", "Check if the modules have been properly registered" ], + "security-considerations": [ + "TYPO3 Explained", + "main", + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations.html#backend-modules-security", + "Security Considerations" + ], + "cross-site-request-forgery-csrf": [ + "TYPO3 Explained", + "main", + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations.html#cross-site-request-forgery-csrf", + "Cross-Site-Request-Forgery (CSRF)" + ], + "asserting-http-methods-in-custom-module-controllers": [ + "TYPO3 Explained", + "main", + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations.html#asserting-http-methods-in-custom-module-controllers", + "Asserting HTTP Methods in Custom Module Controllers" + ], + "enforcing-http-methods": [ + "TYPO3 Explained", + "main", + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations.html#enforcing-http-methods", + "Enforcing HTTP Methods" + ], + "asserting-http-methods-in-extbase-controllers": [ + "TYPO3 Explained", + "main", + "ExtensionArchitecture\/HowTo\/BackendModule\/SecurityConsiderations.html#asserting-http-methods-in-extbase-controllers", + "Asserting HTTP Methods in Extbase Controllers" + ], "tutorial-backend-module-registration": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/BackendModule\/Tutorials.html#tutorial-backend-module-registration", + "ExtensionArchitecture\/HowTo\/BackendModule\/Tutorials.html#backend-modules-tutorials", "Tutorial - Backend Module Registration" ], "typoscript-and-constants": [ @@ -46687,55 +47131,55 @@ "creating-a-new-distribution": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#creating-a-new-distribution", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution", "Creating a new distribution" ], "concept-of-distributions": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#concept-of-distributions", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution_concept", "Concept of distributions" ], "kickstarting-the-distribution": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#kickstarting-the-distribution", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution-kickstart", "Kickstarting the Distribution" ], "configuring-the-distribution-display-in-the-em": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#configuring-the-distribution-display-in-the-em", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution-kickstart-image", "Configuring the Distribution Display in the EM" ], "fileadmin-files": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#fileadmin-files", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution-kickstart-fileadmin", "Fileadmin Files" ], "database-data": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#database-data", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution-kickstart-database", "Database Data" ], "distribution-configuration": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution-configuration", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution-kickstart-configuration", "Distribution Configuration" ], "test-your-distribution": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#test-your-distribution", + "ExtensionArchitecture\/HowTo\/CreateNewDistribution.html#distribution-testing", "Test Your Distribution" ], "creating-a-new-extension": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/CreateNewExtension.html#creating-a-new-extension", + "ExtensionArchitecture\/HowTo\/CreateNewExtension.html#extension-create-new", "Creating a new extension" ], "kickstarting-the-extension": [ @@ -46753,25 +47197,25 @@ "custom-extension-repository-1": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/CustomExtensionRepository.html#custom-extension-repository-1", + "ExtensionArchitecture\/HowTo\/CustomExtensionRepository.html#custom-extension-repository", "Custom Extension Repository" ], "adding-documentation": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/Documentation.html#adding-documentation", + "ExtensionArchitecture\/HowTo\/Documentation.html#extension-documentation-readme", "Adding documentation" ], "tools": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/Documentation.html#tools", + "ExtensionArchitecture\/HowTo\/Documentation.html#extension-documentation-tools", "Tools" ], "listen-to-an-event": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/Events\/Index.html#listen-to-an-event", + "ExtensionArchitecture\/HowTo\/Events\/Index.html#extension-development-event-listener", "Listen to an event" ], "dispatch-an-event": [ @@ -46783,7 +47227,7 @@ "extending-an-extbase-model": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-an-extbase-model", + "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-extbase-model", "Extending an Extbase model" ], "quick-overview": [ @@ -46801,43 +47245,43 @@ "are-you-the-only-one-trying-to-extend-that-model": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#are-you-the-only-one-trying-to-extend-that-model", + "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-extbase-model_find_other_extending_models", "Are you the only one trying to extend that model?" ], "find-the-original-model": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#find-the-original-model", + "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-extbase-model_find_original_model", "Find the original model" ], "find-the-original-repository": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#find-the-original-repository", + "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-extbase-model_find_original_repository", "Find the original repository" ], "extend-the-original-model": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extend-the-original-model", + "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-extbase-model_extend_original_model", "Extend the original model" ], "register-the-extended-model": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#register-the-extended-model", + "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-extbase-model_register_extended_model", "Register the extended model" ], "extend-the-original-repository-optional": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extend-the-original-repository-optional", + "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-extbase-model_extend_original_repository", "Extend the original repository (optional)" ], "register-the-extended-repository": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#register-the-extended-repository", + "ExtensionArchitecture\/HowTo\/ExtendExtbaseModel\/Index.html#extending-extbase-model_register_extended_repository", "Register the extended repository" ], "alternative-strategies-to-extend-extbase-models": [ @@ -46849,85 +47293,85 @@ "customization-examples": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/Examples\/Index.html#customization-examples", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/Examples\/Index.html#extending-examples", "Customization Examples" ], "example-1-extending-the-fe-users-table": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/Examples\/Index.html#example-1-extending-the-fe-users-table", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/Examples\/Index.html#extending-examples-feusers", "Example 1: Extending the fe_users table" ], "example-2-extending-the-tt-content-table": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/Examples\/Index.html#example-2-extending-the-tt-content-table", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/Examples\/Index.html#extending-examples-ttcontent", "Example 2: Extending the tt_content Table" ], "extending-the-tca-array": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/Index.html#extending-the-tca-array", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/Index.html#extending-tca", "Extending the TCA array" ], "storing-the-changes": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/StoringChanges\/Index.html#storing-the-changes", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/StoringChanges\/Index.html#storing-changes", "Storing the changes" ], "storing-in-extensions": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/StoringChanges\/Index.html#storing-in-extensions", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/StoringChanges\/Index.html#storing-changes-extension", "Storing in extensions" ], "storing-in-the-file-overrides-folder": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/StoringChanges\/Index.html#storing-in-the-file-overrides-folder", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/StoringChanges\/Index.html#storing-changes-extension-overrides", "Storing in the Overrides\/ folder" ], "changing-the-tca-on-the-fly": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/StoringChanges\/Index.html#changing-the-tca-on-the-fly", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/StoringChanges\/Index.html#storing-changes-on-the-fly", "Changing the TCA \"on the fly\"" ], "verifying-the-tca": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/ExtendingTca\/Verifying\/Index.html#verifying-the-tca", + "ExtensionArchitecture\/HowTo\/ExtendingTca\/Verifying\/Index.html#verifying", "Verifying the TCA" ], "frontend-plugin": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/FrontendPlugin\/Index.html#frontend-plugin", + "ExtensionArchitecture\/HowTo\/FrontendPlugin\/Index.html#frontend_plugin", "Frontend plugin" ], "howto": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/Index.html#howto", + "ExtensionArchitecture\/HowTo\/Index.html#extension-howto", "Howto" ], "multi-language-fluid-templates": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#multi-language-fluid-templates", + "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#extension-localization-fluid", "Multi-language Fluid templates" ], "the-translation-viewhelper-html-f-translate": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#the-translation-viewhelper-html-f-translate", + "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#f-translate", "The translation ViewHelper f:translate" ], "the-translation-viewhelper-in-extbase": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#the-translation-viewhelper-in-extbase", + "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#f-translate-extbase", "The translation ViewHelper in Extbase" ], "source-of-the-language-file": [ @@ -46939,7 +47383,7 @@ "insert-arguments-into-translated-strings": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#insert-arguments-into-translated-strings", + "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#extension-localization-fluid-arguments", "Insert arguments into translated strings" ], "argument-types": [ @@ -46957,13 +47401,13 @@ "localization-of-date-output": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#localization-of-date-output", + "ExtensionArchitecture\/HowTo\/Localization\/Fluid.html#extension-localization-fluid-date", "Localization of date output" ], "localization-in-php": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/Localization\/Php.html#localization-in-php", + "ExtensionArchitecture\/HowTo\/Localization\/Php.html#extension-localization-php", "Localization in PHP" ], "localization-in-plain-php": [ @@ -46993,79 +47437,79 @@ "localization-in-extbase": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/Localization\/Php.html#localization-in-extbase", + "ExtensionArchitecture\/HowTo\/Localization\/Php.html#extension-localization-extbase", "Localization in Extbase" ], "provide-localized-strings-via-json-by-a-middleware": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/Localization\/Php.html#provide-localized-strings-via-json-by-a-middleware", + "ExtensionArchitecture\/HowTo\/Localization\/Php.html#example-localization-middleware", "Provide localized strings via JSON by a middleware" ], "output-localized-strings-with-typoscript": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/Localization\/TypoScript.html#output-localized-strings-with-typoscript", + "ExtensionArchitecture\/HowTo\/Localization\/TypoScript.html#extension-localization-typoscript-gettext", "Output localized strings with Typoscript" ], "typoscript-conditions-based-on-the-current-language": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/Localization\/TypoScript.html#typoscript-conditions-based-on-the-current-language", + "ExtensionArchitecture\/HowTo\/Localization\/TypoScript.html#extension-localization-typoscript-conditions", "TypoScript conditions based on the current language" ], "changing-localized-terms-using-typoscript": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/Localization\/TypoScript.html#changing-localized-terms-using-typoscript", + "ExtensionArchitecture\/HowTo\/Localization\/TypoScript.html#localization-typoscript-LOCAL_LANG", "Changing localized terms using TypoScript" ], "typoscript-stdwrap-lang": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/Localization\/TypoScript.html#typoscript-stdwrap-lang", + "ExtensionArchitecture\/HowTo\/Localization\/TypoScript.html#localization-typoscript-stdWrap.lang", "stdWrap.lang" ], "publish-your-extension": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#publish-your-extension", + "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#publish-extension", "Publish your extension" ], "git": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#git", + "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#publishExtensionGit", "Git" ], "packagist": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#packagist", + "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#publishExtensionPackagist", "Packagist" ], "ter": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#ter", + "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#publishExtensionTer", "TER" ], "documentation": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#documentation", + "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#publishExtensionDocumentation", "Documentation" ], "crowdin": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#crowdin", + "ExtensionArchitecture\/HowTo\/PublishExtension\/Index.html#publishExtensionTranslation", "Crowdin" ], "publish-your-extension-in-the-ter": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/PublishExtension\/PublishToTER\/Index.html#publish-your-extension-in-the-ter", + "ExtensionArchitecture\/HowTo\/PublishExtension\/PublishToTER\/Index.html#publish-to-ter", "Publish your extension in the TER" ], "before-publishing-extension-think-about": [ @@ -47095,13 +47539,13 @@ "http-requests-to-external-sources": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/RestRequests\/Index.html#http-requests-to-external-sources", + "ExtensionArchitecture\/HowTo\/RestRequests\/Index.html#http", "HTTP requests to external sources" ], "custom-middleware-handlers": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/RestRequests\/Index.html#custom-middleware-handlers", + "ExtensionArchitecture\/HowTo\/RestRequests\/Index.html#http-custom-handlers", "Custom middleware handlers" ], "http-utility-methods": [ @@ -47125,7 +47569,7 @@ "extension-scanner-1": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/ExtensionScanner.html#extension-scanner-1", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/ExtensionScanner.html#extension-scanner", "Extension scanner" ], "goals-and-non-goals": [ @@ -47161,13 +47605,13 @@ "update-your-extension-for-new-typo3-versions": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/Index.html#update-your-extension-for-new-typo3-versions", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/Index.html#update-extension", "Update your extension for new TYPO3 versions" ], "the-concept-of-upgrade-wizards": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Concept.html#the-concept-of-upgrade-wizards", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Concept.html#upgrade-wizards-concept", "The concept of upgrade wizards" ], "best-practice": [ @@ -47179,67 +47623,67 @@ "creating-upgrade-wizards": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#creating-upgrade-wizards", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#upgrade-wizard-interface", "Creating upgrade wizards" ], "upgradewizardinterface": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#upgradewizardinterface", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#upgrade-wizards-interface", "UpgradeWizardInterface" ], "wizard-identifier": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#wizard-identifier", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#upgrade-wizards-identifier", "Wizard identifier" ], "marking-wizard-as-done": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#marking-wizard-as-done", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#repeatable-interface", "Marking wizard as done" ], "generating-output": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#generating-output", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#uprade-wizards-chatty-interface", "Generating output" ], "executing-the-wizard": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#executing-the-wizard", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Creation.html#upgrade_wizard_execute", "Executing the wizard" ], "examples-for-common-upgrade-wizards": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Examples.html#examples-for-common-upgrade-wizards", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Examples.html#upgrade-wizard-examples", "Examples for common upgrade wizards" ], "upgrade-wizard-to-replace-switchable-controller-actions": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Examples.html#upgrade-wizard-to-replace-switchable-controller-actions", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Examples.html#upgrade-wizard-examples-switchable-controller-actions", "Upgrade wizard to replace switchable controller actions" ], "upgrade-wizards-1": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Index.html#upgrade-wizards-1", + "ExtensionArchitecture\/HowTo\/UpdateExtensions\/UpdateWizards\/Index.html#upgrade-wizards", "Upgrade wizards" ], "extension-development-1": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Index.html#extension-development-1", + "ExtensionArchitecture\/Index.html#extension-development", "Extension development" ], "site-package-1": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/SitePackage\/Index.html#site-package-1", + "ExtensionArchitecture\/SitePackage\/Index.html#site-package", "Site package" ], "site-package-tutorial": [ @@ -47251,25 +47695,25 @@ "site-package-builder": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/SitePackage\/Index.html#site-package-builder", + "ExtensionArchitecture\/SitePackage\/Index.html#extension-sitepackage-builder", "Site package builder" ], "bootstrap-package": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/SitePackage\/Index.html#bootstrap-package", + "ExtensionArchitecture\/SitePackage\/Index.html#extension-sitepackage-builder-bootstrap", "Bootstrap package" ], "minimal-site-package-fluid-styled-content": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/SitePackage\/Index.html#minimal-site-package-fluid-styled-content", + "ExtensionArchitecture\/SitePackage\/Index.html#extension-sitepackage-builder-minimal", "Minimal site package (Fluid Styled Content)" ], "introduction-into-using-site-packages": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/SitePackage\/Introduction.html#introduction-into-using-site-packages", + "ExtensionArchitecture\/SitePackage\/Introduction.html#site-package-introduction", "Introduction into using site packages" ], "site-package-benefits": [ @@ -47281,37 +47725,37 @@ "encapsulation": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/SitePackage\/Introduction.html#encapsulation", + "ExtensionArchitecture\/SitePackage\/Introduction.html#site-package-encapsulation", "Encapsulation" ], "dependency-management": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/SitePackage\/Introduction.html#dependency-management", + "ExtensionArchitecture\/SitePackage\/Introduction.html#site-package-di", "Dependency management" ], "clean-separation-from-the-userspace": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/SitePackage\/Introduction.html#clean-separation-from-the-userspace", + "ExtensionArchitecture\/SitePackage\/Introduction.html#site-package-separation", "Clean separation from the userspace" ], "deployment": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/SitePackage\/Introduction.html#deployment", + "ExtensionArchitecture\/SitePackage\/Introduction.html#site-package-deployment", "Deployment" ], "distributable": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/SitePackage\/Introduction.html#distributable", + "ExtensionArchitecture\/SitePackage\/Introduction.html#site-package-distributable", "Distributable" ], "creating-a-new-database-model": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/ComponentsOfTYPO3Extension\/CreatingDatabaseModel.html#creating-a-new-database-model", + "ExtensionArchitecture\/Tutorials\/ComponentsOfTYPO3Extension\/CreatingDatabaseModel.html#creating-database-model", "Creating a new database model" ], "create-sql-database-schema": [ @@ -47329,13 +47773,13 @@ "components-of-a-typo3-extension": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/ComponentsOfTYPO3Extension\/Index.html#components-of-a-typo3-extension", + "ExtensionArchitecture\/Tutorials\/ComponentsOfTYPO3Extension\/Index.html#extension-components", "Components of a TYPO3 extension" ], "making-data-persistable-by-extbase": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/ComponentsOfTYPO3Extension\/MakingDataPersistable.html#making-data-persistable-by-extbase", + "ExtensionArchitecture\/Tutorials\/ComponentsOfTYPO3Extension\/MakingDataPersistable.html#making-data-persistable", "Making data persistable by Extbase" ], "create-an-entity-class-and-repository": [ @@ -47347,7 +47791,7 @@ "making-the-extension-installable-1": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/ComponentsOfTYPO3Extension\/MakingTheExtensionInstallable.html#making-the-extension-installable-1", + "ExtensionArchitecture\/Tutorials\/ComponentsOfTYPO3Extension\/MakingTheExtensionInstallable.html#making-the-extension-installable", "Making the extension installable" ], "add-example-extension-composer-json": [ @@ -47365,31 +47809,31 @@ "extension-development-with-extbase": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/Extbase.html#extension-development-with-extbase", + "ExtensionArchitecture\/Tutorials\/Extbase.html#extbase_tutorials", "Extension development with Extbase" ], "tutorials": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/Index.html#tutorials", + "ExtensionArchitecture\/Tutorials\/Index.html#extension-tutorials", "Tutorials" ], "kickstart-an-extension": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/Kickstart\/Index.html#kickstart-an-extension", + "ExtensionArchitecture\/Tutorials\/Kickstart\/Index.html#extension-kickstart", "Kickstart an extension" ], "create-a-new-backend-controller": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/Kickstart\/Make\/BackendController.html#create-a-new-backend-controller", + "ExtensionArchitecture\/Tutorials\/Kickstart\/Make\/BackendController.html#extension-make-backend-controller", "Create a new backend controller" ], "create-a-new-console-command": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/Kickstart\/Make\/ConsoleCommand.html#create-a-new-console-command", + "ExtensionArchitecture\/Tutorials\/Kickstart\/Make\/ConsoleCommand.html#extension-make-console-command", "Create a new console command" ], "have-a-look-at-the-created-files": [ @@ -47407,13 +47851,13 @@ "make": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/Kickstart\/Make\/Index.html#make", + "ExtensionArchitecture\/Tutorials\/Kickstart\/Make\/Index.html#extension-make", "Make" ], "kickstart-a-typo3-extension-with-make": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/Kickstart\/Make\/Index.html#kickstart-a-typo3-extension-with-make", + "ExtensionArchitecture\/Tutorials\/Kickstart\/Make\/Index.html#extension-make-kickstart", "Kickstart a TYPO3 Extension with \"Make\"" ], "1-install-make": [ @@ -47455,7 +47899,7 @@ "create-a-directory-structure": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/Tea\/DirectoryStructure.html#create-a-directory-structure", + "ExtensionArchitecture\/Tutorials\/Tea\/DirectoryStructure.html#extbase_tutorial_tea_directory_structure", "Create a directory structure" ], "directory-file-classes": [ @@ -47491,7 +47935,7 @@ "create-an-extension": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/Tea\/ExtensionConfiguration.html#create-an-extension", + "ExtensionArchitecture\/Tutorials\/Tea\/ExtensionConfiguration.html#extbase_tutorial_tea_extension_configuration", "Create an extension" ], "install-the-extension-locally": [ @@ -47503,61 +47947,61 @@ "tea-in-a-nutshell": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/Tea\/Index.html#tea-in-a-nutshell", + "ExtensionArchitecture\/Tutorials\/Tea\/Index.html#extbase_tutorial_tea", "Tea in a nutshell" ], "model-a-bag-of-tea": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#model-a-bag-of-tea", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model", "Model: a bag of tea" ], "the-database-model": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#the-database-model", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_database", "The database model" ], "tca-php-ctrl-settings-for-the-complete-table": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#tca-php-ctrl-settings-for-the-complete-table", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_ctrl", "TCA ctrl - Settings for the complete table" ], "php-title": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#php-title", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_ctrl_title", "title" ], "php-label": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#php-label", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_ctrl_label", "label" ], "php-tstamp-php-deleted": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#php-tstamp-php-deleted", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_ctrl_others", "tstamp, deleted, ..." ], "tca-php-columns-defining-the-fields": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#tca-php-columns-defining-the-fields", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_columns", "TCA columns - Defining the fields" ], "the-php-image-field": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#the-php-image-field", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_columns_image", "The image field" ], "tca-php-types-configure-the-input-form": [ "TYPO3 Explained", "main", - "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#tca-php-types-configure-the-input-form", + "ExtensionArchitecture\/Tutorials\/Tea\/Model.html#extbase_tutorial_tea_model_types", "TCA types - Configure the input form" ], "result-the-complete-tca": [ @@ -47581,127 +48025,283 @@ "typo3-explained": [ "TYPO3 Explained", "main", - "Index.html#typo3-explained", + "Index.html#api-overview", "TYPO3 Explained" ], "introduction-1": [ "TYPO3 Explained", "main", - "Introduction\/Index.html#introduction-1", + "Introduction\/Index.html#introduction", "Introduction" ], "a-basic-typo3-installation": [ "TYPO3 Explained", "main", - "Introduction\/Index.html#a-basic-typo3-installation", + "Introduction\/Index.html#introduction-installation", "A basic TYPO3 installation" ], "a-basic-site-package": [ "TYPO3 Explained", "main", - "Introduction\/Index.html#a-basic-site-package", + "Introduction\/Index.html#introduction-site-package", "A basic site package" ], "getting-help-with-typo3": [ "TYPO3 Explained", "main", - "Introduction\/Index.html#getting-help-with-typo3", + "Introduction\/Index.html#introduction-getting-help", "Getting help with TYPO3" ], + "php-architecture": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/Index.html#cgl-best-practices", + "PHP architecture" + ], + "named-arguments": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/NamedArguments.html#cgl-named-arguments", + "Named arguments" + ], + "named-arguments-in-public-apis": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/NamedArguments.html#named-arguments-in-public-apis", + "Named arguments in public APIs" + ], + "utilizing-named-arguments-in-extensions": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/NamedArguments.html#utilizing-named-arguments-in-extensions", + "Utilizing named arguments in extensions" + ], + "typo3-core-development": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/NamedArguments.html#typo3-core-development", + "TYPO3 Core development" + ], + "leveraging-named-arguments-in-pcpp-value-objects": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/NamedArguments.html#cgl-named-arguments-pcpp-value-objects", + "Leveraging Named Arguments in PCPP Value Objects" + ], + "invoking-2nd-party-non-core-library-dependency-methods": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/NamedArguments.html#invoking-2nd-party-non-core-library-dependency-methods", + "Invoking 2nd-party (non-Core library) dependency methods" + ], + "invoking-core-api": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/NamedArguments.html#invoking-core-api", + "Invoking Core API" + ], + "utilizing-named-arguments-in-phpunit-test-data-providers": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/NamedArguments.html#utilizing-named-arguments-in-phpunit-test-data-providers", + "Utilizing named arguments in PHPUnit test data providers" + ], + "leveraging-named-arguments-when-invoking-php-functions": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/NamedArguments.html#leveraging-named-arguments-when-invoking-php-functions", + "Leveraging named arguments when invoking PHP functions" + ], + "characteristics": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/Services.html#characteristics", + "Characteristics" + ], + "good-examples": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/WorkingWithExceptions.html#good-examples", + "Good examples" + ], + "bad-examples": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/WorkingWithExceptions.html#bad-examples", + "Bad examples" + ], + "singletons": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/Singletons.html#cgl-singletons", + "Singletons" + ], + "static-methods-static-classes-utility-classes": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/StaticMethods.html#cgl-static-methods", + "Static Methods, static Classes, Utility Classes" + ], + "characteristica": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/Traits.html#characteristica", + "Characteristica" + ], + "red-flags": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/StaticMethods.html#red-flags", + "Red Flags" + ], + "traits": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/Traits.html#cgl-traits", + "Traits" + ], + "working-with-exceptions": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/WorkingWithExceptions.html#cgl-working-with-exceptions", + "Working with exceptions" + ], + "exception-types": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/WorkingWithExceptions.html#exception-types", + "Exception types" + ], + "typical-cases-for-exceptions-that-are-designed-to-be-caught": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/WorkingWithExceptions.html#typical-cases-for-exceptions-that-are-designed-to-be-caught", + "Typical cases for exceptions that are designed to be caught" + ], + "typical-cases-for-exceptions-that-should-not-be-caught": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/WorkingWithExceptions.html#typical-cases-for-exceptions-that-should-not-be-caught", + "Typical cases for exceptions that should not be caught" + ], + "typical-exception-arguments": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/WorkingWithExceptions.html#typical-exception-arguments", + "Typical exception arguments" + ], + "exception-inheritance": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/WorkingWithExceptions.html#exception-inheritance", + "Exception inheritance" + ], + "extending-exceptions": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/WorkingWithExceptions.html#extending-exceptions", + "Extending exceptions" + ], + "further-readings": [ + "TYPO3 Explained", + "main", + "PhpArchitecture\/WorkingWithExceptions.html#further-readings", + "Further readings" + ], "backup-strategy": [ "TYPO3 Explained", "main", - "Security\/Backups\/Index.html#backup-strategy", + "Security\/Backups\/Index.html#security-backups", "Backup strategy" ], "components-included-in-the-backups": [ "TYPO3 Explained", "main", - "Security\/Backups\/Index.html#components-included-in-the-backups", + "Security\/Backups\/Index.html#security-backup-components", "Components included in the backups" ], "time-plan-and-retention-time": [ "TYPO3 Explained", "main", - "Security\/Backups\/Index.html#time-plan-and-retention-time", + "Security\/Backups\/Index.html#security-backups-time-plan", "Time plan and retention time" ], "backup-location": [ "TYPO3 Explained", "main", - "Security\/Backups\/Index.html#backup-location", + "Security\/Backups\/Index.html#security-backup-location", "Backup location" ], "further-considerations": [ "TYPO3 Explained", "main", - "Security\/Backups\/Index.html#further-considerations", + "Security\/Backups\/Index.html#security-backups-further-considerations", "Further considerations" ], "general-guidelines": [ "TYPO3 Explained", "main", - "Security\/GeneralGuidelines\/Index.html#general-guidelines", + "Security\/GeneralGuidelines\/Index.html#security-general-guidelines", "General guidelines" ], "secure-passwords": [ "TYPO3 Explained", "main", - "Security\/GeneralGuidelines\/Index.html#secure-passwords", + "Security\/GeneralGuidelines\/Index.html#security-secure-passwords", "Secure passwords" ], "operating-system-and-browser-version": [ "TYPO3 Explained", "main", - "Security\/GeneralGuidelines\/Index.html#operating-system-and-browser-version", + "Security\/GeneralGuidelines\/Index.html#security-update-browser", "Operating System and Browser Version" ], "communication": [ "TYPO3 Explained", "main", - "Security\/GeneralGuidelines\/Index.html#communication", + "Security\/GeneralGuidelines\/Index.html#security-communication", "Communication" ], "react-quickly": [ "TYPO3 Explained", "main", - "Security\/GeneralGuidelines\/Index.html#react-quickly", + "Security\/GeneralGuidelines\/Index.html#security-react-quickly", "React Quickly" ], "keep-the-typo3-core-up-to-date": [ "TYPO3 Explained", "main", - "Security\/GeneralGuidelines\/Index.html#keep-the-typo3-core-up-to-date", + "Security\/GeneralGuidelines\/Index.html#security-updating-typo3", "Keep the TYPO3 Core up-to-date" ], "keep-typo3-extensions-up-to-date": [ "TYPO3 Explained", "main", - "Security\/GeneralGuidelines\/Index.html#keep-typo3-extensions-up-to-date", + "Security\/GeneralGuidelines\/Index.html#security-updating-extensions", "Keep TYPO3 Extensions Up-to-date" ], "use-staging-servers-for-developments-and-tests": [ "TYPO3 Explained", "main", - "Security\/GeneralGuidelines\/Index.html#use-staging-servers-for-developments-and-tests", + "Security\/GeneralGuidelines\/Index.html#security-staging-servers", "Use staging servers for developments and tests" ], "typo3-versions-and-lifecycle": [ "TYPO3 Explained", "main", - "Security\/GeneralInformation\/Index.html#typo3-versions-and-lifecycle", + "Security\/GeneralInformation\/Index.html#security-typo3-versions", "TYPO3 versions and lifecycle" ], "difference-between-core-and-extensions": [ "TYPO3 Explained", "main", - "Security\/GeneralInformation\/Index.html#difference-between-core-and-extensions", + "Security\/GeneralInformation\/Index.html#security-difference-core-extensions", "Difference between Core and extensions" ], "announcement-of-updates-and-security-fixes": [ "TYPO3 Explained", "main", - "Security\/GeneralInformation\/Index.html#announcement-of-updates-and-security-fixes", + "Security\/GeneralInformation\/Index.html#security-announcement-updates", "Announcement of updates and security fixes" ], "security-bulletins": [ @@ -47725,13 +48325,13 @@ "content-security-policy": [ "TYPO3 Explained", "main", - "Security\/GuidelinesAdministrators\/ContentSecurityPolicy.html#content-security-policy", + "Security\/GuidelinesAdministrators\/ContentSecurityPolicy.html#security-content-security-policy", "Content security policy" ], "database-access": [ "TYPO3 Explained", "main", - "Security\/GuidelinesAdministrators\/DatabaseAccess.html#database-access", + "Security\/GuidelinesAdministrators\/DatabaseAccess.html#security-database-access", "Database access" ], "secure-passwords-and-minimum-access-privileges-with-mysql": [ @@ -47761,7 +48361,7 @@ "disable-directory-indexing": [ "TYPO3 Explained", "main", - "Security\/GuidelinesAdministrators\/DirectoryIndexing.html#disable-directory-indexing", + "Security\/GuidelinesAdministrators\/DirectoryIndexing.html#security-directory-indexing", "Disable directory indexing" ], "apache-web-server": [ @@ -47779,7 +48379,7 @@ "encrypted-client-server-communication": [ "TYPO3 Explained", "main", - "Security\/GuidelinesAdministrators\/EncryptedCommunication.html#encrypted-client-server-communication", + "Security\/GuidelinesAdministrators\/EncryptedCommunication.html#security-encrypted-client-server-connection", "Encrypted Client\/server Communication" ], "data-classification": [ @@ -47797,19 +48397,19 @@ "file-directory-permissions": [ "TYPO3 Explained", "main", - "Security\/GuidelinesAdministrators\/FileDirectoryPermissions.html#file-directory-permissions", + "Security\/GuidelinesAdministrators\/FileDirectoryPermissions.html#security-file-directory-permissions", "File\/directory permissions" ], "file-extension-handling": [ "TYPO3 Explained", "main", - "Security\/GuidelinesAdministrators\/FileExtensionHandling.html#file-extension-handling", + "Security\/GuidelinesAdministrators\/FileExtensionHandling.html#security-file-extension-handling", "File extension handling" ], "further-actions": [ "TYPO3 Explained", "main", - "Security\/HackedSite\/FurtherActions.html#further-actions", + "Security\/HackedSite\/FurtherActions.html#security-further-actions", "Further actions" ], "hosting-environment": [ @@ -47833,19 +48433,19 @@ "defending-against-clickjacking": [ "TYPO3 Explained", "main", - "Security\/GuidelinesAdministrators\/FurtherActions.html#defending-against-clickjacking", + "Security\/GuidelinesAdministrators\/FurtherActions.html#security-administrators-furtheractions-clickjacking", "Defending Against Clickjacking" ], "guidelines-for-system-administrators": [ "TYPO3 Explained", "main", - "Security\/GuidelinesAdministrators\/Index.html#guidelines-for-system-administrators", + "Security\/GuidelinesAdministrators\/Index.html#security-administrators", "Guidelines for System Administrators" ], "general-rules": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/Index.html#general-rules", + "Security\/GuidelinesIntegrators\/Index.html#security-integrator-rules", "General rules" ], "further-topics": [ @@ -47857,19 +48457,19 @@ "integrity-of-typo3-packages": [ "TYPO3 Explained", "main", - "Security\/GuidelinesAdministrators\/IntegrityOfTypo3Packages.html#integrity-of-typo3-packages", + "Security\/GuidelinesAdministrators\/IntegrityOfTypo3Packages.html#security-integrity-packages", "Integrity of TYPO3 Packages" ], "other-services": [ "TYPO3 Explained", "main", - "Security\/GuidelinesAdministrators\/OtherServices.html#other-services", + "Security\/GuidelinesAdministrators\/OtherServices.html#security-other-services", "Other Services" ], "restrict-access-to-files-on-a-server-level": [ "TYPO3 Explained", "main", - "Security\/GuidelinesAdministrators\/RestrictAccessToFiles.html#restrict-access-to-files-on-a-server-level", + "Security\/GuidelinesAdministrators\/RestrictAccessToFiles.html#security-restrict-access-server-level", "Restrict access to files on a server-level" ], "verification-of-access-restrictions": [ @@ -47893,19 +48493,19 @@ "role-definition": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/Index.html#role-definition", + "Security\/GuidelinesIntegrators\/Index.html#security-integrator-definition", "Role definition" ], "guidelines-for-editors": [ "TYPO3 Explained", "main", - "Security\/GuidelinesEditors\/Index.html#guidelines-for-editors", + "Security\/GuidelinesEditors\/Index.html#security-editors", "Guidelines for editors" ], "backend-access": [ "TYPO3 Explained", "main", - "Security\/GuidelinesEditors\/Index.html#backend-access", + "Security\/GuidelinesEditors\/Index.html#security-backend-access", "Backend access" ], "username": [ @@ -47941,25 +48541,25 @@ "restriction-to-required-functions": [ "TYPO3 Explained", "main", - "Security\/GuidelinesEditors\/Index.html#restriction-to-required-functions", + "Security\/GuidelinesEditors\/Index.html#security-restrict-to-required-functions", "Restriction to required functions" ], "secure-connection": [ "TYPO3 Explained", "main", - "Security\/GuidelinesEditors\/Index.html#secure-connection", + "Security\/GuidelinesEditors\/Index.html#security-secure-connection", "Secure connection" ], "logout": [ "TYPO3 Explained", "main", - "Security\/GuidelinesEditors\/Index.html#logout", + "Security\/GuidelinesEditors\/Index.html#security-logout", "Logout" ], "guidelines-for-extension-development": [ "TYPO3 Explained", "main", - "Security\/GuidelinesExtensionDevelopment\/Index.html#guidelines-for-extension-development", + "Security\/GuidelinesExtensionDevelopment\/Index.html#security-extension-development", "Guidelines for extension development" ], "never-trust-user-input": [ @@ -47977,7 +48577,7 @@ "trusted-properties-extbase-only": [ "TYPO3 Explained", "main", - "Security\/GuidelinesExtensionDevelopment\/Index.html#trusted-properties-extbase-only", + "Security\/GuidelinesExtensionDevelopment\/Index.html#trusted-properties", "Trusted properties (Extbase Only)" ], "prevent-cross-site-scripting": [ @@ -47989,19 +48589,19 @@ "users-and-access-privileges": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/AccessPrivileges.html#users-and-access-privileges", + "Security\/GuidelinesIntegrators\/AccessPrivileges.html#security-access-privileges", "Users and access privileges" ], "content-elements": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/ContentElements.html#content-elements", + "Security\/GuidelinesIntegrators\/ContentElements.html#security-content-elements", "Content elements" ], "typo3-extensions": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/Extensions.html#typo3-extensions", + "Security\/GuidelinesIntegrators\/Extensions.html#security-extensions", "TYPO3 extensions" ], "stable-and-reviewed-extensions": [ @@ -48025,7 +48625,7 @@ "low-level-extensions": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/Extensions.html#low-level-extensions", + "Security\/GuidelinesIntegrators\/Extensions.html#security-extensions-low-level", "Low-level extensions" ], "check-for-extension-updates-regularly": [ @@ -48043,169 +48643,169 @@ "global-typo3-configuration-options": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#global-typo3-configuration-options", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options", "Global TYPO3 configuration options" ], "displayerrors": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#displayerrors", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-displayErrors", "displayErrors" ], "devipmask": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#devipmask", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-devIpMask", "devIPmask" ], "filedenypattern": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#filedenypattern", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-fileDenyPattern", "fileDenyPattern" ], "ipmasklist": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#ipmasklist", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-IPmaskList", "IPmaskList" ], "lockip-lockipv6": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#lockip-lockipv6", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-lockIP", "lockIP \/ lockIPv6" ], "lockssl": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#lockssl", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-lockSSL", "lockSSL" ], "trustedhostspattern": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#trustedhostspattern", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-trustedHostsPattern", "trustedHostsPattern" ], "warning-email-addr": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#warning-email-addr", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-warning-email-addr", "warning_email_addr" ], "warning-mode": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#warning-mode", + "Security\/GuidelinesIntegrators\/GlobalTypo3Options.html#security-global-typo3-options-warning-mode", "warning_mode" ], "guidelines-for-typo3-integrators": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/Index.html#guidelines-for-typo3-integrators", + "Security\/GuidelinesIntegrators\/Index.html#security-integrators", "Guidelines for TYPO3 integrators" ], "install-tool": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/InstallTool.html#install-tool", + "Security\/GuidelinesIntegrators\/InstallTool.html#security-install-tool", "Install tool" ], "enabling-and-accessing-the-install-tool": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/InstallTool.html#enabling-and-accessing-the-install-tool", + "Security\/GuidelinesIntegrators\/InstallTool.html#security-install-tool-access", "Enabling and accessing the Install Tool" ], "the-file-enable-install-tool-file": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/InstallTool.html#the-file-enable-install-tool-file", + "Security\/GuidelinesIntegrators\/InstallTool.html#security-install-tool-access-enable-file", "The ENABLE_INSTALL_TOOL file" ], "the-install-tool-password": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/InstallTool.html#the-install-tool-password", + "Security\/GuidelinesIntegrators\/InstallTool.html#security-install-tool-password", "The Install Tool password" ], "accessing-the-install-tool-in-the-backend": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/InstallTool.html#accessing-the-install-tool-in-the-backend", + "Security\/GuidelinesIntegrators\/InstallTool.html#security-install-tool-backend-access", "Accessing the Install Tool in the backend" ], "typo3-core-updates": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/InstallTool.html#typo3-core-updates", + "Security\/GuidelinesIntegrators\/InstallTool.html#security-install-tool-core-updates", "TYPO3 Core updates" ], "encryption-key": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/InstallTool.html#encryption-key", + "Security\/GuidelinesIntegrators\/InstallTool.html#security-encryption-key", "Encryption key" ], "generating-the-encryption-key": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/InstallTool.html#generating-the-encryption-key", + "Security\/GuidelinesIntegrators\/InstallTool.html#security-encryption-key-generate", "Generating the encryption key" ], "reports-and-logs": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/ReportsAndLogs.html#reports-and-logs", + "Security\/GuidelinesIntegrators\/ReportsAndLogs.html#security-reports-logs", "Reports and logs" ], "security-related-warnings-after-login": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/SecurityWarningsAfterLogin.html#security-related-warnings-after-login", + "Security\/GuidelinesIntegrators\/SecurityWarningsAfterLogin.html#security-security-warnings", "Security-related warnings after login" ], "sql-injection": [ "TYPO3 Explained", "main", - "Security\/TypesOfThreats\/Index.html#sql-injection", + "Security\/TypesOfThreats\/Index.html#security-sql-injection", "SQL injection" ], "cross-site-scripting-xss": [ "TYPO3 Explained", "main", - "Security\/TypesOfThreats\/Index.html#cross-site-scripting-xss", + "Security\/TypesOfThreats\/Index.html#security-xss", "Cross-site scripting (XSS)" ], "clickjacking": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/Typoscript.html#clickjacking", + "Security\/GuidelinesIntegrators\/Typoscript.html#security-typoscript-clickjacking", "Clickjacking" ], "integrity-of-external-javascript-files": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/Typoscript.html#integrity-of-external-javascript-files", + "Security\/GuidelinesIntegrators\/Typoscript.html#security-typoscript-integrity-js", "Integrity of external JavaScript files" ], "risk-of-externally-hosted-javascript-libraries": [ "TYPO3 Explained", "main", - "Security\/GuidelinesIntegrators\/Typoscript.html#risk-of-externally-hosted-javascript-libraries", + "Security\/GuidelinesIntegrators\/Typoscript.html#security-typoscript-risk-external-js", "Risk of externally hosted JavaScript libraries" ], "analyzing-a-hacked-site": [ "TYPO3 Explained", "main", - "Security\/HackedSite\/Analyze.html#analyzing-a-hacked-site", + "Security\/HackedSite\/Analyze.html#security-analyze", "Analyzing a hacked site" ], "detect-a-hacked-website": [ "TYPO3 Explained", "main", - "Security\/HackedSite\/Detect.html#detect-a-hacked-website", + "Security\/HackedSite\/Detect.html#security-detect", "Detect a hacked website" ], "manipulated-frontpage": [ @@ -48235,13 +48835,13 @@ "reports-from-visitors-or-users": [ "TYPO3 Explained", "main", - "Security\/HackedSite\/Detect.html#reports-from-visitors-or-users", + "Security\/HackedSite\/Detect.html#security-detect-reports-from-visitors", "Reports from visitors or users" ], "search-engines-or-browsers-warn-about-your-site": [ "TYPO3 Explained", "main", - "Security\/HackedSite\/Detect.html#search-engines-or-browsers-warn-about-your-site", + "Security\/HackedSite\/Detect.html#security-detect-reports-from-search-engines", "Search engines or browsers warn about your site" ], "leaked-credentials": [ @@ -48253,7 +48853,7 @@ "detect-analyze-and-repair-a-hacked-site": [ "TYPO3 Explained", "main", - "Security\/HackedSite\/Index.html#detect-analyze-and-repair-a-hacked-site", + "Security\/HackedSite\/Index.html#security-detect-analyze-repair", "Detect, analyze and repair a hacked site" ], "steps-to-take-when-a-site-got-hacked": [ @@ -48265,25 +48865,25 @@ "repair-restore": [ "TYPO3 Explained", "main", - "Security\/HackedSite\/RepairRestore.html#repair-restore", + "Security\/HackedSite\/RepairRestore.html#security-repair-restore", "Repair\/restore" ], "take-the-website-offline": [ "TYPO3 Explained", "main", - "Security\/HackedSite\/TakeOffline.html#take-the-website-offline", + "Security\/HackedSite\/TakeOffline.html#security-take-offline", "Take the website offline" ], "security-guidelines": [ "TYPO3 Explained", "main", - "Security\/Index.html#security-guidelines", + "Security\/Index.html#security", "Security guidelines" ], "reporting-a-security-issue": [ "TYPO3 Explained", "main", - "Security\/SecurityTeam\/Index.html#reporting-a-security-issue", + "Security\/SecurityTeam\/Index.html#security-team-contact", "Reporting a security issue" ], "target-audience": [ @@ -48295,7 +48895,7 @@ "the-typo3-security-team": [ "TYPO3 Explained", "main", - "Security\/SecurityTeam\/Index.html#the-typo3-security-team", + "Security\/SecurityTeam\/Index.html#security-team", "The TYPO3 Security Team" ], "extension-review": [ @@ -48307,7 +48907,7 @@ "incident-handling": [ "TYPO3 Explained", "main", - "Security\/SecurityTeam\/Index.html#incident-handling", + "Security\/SecurityTeam\/Index.html#security-incident-handling", "Incident handling" ], "security-issues-in-the-typo3-core": [ @@ -48325,37 +48925,37 @@ "types-of-security-threats": [ "TYPO3 Explained", "main", - "Security\/TypesOfThreats\/Index.html#types-of-security-threats", + "Security\/TypesOfThreats\/Index.html#security-threats", "Types of Security Threats" ], "information-disclosure": [ "TYPO3 Explained", "main", - "Security\/TypesOfThreats\/Index.html#information-disclosure", + "Security\/TypesOfThreats\/Index.html#security-information-disclosure", "Information disclosure" ], "identity-theft": [ "TYPO3 Explained", "main", - "Security\/TypesOfThreats\/Index.html#identity-theft", + "Security\/TypesOfThreats\/Index.html#security-identity-theft", "Identity theft" ], "code-injection": [ "TYPO3 Explained", "main", - "Security\/TypesOfThreats\/Index.html#code-injection", + "Security\/TypesOfThreats\/Index.html#security-code-injection", "Code injection" ], "authentication-bypass": [ "TYPO3 Explained", "main", - "Security\/TypesOfThreats\/Index.html#authentication-bypass", + "Security\/TypesOfThreats\/Index.html#security-authorization-bypass", "Authentication bypass" ], "cross-site-request-forgery-xsrf": [ "TYPO3 Explained", "main", - "Security\/TypesOfThreats\/Index.html#cross-site-request-forgery-xsrf", + "Security\/TypesOfThreats\/Index.html#security-xsrf", "Cross-site request forgery (XSRF)" ], "sitemap": [ @@ -48367,307 +48967,313 @@ "acceptance-testing-with-the-typo3-testing-framework": [ "TYPO3 Explained", "main", - "Testing\/AcceptanceTesting\/Index.html#acceptance-testing-with-the-typo3-testing-framework", + "Testing\/AcceptanceTesting\/Index.html#testing-writing-acceptance", "Acceptance testing with the TYPO3 testing framework" ], "set-up": [ "TYPO3 Explained", "main", - "Testing\/AcceptanceTesting\/Index.html#set-up", + "Testing\/AcceptanceTesting\/Index.html#testing-writing-acceptance-setup", "Set up" ], "backend-login": [ "TYPO3 Explained", "main", - "Testing\/AcceptanceTesting\/Index.html#backend-login", + "Testing\/AcceptanceTesting\/Index.html#testing-writing-acceptance-login", "Backend login" ], "frames": [ "TYPO3 Explained", "main", - "Testing\/AcceptanceTesting\/Index.html#frames", + "Testing\/AcceptanceTesting\/Index.html#testing-writing-acceptance-frames", "Frames" ], "pagetree": [ "TYPO3 Explained", "main", - "Testing\/AcceptanceTesting\/Index.html#pagetree", + "Testing\/AcceptanceTesting\/Index.html#testing-writing-acceptance-pagetree", "PageTree" ], "modaldialog": [ "TYPO3 Explained", "main", - "Testing\/AcceptanceTesting\/Index.html#modaldialog", + "Testing\/AcceptanceTesting\/Index.html#testing-writing-acceptance-modal", "ModalDialog" ], "core-testing": [ "TYPO3 Explained", "main", - "Testing\/CoreTesting.html#core-testing", + "Testing\/CoreTesting.html#testing-core", "Core testing" ], "extension-testing": [ "TYPO3 Explained", "main", - "Testing\/ExtensionTesting.html#extension-testing", + "Testing\/ExtensionTesting.html#testing-extensions", "Extension testing" ], "linting": [ "TYPO3 Explained", "main", - "Testing\/ExtensionTesting.html#linting", + "Testing\/ExtensionTesting.html#testing-extensions-linting", "Linting" ], "coding-guidelines-cgl": [ "TYPO3 Explained", "main", - "Testing\/ExtensionTesting.html#coding-guidelines-cgl", + "Testing\/ExtensionTesting.html#testing-extensions-cgl", "Coding guidelines (CGL)" ], "static-code-analysis": [ "TYPO3 Explained", "main", - "Testing\/ExtensionTesting.html#static-code-analysis", + "Testing\/ExtensionTesting.html#testing-extensions-static", "Static code analysis" ], + "unit-tests": [ + "TYPO3 Explained", + "main", + "Testing\/ExtensionTesting.html#testing-extensions-unit", + "Unit tests" + ], "functional-tests": [ "TYPO3 Explained", "main", - "Testing\/ExtensionTesting.html#functional-tests", + "Testing\/ExtensionTesting.html#testing-extensions-functional", "Functional tests" ], "acceptance-tests": [ "TYPO3 Explained", "main", - "Testing\/ExtensionTesting.html#acceptance-tests", + "Testing\/ExtensionTesting.html#testing-extensions-acceptance", "Acceptance tests" ], "organizing-and-storing-the-commands": [ "TYPO3 Explained", "main", - "Testing\/ProjectTesting.html#organizing-and-storing-the-commands", + "Testing\/ProjectTesting.html#testing-projects-organization", "Organizing and storing the commands" ], "functional-testing-with-the-typo3-testing-framework": [ "TYPO3 Explained", "main", - "Testing\/FunctionalTesting\/Index.html#functional-testing-with-the-typo3-testing-framework", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional", "Functional testing with the TYPO3 testing framework" ], "simple-example": [ "TYPO3 Explained", "main", - "Testing\/FunctionalTesting\/Index.html#simple-example", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional-example-simple", "Simple Example" ], "extending-setup": [ "TYPO3 Explained", "main", - "Testing\/FunctionalTesting\/Index.html#extending-setup", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional-setup", "Extending setUp" ], "loaded-extensions": [ "TYPO3 Explained", "main", - "Testing\/FunctionalTesting\/Index.html#loaded-extensions", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional-load-extensions", "Loaded extensions" ], "database-fixtures": [ "TYPO3 Explained", "main", - "Testing\/FunctionalTesting\/Index.html#database-fixtures", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional-fixtures", "Database fixtures" ], "asserting-database": [ "TYPO3 Explained", "main", - "Testing\/FunctionalTesting\/Index.html#asserting-database", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional-assert-database", "Asserting database" ], "loading-files": [ "TYPO3 Explained", "main", - "Testing\/FunctionalTesting\/Index.html#loading-files", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional-load-files", "Loading files" ], "setting-typo3-conf-vars": [ "TYPO3 Explained", "main", - "Testing\/FunctionalTesting\/Index.html#setting-typo3-conf-vars", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional-TYPO3_CONF_VARS", "Setting TYPO3_CONF_VARS" ], "frontend-tests": [ "TYPO3 Explained", "main", - "Testing\/FunctionalTesting\/Index.html#frontend-tests", + "Testing\/FunctionalTesting\/Index.html#testing-writing-functional-frontend", "Frontend tests" ], "introduction-to-functional-tests": [ "TYPO3 Explained", "main", - "Testing\/FunctionalTesting\/Introduction.html#introduction-to-functional-tests", + "Testing\/FunctionalTesting\/Introduction.html#testing-writing-functional-introduction", "Introduction to functional tests" ], "testing-1": [ "TYPO3 Explained", "main", - "Testing\/Index.html#testing-1", + "Testing\/Index.html#testing", "Testing" ], "project-testing": [ "TYPO3 Explained", "main", - "Testing\/ProjectTesting.html#project-testing", + "Testing\/ProjectTesting.html#testing-projects", "Project testing" ], "differences-between-project-and-extension-testing": [ "TYPO3 Explained", "main", - "Testing\/ProjectTesting.html#differences-between-project-and-extension-testing", + "Testing\/ProjectTesting.html#testing-projects-differences", "Differences between project and extension testing" ], "project-structure": [ "TYPO3 Explained", "main", - "Testing\/ProjectTesting.html#project-structure", + "Testing\/ProjectTesting.html#testing-projects-structure", "Project structure" ], "install-testing-dependencies": [ "TYPO3 Explained", "main", - "Testing\/ProjectTesting.html#install-testing-dependencies", + "Testing\/ProjectTesting.html#testing-projects-installation", "Install testing dependencies" ], "test-configuration-on-project-level": [ "TYPO3 Explained", "main", - "Testing\/ProjectTesting.html#test-configuration-on-project-level", + "Testing\/ProjectTesting.html#testing-projects-configuration", "Test configuration on project level" ], "code-style-tests-and-fixing": [ "TYPO3 Explained", "main", - "Testing\/ProjectTesting.html#code-style-tests-and-fixing", + "Testing\/ProjectTesting.html#testing-projects-configuration-cs", "Code style tests and fixing" ], "phpstan-static-php-analysis": [ "TYPO3 Explained", "main", - "Testing\/ProjectTesting.html#phpstan-static-php-analysis", + "Testing\/ProjectTesting.html#testing-projects-configuration-phpstan", "PHPstan - Static PHP analysis" ], "unit-and-functional-test-configuration": [ "TYPO3 Explained", "main", - "Testing\/ProjectTesting.html#unit-and-functional-test-configuration", + "Testing\/ProjectTesting.html#testing-projects-configuration-phpunit", "Unit and Functional test configuration" ], "running-the-tests-locally": [ "TYPO3 Explained", "main", - "Testing\/ProjectTesting.html#running-the-tests-locally", + "Testing\/ProjectTesting.html#testing-projects-execution", "Running the tests locally" ], "run-the-php-cs-fixer": [ "TYPO3 Explained", "main", - "Testing\/ProjectTesting.html#run-the-php-cs-fixer", + "Testing\/ProjectTesting.html#testing-projects-execution-cs", "Run the php-cs-fixer" ], "run-phpstan": [ "TYPO3 Explained", "main", - "Testing\/ProjectTesting.html#run-phpstan", + "Testing\/ProjectTesting.html#testing-projects-execution-phpstan", "Run PHPstan" ], "run-unit-tests": [ "TYPO3 Explained", "main", - "Testing\/ProjectTesting.html#run-unit-tests", + "Testing\/ProjectTesting.html#testing-projects-execution-phpunit", "Run Unit tests" ], "run-functional-tests-using-sqlite-and-ddev": [ "TYPO3 Explained", "main", - "Testing\/ProjectTesting.html#run-functional-tests-using-sqlite-and-ddev", + "Testing\/ProjectTesting.html#testing-projects-execution-functional-sqlite", "Run Functional tests using sqlite and DDEV" ], "run-functional-tests-using-mysqli-and-ddev": [ "TYPO3 Explained", "main", - "Testing\/ProjectTesting.html#run-functional-tests-using-mysqli-and-ddev", + "Testing\/ProjectTesting.html#testing-projects-execution-functional-mysqli", "Run Functional tests using mysqli and DDEV" ], "test-runners-organize-and-execute-tests": [ "TYPO3 Explained", "main", - "Testing\/TestRunners.html#test-runners-organize-and-execute-tests", + "Testing\/TestRunners.html#testing-organization", "Test Runners: Organize and execute tests" ], "what-are-test-runners-and-why-do-we-need-them": [ "TYPO3 Explained", "main", - "Testing\/TestRunners.html#what-are-test-runners-and-why-do-we-need-them", + "Testing\/TestRunners.html#testing-organization-why", "What are test runners and why do we need them" ], "use-a-bash-alias": [ "TYPO3 Explained", "main", - "Testing\/TestRunners.html#use-a-bash-alias", + "Testing\/TestRunners.html#testing-organization-bash-alias", "Use a bash alias" ], "write-a-bash-script": [ "TYPO3 Explained", "main", - "Testing\/TestRunners.html#write-a-bash-script", + "Testing\/TestRunners.html#testing-organization-bash-script", "Write a bash script" ], "introduce-custom-ddev-commands": [ "TYPO3 Explained", "main", - "Testing\/TestRunners.html#introduce-custom-ddev-commands", + "Testing\/TestRunners.html#testing-organization-ddev", "Introduce custom DDEV commands" ], "introduce-a-composer-script": [ "TYPO3 Explained", "main", - "Testing\/TestRunners.html#introduce-a-composer-script", + "Testing\/TestRunners.html#testing-organization-composer", "Introduce a Composer script" ], "create-a-makefile": [ "TYPO3 Explained", "main", - "Testing\/TestRunners.html#create-a-makefile", + "Testing\/TestRunners.html#testing-organization-makefile", "Create a Makefile" ], "use-dedicated-tools-like-just": [ "TYPO3 Explained", "main", - "Testing\/TestRunners.html#use-dedicated-tools-like-just", + "Testing\/TestRunners.html#testing-organization-just", "Use dedicated tools like just" ], "use-the-file-runtests-sh-script-based-on-the-typo3-core": [ "TYPO3 Explained", "main", - "Testing\/TestRunners.html#use-the-file-runtests-sh-script-based-on-the-typo3-core", + "Testing\/TestRunners.html#testing-organization-runtests-core", "Use the runTests.sh script based on the TYPO3-Core" ], "use-a-customized-file-runtests-sh-script-based-on-blog-example": [ "TYPO3 Explained", "main", - "Testing\/TestRunners.html#use-a-customized-file-runtests-sh-script-based-on-blog-example", + "Testing\/TestRunners.html#testing-organization-runtests-blog", "Use a customized runTests.sh script based on blog_example" ], "use-a-generator": [ "TYPO3 Explained", "main", - "Testing\/TestRunners.html#use-a-generator", + "Testing\/TestRunners.html#testing-organization-generator", "Use a generator" ], "acceptance-testing-of-site-introduction": [ "TYPO3 Explained", "main", - "Testing\/Tutorial\/Acceptance.html#acceptance-testing-of-site-introduction", + "Testing\/Tutorial\/Acceptance.html#testing-tutorial-acceptance", "Acceptance testing of site_introduction" ], "project-site-introduction": [ @@ -48685,163 +49291,163 @@ "github-actions": [ "TYPO3 Explained", "main", - "Testing\/Tutorial\/Enetcache.html#github-actions", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-github2", "Github Actions" ], "testing-enetcache": [ "TYPO3 Explained", "main", - "Testing\/Tutorial\/Enetcache.html#testing-enetcache", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-testing", "Testing enetcache" ], "scope": [ "TYPO3 Explained", "main", - "Testing\/Tutorial\/Enetcache.html#scope", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-scope", "Scope" ], "general-strategy": [ "TYPO3 Explained", "main", - "Testing\/Tutorial\/Enetcache.html#general-strategy", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-strategy", "General strategy" ], "starting-point": [ "TYPO3 Explained", "main", - "Testing\/Tutorial\/Enetcache.html#starting-point", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-start", "Starting point" ], "preparing-composer-json": [ "TYPO3 Explained", "main", - "Testing\/Tutorial\/Enetcache.html#preparing-composer-json", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-composer-json", "Preparing composer.json" ], "runtests-sh-and-docker-compose-yml": [ "TYPO3 Explained", "main", - "Testing\/Tutorial\/Enetcache.html#runtests-sh-and-docker-compose-yml", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-runtests", "runTests.sh and docker-compose.yml" ], "testing-styleguide": [ "TYPO3 Explained", "main", - "Testing\/Tutorial\/Enetcache.html#testing-styleguide", + "Testing\/Tutorial\/Enetcache.html#testing-extensions-styleguide", "Testing styleguide" ], "basic-setup": [ "TYPO3 Explained", "main", - "Testing\/Tutorial\/Enetcache.html#basic-setup", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-setup", "Basic setup" ], "functional-testing": [ "TYPO3 Explained", "main", - "Testing\/Tutorial\/Enetcache.html#functional-testing", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-functional", "Functional testing" ], "acceptance-testing": [ "TYPO3 Explained", "main", - "Testing\/Tutorial\/Enetcache.html#acceptance-testing", + "Testing\/Tutorial\/Enetcache.html#testing-tutorial-enetcache-acceptance", "Acceptance testing" ], "testing-tutorials": [ "TYPO3 Explained", "main", - "Testing\/Tutorial\/Index.html#testing-tutorials", + "Testing\/Tutorial\/Index.html#testing-tutorial", "Testing tutorials" ], "unit-testing-with-the-typo3-testing-framework": [ "TYPO3 Explained", "main", - "Testing\/UnitTesting\/Index.html#unit-testing-with-the-typo3-testing-framework", + "Testing\/UnitTesting\/Index.html#testing-writing-unit", "Unit testing with the TYPO3 testing framework" ], "unit-test-conventions": [ "TYPO3 Explained", "main", - "Testing\/UnitTesting\/Index.html#unit-test-conventions", + "Testing\/UnitTesting\/Index.html#cgl-unit-tests", "Unit test conventions" ], "extending-unittestcase": [ "TYPO3 Explained", "main", - "Testing\/UnitTesting\/Index.html#extending-unittestcase", + "Testing\/UnitTesting\/Index.html#testing-writing-unit-extending", "Extending UnitTestCase" ], "general-hints": [ "TYPO3 Explained", "main", - "Testing\/UnitTesting\/Index.html#general-hints", + "Testing\/UnitTesting\/Index.html#testing-writing-unit-hints", "General hints" ], "a-casual-data-provider": [ "TYPO3 Explained", "main", - "Testing\/UnitTesting\/Index.html#a-casual-data-provider", + "Testing\/UnitTesting\/Index.html#testing-writing-unit-data-provider", "A casual data provider" ], "mocking": [ "TYPO3 Explained", "main", - "Testing\/UnitTesting\/Index.html#mocking", + "Testing\/UnitTesting\/Index.html#testing-writing-unit-mocking", "Mocking" ], "static-dependencies": [ "TYPO3 Explained", "main", - "Testing\/UnitTesting\/Index.html#static-dependencies", + "Testing\/UnitTesting\/Index.html#testing-writing-unit-dependencies", "Static dependencies" ], "exception-handling": [ "TYPO3 Explained", "main", - "Testing\/UnitTesting\/Index.html#exception-handling", + "Testing\/UnitTesting\/Index.html#testing-writing-unit-exception", "Exception handling" ], "introduction-to-unit-tests": [ "TYPO3 Explained", "main", - "Testing\/UnitTesting\/Introduction.html#introduction-to-unit-tests", + "Testing\/UnitTesting\/Introduction.html#testing-writing-unit-introduction", "Introduction to unit tests" ], "when-to-unit-test": [ "TYPO3 Explained", "main", - "Testing\/UnitTesting\/Introduction.html#when-to-unit-test", + "Testing\/UnitTesting\/Introduction.html#testing-writing-unit-when", "When to unit test" ], "when-not-to-unit-test": [ "TYPO3 Explained", "main", - "Testing\/UnitTesting\/Introduction.html#when-not-to-unit-test", + "Testing\/UnitTesting\/Introduction.html#testing-writing-unit-when-not", "When not to unit test" ], "keep-it-simple": [ "TYPO3 Explained", "main", - "Testing\/UnitTesting\/Introduction.html#keep-it-simple", + "Testing\/UnitTesting\/Introduction.html#testing-writing-unit-simple", "Keep it simple" ], "running-unit-tests": [ "TYPO3 Explained", "main", - "Testing\/UnitTesting\/Running.html#running-unit-tests", + "Testing\/UnitTesting\/Running.html#testing-unit-run", "Running Unit tests" ], "install-phpunit-and-the-typo3-testing-framework": [ "TYPO3 Explained", "main", - "Testing\/UnitTesting\/Running.html#install-phpunit-and-the-typo3-testing-framework", + "Testing\/UnitTesting\/Running.html#testing-unit-run-install", "Install PHPUnit and the TYPO3 testing framework" ], "provide-configuration-files-for-unit-tests": [ "TYPO3 Explained", "main", - "Testing\/UnitTesting\/Running.html#provide-configuration-files-for-unit-tests", + "Testing\/UnitTesting\/Running.html#testing-unit-run-configure", "Provide configuration files for unit tests" ], "run-the-unit-tests-on-your-system-or-with-ddev": [ @@ -48861,2443 +49467,2443 @@ "opcache-save-comments": [ "TYPO3 Explained", "main", - "Administration\/Installation\/TuneTYPO3.html#opcache-save-comments", + "Administration\/Installation\/TuneTYPO3.html#confval-opcache-save-comments", "opcache.save_comments" ], "opcache-use-cwd": [ "TYPO3 Explained", "main", - "Administration\/Installation\/TuneTYPO3.html#opcache-use-cwd", + "Administration\/Installation\/TuneTYPO3.html#confval-opcache-use-cwd", "opcache.use_cwd" ], "opcache-validate-timestamps": [ "TYPO3 Explained", "main", - "Administration\/Installation\/TuneTYPO3.html#opcache-validate-timestamps", + "Administration\/Installation\/TuneTYPO3.html#confval-opcache-validate-timestamps", "opcache.validate_timestamps" ], "opcache-revalidate-freq": [ "TYPO3 Explained", "main", - "Administration\/Installation\/TuneTYPO3.html#opcache-revalidate-freq", + "Administration\/Installation\/TuneTYPO3.html#confval-opcache-revalidate-freq", "opcache.revalidate_freq" ], "opcache-revalidate-path": [ "TYPO3 Explained", "main", - "Administration\/Installation\/TuneTYPO3.html#opcache-revalidate-path", + "Administration\/Installation\/TuneTYPO3.html#confval-opcache-revalidate-path", "opcache.revalidate_path" ], "opcache-max-accelerated-files": [ "TYPO3 Explained", "main", - "Administration\/Installation\/TuneTYPO3.html#opcache-max-accelerated-files", + "Administration\/Installation\/TuneTYPO3.html#confval-opcache-max-accelerated-files", "opcache.max_accelerated_files" ], "backend-module-parent": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-parent", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-parent", "parent" ], "backend-module-path": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-path", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-path", "path" ], "backend-module-access": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-access", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-access", "access" ], "backend-module-workspaces": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-workspaces", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-workspaces", "workspaces" ], "backend-module-position": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-position", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-position", "position" ], "backend-module-appearance": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-appearance", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-appearance", "appearance" ], "backend-module-appearance-renderinmodulemenu": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-appearance-renderinmodulemenu", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-appearance-renderinmodulemenu", "appearance.renderInModuleMenu" ], "backend-module-iconidentifier": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-iconidentifier", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-iconidentifier", "iconIdentifier" ], "backend-module-icon": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-icon", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-icon", "icon" ], "backend-module-labels": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-labels", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-labels", "labels" ], "backend-module-component": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-component", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-component", "component" ], "backend-module-navigationcomponent": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-navigationcomponent", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-navigationcomponent", "navigationComponent" ], "backend-module-navigationcomponentid": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-navigationcomponentid", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-navigationcomponentid", "navigationComponentId" ], "backend-module-inheritnavigationcomponentfrommainmodule": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-inheritnavigationcomponentfrommainmodule", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-inheritnavigationcomponentfrommainmodule", "inheritNavigationComponentFromMainModule" ], "backend-module-moduledata": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-moduledata", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-moduledata", "moduleData" ], "backend-module-aliases": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-aliases", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-aliases", "aliases" ], "backend-module-routeoptions": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-routeoptions", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-routeoptions", "routeOptions" ], "backend-module-routes": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-routes", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-routes", "routes" ], "backend-module-extensionname": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-extensionname", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-extensionname", "extensionName" ], "backend-module-controlleractions": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-controlleractions", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-backend-module-controlleractions", "controllerActions" ], "modules-modals-settings-title": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-settings-title", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-settings-title", "title" ], "modules-modals-settings-content": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-settings-content", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-settings-content", "content" ], "modules-modals-settings-severity": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-settings-severity", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-settings-severity", "severity" ], "modules-modals-settings-buttons": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-settings-buttons", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-settings-buttons", "buttons" ], "modules-modals-settings-staticbackdrop": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-settings-staticbackdrop", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-settings-staticbackdrop", "staticBackdrop" ], "modules-modals-button-settings-text": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-button-settings-text", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-button-settings-text", "text" ], "modules-modals-button-settings-trigger": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-button-settings-trigger", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-button-settings-trigger", "trigger \/ action" ], "modules-modals-button-settings-active": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-button-settings-active", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-button-settings-active", "active" ], "modules-modals-button-settings-btnclass": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-button-settings-btnclass", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-modules-modals-button-settings-btnclass", "btnClass" ], "cachedparameterswhitelist": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/Index.html#cachedparameterswhitelist", + "ApiOverview\/CachingFramework\/Index.html#confval-cachedparameterswhitelist", "cachedParametersWhiteList" ], "requirecachehashpresenceparameters": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/Index.html#requirecachehashpresenceparameters", + "ApiOverview\/CachingFramework\/Index.html#confval-requirecachehashpresenceparameters", "requireCacheHashPresenceParameters" ], "excludedparameters": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/Index.html#excludedparameters", + "ApiOverview\/CachingFramework\/Index.html#confval-excludedparameters", "excludedParameters" ], "excludedparametersifempty": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/Index.html#excludedparametersifempty", + "ApiOverview\/CachingFramework\/Index.html#confval-excludedparametersifempty", "excludedParametersIfEmpty" ], "excludeallemptyparameters": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/Index.html#excludeallemptyparameters", + "ApiOverview\/CachingFramework\/Index.html#confval-excludeallemptyparameters", "excludeAllEmptyParameters" ], "enforcevalidation": [ "TYPO3 Explained", "main", - "ApiOverview\/CachingFramework\/Index.html#enforcevalidation", + "ApiOverview\/CachingFramework\/Index.html#confval-enforcevalidation", "enforceValidation" ], "code-editor-register-addon-identifier": [ "TYPO3 Explained", "main", - "ApiOverview\/CodeEditor\/Index.html#code-editor-register-addon-identifier", + "ApiOverview\/CodeEditor\/Index.html#confval-code-editor-register-addon-identifier", "<identifier>" ], "code-editor-register-addon-module": [ "TYPO3 Explained", "main", - "ApiOverview\/CodeEditor\/Index.html#code-editor-register-addon-module", + "ApiOverview\/CodeEditor\/Index.html#confval-code-editor-register-addon-module", "module" ], "code-editor-register-addon-cssfiles": [ "TYPO3 Explained", "main", - "ApiOverview\/CodeEditor\/Index.html#code-editor-register-addon-cssfiles", + "ApiOverview\/CodeEditor\/Index.html#confval-code-editor-register-addon-cssfiles", "cssFiles" ], "code-editor-register-addon-options": [ "TYPO3 Explained", "main", - "ApiOverview\/CodeEditor\/Index.html#code-editor-register-addon-options", + "ApiOverview\/CodeEditor\/Index.html#confval-code-editor-register-addon-options", "options" ], "code-editor-register-addon-modes": [ "TYPO3 Explained", "main", - "ApiOverview\/CodeEditor\/Index.html#code-editor-register-addon-modes", + "ApiOverview\/CodeEditor\/Index.html#confval-code-editor-register-addon-modes", "modes" ], "code-editor-register-mode-identifier": [ "TYPO3 Explained", "main", - "ApiOverview\/CodeEditor\/Index.html#code-editor-register-mode-identifier", + "ApiOverview\/CodeEditor\/Index.html#confval-code-editor-register-mode-identifier", "<identifier>" ], "code-editor-register-mode-module": [ "TYPO3 Explained", "main", - "ApiOverview\/CodeEditor\/Index.html#code-editor-register-mode-module", + "ApiOverview\/CodeEditor\/Index.html#confval-code-editor-register-mode-module", "module" ], "code-editor-register-mode-extensions": [ "TYPO3 Explained", "main", - "ApiOverview\/CodeEditor\/Index.html#code-editor-register-mode-extensions", + "ApiOverview\/CodeEditor\/Index.html#confval-code-editor-register-mode-extensions", "extensions" ], "code-editor-register-mode-default": [ "TYPO3 Explained", "main", - "ApiOverview\/CodeEditor\/Index.html#code-editor-register-mode-default", + "ApiOverview\/CodeEditor\/Index.html#confval-code-editor-register-mode-default", "default" ], "content-security-policy-mode-append": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-mode-append", + "ApiOverview\/ContentSecurityPolicy\/Index.html#confval-content-security-policy-mode-append", "append" ], "content-security-policy-mode-extend": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-mode-extend", + "ApiOverview\/ContentSecurityPolicy\/Index.html#confval-content-security-policy-mode-extend", "extend" ], "content-security-policy-mode-inherit-again": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-mode-inherit-again", + "ApiOverview\/ContentSecurityPolicy\/Index.html#confval-content-security-policy-mode-inherit-again", "inherit-again" ], "content-security-policy-mode-inherit-once": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-mode-inherit-once", + "ApiOverview\/ContentSecurityPolicy\/Index.html#confval-content-security-policy-mode-inherit-once", "inherit-once" ], "content-security-policy-mode-reduce": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-mode-reduce", + "ApiOverview\/ContentSecurityPolicy\/Index.html#confval-content-security-policy-mode-reduce", "reduce" ], "content-security-policy-mode-remove": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-mode-remove", + "ApiOverview\/ContentSecurityPolicy\/Index.html#confval-content-security-policy-mode-remove", "remove" ], "content-security-policy-mode-set": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-mode-set", + "ApiOverview\/ContentSecurityPolicy\/Index.html#confval-content-security-policy-mode-set", "set" ], "datetime-aspect-timestamp": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#datetime-aspect-timestamp", + "ApiOverview\/Context\/Index.html#confval-datetime-aspect-timestamp", "timestamp" ], "datetime-aspect-timezone": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#datetime-aspect-timezone", + "ApiOverview\/Context\/Index.html#confval-datetime-aspect-timezone", "timezone" ], "datetime-aspect-iso": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#datetime-aspect-iso", + "ApiOverview\/Context\/Index.html#confval-datetime-aspect-iso", "iso" ], "datetime-aspect-full": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#datetime-aspect-full", + "ApiOverview\/Context\/Index.html#confval-datetime-aspect-full", "full" ], "language-aspect-id": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#language-aspect-id", + "ApiOverview\/Context\/Index.html#confval-language-aspect-id", "id" ], "language-aspect-contentid": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#language-aspect-contentid", + "ApiOverview\/Context\/Index.html#confval-language-aspect-contentid", "contentId" ], "language-aspect-fallbackchain": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#language-aspect-fallbackchain", + "ApiOverview\/Context\/Index.html#confval-language-aspect-fallbackchain", "fallbackChain" ], "language-aspect-overlaytype": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#language-aspect-overlaytype", + "ApiOverview\/Context\/Index.html#confval-language-aspect-overlaytype", "overlayType" ], "language-aspect-legacylanguagemode": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#language-aspect-legacylanguagemode", + "ApiOverview\/Context\/Index.html#confval-language-aspect-legacylanguagemode", "legacyLanguageMode" ], "language-aspect-legacyoverlaytype": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#language-aspect-legacyoverlaytype", + "ApiOverview\/Context\/Index.html#confval-language-aspect-legacyoverlaytype", "legacyOverlayType" ], "preview-aspect-ispreview": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#preview-aspect-ispreview", + "ApiOverview\/Context\/Index.html#confval-preview-aspect-ispreview", "isPreview" ], "user-aspect-id": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#user-aspect-id", + "ApiOverview\/Context\/Index.html#confval-user-aspect-id", "id" ], "user-aspect-username": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#user-aspect-username", + "ApiOverview\/Context\/Index.html#confval-user-aspect-username", "username" ], "user-aspect-isloggedin": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#user-aspect-isloggedin", + "ApiOverview\/Context\/Index.html#confval-user-aspect-isloggedin", "isLoggedIn" ], "user-aspect-isadmin": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#user-aspect-isadmin", + "ApiOverview\/Context\/Index.html#confval-user-aspect-isadmin", "isAdmin" ], "user-aspect-groupids": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#user-aspect-groupids", + "ApiOverview\/Context\/Index.html#confval-user-aspect-groupids", "groupIds" ], "user-aspect-groupnames": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#user-aspect-groupnames", + "ApiOverview\/Context\/Index.html#confval-user-aspect-groupnames", "groupNames" ], "visibility-aspect-includehiddenpages": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#visibility-aspect-includehiddenpages", + "ApiOverview\/Context\/Index.html#confval-visibility-aspect-includehiddenpages", "includeHiddenPages" ], "visibility-aspect-includehiddencontent": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#visibility-aspect-includehiddencontent", + "ApiOverview\/Context\/Index.html#confval-visibility-aspect-includehiddencontent", "includeHiddenContent" ], "visibility-aspect-includedeletedrecords": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#visibility-aspect-includedeletedrecords", + "ApiOverview\/Context\/Index.html#confval-visibility-aspect-includedeletedrecords", "includeDeletedRecords" ], "workspace-aspect-id": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#workspace-aspect-id", + "ApiOverview\/Context\/Index.html#confval-workspace-aspect-id", "id" ], "workspace-aspect-islive": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#workspace-aspect-islive", + "ApiOverview\/Context\/Index.html#confval-workspace-aspect-islive", "isLive" ], "workspace-aspect-isoffline": [ "TYPO3 Explained", "main", - "ApiOverview\/Context\/Index.html#workspace-aspect-isoffline", + "ApiOverview\/Context\/Index.html#confval-workspace-aspect-isoffline", "isOffline" ], "target": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Middleware\/Index.html#target", + "ApiOverview\/Database\/Middleware\/Index.html#confval-target", "target" ], "before": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Middleware\/Index.html#before", + "ApiOverview\/Database\/Middleware\/Index.html#confval-before", "before" ], "after": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Middleware\/Index.html#after", + "ApiOverview\/Database\/Middleware\/Index.html#confval-after", "after" ], "disabled": [ "TYPO3 Explained", "main", - "ApiOverview\/Database\/Middleware\/Index.html#disabled", + "ApiOverview\/Database\/Middleware\/Index.html#confval-disabled", "disabled" ], "datahandler-cmd-tablename": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-tablename", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-tablename", "tablename" ], "datahandler-cmd-uid": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-uid", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-uid", "uid" ], "datahandler-cmd-command": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-command", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-command", "command" ], "datahandler-cmd-value": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-value", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-value", "value" ], "datahandler-cmd-copy": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-copy", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-copy", "copy" ], "datahandler-cmd-move": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-move", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-move", "move" ], "datahandler-cmd-delete": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-delete", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-delete", "delete" ], "datahandler-cmd-undelete": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-undelete", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-undelete", "undelete" ], "datahandler-cmd-localize": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-localize", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-localize", "localize" ], "datahandler-cmd-copytolanguage": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-copytolanguage", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-copytolanguage", "copyToLanguage" ], "datahandler-cmd-inlinelocalizesynchronize": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-inlinelocalizesynchronize", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-inlinelocalizesynchronize", "inlineLocalizeSynchronize" ], "datahandler-cmd-version": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-cmd-version", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-cmd-version", "version" ], "datahandler-data-tablename": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-data-tablename", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-data-tablename", "tablename" ], "datahandler-data-uid": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-data-uid", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-data-uid", "uid" ], "datahandler-data-fieldname": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-data-fieldname", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-data-fieldname", "fieldname" ], "datahandler-data-value": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-data-value", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-data-value", "value" ], "datahandler-clear-cachecmd-integer": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-clear-cachecmd-integer", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-clear-cachecmd-integer", "[integer]" ], "datahandler-clear-cachecmd-all": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-clear-cachecmd-all", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-clear-cachecmd-all", "\"all\"" ], "datahandler-clear-cachecmd-pages": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-clear-cachecmd-pages", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-clear-cachecmd-pages", "\"pages\"" ], "datahandler-flags-copytree": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-flags-copytree", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-flags-copytree", "->copyTree" ], "datahandler-flags-reverseorder": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-flags-reverseorder", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-flags-reverseorder", "->reverseOrder" ], "datahandler-flags-copywhichtables": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/Database\/Index.html#datahandler-flags-copywhichtables", + "ApiOverview\/DataHandler\/Database\/Index.html#confval-datahandler-flags-copywhichtables", "->copyWhichTables" ], "datahandler-commit-data": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/TceDb\/Index.html#datahandler-commit-data", + "ApiOverview\/DataHandler\/TceDb\/Index.html#confval-datahandler-commit-data", "data" ], "datahandler-commit-cmd": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/TceDb\/Index.html#datahandler-commit-cmd", + "ApiOverview\/DataHandler\/TceDb\/Index.html#confval-datahandler-commit-cmd", "cmd" ], "datahandler-commit-cachecmd": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/TceDb\/Index.html#datahandler-commit-cachecmd", + "ApiOverview\/DataHandler\/TceDb\/Index.html#confval-datahandler-commit-cachecmd", "cacheCmd" ], "datahandler-commit-redirect": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/TceDb\/Index.html#datahandler-commit-redirect", + "ApiOverview\/DataHandler\/TceDb\/Index.html#confval-datahandler-commit-redirect", "redirect" ], "datahandler-commit-flags": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/TceDb\/Index.html#datahandler-commit-flags", + "ApiOverview\/DataHandler\/TceDb\/Index.html#confval-datahandler-commit-flags", "flags" ], "datahandler-commit-mirror": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/TceDb\/Index.html#datahandler-commit-mirror", + "ApiOverview\/DataHandler\/TceDb\/Index.html#confval-datahandler-commit-mirror", "mirror" ], "datahandler-commit-cb": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/TceDb\/Index.html#datahandler-commit-cb", + "ApiOverview\/DataHandler\/TceDb\/Index.html#confval-datahandler-commit-cb", "CB" ], "datahandler-commit-vc": [ "TYPO3 Explained", "main", - "ApiOverview\/DataHandler\/TceDb\/Index.html#datahandler-commit-vc", + "ApiOverview\/DataHandler\/TceDb\/Index.html#confval-datahandler-commit-vc", "vC" ], "logger-log-level": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Logger\/Index.html#logger-log-level", + "ApiOverview\/Logging\/Logger\/Index.html#confval-logger-log-level", "$level" ], "logger-log-message": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Logger\/Index.html#logger-log-message", + "ApiOverview\/Logging\/Logger\/Index.html#confval-logger-log-message", "$message" ], "logger-log-data": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Logger\/Index.html#logger-log-data", + "ApiOverview\/Logging\/Logger\/Index.html#confval-logger-log-data", "$data" ], "logger-debug": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Logger\/Index.html#logger-debug", + "ApiOverview\/Logging\/Logger\/Index.html#confval-logger-debug", "Debug" ], "logger-info": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Logger\/Index.html#logger-info", + "ApiOverview\/Logging\/Logger\/Index.html#confval-logger-info", "Informational" ], "logger-notice": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Logger\/Index.html#logger-notice", + "ApiOverview\/Logging\/Logger\/Index.html#confval-logger-notice", "Notice" ], "logger-warning": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Logger\/Index.html#logger-warning", + "ApiOverview\/Logging\/Logger\/Index.html#confval-logger-warning", "Warning" ], "logger-error": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Logger\/Index.html#logger-error", + "ApiOverview\/Logging\/Logger\/Index.html#confval-logger-error", "Error" ], "logger-critical": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Logger\/Index.html#logger-critical", + "ApiOverview\/Logging\/Logger\/Index.html#confval-logger-critical", "Critical" ], "logger-alert": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Logger\/Index.html#logger-alert", + "ApiOverview\/Logging\/Logger\/Index.html#confval-logger-alert", "Alert" ], "logger-emergency": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Logger\/Index.html#logger-emergency", + "ApiOverview\/Logging\/Logger\/Index.html#confval-logger-emergency", "Emergency" ], "logging-processors-introspection-appendfullbacktrace": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-introspection-appendfullbacktrace", + "ApiOverview\/Logging\/Processors\/Index.html#confval-logging-processors-introspection-appendfullbacktrace", "appendFullBackTrace" ], "logging-processors-introspection-shiftbacktracelevel": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-introspection-shiftbacktracelevel", + "ApiOverview\/Logging\/Processors\/Index.html#confval-logging-processors-introspection-shiftbacktracelevel", "shiftBackTraceLevel" ], "logging-processors-memory-realmemoryusage": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-memory-realmemoryusage", + "ApiOverview\/Logging\/Processors\/Index.html#confval-logging-processors-memory-realmemoryusage", "realMemoryUsage" ], "logging-processors-memory-formatsize": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-memory-formatsize", + "ApiOverview\/Logging\/Processors\/Index.html#confval-logging-processors-memory-formatsize", "formatSize" ], "logging-processors-memory-peak-realmemoryusage": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-memory-peak-realmemoryusage", + "ApiOverview\/Logging\/Processors\/Index.html#confval-logging-processors-memory-peak-realmemoryusage", "realMemoryUsage" ], "logging-processors-memory-peak-formatsize": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Processors\/Index.html#logging-processors-memory-peak-formatsize", + "ApiOverview\/Logging\/Processors\/Index.html#confval-logging-processors-memory-peak-formatsize", "formatSize" ], "database-writer-logtable": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Writers\/Index.html#database-writer-logtable", + "ApiOverview\/Logging\/Writers\/Index.html#confval-database-writer-logtable", "logTable" ], "file-writer-logfile": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Writers\/Index.html#file-writer-logfile", + "ApiOverview\/Logging\/Writers\/Index.html#confval-file-writer-logfile", "logFile" ], "file-writer-logfileinfix": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Writers\/Index.html#file-writer-logfileinfix", + "ApiOverview\/Logging\/Writers\/Index.html#confval-file-writer-logfileinfix", "logFileInfix" ], "rotating-file-writer-interval": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Writers\/Index.html#rotating-file-writer-interval", + "ApiOverview\/Logging\/Writers\/Index.html#confval-rotating-file-writer-interval", "interval" ], "rotating-file-writer-maxfiles": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Writers\/Index.html#rotating-file-writer-maxfiles", + "ApiOverview\/Logging\/Writers\/Index.html#confval-rotating-file-writer-maxfiles", "maxFiles" ], "syslog-writer-facility": [ "TYPO3 Explained", "main", - "ApiOverview\/Logging\/Writers\/Index.html#syslog-writer-facility", + "ApiOverview\/Logging\/Writers\/Index.html#confval-syslog-writer-facility", "facility" ], "minimumlength": [ "TYPO3 Explained", "main", - "ApiOverview\/PasswordPolicies\/Index.html#minimumlength", + "ApiOverview\/PasswordPolicies\/Index.html#confval-minimumlength", "minimumLength" ], "uppercasecharacterrequired": [ "TYPO3 Explained", "main", - "ApiOverview\/PasswordPolicies\/Index.html#uppercasecharacterrequired", + "ApiOverview\/PasswordPolicies\/Index.html#confval-uppercasecharacterrequired", "upperCaseCharacterRequired" ], "lowercasecharacterrequired": [ "TYPO3 Explained", "main", - "ApiOverview\/PasswordPolicies\/Index.html#lowercasecharacterrequired", + "ApiOverview\/PasswordPolicies\/Index.html#confval-lowercasecharacterrequired", "lowerCaseCharacterRequired" ], "digitcharacterrequired": [ "TYPO3 Explained", "main", - "ApiOverview\/PasswordPolicies\/Index.html#digitcharacterrequired", + "ApiOverview\/PasswordPolicies\/Index.html#confval-digitcharacterrequired", "digitCharacterRequired" ], "specialcharacterrequired": [ "TYPO3 Explained", "main", - "ApiOverview\/PasswordPolicies\/Index.html#specialcharacterrequired", + "ApiOverview\/PasswordPolicies\/Index.html#confval-specialcharacterrequired", "specialCharacterRequired" ], "css-transform": [ "TYPO3 Explained", "main", - "ApiOverview\/Rte\/Transformations\/Overview.html#css-transform", + "ApiOverview\/Rte\/Transformations\/Overview.html#confval-css-transform", "css_transform" ], "ts-links": [ "TYPO3 Explained", "main", - "ApiOverview\/Rte\/Transformations\/Overview.html#ts-links", + "ApiOverview\/Rte\/Transformations\/Overview.html#confval-ts-links", "ts_links" ], "sitehandling-addinglanguages-enabled": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-enabled", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-enabled", "enabled" ], "sitehandling-addinglanguages-languageid": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-languageid", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-languageid", "languageId" ], "sitehandling-addinglanguages-title": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-title", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-title", "title" ], "sitehandling-addinglanguages-websitetitle": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-websitetitle", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-websitetitle", "websiteTitle" ], "sitehandling-addinglanguages-navigationtitle": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-navigationtitle", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-navigationtitle", "navigationTitle" ], "sitehandling-addinglanguages-base": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-base", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-base", "base" ], "sitehandling-addinglanguages-basevariants": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-basevariants", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-basevariants", "baseVariants" ], "sitehandling-addinglanguages-locale": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-locale", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-locale", "locale" ], "sitehandling-addinglanguages-hreflang": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-hreflang", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-hreflang", "hreflang" ], "sitehandling-addinglanguages-typo3language": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-typo3language", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-typo3language", "typo3Language" ], "sitehandling-addinglanguages-flag": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-flag", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-flag", "flag" ], "sitehandling-addinglanguages-fallbacktype": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-fallbacktype", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-fallbacktype", "fallbackType" ], "sitehandling-addinglanguages-fallbacks": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/AddLanguages.html#sitehandling-addinglanguages-fallbacks", + "ApiOverview\/SiteHandling\/AddLanguages.html#confval-sitehandling-addinglanguages-fallbacks", "fallbacks" ], "site-settings-definition-categories": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition-categories", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-settings-definition-categories", "categories" ], "site-settings-definition-categories-label": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition-categories-label", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-settings-definition-categories-label", "label" ], "site-settings-definition-categories-parent": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition-categories-parent", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-settings-definition-categories-parent", "parent" ], "site-settings-definition-settings": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition-settings", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-settings-definition-settings", "settings" ], "site-settings-definition-settings-label": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition-settings-label", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-settings-definition-settings-label", "label" ], "site-settings-definition-settings-description": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition-settings-description", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-settings-definition-settings-description", "description" ], "site-settings-definition-settings-category": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition-settings-category", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-settings-definition-settings-category", "category" ], "site-settings-definition-settings-type": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition-settings-type", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-settings-definition-settings-type", "type" ], "site-settings-definition-settings-default": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition-settings-default", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-settings-definition-settings-default", "default" ], "site-settings-definition-settings-readonly": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-settings-definition-settings-readonly", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-settings-definition-settings-readonly", "readonly" ], "enum": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#enum", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-enum", "enum" ], "site-setting-type-int": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-setting-type-int", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-setting-type-int", "int" ], "site-setting-type-number": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-setting-type-number", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-setting-type-number", "number" ], "site-setting-type-bool": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-setting-type-bool", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-setting-type-bool", "bool" ], "site-setting-type-string": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-setting-type-string", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-setting-type-string", "string" ], "site-setting-type-text": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-setting-type-text", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-setting-type-text", "text" ], "site-setting-type-stringlist": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-setting-type-stringlist", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-setting-type-stringlist", "stringlist" ], "site-setting-type-color": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-setting-type-color", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-site-setting-type-color", "color" ], "sys-registry-uid": [ "TYPO3 Explained", "main", - "ApiOverview\/SystemRegistry\/Index.html#sys-registry-uid", + "ApiOverview\/SystemRegistry\/Index.html#confval-sys-registry-uid", "uid" ], "sys-registry-entry-namespace": [ "TYPO3 Explained", "main", - "ApiOverview\/SystemRegistry\/Index.html#sys-registry-entry-namespace", + "ApiOverview\/SystemRegistry\/Index.html#confval-sys-registry-entry-namespace", "entry_namespace" ], "sys-registry-entry-key": [ "TYPO3 Explained", "main", - "ApiOverview\/SystemRegistry\/Index.html#sys-registry-entry-key", + "ApiOverview\/SystemRegistry\/Index.html#confval-sys-registry-entry-key", "entry_key" ], "sys-registry-entry-value": [ "TYPO3 Explained", "main", - "ApiOverview\/SystemRegistry\/Index.html#sys-registry-entry-value", + "ApiOverview\/SystemRegistry\/Index.html#confval-sys-registry-entry-value", "entry_value" ], "flag-file-lock-backend": [ "TYPO3 Explained", "main", - "Configuration\/FlagFiles\/Index.html#flag-file-lock-backend", + "Configuration\/FlagFiles\/Index.html#confval-flag-file-lock-backend", "LOCK_BACKEND" ], "flag-file-first-install": [ "TYPO3 Explained", "main", - "Configuration\/FlagFiles\/Index.html#flag-file-first-install", + "Configuration\/FlagFiles\/Index.html#confval-flag-file-first-install", "FIRST_INSTALL" ], "flag-file-enable-install-tool": [ "TYPO3 Explained", "main", - "Configuration\/FlagFiles\/Index.html#flag-file-enable-install-tool", + "Configuration\/FlagFiles\/Index.html#confval-flag-file-enable-install-tool", "ENABLE_INSTALL_TOOL" ], "globals-typo3-conf-vars": [ "TYPO3 Explained", "main", - "Configuration\/GlobalVariables.html#globals-typo3-conf-vars", + "Configuration\/GlobalVariables.html#confval-globals-typo3-conf-vars", "TYPO3_CONF_VARS" ], "globals-tca": [ "TYPO3 Explained", "main", - "Configuration\/GlobalVariables.html#globals-tca", + "Configuration\/GlobalVariables.html#confval-globals-tca", "TCA" ], "globals-t3-services": [ "TYPO3 Explained", "main", - "Configuration\/GlobalVariables.html#globals-t3-services", + "Configuration\/GlobalVariables.html#confval-globals-t3-services", "T3_SERVICES" ], "globals-tsfe": [ "TYPO3 Explained", "main", - "Configuration\/GlobalVariables.html#globals-tsfe", + "Configuration\/GlobalVariables.html#confval-globals-tsfe", "TSFE" ], "globals-typo3-user-settings": [ "TYPO3 Explained", "main", - "Configuration\/GlobalVariables.html#globals-typo3-user-settings", + "Configuration\/GlobalVariables.html#confval-globals-typo3-user-settings", "TYPO3_USER_SETTINGS" ], "globals-pages-types": [ "TYPO3 Explained", "main", - "Configuration\/GlobalVariables.html#globals-pages-types", + "Configuration\/GlobalVariables.html#confval-globals-pages-types", "PAGES_TYPES" ], "globals-be-users": [ "TYPO3 Explained", "main", - "Configuration\/GlobalVariables.html#globals-be-users", + "Configuration\/GlobalVariables.html#confval-globals-be-users", "BE_USER" ], "globals-exec-time": [ "TYPO3 Explained", "main", - "Configuration\/GlobalVariables.html#globals-exec-time", + "Configuration\/GlobalVariables.html#confval-globals-exec-time", "EXEC_TIME" ], "globals-sim-exec-time": [ "TYPO3 Explained", "main", - "Configuration\/GlobalVariables.html#globals-sim-exec-time", + "Configuration\/GlobalVariables.html#confval-globals-sim-exec-time", "SIM_EXEC_TIME" ], "globals-lang": [ "TYPO3 Explained", "main", - "Configuration\/GlobalVariables.html#globals-lang", + "Configuration\/GlobalVariables.html#confval-globals-lang", "LANG" ], "globals-typo3-conf-vars-be-fileadmindir": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-fileadmindir", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-fileadmindir", "fileadminDir" ], "globals-typo3-conf-vars-be-lockbackendfile": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-lockbackendfile", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-lockbackendfile", "lockBackendFile" ], "globals-typo3-conf-vars-be-lockrootpath": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-lockrootpath", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-lockrootpath", "lockRootPath" ], "globals-typo3-conf-vars-be-userhomepath": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-userhomepath", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-userhomepath", "userHomePath" ], "globals-typo3-conf-vars-be-grouphomepath": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-grouphomepath", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-grouphomepath", "groupHomePath" ], "globals-typo3-conf-vars-be-useruploaddir": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-useruploaddir", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-useruploaddir", "userUploadDir" ], "globals-typo3-conf-vars-be-warning-email-addr": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-warning-email-addr", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-warning-email-addr", "warning_email_addr" ], "globals-typo3-conf-vars-be-warning-mode": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-warning-mode", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-warning-mode", "warning_mode" ], "globals-typo3-conf-vars-be-passwordreset": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-passwordreset", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-passwordreset", "passwordReset" ], "globals-typo3-conf-vars-be-passwordresetforadmins": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-passwordresetforadmins", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-passwordresetforadmins", "passwordResetForAdmins" ], "globals-typo3-conf-vars-be-requiremfa": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-requiremfa", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-requiremfa", "requireMfa" ], "globals-typo3-conf-vars-be-recommendedmfaprovider": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-recommendedmfaprovider", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-recommendedmfaprovider", "recommendedMfaProvider" ], "globals-typo3-conf-vars-be-loginratelimit": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-loginratelimit", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-loginratelimit", "loginRateLimit" ], "globals-typo3-conf-vars-be-loginratelimitinterval": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-loginratelimitinterval", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-loginratelimitinterval", "loginRateLimitInterval" ], "globals-typo3-conf-vars-be-loginratelimitipexcludelist": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-loginratelimitipexcludelist", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-loginratelimitipexcludelist", "loginRateLimitIpExcludeList" ], "globals-typo3-conf-vars-be-lockip": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-lockip", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-lockip", "lockIP" ], "globals-typo3-conf-vars-be-lockipv6": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-lockipv6", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-lockipv6", "lockIPv6" ], "globals-typo3-conf-vars-be-sessiontimeout": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-sessiontimeout", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-sessiontimeout", "sessionTimeout" ], "globals-typo3-conf-vars-be-ipmasklist": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-ipmasklist", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-ipmasklist", "IPmaskList" ], "globals-typo3-conf-vars-be-lockssl": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-lockssl", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-lockssl", "lockSSL" ], "globals-typo3-conf-vars-be-locksslport": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-locksslport", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-locksslport", "lockSSLPort" ], "globals-typo3-conf-vars-be-cookiedomain": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-cookiedomain", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-cookiedomain", "cookieDomain" ], "globals-typo3-conf-vars-be-cookiename": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-cookiename", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-cookiename", "cookieName" ], "globals-typo3-conf-vars-be-cookiesamesite": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-cookiesamesite", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-cookiesamesite", "cookieSameSite" ], "globals-typo3-conf-vars-be-showrefreshloginpopup": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-showrefreshloginpopup", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-showrefreshloginpopup", "showRefreshLoginPopup" ], "globals-typo3-conf-vars-be-adminonly": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-adminonly", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-adminonly", "adminOnly" ], "globals-typo3-conf-vars-be-disable-exec-function": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-disable-exec-function", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-disable-exec-function", "disable_exec_function" ], "globals-typo3-conf-vars-be-compressionlevel": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-compressionlevel", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-compressionlevel", "compressionLevel" ], "globals-typo3-conf-vars-be-installtoolpassword": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-installtoolpassword", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-installtoolpassword", "installToolPassword" ], "globals-typo3-conf-vars-be-defaultpermissions": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-defaultpermissions", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-defaultpermissions", "defaultPermissions" ], "globals-typo3-conf-vars-be-defaultuc": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-defaultuc", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-defaultuc", "defaultUC" ], "globals-typo3-conf-vars-be-custompermoptions": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-custompermoptions", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-custompermoptions", "customPermOptions" ], "globals-typo3-conf-vars-be-filedenypattern": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-filedenypattern", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-filedenypattern", "fileDenyPattern" ], "globals-typo3-conf-vars-be-flexformforcecdata": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-flexformforcecdata", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-flexformforcecdata", "flexformForceCDATA" ], "globals-typo3-conf-vars-be-versionnumberinfilename": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-versionnumberinfilename", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-versionnumberinfilename", "versionNumberInFilename" ], "globals-typo3-conf-vars-be-debug": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-debug", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-debug", "debug" ], "globals-typo3-conf-vars-be-http": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-http", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-http", "HTTP" ], "globals-typo3-conf-vars-be-passwordhashing": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-passwordhashing", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-passwordhashing", "passwordHashing" ], "globals-typo3-conf-vars-be-passwordhashing-classname": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-passwordhashing-classname", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-passwordhashing-classname", "className" ], "globals-typo3-conf-vars-be-passwordhashing-options": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-passwordhashing-options", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-passwordhashing-options", "options" ], "globals-typo3-conf-vars-be-passwordpolicy": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-passwordpolicy", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-passwordpolicy", "passwordPolicy" ], "globals-typo3-conf-vars-be-stylesheets": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-stylesheets", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-stylesheets", "stylesheets" ], "globals-typo3-conf-vars-be-contentsecuritypolicyreportingurl": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-contentsecuritypolicyreportingurl", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-contentsecuritypolicyreportingurl", "contentSecurityPolicyReportingUrl" ], "globals-typo3-conf-vars-be-entrypoint": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be-entrypoint", + "Configuration\/Typo3ConfVars\/BE.html#confval-globals-typo3-conf-vars-be-entrypoint", "entryPoint" ], "typo3-conf-vars-db-additionalqueryrestrictions": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-additionalqueryrestrictions", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-additionalqueryrestrictions", "additionalQueryRestrictions" ], "typo3-conf-vars-db-connections": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connections", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connections", "Connections" ], "typo3-conf-vars-db-connection-name-charset": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-charset", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-charset", "charset" ], "typo3-conf-vars-db-connection-name-dbname": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-dbname", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-dbname", "dbname" ], "typo3-conf-vars-db-connection-name-defaulttableoptions": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-defaulttableoptions", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-defaulttableoptions", "defaultTableOptions" ], "typo3-conf-vars-db-connection-name-driver": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-driver", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-driver", "driver" ], "typo3-conf-vars-db-connection-name-host": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-host", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-host", "host" ], "typo3-conf-vars-db-connection-name-password": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-password", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-password", "password" ], "typo3-conf-vars-db-connection-name-path": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-path", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-path", "path" ], "typo3-conf-vars-db-connection-name-port": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-port", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-port", "port" ], "typo3-conf-vars-db-connection-name-tableoptions": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-tableoptions", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-tableoptions", "tableoptions" ], "typo3-conf-vars-db-connection-name-unix-socket": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-unix-socket", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-unix-socket", "unix_socket" ], "typo3-conf-vars-db-connection-name-user": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/DB.html#typo3-conf-vars-db-connection-name-user", + "Configuration\/Typo3ConfVars\/DB.html#confval-typo3-conf-vars-db-connection-name-user", "user" ], "globals-typo3-conf-vars-db-tablemapping": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/DB.html#globals-typo3-conf-vars-db-tablemapping", + "Configuration\/Typo3ConfVars\/DB.html#confval-globals-typo3-conf-vars-db-tablemapping", "TableMapping" ], "globals-typo3-conf-vars-excludeforpackaging": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/EXT.html#globals-typo3-conf-vars-excludeforpackaging", + "Configuration\/Typo3ConfVars\/EXT.html#confval-globals-typo3-conf-vars-excludeforpackaging", "excludeForPackaging" ], "typo3-conf-vars-fe-addallowedpaths": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-addallowedpaths", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-addallowedpaths", "addAllowedPaths" ], "typo3-conf-vars-fe-debug": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-debug", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-debug", "debug" ], "typo3-conf-vars-fe-compressionlevel": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-compressionlevel", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-compressionlevel", "compressionLevel" ], "typo3-conf-vars-fe-pagenotfoundonchasherror": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-pagenotfoundonchasherror", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-pagenotfoundonchasherror", "pageNotFoundOnCHashError" ], "typo3-conf-vars-fe-pageunavailable-force": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-pageunavailable-force", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-pageunavailable-force", "pageUnavailable_force" ], "typo3-conf-vars-fe-addrootlinefields": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-addrootlinefields", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-addrootlinefields", "addRootLineFields" ], "typo3-conf-vars-fe-checkfeuserpid": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-checkfeuserpid", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-checkfeuserpid", "checkFeUserPid" ], "typo3-conf-vars-fe-loginratelimit": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-loginratelimit", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-loginratelimit", "loginRateLimit" ], "typo3-conf-vars-fe-loginratelimitinterval": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-loginratelimitinterval", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-loginratelimitinterval", "loginRateLimitInterval" ], "typo3-conf-vars-fe-loginratelimitipexcludelist": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-loginratelimitipexcludelist", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-loginratelimitipexcludelist", "loginRateLimitIpExcludeList" ], "typo3-conf-vars-fe-lockip": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-lockip", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-lockip", "lockIP" ], "typo3-conf-vars-fe-lockipv6": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-lockipv6", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-lockipv6", "lockIPv6" ], "typo3-conf-vars-fe-lifetime": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-lifetime", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-lifetime", "lifetime" ], "typo3-conf-vars-fe-sessiontimeout": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-sessiontimeout", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-sessiontimeout", "sessionTimeout" ], "typo3-conf-vars-fe-sessiondatalifetime": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-sessiondatalifetime", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-sessiondatalifetime", "sessionDataLifetime" ], "typo3-conf-vars-fe-permalogin": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-permalogin", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-permalogin", "permalogin" ], "typo3-conf-vars-fe-cookiedomain": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cookiedomain", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cookiedomain", "cookieDomain" ], "typo3-conf-vars-fe-cookiename": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cookiename", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cookiename", "cookieName" ], "typo3-conf-vars-fe-cookiesamesite": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cookiesamesite", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cookiesamesite", "cookieSameSite" ], "typo3-conf-vars-fe-defaulttyposcript-constants": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-defaulttyposcript-constants", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-defaulttyposcript-constants", "defaultTypoScript_constants" ], "typo3-conf-vars-fe-defaulttyposcript-setup": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-defaulttyposcript-setup", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-defaulttyposcript-setup", "defaultTypoScript_setup" ], "typo3-conf-vars-fe-additionalabsrefprefixdirectories": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-additionalabsrefprefixdirectories", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-additionalabsrefprefixdirectories", "additionalAbsRefPrefixDirectories" ], "typo3-conf-vars-fe-enable-mount-pids": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-enable-mount-pids", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-enable-mount-pids", "enable_mount_pids" ], "typo3-conf-vars-fe-hidepagesifnottranslatedbydefault": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-hidepagesifnottranslatedbydefault", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-hidepagesifnottranslatedbydefault", "hidePagesIfNotTranslatedByDefault" ], "typo3-conf-vars-fe-eid-include": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-eid-include", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-eid-include", "eID_include" ], "typo3-conf-vars-fe-disablenocacheparameter": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-disablenocacheparameter", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-disablenocacheparameter", "disableNoCacheParameter" ], "typo3-conf-vars-fe-additionalcanonicalizedurlparameters": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-additionalcanonicalizedurlparameters", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-additionalcanonicalizedurlparameters", "additionalCanonicalizedUrlParameters" ], "typo3-conf-vars-fe-cachehash": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cachehash", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cachehash", "cacheHash" ], "typo3-conf-vars-fe-cachehash-cachedparameterswhitelist": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cachehash-cachedparameterswhitelist", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cachehash-cachedparameterswhitelist", "cachedParametersWhiteList" ], "typo3-conf-vars-fe-cachehash-requirecachehashpresenceparameters": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cachehash-requirecachehashpresenceparameters", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cachehash-requirecachehashpresenceparameters", "requireCacheHashPresenceParameters" ], "typo3-conf-vars-fe-cachehash-excludedparameters": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cachehash-excludedparameters", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cachehash-excludedparameters", "excludedParameters" ], "typo3-conf-vars-fe-cachehash-excludedparametersifempty": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cachehash-excludedparametersifempty", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cachehash-excludedparametersifempty", "excludedParametersIfEmpty" ], "typo3-conf-vars-fe-cachehash-excludeallemptyparameters": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cachehash-excludeallemptyparameters", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cachehash-excludeallemptyparameters", "excludeAllEmptyParameters" ], "typo3-conf-vars-fe-cachehash-enforcevalidation": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-cachehash-enforcevalidation", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-cachehash-enforcevalidation", "enforceValidation" ], "typo3-conf-vars-fe-workspacepreviewlogouttemplate": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-workspacepreviewlogouttemplate", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-workspacepreviewlogouttemplate", "workspacePreviewLogoutTemplate" ], "typo3-conf-vars-fe-versionnumberinfilename": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-versionnumberinfilename", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-versionnumberinfilename", "versionNumberInFilename" ], "typo3-conf-vars-fe-contentrenderingtemplates": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-contentrenderingtemplates", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-contentrenderingtemplates", "contentRenderingTemplates" ], "typo3-conf-vars-fe-typolinkbuilder": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-typolinkbuilder", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-typolinkbuilder", "typolinkBuilder" ], "passwordhashing": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#passwordhashing", + "Configuration\/Typo3ConfVars\/FE.html#confval-passwordhashing", "passwordHashing" ], "typo3-conf-vars-fe-classname": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-classname", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-classname", "className" ], "typo3-conf-vars-fe-options": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-options", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-options", "options" ], "typo3-conf-vars-fe-passwordpolicy": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-passwordpolicy", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-passwordpolicy", "passwordPolicy" ], "typo3-conf-vars-fe-exposeredirectinformation": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#typo3-conf-vars-fe-exposeredirectinformation", + "Configuration\/Typo3ConfVars\/FE.html#confval-typo3-conf-vars-fe-exposeredirectinformation", "exposeRedirectInformation" ], "contentsecuritypolicyreportingurl": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#contentsecuritypolicyreportingurl", + "Configuration\/Typo3ConfVars\/FE.html#confval-contentsecuritypolicyreportingurl", "contentSecurityPolicyReportingUrl" ], "globals-typo3-conf-vars-sys-gfx-thumbnails": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-thumbnails", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-thumbnails", "thumbnails" ], "globals-typo3-conf-vars-sys-gfx-imagefile-ext": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-imagefile-ext", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-imagefile-ext", "imagefile_ext" ], "globals-typo3-conf-vars-sys-gfx-processor-enabled": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-enabled", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-enabled", "processor_enabled" ], "globals-typo3-conf-vars-sys-gfx-processor-path": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-path", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-path", "processor_path" ], "globals-typo3-conf-vars-sys-gfx-processor": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor", "processor" ], "globals-typo3-conf-vars-sys-gfx-processor-effects": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-effects", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-effects", "processor_effects" ], "globals-typo3-conf-vars-sys-gfx-processor-allowupscaling": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-allowupscaling", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-allowupscaling", "processor_allowUpscaling" ], "globals-typo3-conf-vars-sys-gfx-processor-allowframeselection": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-allowframeselection", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-allowframeselection", "processor_allowFrameSelection" ], "globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofilebydefault": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofilebydefault", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofilebydefault", "processor_stripColorProfileByDefault" ], "globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofilecommand": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofilecommand", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofilecommand", "processor_stripColorProfileCommand" ], "globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofileparameters": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofileparameters", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-stripcolorprofileparameters", "processor_stripColorProfileParameters" ], "globals-typo3-conf-vars-sys-gfx-processor-colorspace": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-colorspace", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-colorspace", "processor_colorspace" ], "globals-typo3-conf-vars-sys-gfx-processor-interlace": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-interlace", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-interlace", "processor_interlace" ], "globals-typo3-conf-vars-sys-gfx-jpg-quality": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-jpg-quality", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-jpg-quality", "jpg_quality" ], "globals-typo3-conf-vars-sys-gfx-webp-quality": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-webp-quality", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-webp-quality", "webp_quality" ], "globals-typo3-conf-vars-sys-gfx-thumbnails-png": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-thumbnails-png", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-thumbnails-png", "thumbnails_png" ], "globals-typo3-conf-vars-sys-gfx-gif-compress": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-gif-compress", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-gif-compress", "gif_compress" ], "globals-typo3-conf-vars-sys-gfx-processor-allowtemporarymasksaspng": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-processor-allowtemporarymasksaspng", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-processor-allowtemporarymasksaspng", "processor_allowTemporaryMasksAsPng" ], "globals-typo3-conf-vars-sys-gfx-gdlib": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-gdlib", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-gdlib", "gdlib" ], "globals-typo3-conf-vars-sys-gfx-gdlib-png": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-sys-gfx-gdlib-png", + "Configuration\/Typo3ConfVars\/GFX.html#confval-globals-typo3-conf-vars-sys-gfx-gdlib-png", "gdlib_png" ], "globals-typo3-conf-vars-sys-http-allow-redirects": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-allow-redirects", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-allow-redirects", "allow_redirects" ], "globals-typo3-conf-vars-sys-http-allow-redirects-strict": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-allow-redirects-strict", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-allow-redirects-strict", "strict" ], "globals-typo3-conf-vars-sys-http-allow-redirects-max": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-allow-redirects-max", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-allow-redirects-max", "max" ], "globals-typo3-conf-vars-sys-http-cert": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-cert", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-cert", "cert" ], "globals-typo3-conf-vars-sys-http-connect-timeout": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-connect-timeout", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-connect-timeout", "connect_timeout" ], "globals-typo3-conf-vars-sys-http-proxy": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-proxy", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-proxy", "proxy" ], "globals-typo3-conf-vars-sys-http-ssl-key": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-ssl-key", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-ssl-key", "ssl_key" ], "globals-typo3-conf-vars-sys-http-timeout": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-timeout", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-timeout", "timeout" ], "globals-typo3-conf-vars-sys-http-verify": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-verify", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-verify", "verify" ], "globals-typo3-conf-vars-sys-http-version": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-sys-http-version", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-globals-typo3-conf-vars-sys-http-version", "version" ], "globals-typo3-conf-vars-mail-format": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-format", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-format", "format" ], "globals-typo3-conf-vars-mail-layoutrootpaths": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-layoutrootpaths", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-layoutrootpaths", "layoutRootPaths" ], "globals-typo3-conf-vars-mail-partialrootpaths": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-partialrootpaths", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-partialrootpaths", "partialRootPaths" ], "globals-typo3-conf-vars-mail-templaterootpaths": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-templaterootpaths", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-templaterootpaths", "templateRootPaths" ], "globals-typo3-conf-vars-mail-validators": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-validators", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-validators", "validators" ], "globals-typo3-conf-vars-mail-transport": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport", "transport" ], "globals-typo3-conf-vars-mail-transport-smtp": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp", "transport_smtp_*" ], "globals-typo3-conf-vars-mail-transport-smtp-server": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-server", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-server", "transport_smtp_server" ], "globals-typo3-conf-vars-mail-transport-smtp-domain": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-domain", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-domain", "transport_smtp_domain" ], "globals-typo3-conf-vars-mail-transport-smtp-stream-options": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-stream-options", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-stream-options", "transport_smtp_stream_options" ], "globals-typo3-conf-vars-mail-transport-smtp-encrypt": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-encrypt", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-encrypt", "transport_smtp_encrypt" ], "globals-typo3-conf-vars-mail-transport-smtp-username": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-username", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-username", "transport_smtp_username" ], "globals-typo3-conf-vars-mail-transport-smtp-password": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-password", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-password", "transport_smtp_password" ], "globals-typo3-conf-vars-mail-transport-smtp-restart-threshold": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-restart-threshold", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-restart-threshold", "transport_smtp_restart_threshold" ], "globals-typo3-conf-vars-mail-transport-smtp-restart-threshold-sleep": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-restart-threshold-sleep", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-restart-threshold-sleep", "transport_smtp_restart_threshold_sleep" ], "globals-typo3-conf-vars-mail-transport-smtp-ping-threshold": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-smtp-ping-threshold", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-smtp-ping-threshold", "transport_smtp_ping_threshold" ], "globals-typo3-conf-vars-mail-transport-sendmail": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-sendmail", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-sendmail", "transport_sendmail_*" ], "globals-typo3-conf-vars-mail-transport-sendmail-command": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-sendmail-command", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-sendmail-command", "transport_sendmail_command" ], "globals-typo3-conf-vars-mail-transport-mbox": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-mbox", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-mbox", "transport_mbox_*" ], "globals-typo3-conf-vars-mail-transport-mbox-file": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-mbox-file", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-mbox-file", "transport_mbox_file" ], "globals-typo3-conf-vars-mail-transport-spool": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-spool", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-spool", "transport_spool_*" ], "globals-typo3-conf-vars-mail-transport-spool-type": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-spool-type", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-spool-type", "transport_spool_type" ], "globals-typo3-conf-vars-mail-transport-spool-filepath": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-transport-spool-filepath", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-transport-spool-filepath", "transport_spool_filepath" ], "globals-typo3-conf-vars-mail-dsn": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-dsn", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-dsn", "dsn" ], "globals-typo3-conf-vars-mail-defaultmailfromaddress": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-defaultmailfromaddress", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-defaultmailfromaddress", "defaultMailFromAddress" ], "globals-typo3-conf-vars-mail-defaultmailfromname": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-defaultmailfromname", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-defaultmailfromname", "defaultMailFromName" ], "globals-typo3-conf-vars-mail-defaultmailreplytoaddress": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-defaultmailreplytoaddress", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-defaultmailreplytoaddress", "defaultMailReplyToAddress" ], "globals-typo3-conf-vars-mail-defaultmailreplytoname": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail-defaultmailreplytoname", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-globals-typo3-conf-vars-mail-defaultmailreplytoname", "defaultMailReplyToName" ], "globals-typo3-conf-vars-sys-filecreatemask": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-filecreatemask", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-filecreatemask", "fileCreateMask" ], "globals-typo3-conf-vars-sys-foldercreatemask": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-foldercreatemask", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-foldercreatemask", "folderCreateMask" ], "globals-typo3-conf-vars-sys-creategroup": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-creategroup", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-creategroup", "createGroup" ], "globals-typo3-conf-vars-sys-sitename": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-sitename", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-sitename", "sitename" ], "globals-typo3-conf-vars-sys-defaultscheme": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-defaultscheme", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-defaultscheme", "defaultScheme" ], "globals-typo3-conf-vars-sys-encryptionkey": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-encryptionkey", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-encryptionkey", "encryptionKey" ], "globals-typo3-conf-vars-sys-cookiedomain": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-cookiedomain", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-cookiedomain", "cookieDomain" ], "globals-typo3-conf-vars-sys-trustedhostspattern": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-trustedhostspattern", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-trustedhostspattern", "trustedHostsPattern" ], "globals-typo3-conf-vars-sys-devipmask": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-devipmask", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-devipmask", "devIPmask" ], "globals-typo3-conf-vars-sys-ddmmyy": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-ddmmyy", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-ddmmyy", "ddmmyy" ], "globals-typo3-conf-vars-sys-hhmm": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-hhmm", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-hhmm", "hhmm" ], "globals-typo3-conf-vars-sys-logincopyrightwarrantyprovider": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-logincopyrightwarrantyprovider", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-logincopyrightwarrantyprovider", "loginCopyrightWarrantyProvider" ], "globals-typo3-conf-vars-sys-logincopyrightwarrantyurl": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-logincopyrightwarrantyurl", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-logincopyrightwarrantyurl", "loginCopyrightWarrantyURL" ], "globals-typo3-conf-vars-sys-textfile-ext": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-textfile-ext", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-textfile-ext", "textfile_ext" ], "globals-typo3-conf-vars-sys-mediafile-ext": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-mediafile-ext", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-mediafile-ext", "mediafile_ext" ], "globals-typo3-conf-vars-sys-binpath": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-binpath", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-binpath", "binPath" ], "globals-typo3-conf-vars-sys-binsetup": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-binsetup", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-binsetup", "binSetup" ], "globals-typo3-conf-vars-sys-setmemorylimit": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-setmemorylimit", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-setmemorylimit", "setMemoryLimit" ], "globals-typo3-conf-vars-sys-phptimezone": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-phptimezone", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-phptimezone", "phpTimeZone" ], "globals-typo3-conf-vars-sys-utf8filesystem": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-utf8filesystem", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-utf8filesystem", "UTF8filesystem" ], "globals-typo3-conf-vars-sys-systemlocale": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-systemlocale", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-systemlocale", "systemLocale" ], "globals-typo3-conf-vars-sys-reverseproxyip": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-reverseproxyip", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-reverseproxyip", "reverseProxyIP" ], "globals-typo3-conf-vars-sys-reverseproxyheadermultivalue": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-reverseproxyheadermultivalue", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-reverseproxyheadermultivalue", "reverseProxyHeaderMultiValue" ], "globals-typo3-conf-vars-sys-reverseproxyprefix": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-reverseproxyprefix", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-reverseproxyprefix", "reverseProxyPrefix" ], "globals-typo3-conf-vars-sys-reverseproxyssl": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-reverseproxyssl", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-reverseproxyssl", "reverseProxySSL" ], "globals-typo3-conf-vars-sys-reverseproxyprefixssl": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-reverseproxyprefixssl", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-reverseproxyprefixssl", "reverseProxyPrefixSSL" ], "globals-typo3-conf-vars-sys-displayerrors": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-displayerrors", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-displayerrors", "displayErrors" ], "globals-typo3-conf-vars-sys-productionexceptionhandler": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-productionexceptionhandler", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-productionexceptionhandler", "productionExceptionHandler" ], "globals-typo3-conf-vars-sys-debugexceptionhandler": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-debugexceptionhandler", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-debugexceptionhandler", "debugExceptionHandler" ], "globals-typo3-conf-vars-sys-errorhandler": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-errorhandler", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-errorhandler", "errorHandler" ], "globals-typo3-conf-vars-sys-errorhandlererrors": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-errorhandlererrors", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-errorhandlererrors", "errorHandlerErrors" ], "globals-typo3-conf-vars-sys-exceptionalerrors": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-exceptionalerrors", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-exceptionalerrors", "exceptionalErrors" ], "globals-typo3-conf-vars-sys-belogerrorreporting": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-belogerrorreporting", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-belogerrorreporting", "belogErrorReporting" ], "globals-typo3-conf-vars-sys-generateapachehtaccess": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-generateapachehtaccess", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-generateapachehtaccess", "generateApacheHtaccess" ], "globals-typo3-conf-vars-sys-ipanonymization": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-ipanonymization", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-ipanonymization", "ipAnonymization" ], "globals-typo3-conf-vars-sys-systemmaintainers": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-systemmaintainers", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-systemmaintainers", "systemMaintainers" ], "globals-typo3-conf-vars-sys-features": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features", "features" ], "globals-typo3-conf-vars-sys-features-form-legacyuploadmimetypes": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features-form-legacyuploadmimetypes", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features-form-legacyuploadmimetypes", "form.legacyUploadMimeTypes" ], "globals-typo3-conf-vars-sys-features-redirects-hitcount": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features-redirects-hitcount", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features-redirects-hitcount", "redirects.hitCount" ], "globals-typo3-conf-vars-sys-features-security-backend-enforcereferrer": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features-security-backend-enforcereferrer", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features-security-backend-enforcereferrer", "security.backend.enforceReferrer" ], "globals-typo3-conf-vars-sys-features-security-frontend-enforcecontentsecuritypolicy": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features-security-frontend-enforcecontentsecuritypolicy", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features-security-frontend-enforcecontentsecuritypolicy", "security.frontend.enforceContentSecurityPolicy" ], "globals-typo3-conf-vars-sys-features-security-frontend-reportcontentsecuritypolicy": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features-security-frontend-reportcontentsecuritypolicy", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features-security-frontend-reportcontentsecuritypolicy", "security.frontend.reportContentSecurityPolicy" ], "globals-typo3-conf-vars-sys-features-security-frontend-allowinsecureframeoptioninshowimagecontroller": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features-security-frontend-allowinsecureframeoptioninshowimagecontroller", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features-security-frontend-allowinsecureframeoptioninshowimagecontroller", "security.frontend.allowInsecureFrameOptionInShowImageController" ], "globals-typo3-conf-vars-sys-features-security-frontend-allowinsecuresiteresolutionbyqueryparameters": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features-security-frontend-allowinsecuresiteresolutionbyqueryparameters", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features-security-frontend-allowinsecuresiteresolutionbyqueryparameters", "security.frontend.allowInsecureSiteResolutionByQueryParameters" ], "globals-typo3-conf-vars-sys-features-security-usepasswordpolicyforfrontendusers": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-features-security-usepasswordpolicyforfrontendusers", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-features-security-usepasswordpolicyforfrontendusers", "security.usePasswordPolicyForFrontendUsers" ], "globals-typo3-conf-vars-sys-availablepasswordhashalgorithms": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-availablepasswordhashalgorithms", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-availablepasswordhashalgorithms", "availablePasswordHashAlgorithms" ], "globals-typo3-conf-vars-sys-linkhandler": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-linkhandler", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-linkhandler", "$GLOBALS['TYPO3_CONF_VARS']['SYS']['linkHandler']" ], "globals-typo3-conf-vars-sys-lang": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-lang", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-lang", "lang" ], "globals-typo3-conf-vars-sys-lang-requireapprovedlocalizations": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-lang-requireapprovedlocalizations", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-lang-requireapprovedlocalizations", "requireApprovedLocalizations" ], "globals-typo3-conf-vars-sys-messenger": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-messenger", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-messenger", "messenger" ], "globals-typo3-conf-vars-sys-messenger-routing": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-messenger-routing", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-messenger-routing", "routing" ], "globals-typo3-conf-vars-sys-fileinfo": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-fileinfo", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-fileinfo", "FileInfo" ], "globals-typo3-conf-vars-sys-fileinfo-fileextensiontomimetype": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-fileinfo-fileextensiontomimetype", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-fileinfo-fileextensiontomimetype", "fileExtensionToMimeType" ], "globals-typo3-conf-vars-sys-allowedphpdisablefunctions": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys-allowedphpdisablefunctions", + "Configuration\/Typo3ConfVars\/SYS.html#confval-globals-typo3-conf-vars-sys-allowedphpdisablefunctions", "allowedPhpDisableFunctions" ] }, @@ -51428,6 +52034,12 @@ "ApiOverview\/Events\/Events\/Backend\/BeforePagePreviewUriGeneratedEvent.html#typo3-cms-backend-routing-event-beforepagepreviewurigeneratedevent", "\\TYPO3\\CMS\\Backend\\Routing\\Event\\BeforePagePreviewUriGeneratedEvent" ], + "typo3-cms-backend-tree-repository-beforepagetreeisfilteredevent": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/BeforePageTreeIsFilteredEvent.html#typo3-cms-backend-tree-repository-beforepagetreeisfilteredevent", + "\\TYPO3\\CMS\\Backend\\Tree\\Repository\\BeforePageTreeIsFilteredEvent" + ], "typo3-cms-backend-recordlist-event-beforerecorddownloadisexecutedevent": [ "TYPO3 Explained", "main", @@ -51608,6 +52220,12 @@ "ApiOverview\/Events\/Events\/Backend\/PageContentPreviewRenderingEvent.html#typo3-cms-backend-view-event-pagecontentpreviewrenderingevent", "\\TYPO3\\CMS\\Backend\\View\\Event\\PageContentPreviewRenderingEvent" ], + "typo3-cms-backend-authentication-event-passwordhasbeenresetevent": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/PasswordHasBeenResetEvent.html#typo3-cms-backend-authentication-event-passwordhasbeenresetevent", + "\\TYPO3\\CMS\\Backend\\Authentication\\Event\\PasswordHasBeenResetEvent" + ], "typo3-cms-backend-controller-event-renderadditionalcontenttorecordlistevent": [ "TYPO3 Explained", "main", @@ -51794,6 +52412,12 @@ "ApiOverview\/Events\/Events\/Core\/Domain\/RecordAccessGrantedEvent.html#typo3-cms-core-domain-access-recordaccessgrantedevent", "\\TYPO3\\CMS\\Core\\Domain\\Access\\RecordAccessGrantedEvent" ], + "typo3-cms-core-domain-event-recordcreationevent": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent" + ], "typo3-cms-core-html-event-aftertransformtextforpersistenceevent": [ "TYPO3 Explained", "main", @@ -51848,12 +52472,6 @@ "ApiOverview\/Events\/Events\/Core\/LinkHandling\/BeforeTypoLinkEncodedEvent.html#typo3-cms-core-linkhandling-event-beforetypolinkencodedevent", "\\TYPO3\\CMS\\Core\\LinkHandling\\Event\\BeforeTypoLinkEncodedEvent" ], - "typo3-cms-core-mail-event-aftermailerinitializationevent": [ - "TYPO3 Explained", - "main", - "ApiOverview\/Events\/Events\/Core\/Mail\/AfterMailerInitializationEvent.html#typo3-cms-core-mail-event-aftermailerinitializationevent", - "\\TYPO3\\CMS\\Core\\Mail\\Event\\AfterMailerInitializationEvent" - ], "typo3-cms-core-mail-event-aftermailersentmessageevent": [ "TYPO3 Explained", "main", @@ -52322,6 +52940,12 @@ "ApiOverview\/Events\/Events\/Frontend\/AfterCachedPageIsPersistedEvent.html#typo3-cms-frontend-event-aftercachedpageispersistedevent", "\\TYPO3\\CMS\\Frontend\\Event\\AfterCachedPageIsPersistedEvent" ], + "typo3-cms-frontend-event-aftercontenthasbeenfetchedevent": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Frontend\/AfterContentHasBeenFetchedEvent.html#typo3-cms-frontend-event-aftercontenthasbeenfetchedevent", + "\\TYPO3\\CMS\\Frontend\\Event\\AfterContentHasBeenFetchedEvent" + ], "typo3-cms-frontend-contentobject-event-aftercontentobjectrendererinitializedevent": [ "TYPO3 Explained", "main", @@ -56014,6 +56638,72 @@ "ApiOverview\/Events\/Events\/Core\/Domain\/RecordAccessGrantedEvent.html#typo3-cms-core-domain-access-recordaccessgrantedevent-getcontext", "\\TYPO3\\CMS\\Core\\Domain\\Access\\RecordAccessGrantedEvent::getContext" ], + "typo3-cms-core-domain-event-recordcreationevent-setrecord": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-setrecord", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::setRecord" + ], + "typo3-cms-core-domain-event-recordcreationevent-ispropagationstopped": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-ispropagationstopped", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::isPropagationStopped" + ], + "typo3-cms-core-domain-event-recordcreationevent-hasproperty": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-hasproperty", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::hasProperty" + ], + "typo3-cms-core-domain-event-recordcreationevent-setproperty": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-setproperty", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::setProperty" + ], + "typo3-cms-core-domain-event-recordcreationevent-setproperties": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-setproperties", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::setProperties" + ], + "typo3-cms-core-domain-event-recordcreationevent-unsetproperty": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-unsetproperty", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::unsetProperty" + ], + "typo3-cms-core-domain-event-recordcreationevent-getproperty": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-getproperty", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::getProperty" + ], + "typo3-cms-core-domain-event-recordcreationevent-getproperties": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-getproperties", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::getProperties" + ], + "typo3-cms-core-domain-event-recordcreationevent-getrawrecord": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-getrawrecord", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::getRawRecord" + ], + "typo3-cms-core-domain-event-recordcreationevent-getsystemproperties": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-getsystemproperties", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::getSystemProperties" + ], + "typo3-cms-core-domain-event-recordcreationevent-getcontext": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Core\/Domain\/RecordCreationEvent.html#typo3-cms-core-domain-event-recordcreationevent-getcontext", + "\\TYPO3\\CMS\\Core\\Domain\\Event\\RecordCreationEvent::getContext" + ], "typo3-cms-core-html-event-aftertransformtextforpersistenceevent-gethtmlcontent": [ "TYPO3 Explained", "main", @@ -56266,12 +56956,6 @@ "ApiOverview\/Events\/Events\/Core\/LinkHandling\/BeforeTypoLinkEncodedEvent.html#typo3-cms-core-linkhandling-event-beforetypolinkencodedevent-getemptyvaluesymbol", "\\TYPO3\\CMS\\Core\\LinkHandling\\Event\\BeforeTypoLinkEncodedEvent::getEmptyValueSymbol" ], - "typo3-cms-core-mail-event-aftermailerinitializationevent-getmailer": [ - "TYPO3 Explained", - "main", - "ApiOverview\/Events\/Events\/Core\/Mail\/AfterMailerInitializationEvent.html#typo3-cms-core-mail-event-aftermailerinitializationevent-getmailer", - "\\TYPO3\\CMS\\Core\\Mail\\Event\\AfterMailerInitializationEvent::getMailer" - ], "typo3-cms-core-mail-event-aftermailersentmessageevent-getmailer": [ "TYPO3 Explained", "main", @@ -60735,103 +61419,103 @@ "backend-module": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-menu-backend-module", "" ], "backend-module-default": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-default", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-menu-backend-module-default", "" ], "backend-module-extbase": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#backend-module-extbase", + "ApiOverview\/Backend\/BackendModules\/ModuleConfiguration\/Index.html#confval-menu-backend-module-extbase", "" ], "modules-modals-settings": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-settings", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-menu-modules-modals-settings", "" ], "modules-modals-button-settings": [ "TYPO3 Explained", "main", - "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#modules-modals-button-settings", + "ApiOverview\/Backend\/JavaScript\/Modules\/Modals.html#confval-menu-modules-modals-button-settings", "" ], "content-security-policy-modes": [ "TYPO3 Explained", "main", - "ApiOverview\/ContentSecurityPolicy\/Index.html#content-security-policy-modes", + "ApiOverview\/ContentSecurityPolicy\/Index.html#confval-menu-content-security-policy-modes", "" ], "site-setting-definition": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-setting-definition", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-menu-site-setting-definition", "" ], "site-setting-type": [ "TYPO3 Explained", "main", - "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#site-setting-type", + "ApiOverview\/SiteHandling\/SiteSettingDefinitions.html#confval-menu-site-setting-type", "" ], "configuration-flagfiles-index": [ "TYPO3 Explained", "main", - "Configuration\/FlagFiles\/Index.html#configuration-flagfiles-index", + "Configuration\/FlagFiles\/Index.html#confval-menu-configuration-flagfiles-index", "" ], "globals-typo3-conf-vars-be": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/BE.html#globals-typo3-conf-vars-be", + "Configuration\/Typo3ConfVars\/BE.html#confval-menu-globals-typo3-conf-vars-be", "" ], "globals-typo3-conf-vars-db": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/DB.html#globals-typo3-conf-vars-db", + "Configuration\/Typo3ConfVars\/DB.html#confval-menu-globals-typo3-conf-vars-db", "" ], "globals-typo3-conf-vars-ext": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/EXT.html#globals-typo3-conf-vars-ext", + "Configuration\/Typo3ConfVars\/EXT.html#confval-menu-globals-typo3-conf-vars-ext", "" ], "globals-typo3-conf-vars-fe": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/FE.html#globals-typo3-conf-vars-fe", + "Configuration\/Typo3ConfVars\/FE.html#confval-menu-globals-typo3-conf-vars-fe", "" ], "globals-typo3-conf-vars-gfx": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/GFX.html#globals-typo3-conf-vars-gfx", + "Configuration\/Typo3ConfVars\/GFX.html#confval-menu-globals-typo3-conf-vars-gfx", "" ], "globals-typo3-conf-vars-http": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/HTTP.html#globals-typo3-conf-vars-http", + "Configuration\/Typo3ConfVars\/HTTP.html#confval-menu-globals-typo3-conf-vars-http", "" ], "globals-typo3-conf-vars-mail": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/MAIL.html#globals-typo3-conf-vars-mail", + "Configuration\/Typo3ConfVars\/MAIL.html#confval-menu-globals-typo3-conf-vars-mail", "" ], "globals-typo3-conf-vars-sys": [ "TYPO3 Explained", "main", - "Configuration\/Typo3ConfVars\/SYS.html#globals-typo3-conf-vars-sys", + "Configuration\/Typo3ConfVars\/SYS.html#confval-menu-globals-typo3-conf-vars-sys", "" ] }, @@ -60999,7 +61683,7 @@ "apioverview-commandcontrollers-listcommands": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#apioverview-commandcontrollers-listcommands", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-list-apioverview-commandcontrollers-listcommands", "" ] }, @@ -61007,251 +61691,281 @@ "completion": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#completion", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-completion", "vendor\/bin\/typo3 completion" ], "help": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#help", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-help", "vendor\/bin\/typo3 help" ], "list": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#list", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-list", "vendor\/bin\/typo3 list" ], "setup": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#setup", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-setup", "vendor\/bin\/typo3 setup" ], "backend-lock": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#backend-lock", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-backend-lock", "vendor\/bin\/typo3 backend:lock" ], "backend-resetpassword": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#backend-resetpassword", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-backend-resetpassword", "vendor\/bin\/typo3 backend:resetpassword" ], "backend-unlock": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#backend-unlock", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-backend-unlock", "vendor\/bin\/typo3 backend:unlock" ], "backend-user-create": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#backend-user-create", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-backend-user-create", "vendor\/bin\/typo3 backend:user:create" ], "cache-flush": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#cache-flush", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cache-flush", "vendor\/bin\/typo3 cache:flush" ], "cache-warmup": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#cache-warmup", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cache-warmup", "vendor\/bin\/typo3 cache:warmup" ], "cleanup-deletedrecords": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#cleanup-deletedrecords", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cleanup-deletedrecords", "vendor\/bin\/typo3 cleanup:deletedrecords" ], "cleanup-flexforms": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#cleanup-flexforms", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cleanup-flexforms", "vendor\/bin\/typo3 cleanup:flexforms" ], "cleanup-localprocessedfiles": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#cleanup-localprocessedfiles", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cleanup-localprocessedfiles", "vendor\/bin\/typo3 cleanup:localprocessedfiles" ], "cleanup-missingrelations": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#cleanup-missingrelations", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cleanup-missingrelations", "vendor\/bin\/typo3 cleanup:missingrelations" ], "cleanup-orphanrecords": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#cleanup-orphanrecords", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cleanup-orphanrecords", "vendor\/bin\/typo3 cleanup:orphanrecords" ], "cleanup-previewlinks": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#cleanup-previewlinks", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cleanup-previewlinks", "vendor\/bin\/typo3 cleanup:previewlinks" ], "cleanup-versions": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#cleanup-versions", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-cleanup-versions", "vendor\/bin\/typo3 cleanup:versions" ], "extension-list": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#extension-list", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-extension-list", "vendor\/bin\/typo3 extension:list" ], "extension-setup": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#extension-setup", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-extension-setup", "vendor\/bin\/typo3 extension:setup" ], "fluid-schema-generate": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#fluid-schema-generate", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-fluid-schema-generate", "vendor\/bin\/typo3 fluid:schema:generate" ], "impexp-export": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#impexp-export", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-impexp-export", "vendor\/bin\/typo3 impexp:export" ], "impexp-import": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#impexp-import", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-impexp-import", "vendor\/bin\/typo3 impexp:import" ], "language-update": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#language-update", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-language-update", "vendor\/bin\/typo3 language:update" ], "lint-yaml": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#lint-yaml", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-lint-yaml", "vendor\/bin\/typo3 lint:yaml" ], "mailer-spool-send": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#mailer-spool-send", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-mailer-spool-send", "vendor\/bin\/typo3 mailer:spool:send" ], "messenger-consume": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#messenger-consume", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-messenger-consume", "vendor\/bin\/typo3 messenger:consume" ], "redirects-checkintegrity": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#redirects-checkintegrity", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-redirects-checkintegrity", "vendor\/bin\/typo3 redirects:checkintegrity" ], "redirects-cleanup": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#redirects-cleanup", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-redirects-cleanup", "vendor\/bin\/typo3 redirects:cleanup" ], "referenceindex-update": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#referenceindex-update", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-referenceindex-update", "vendor\/bin\/typo3 referenceindex:update" ], "scheduler-execute": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#scheduler-execute", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-scheduler-execute", "vendor\/bin\/typo3 scheduler:execute" ], "scheduler-list": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#scheduler-list", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-scheduler-list", "vendor\/bin\/typo3 scheduler:list" ], "scheduler-run": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#scheduler-run", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-scheduler-run", "vendor\/bin\/typo3 scheduler:run" ], "setup-begroups-default": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#setup-begroups-default", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-setup-begroups-default", "vendor\/bin\/typo3 setup:begroups:default" ], "site-list": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#site-list", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-site-list", "vendor\/bin\/typo3 site:list" ], "site-sets-list": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#site-sets-list", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-site-sets-list", "vendor\/bin\/typo3 site:sets:list" ], "site-show": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#site-show", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-site-show", "vendor\/bin\/typo3 site:show" ], "syslog-list": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#syslog-list", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-syslog-list", "vendor\/bin\/typo3 syslog:list" ], "upgrade-list": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#upgrade-list", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-upgrade-list", "vendor\/bin\/typo3 upgrade:list" ], "upgrade-mark-undone": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#upgrade-mark-undone", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-upgrade-mark-undone", "vendor\/bin\/typo3 upgrade:mark:undone" ], "upgrade-run": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#upgrade-run", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-upgrade-run", "vendor\/bin\/typo3 upgrade:run" ], "workspace-autopublish": [ "TYPO3 Explained", "main", - "ApiOverview\/CommandControllers\/ListCommands.html#workspace-autopublish", + "ApiOverview\/CommandControllers\/ListCommands.html#console-command-workspace-autopublish", "vendor\/bin\/typo3 workspace:autopublish" ] }, "php:property": { + "typo3-cms-backend-tree-repository-beforepagetreeisfilteredevent-searchparts": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/BeforePageTreeIsFilteredEvent.html#typo3-cms-backend-tree-repository-beforepagetreeisfilteredevent-searchparts", + "\\TYPO3\\CMS\\Backend\\Tree\\Repository\\BeforePageTreeIsFilteredEvent::searchParts" + ], + "typo3-cms-backend-tree-repository-beforepagetreeisfilteredevent-searchuids": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/BeforePageTreeIsFilteredEvent.html#typo3-cms-backend-tree-repository-beforepagetreeisfilteredevent-searchuids", + "\\TYPO3\\CMS\\Backend\\Tree\\Repository\\BeforePageTreeIsFilteredEvent::searchUids" + ], + "typo3-cms-backend-tree-repository-beforepagetreeisfilteredevent-searchphrase": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/BeforePageTreeIsFilteredEvent.html#typo3-cms-backend-tree-repository-beforepagetreeisfilteredevent-searchphrase", + "\\TYPO3\\CMS\\Backend\\Tree\\Repository\\BeforePageTreeIsFilteredEvent::searchPhrase" + ], + "typo3-cms-backend-tree-repository-beforepagetreeisfilteredevent-querybuilder": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/BeforePageTreeIsFilteredEvent.html#typo3-cms-backend-tree-repository-beforepagetreeisfilteredevent-querybuilder", + "\\TYPO3\\CMS\\Backend\\Tree\\Repository\\BeforePageTreeIsFilteredEvent::queryBuilder" + ], + "typo3-cms-backend-authentication-event-passwordhasbeenresetevent-userid": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Backend\/PasswordHasBeenResetEvent.html#typo3-cms-backend-authentication-event-passwordhasbeenresetevent-userid", + "\\TYPO3\\CMS\\Backend\\Authentication\\Event\\PasswordHasBeenResetEvent::userId" + ], "typo3-cms-core-security-contentsecuritypolicy-event-investigatemutationsevent-policy": [ "TYPO3 Explained", "main", @@ -61282,6 +61996,18 @@ "ApiOverview\/Events\/Events\/Core\/Security\/PolicyMutatedEvent.html#typo3-cms-core-security-contentsecuritypolicy-event-policymutatedevent-defaultpolicy", "\\TYPO3\\CMS\\Core\\Security\\ContentSecurityPolicy\\Event\\PolicyMutatedEvent::defaultPolicy" ], + "typo3-cms-frontend-event-aftercontenthasbeenfetchedevent-groupedcontent": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Frontend\/AfterContentHasBeenFetchedEvent.html#typo3-cms-frontend-event-aftercontenthasbeenfetchedevent-groupedcontent", + "\\TYPO3\\CMS\\Frontend\\Event\\AfterContentHasBeenFetchedEvent::groupedContent" + ], + "typo3-cms-frontend-event-aftercontenthasbeenfetchedevent-request": [ + "TYPO3 Explained", + "main", + "ApiOverview\/Events\/Events\/Frontend\/AfterContentHasBeenFetchedEvent.html#typo3-cms-frontend-event-aftercontenthasbeenfetchedevent-request", + "\\TYPO3\\CMS\\Frontend\\Event\\AfterContentHasBeenFetchedEvent::request" + ], "typo3-cms-indexedsearch-event-beforefinalsearchqueryisexecutedevent-querybuilder": [ "TYPO3 Explained", "main", diff --git a/legacy_hook/tests/Unit/Fixtures/Permalinks/m/typo3/reference-typoscript/main/en-us/objects.inv.json b/legacy_hook/tests/Unit/Fixtures/Permalinks/m/typo3/reference-typoscript/main/en-us/objects.inv.json index 04b4b5fa..fb296ee0 100644 --- a/legacy_hook/tests/Unit/Fixtures/Permalinks/m/typo3/reference-typoscript/main/en-us/objects.inv.json +++ b/legacy_hook/tests/Unit/Fixtures/Permalinks/m/typo3/reference-typoscript/main/en-us/objects.inv.json @@ -54,54 +54,12 @@ "ContentObjects\/GeneralInformation\/Index.html", "Content objects (general information)" ], - "ContentObjects\/Hmenu\/Browse": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Browse.html", - "Browse - previous and next links" - ], - "ContentObjects\/Hmenu\/Categories": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Categories.html", - "Categories HMENU" - ], - "ContentObjects\/Hmenu\/Directory": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Directory.html", - "Directory menu - menu of subpages" - ], "ContentObjects\/Hmenu\/Index": [ "TypoScript Explained", "main", "ContentObjects\/Hmenu\/Index.html", "HMENU" ], - "ContentObjects\/Hmenu\/Keywords": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Keywords.html", - "Keywords - menu of related pages" - ], - "ContentObjects\/Hmenu\/Language": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Language.html", - "Language menu" - ], - "ContentObjects\/Hmenu\/List": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/List.html", - "List menu" - ], - "ContentObjects\/Hmenu\/Rootline": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Rootline.html", - "Rootline - breadcrumb menu" - ], "ContentObjects\/Hmenu\/Tmenu\/Index": [ "TypoScript Explained", "main", @@ -114,18 +72,6 @@ "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html", "TMENUITEM" ], - "ContentObjects\/Hmenu\/Updated": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Updated.html", - "Updated HMENU" - ], - "ContentObjects\/Hmenu\/Userfunction": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Userfunction.html", - "Userfunction menu" - ], "ContentObjects\/Image\/Index": [ "TypoScript Explained", "main", @@ -234,12 +180,66 @@ "DataProcessing\/LanguageMenuProcessor.html", "language-menu data processor" ], - "DataProcessing\/MenuProcessor": [ + "DataProcessing\/MenuProcessor\/Browse": [ "TypoScript Explained", "main", - "DataProcessing\/MenuProcessor.html", + "DataProcessing\/MenuProcessor\/Browse.html", + "Browse navigation - previous and next links" + ], + "DataProcessing\/MenuProcessor\/Categories": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Categories.html", + "Categories" + ], + "DataProcessing\/MenuProcessor\/Directory": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Directory.html", + "Directory menu - menu of subpages" + ], + "DataProcessing\/MenuProcessor\/Index": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Index.html", "menu data processor" ], + "DataProcessing\/MenuProcessor\/Keywords": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Keywords.html", + "Keywords - menu of related pages" + ], + "DataProcessing\/MenuProcessor\/Language": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Language.html", + "Pure TypoScript language menu (For backward compatibility)" + ], + "DataProcessing\/MenuProcessor\/List": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/List.html", + "List menu" + ], + "DataProcessing\/MenuProcessor\/Rootline": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Rootline.html", + "Rootline - breadcrumb menu" + ], + "DataProcessing\/MenuProcessor\/Updated": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Updated.html", + "Updated HMENU" + ], + "DataProcessing\/MenuProcessor\/Userfunction": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Userfunction.html", + "Userfunction menu (For backward compability)" + ], "DataProcessing\/PageContentFetchingProcessor": [ "TypoScript Explained", "main", @@ -2042,1859 +2042,1781 @@ "ContentObjects\/GeneralInformation\/Index.html#reusing-cobjects-examples", "Example:" ], - "hmenu-special-browse": [ + "cobj-hmenu": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Browse.html#hmenu-special-browse", - "Browse - previous and next links" + "ContentObjects\/Hmenu\/Index.html#cobj-hmenu", + "HMENU" ], - "hmenu-special-browse-properties": [ + "cobj-hmenu-options": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Browse.html#hmenu-special-browse-properties", + "ContentObjects\/Hmenu\/Index.html#cobj-hmenu-options", "Properties" ], - "hmenu-special-browse-value": [ + "hmenu-number": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Browse.html#hmenu-special-browse-value", - "Properties" + "ContentObjects\/Hmenu\/Index.html#hmenu-number", + "-" ], - "hmenu-special-browse-items": [ + "hmenu-cache-period": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Browse.html#hmenu-special-browse-items", - "Properties" + "ContentObjects\/Hmenu\/Index.html#hmenu-cache-period", + "-" ], - "hmenu-special-browse-items-example": [ + "hmenu-cache": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Browse.html#hmenu-special-browse-items-example", - "Example: Display different types of browse links" + "ContentObjects\/Hmenu\/Index.html#hmenu-cache", + "-" ], - "hmenu-special-browse-prevnexttosection": [ + "hmenu-entrylevel": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Browse.html#hmenu-special-browse-prevnexttosection", - "special.items.prevnextToSection" + "ContentObjects\/Hmenu\/Index.html#hmenu-entrylevel", + "-" ], - "hmenu-special-browse-target": [ + "hmenu-special": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Browse.html#hmenu-special-browse-target", - "special.[itemname].target" + "ContentObjects\/Hmenu\/Index.html#hmenu-special", + "-" ], - "hmenu-special-browse-uid": [ + "hmenu-special-value": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Browse.html#hmenu-special-browse-uid", - "special.[itemname].uid" + "ContentObjects\/Hmenu\/Index.html#hmenu-special-value", + "-" ], - "hmenu-special-browse-fields": [ + "hmenu-minitems": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Browse.html#hmenu-special-browse-fields", - "special.[itemname].fields.[field name]" + "ContentObjects\/Hmenu\/Index.html#hmenu-minitems", + "-" ], - "hmenu-special-browse-fields-example": [ + "hmenu-maxitems": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Browse.html#hmenu-special-browse-fields-example", - "Example: Use \"back\" as text on the prev link" + "ContentObjects\/Hmenu\/Index.html#hmenu-maxitems", + "-" ], - "hmenu-special-browser-excludenosearchpages": [ + "hmenu-begin": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Browse.html#hmenu-special-browser-excludenosearchpages", - "special.excludeNoSearchPages" + "ContentObjects\/Hmenu\/Index.html#hmenu-begin", + "-" ], - "hmenu-special-browser-example": [ + "hmenu-excludeuidlist": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Browse.html#hmenu-special-browser-example", - "Example: Pagination with rel=\"next\" and rel=\"prev\"" + "ContentObjects\/Hmenu\/Index.html#hmenu-excludeuidlist", + "-" ], - "hmenu-special-categories": [ + "hmenu-excludedoktypes": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Categories.html#hmenu-special-categories", - "Categories HMENU" + "ContentObjects\/Hmenu\/Index.html#hmenu-excludedoktypes", + "-" ], - "hmenu-special-categories-properties": [ + "hmenu-includenotinmenu": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Categories.html#hmenu-special-categories-properties", - "Properties" + "ContentObjects\/Hmenu\/Index.html#hmenu-includenotinmenu", + "-" ], - "hmenu-special-categories-value": [ + "hmenu-alwaysactivepidlist": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Categories.html#hmenu-special-categories-value", - "Properties" + "ContentObjects\/Hmenu\/Index.html#hmenu-alwaysactivepidlist", + "-" ], - "hmenu-special-categories-relation": [ + "hmenu-protectlvar": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Categories.html#hmenu-special-categories-relation", - "Properties" + "ContentObjects\/Hmenu\/Index.html#hmenu-protectlvar", + "-" ], - "hmenu-special-categories-sorting": [ + "hmenu-if": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Categories.html#hmenu-special-categories-sorting", - "Properties" + "ContentObjects\/Hmenu\/Index.html#hmenu-if", + "-" ], - "hmenu-special-categories-order": [ + "hmenu-wrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Categories.html#hmenu-special-categories-order", - "Properties" + "ContentObjects\/Hmenu\/Index.html#hmenu-wrap", + "-" ], - "hmenu-special-categories-examples": [ + "hmenu-stdwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Categories.html#hmenu-special-categories-examples", - "Examples" + "ContentObjects\/Hmenu\/Index.html#hmenu-stdwrap", + "-" ], - "hmenu-special-categories-example": [ + "hmenu-examples": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Categories.html#hmenu-special-categories-example", - "Example: Menu of pages in a certain category" + "ContentObjects\/Hmenu\/Index.html#hmenu-examples", + "-" ], - "hmenu-special-categories-value-example": [ + "hmenu-special-property": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Categories.html#hmenu-special-categories-value-example", - "Example: List pages in categories with UID 1 and 2" + "ContentObjects\/Hmenu\/Index.html#hmenu-special-property", + "-" ], - "hmenu-special-directory": [ + "tmenu": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Directory.html#hmenu-special-directory", - "Directory menu - menu of subpages" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu", + "TMENU" ], - "hmenu-special-directory-properties": [ + "data-type-menuobj": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Directory.html#hmenu-special-directory-properties", - "Properties" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#data-type-menuobj", + "TMENU" ], - "hmenu-special-directory-value": [ + "menu-objects": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Directory.html#hmenu-special-directory-value", - "Properties" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#menu-objects", + "TMENU" ], - "hmenu-special-directory-example": [ + "tmenu-common-properties": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Directory.html#hmenu-special-directory-example", - "Example: Menu of all subpages" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-properties", + "TMENU item states" ], - "cobj-hmenu": [ + "tmenu-common-property-userdef2": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#cobj-hmenu", - "HMENU" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-userdef2", + "TMENU item states" ], - "cobj-hmenu-options": [ + "tmenu-common-property-userdef1": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#cobj-hmenu-options", - "Properties" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-userdef1", + "TMENU item states" ], - "hmenu-number": [ + "tmenu-common-property-spc": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-number", - "Properties" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-spc", + "TMENU item states" ], - "hmenu-cache-period": [ + "tmenu-common-property-usr": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-cache-period", - "Properties" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-usr", + "TMENU item states" ], - "hmenu-cache": [ + "tmenu-common-property-curifsub": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-cache", - "Properties" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-curifsub", + "TMENU item states" ], - "hmenu-entrylevel": [ + "tmenu-common-property-cur": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-entrylevel", - "Properties" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-cur", + "TMENU item states" ], - "hmenu-special": [ + "tmenu-common-property-actifsub": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-special", - "Properties" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-actifsub", + "TMENU item states" ], - "hmenu-special-value": [ + "tmenu-common-property-act": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-special-value", - "Properties" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-act", + "TMENU item states" ], - "hmenu-minitems": [ + "tmenu-common-property-ifsub": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-minitems", - "Properties" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-ifsub", + "TMENU item states" ], - "hmenu-maxitems": [ + "tmenu-common-property-no": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-maxitems", - "Properties" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-no", + "TMENU item states" ], - "hmenu-begin": [ + "menu-common-properties": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-begin", + "ContentObjects\/Hmenu\/Tmenu\/Index.html#menu-common-properties", "Properties" ], - "hmenu-excludeuidlist": [ + "tmenuitem": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-excludeuidlist", - "Properties" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem", + "TMENUITEM" ], - "hmenu-excludedoktypes": [ + "tmenuitem-properties": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-excludedoktypes", + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-properties", "Properties" ], - "hmenu-includenotinmenu": [ + "tmenuitem-allwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-includenotinmenu", + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-allWrap", "Properties" ], - "hmenu-alwaysactivepidlist": [ + "tmenuitem-wrapitemandsub": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-alwaysactivepidlist", + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-wrapItemAndSub", "Properties" ], - "hmenu-protectlvar": [ + "tmenuitem-subst-elementuid": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-protectlvar", + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-subst-elementUid", "Properties" ], - "hmenu-addquerystring": [ + "tmenuitem-before": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-addquerystring", + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-before", "Properties" ], - "hmenu-if": [ + "tmenuitem-beforewrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-if", + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-beforeWrap", "Properties" ], - "hmenu-wrap": [ + "tmenuitem-after": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-wrap", + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-after", "Properties" ], - "hmenu-stdwrap": [ + "tmenuitem-afterwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-stdwrap", + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-afterWrap", "Properties" ], - "hmenu-examples": [ + "tmenuitem-linkwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-examples", - "Example" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-linkWrap", + "Properties" ], - "hmenu-special-property": [ + "tmenuitem-stdwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-special-property", - "The .special property" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-stdWrap", + "Properties" ], - "hmenu-special-keywords": [ + "tmenuitem-atagbeforewrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#hmenu-special-keywords", - "Keywords - menu of related pages" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-ATagBeforeWrap", + "Properties" ], - "hmenu-special-keywords-properties": [ + "tmenuitem-atagparams": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#hmenu-special-keywords-properties", + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-ATagParams", "Properties" ], - "hmenu-special-keywords-value": [ + "tmenuitem-atagtitle": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#hmenu-special-keywords-value", + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-ATagTitle", "Properties" ], - "hmenu-special-keywords-mode": [ + "tmenuitem-additionalparams": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#hmenu-special-keywords-mode", + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-additionalParams", "Properties" ], - "hmenu-special-keywords-entrylevel": [ + "tmenuitem-donotlinkit": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#hmenu-special-keywords-entrylevel", + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-doNotLinkIt", "Properties" ], - "hmenu-special-keywords-depth": [ + "tmenuitem-donotshowlink": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#hmenu-special-keywords-depth", + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-doNotShowLink", "Properties" ], - "hmenu-special-keywords-limit": [ + "tmenuitem-stdwrap2": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#hmenu-special-keywords-limit", + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-stdWrap2", "Properties" ], - "hmenu-special-keywords-excludenosearchpages": [ + "tmenuitem-alttarget": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#hmenu-special-keywords-excludenosearchpages", + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-altTarget", "Properties" ], - "hmenu-special-keywords-begin": [ + "tmenuitem-allstdwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#hmenu-special-keywords-begin", + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-allStdWrap", "Properties" ], - "hmenu-special-keywords-setkeywords": [ + "cobj-image": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#hmenu-special-keywords-setkeywords", - "Properties" + "ContentObjects\/Image\/Index.html#cobj-image", + "IMAGE" ], - "hmenu-special-keywords-keywordsfield": [ + "cobj-image-properties": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#hmenu-special-keywords-keywordsfield", + "ContentObjects\/Image\/Index.html#cobj-image-properties", "Properties" ], - "hmenu-special-keywords-sourcefield": [ + "cobj-image-cache": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#hmenu-special-keywords-sourcefield", + "ContentObjects\/Image\/Index.html#cobj-image-cache", "Properties" ], - "hmenu-special-keywords-examples": [ + "cobj-image-if": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#hmenu-special-keywords-examples", - "Examples" + "ContentObjects\/Image\/Index.html#cobj-image-if", + "Properties" ], - "hmenu-special-keywords-example-related": [ + "cobj-image-file": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#hmenu-special-keywords-example-related", - "Example: Menu of related pages" + "ContentObjects\/Image\/Index.html#cobj-image-file", + "Properties" ], - "hmenu-special-keywords-value-example": [ + "cobj-image-params": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#hmenu-special-keywords-value-example", - "Example: Find related pages of the current page" + "ContentObjects\/Image\/Index.html#cobj-image-params", + "Properties" ], - "hmenu-special-language": [ + "cobj-image-alttext": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Language.html#hmenu-special-language", - "Language menu" + "ContentObjects\/Image\/Index.html#cobj-image-altText", + "Properties" ], - "hmenu-special-language-properties": [ + "cobj-image-titletext": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Language.html#hmenu-special-language-properties", + "ContentObjects\/Image\/Index.html#cobj-image-titleText", "Properties" ], - "hmenu-special-language-value": [ + "cobj-image-emptytitlehandling": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Language.html#hmenu-special-language-value", + "ContentObjects\/Image\/Index.html#cobj-image-emptyTitleHandling", "Properties" ], - "hmenu-special-language-normalwhennolanguage": [ + "cobj-image-layoutkey": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Language.html#hmenu-special-language-normalwhennolanguage", + "ContentObjects\/Image\/Index.html#cobj-image-layoutkey", "Properties" ], - "hmenu-special-language-examples": [ + "cobj-image-layout": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Language.html#hmenu-special-language-examples", - "Example: Create a language menu with pure TypoScript" + "ContentObjects\/Image\/Index.html#cobj-image-layout", + "Properties" ], - "hmenu-special-list": [ + "cobj-image-layout-layoutkey": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/List.html#hmenu-special-list", - "List menu" + "ContentObjects\/Image\/Index.html#cobj-image-layout-layoutkey", + "Properties" ], - "hmenu-special-list-properties": [ + "cobj-image-layout-layoutkey-element": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/List.html#hmenu-special-list-properties", + "ContentObjects\/Image\/Index.html#cobj-image-layout-layoutkey-element", "Properties" ], - "hmenu-special-list-value": [ + "cobj-image-layout-layoutkey-source": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/List.html#hmenu-special-list-value", + "ContentObjects\/Image\/Index.html#cobj-image-layout-layoutkey-source", "Properties" ], - "hmenu-special-rootline": [ + "cobj-image-sourcecollection": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Rootline.html#hmenu-special-rootline", - "Rootline - breadcrumb menu" + "ContentObjects\/Image\/Index.html#cobj-image-sourcecollection", + "Properties" ], - "hmenu-special-rootline-properties": [ + "cobj-image-datakey": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Rootline.html#hmenu-special-rootline-properties", + "ContentObjects\/Image\/Index.html#cobj-image-datakey", "Properties" ], - "hmenu-special-rootline-range": [ + "cobj-image-datakey-if": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Rootline.html#hmenu-special-rootline-range", + "ContentObjects\/Image\/Index.html#cobj-image-datakey-if", "Properties" ], - "hmenu-special-rootline-reverseorder": [ + "cobj-image-datakey-pixeldensity": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Rootline.html#hmenu-special-rootline-reverseorder", + "ContentObjects\/Image\/Index.html#cobj-image-datakey-pixeldensity", "Properties" ], - "hmenu-special-rootline-targets": [ + "cobj-image-datakey-width": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Rootline.html#hmenu-special-rootline-targets", + "ContentObjects\/Image\/Index.html#cobj-image-datakey-width", "Properties" ], - "hmenu-special-rootline-examples": [ + "cobj-image-datakey-height": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Rootline.html#hmenu-special-rootline-examples", - "Examples" + "ContentObjects\/Image\/Index.html#cobj-image-datakey-height", + "Properties" ], - "hmenu-special-rootline-breadcrumb": [ + "cobj-image-datakey-maxw": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Rootline.html#hmenu-special-rootline-breadcrumb", - "Breadcrumb styled with Fluid" + "ContentObjects\/Image\/Index.html#cobj-image-datakey-maxW", + "Properties" ], - "hmenu-special-rootline-breadcrumb-pure": [ + "cobj-image-datakey-maxh": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Rootline.html#hmenu-special-rootline-breadcrumb-pure", - "Breadcrumb with pure TypoScript" + "ContentObjects\/Image\/Index.html#cobj-image-datakey-maxH", + "Properties" ], - "hmenu-special-rootline-range-example": [ + "cobj-image-datakey-minw": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Rootline.html#hmenu-special-rootline-range-example", - "Example: Skip the current page" + "ContentObjects\/Image\/Index.html#cobj-image-datakey-minW", + "Properties" ], - "hmenu-special-rootline-targets-example": [ + "cobj-image-datakey-minh": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Rootline.html#hmenu-special-rootline-targets-example", - "Example: Set targets for levels" + "ContentObjects\/Image\/Index.html#cobj-image-datakey-minH", + "Properties" ], - "tmenu": [ + "cobj-image-datakey-quality": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu", - "TMENU" + "ContentObjects\/Image\/Index.html#cobj-image-datakey-quality", + "Properties" ], - "data-type-menuobj": [ + "cobj-image-datakey-others": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#data-type-menuobj", - "TMENU" + "ContentObjects\/Image\/Index.html#cobj-image-datakey-others", + "Properties" ], - "menu-objects": [ + "cobj-image-linkwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#menu-objects", - "TMENU" + "ContentObjects\/Image\/Index.html#cobj-image-linkWrap", + "Properties" ], - "tmenu-common-properties": [ + "cobj-image-imagelinkwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-properties", - "TMENU item states" + "ContentObjects\/Image\/Index.html#cobj-image-imageLinkWrap", + "Properties" ], - "tmenu-common-property-userdef2": [ + "cobj-image-wrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-userdef2", - "TMENU item states" + "ContentObjects\/Image\/Index.html#cobj-image-wrap", + "Properties" ], - "tmenu-common-property-userdef1": [ + "cobj-image-stdwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-userdef1", - "TMENU item states" + "ContentObjects\/Image\/Index.html#cobj-image-stdWrap", + "Properties" ], - "tmenu-common-property-spc": [ + "cobj-image-examples": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-spc", - "TMENU item states" + "ContentObjects\/Image\/Index.html#cobj-image-examples", + "Examples" ], - "tmenu-common-property-usr": [ + "cobj-image-examples-standard": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-usr", - "TMENU item states" + "ContentObjects\/Image\/Index.html#cobj-image-examples-standard", + "Standard rendering" ], - "tmenu-common-property-curifsub": [ + "cobj-image-examples-responsive": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-curifsub", - "TMENU item states" + "ContentObjects\/Image\/Index.html#cobj-image-examples-responsive", + "Responsive\/adaptive rendering" ], - "tmenu-common-property-cur": [ + "cobj-img-resource": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-cur", - "TMENU item states" + "ContentObjects\/ImgResource\/Index.html#cobj-img-resource", + "IMG_RESOURCE" ], - "tmenu-common-property-actifsub": [ + "cobj-img-resource-properties": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-actifsub", - "TMENU item states" + "ContentObjects\/ImgResource\/Index.html#cobj-img-resource-properties", + "Properties" ], - "tmenu-common-property-act": [ + "cobj-img-resource-cache": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-act", - "TMENU item states" + "ContentObjects\/ImgResource\/Index.html#cobj-img-resource-cache", + "Properties" ], - "tmenu-common-property-ifsub": [ + "cobj-img-resource-file": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-ifsub", - "TMENU item states" + "ContentObjects\/ImgResource\/Index.html#cobj-img-resource-file", + "Properties" ], - "tmenu-common-property-no": [ + "cobj-img-resource-stdwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-no", - "TMENU item states" + "ContentObjects\/ImgResource\/Index.html#cobj-img-resource-stdWrap", + "Properties" ], - "menu-common-properties": [ + "cobject": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#menu-common-properties", - "Properties" + "ContentObjects\/Index.html#cobject", + "Content Objects (cObject)" ], - "tmenuitem": [ + "data-type-cobject": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem", - "TMENUITEM" + "ContentObjects\/Index.html#data-type-cobject", + "Content Objects (cObject)" ], - "tmenuitem-allwrap": [ + "cobj-load-register": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-allWrap", - "Properties" + "ContentObjects\/LoadRegister\/Index.html#cobj-load-register", + "LOAD_REGISTER" ], - "tmenuitem-wrapitemandsub": [ + "cobj-load-register-properties": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-wrapItemAndSub", + "ContentObjects\/LoadRegister\/Index.html#cobj-load-register-properties", "Properties" ], - "tmenuitem-subst-elementuid": [ + "cobj-load-register-array": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-subst-elementUid", + "ContentObjects\/LoadRegister\/Index.html#cobj-load-register-array", "Properties" ], - "tmenuitem-before": [ + "cobj-load-register-examples": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-before", - "Properties" + "ContentObjects\/LoadRegister\/Index.html#cobj-load-register-examples", + "Example:" ], - "tmenuitem-beforewrap": [ + "cobj-pageview": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-beforeWrap", - "Properties" + "ContentObjects\/Pageview\/Index.html#cobj-pageview", + "PAGEVIEW" ], - "tmenuitem-after": [ + "cobj-pageview-properties-example": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-after", - "Properties" + "ContentObjects\/Pageview\/Index.html#cobj-pageview-properties-example", + "Example: Display a page with Fluid templates" ], - "tmenuitem-afterwrap": [ + "cobj-pageview-data": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-afterWrap", - "Properties" + "ContentObjects\/Pageview\/Index.html#cobj-pageview-data", + "Default variables in Fluid templates" ], - "tmenuitem-linkwrap": [ + "cobj-pageview-data-example": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-linkWrap", - "Properties" + "ContentObjects\/Pageview\/Index.html#cobj-pageview-data-example", + "Examples for using default variables" ], - "tmenuitem-stdwrap": [ + "cobj-pageview-data-language-example": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-stdWrap", - "Properties" + "ContentObjects\/Pageview\/Index.html#cobj-pageview-data-language-example", + "Example: Display the site title in the current language" ], - "tmenuitem-atagbeforewrap": [ + "cobj-pageview-data-page-example": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-ATagBeforeWrap", - "Properties" + "ContentObjects\/Pageview\/Index.html#cobj-pageview-data-page-example", + "Example: Display the title and abstract of the current page" ], - "tmenuitem-atagparams": [ + "cobj-pageview-data-settings-example": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-ATagParams", - "Properties" + "ContentObjects\/Pageview\/Index.html#cobj-pageview-data-settings-example", + "Example: Use TypoScript constant in a Fluid template" ], - "tmenuitem-atagtitle": [ + "cobj-pageview-data-site-example": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-ATagTitle", - "Properties" + "ContentObjects\/Pageview\/Index.html#cobj-pageview-data-site-example", + "Example: Link to the root page of the current site" ], - "tmenuitem-additionalparams": [ + "cobj-pageview-properties": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-additionalParams", + "ContentObjects\/Pageview\/Index.html#cobj-pageview-properties", "Properties" ], - "tmenuitem-donotlinkit": [ + "cobj-pageview-examples": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-doNotLinkIt", - "Properties" + "ContentObjects\/Pageview\/Index.html#cobj-pageview-examples", + "Examples" ], - "tmenuitem-donotshowlink": [ + "cobj-pageview-dataprocessing-example": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-doNotShowLink", - "Properties" + "ContentObjects\/Pageview\/Index.html#cobj-pageview-dataProcessing-example", + "Example: Display a main menu and a breadcrumb on the page" ], - "tmenuitem-stdwrap2": [ + "cobj-pageview-paths-example": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-stdWrap2", - "Properties" + "ContentObjects\/Pageview\/Index.html#cobj-pageview-paths-example", + "Example: Define a path that contains all templates" ], - "tmenuitem-alttarget": [ + "cobj-pageview-paths-example-extended": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-altTarget", - "Properties" + "ContentObjects\/Pageview\/Index.html#cobj-pageview-paths-example-extended", + "Example: Define fallbacks for a template paths" ], - "tmenuitem-allstdwrap": [ + "cobj-pageview-variables-example": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-allStdWrap", - "Properties" + "ContentObjects\/Pageview\/Index.html#cobj-pageview-variables-example", + "Example: Make additional variables available in the Fluid template" ], - "hmenu-special-updated": [ + "cobj-records-introduction": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Updated.html#hmenu-special-updated", - "Updated HMENU" + "ContentObjects\/Records\/Index.html#cobj-records-introduction", + "RECORDS" ], - "hmenu-special-updated-properties": [ + "cobj-records": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Updated.html#hmenu-special-updated-properties", - "Properties" + "ContentObjects\/Records\/Index.html#cobj-records", + "RECORDS" ], - "hmenu-special-updated-value": [ + "cobj-records-details": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Updated.html#hmenu-special-updated-value", + "ContentObjects\/Records\/Index.html#cobj-records-details", "Properties" ], - "hmenu-special-updated-mode": [ + "cobj-records-properties": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Updated.html#hmenu-special-updated-mode", + "ContentObjects\/Records\/Index.html#cobj-records-properties", "Properties" ], - "hmenu-special-updated-depth": [ + "cobj-records-properties-source": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Updated.html#hmenu-special-updated-depth", + "ContentObjects\/Records\/Index.html#cobj-records-properties-source", "Properties" ], - "hmenu-special-updated-beginatlevel": [ + "cobj-records-properties-categories": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Updated.html#hmenu-special-updated-beginatlevel", + "ContentObjects\/Records\/Index.html#cobj-records-properties-categories", "Properties" ], - "hmenu-special-updated-maxage": [ + "cobj-records-categories-relation": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Updated.html#hmenu-special-updated-maxage", + "ContentObjects\/Records\/Index.html#cobj-records-categories-relation", "Properties" ], - "hmenu-special-updated-limit": [ + "cobj-records-properties-tables": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Updated.html#hmenu-special-updated-limit", + "ContentObjects\/Records\/Index.html#cobj-records-properties-tables", "Properties" ], - "hmenu-special-updated-excludenosearchpages": [ + "cobj-records-properties-conf": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Updated.html#hmenu-special-updated-excludenosearchpages", + "ContentObjects\/Records\/Index.html#cobj-records-properties-conf", "Properties" ], - "hmenu-special-updated-examples": [ + "cobj-records-properties-dontcheckpid": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Updated.html#hmenu-special-updated-examples", - "Example: Recently updated pages styled with Fluid" + "ContentObjects\/Records\/Index.html#cobj-records-properties-dontcheckpid", + "Properties" ], - "hmenu-special-userfunction": [ + "cobj-records-properties-wrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Userfunction.html#hmenu-special-userfunction", - "Userfunction menu" + "ContentObjects\/Records\/Index.html#cobj-records-properties-wrap", + "Properties" ], - "hmenu-special-userfunction-properties": [ + "cobj-records-properties-stdwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Userfunction.html#hmenu-special-userfunction-properties", + "ContentObjects\/Records\/Index.html#cobj-records-properties-stdwrap", "Properties" ], - "hmenu-special-userfunction-userfunc": [ + "cobj-records-properties-cache": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Userfunction.html#hmenu-special-userfunction-userfunc", + "ContentObjects\/Records\/Index.html#cobj-records-properties-cache", "Properties" ], - "hmenu-special-userfunction-examples": [ + "cobj-records-examples": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Userfunction.html#hmenu-special-userfunction-examples", - "Example: Set a userFunc" + "ContentObjects\/Records\/Index.html#cobj-records-examples", + "Examples" ], - "cobj-image": [ + "cobj-records-examples-source": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image", - "IMAGE" + "ContentObjects\/Records\/Index.html#cobj-records-examples-source", + "Selection with source" ], - "cobj-image-properties": [ + "cobj-records-examples-source-ii": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-properties", - "Properties" + "ContentObjects\/Records\/Index.html#cobj-records-examples-source-ii", + "Selection with source II" ], - "cobj-image-cache": [ + "cobj-records-examples-categories": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-cache", - "Properties" + "ContentObjects\/Records\/Index.html#cobj-records-examples-categories", + "Selection with categories" ], - "cobj-image-if": [ + "cobj-restore-register": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-if", - "Properties" + "ContentObjects\/RestoreRegister\/Index.html#cobj-restore-register", + "RESTORE_REGISTER" ], - "cobj-image-file": [ + "cobj-restore-register-examples": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-file", - "Properties" + "ContentObjects\/RestoreRegister\/Index.html#cobj-restore-register-examples", + "Example:" ], - "cobj-image-params": [ + "cobj-svg": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-params", - "Properties" + "ContentObjects\/Svg\/Index.html#cobj-svg", + "SVG" ], - "cobj-image-alttext": [ + "cobj-svg-properties": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-altText", + "ContentObjects\/Svg\/Index.html#cobj-svg-properties", "Properties" ], - "cobj-image-titletext": [ + "cobj-svg-cache": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-titleText", + "ContentObjects\/Svg\/Index.html#cobj-svg-cache", "Properties" ], - "cobj-image-emptytitlehandling": [ + "cobj-svg-width": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-emptyTitleHandling", + "ContentObjects\/Svg\/Index.html#cobj-svg-width", "Properties" ], - "cobj-image-layoutkey": [ + "cobj-svg-height": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-layoutkey", + "ContentObjects\/Svg\/Index.html#cobj-svg-height", "Properties" ], - "cobj-image-layout": [ + "cobj-svg-src": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-layout", + "ContentObjects\/Svg\/Index.html#cobj-svg-src", "Properties" ], - "cobj-image-layout-layoutkey": [ + "cobj-svg-rendermode": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-layout-layoutkey", + "ContentObjects\/Svg\/Index.html#cobj-svg-renderMode", "Properties" ], - "cobj-image-layout-layoutkey-element": [ + "cobj-svg-stdwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-layout-layoutkey-element", + "ContentObjects\/Svg\/Index.html#cobj-svg-stdWrap", "Properties" ], - "cobj-image-layout-layoutkey-source": [ + "cobj-svg-examples": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-layout-layoutkey-source", - "Properties" + "ContentObjects\/Svg\/Index.html#cobj-svg-examples", + "Example" ], - "cobj-image-sourcecollection": [ + "cobj-text": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-sourcecollection", - "Properties" + "ContentObjects\/Text\/Index.html#cobj-text", + "TEXT" ], - "cobj-image-datakey": [ + "cobj-text-properties": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-datakey", + "ContentObjects\/Text\/Index.html#cobj-text-properties", "Properties" ], - "cobj-image-datakey-if": [ + "cobj-text-value": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-datakey-if", + "ContentObjects\/Text\/Index.html#cobj-text-value", "Properties" ], - "cobj-image-datakey-pixeldensity": [ + "cobj-text-stdwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-datakey-pixeldensity", + "ContentObjects\/Text\/Index.html#cobj-text-stdWrap", "Properties" ], - "cobj-image-datakey-width": [ + "cobj-text-cache": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-datakey-width", + "ContentObjects\/Text\/Index.html#cobj-text-cache", "Properties" ], - "cobj-image-datakey-height": [ + "cobj-text-examples": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-datakey-height", - "Properties" + "ContentObjects\/Text\/Index.html#cobj-text-examples", + "Examples" ], - "cobj-image-datakey-maxw": [ + "cobj-user-int": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-datakey-maxW", - "Properties" + "ContentObjects\/UserAndUserInt\/Index.html#cobj-user-int", + "USER and USER_INT" ], - "cobj-image-datakey-maxh": [ + "cobj-user": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-datakey-maxH", - "Properties" + "ContentObjects\/UserAndUserInt\/Index.html#cobj-user", + "USER and USER_INT" ], - "cobj-image-datakey-minw": [ + "cobj-user-properties": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-datakey-minW", + "ContentObjects\/UserAndUserInt\/Index.html#cobj-user-properties", "Properties" ], - "cobj-image-datakey-minh": [ + "cobj-user-userfunc": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-datakey-minH", + "ContentObjects\/UserAndUserInt\/Index.html#cobj-user-userFunc", "Properties" ], - "cobj-image-datakey-quality": [ + "cobj-user-defined-properties": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-datakey-quality", + "ContentObjects\/UserAndUserInt\/Index.html#cobj-user-defined-properties", "Properties" ], - "cobj-image-datakey-others": [ + "cobj-user-stdwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-datakey-others", - "Properties" - ], - "cobj-image-linkwrap": [ - "TypoScript Explained", - "main", - "ContentObjects\/Image\/Index.html#cobj-image-linkWrap", - "Properties" - ], - "cobj-image-imagelinkwrap": [ - "TypoScript Explained", - "main", - "ContentObjects\/Image\/Index.html#cobj-image-imageLinkWrap", - "Properties" - ], - "cobj-image-wrap": [ - "TypoScript Explained", - "main", - "ContentObjects\/Image\/Index.html#cobj-image-wrap", + "ContentObjects\/UserAndUserInt\/Index.html#cobj-user-stdWrap", "Properties" ], - "cobj-image-stdwrap": [ + "cobj-user-cache": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-stdWrap", + "ContentObjects\/UserAndUserInt\/Index.html#cobj-user-cache", "Properties" ], - "cobj-image-examples": [ + "cobj-user-int-examples": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-examples", + "ContentObjects\/UserAndUserInt\/Index.html#cobj-user-int-examples", "Examples" ], - "cobj-image-examples-standard": [ + "cobj-user-examples": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-examples-standard", - "Standard rendering" + "ContentObjects\/UserAndUserInt\/Index.html#cobj-user-examples", + "Examples" ], - "cobj-image-examples-responsive": [ + "commaseparatedvalueprocessor": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#cobj-image-examples-responsive", - "Responsive\/adaptive rendering" + "DataProcessing\/CommaSeparatedValueProcessor.html#CommaSeparatedValueProcessor", + "comma-separated-value data processor" ], - "cobj-img-resource": [ + "commaseparatedvalueprocessor-options": [ "TypoScript Explained", "main", - "ContentObjects\/ImgResource\/Index.html#cobj-img-resource", - "IMG_RESOURCE" + "DataProcessing\/CommaSeparatedValueProcessor.html#CommaSeparatedValueProcessor-options", + "Options:" ], - "cobj-img-resource-properties": [ + "commaseparatedvalueprocessor-if": [ "TypoScript Explained", "main", - "ContentObjects\/ImgResource\/Index.html#cobj-img-resource-properties", - "Properties" + "DataProcessing\/CommaSeparatedValueProcessor.html#CommaSeparatedValueProcessor-if", + "-" ], - "cobj-img-resource-cache": [ + "commaseparatedvalueprocessor-fieldname": [ "TypoScript Explained", "main", - "ContentObjects\/ImgResource\/Index.html#cobj-img-resource-cache", - "Properties" + "DataProcessing\/CommaSeparatedValueProcessor.html#CommaSeparatedValueProcessor-fieldName", + "-" ], - "cobj-img-resource-file": [ + "commaseparatedvalueprocessor-as": [ "TypoScript Explained", "main", - "ContentObjects\/ImgResource\/Index.html#cobj-img-resource-file", - "Properties" + "DataProcessing\/CommaSeparatedValueProcessor.html#CommaSeparatedValueProcessor-as", + "-" ], - "cobj-img-resource-stdwrap": [ + "commaseparatedvalueprocessor-maximumcolumns": [ "TypoScript Explained", "main", - "ContentObjects\/ImgResource\/Index.html#cobj-img-resource-stdWrap", - "Properties" + "DataProcessing\/CommaSeparatedValueProcessor.html#CommaSeparatedValueProcessor-maximumColumns", + "-" ], - "cobject": [ + "commaseparatedvalueprocessor-fielddelimiter": [ "TypoScript Explained", "main", - "ContentObjects\/Index.html#cobject", - "Content Objects (cObject)" + "DataProcessing\/CommaSeparatedValueProcessor.html#CommaSeparatedValueProcessor-fieldDelimiter", + "-" ], - "data-type-cobject": [ + "commaseparatedvalueprocessor-fieldenclosure": [ "TypoScript Explained", "main", - "ContentObjects\/Index.html#data-type-cobject", - "Content Objects (cObject)" + "DataProcessing\/CommaSeparatedValueProcessor.html#CommaSeparatedValueProcessor-fieldEnclosure", + "-" ], - "cobj-load-register": [ + "commaseparatedvalueprocessor-examples": [ "TypoScript Explained", "main", - "ContentObjects\/LoadRegister\/Index.html#cobj-load-register", - "LOAD_REGISTER" + "DataProcessing\/CommaSeparatedValueProcessor.html#CommaSeparatedValueProcessor-examples", + "Example: Transforming comma separated content into a html table" ], - "cobj-load-register-properties": [ + "customdataprocessors": [ "TypoScript Explained", "main", - "ContentObjects\/LoadRegister\/Index.html#cobj-load-register-properties", - "Properties" + "DataProcessing\/CustomDataProcessors.html#CustomDataProcessors", + "Custom data processors" ], - "cobj-load-register-array": [ + "databasequeryprocessor": [ "TypoScript Explained", "main", - "ContentObjects\/LoadRegister\/Index.html#cobj-load-register-array", - "Properties" + "DataProcessing\/DatabaseQueryProcessor.html#DatabaseQueryProcessor", + "database-query data processor" ], - "cobj-load-register-examples": [ + "databasequeryprocessor-options": [ "TypoScript Explained", "main", - "ContentObjects\/LoadRegister\/Index.html#cobj-load-register-examples", - "Example:" + "DataProcessing\/DatabaseQueryProcessor.html#DatabaseQueryProcessor-options", + "Options:" ], - "cobj-pageview": [ + "databasequeryprocessor-if": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#cobj-pageview", - "PAGEVIEW" + "DataProcessing\/DatabaseQueryProcessor.html#DatabaseQueryProcessor-if", + "-" ], - "cobj-pageview-properties-example": [ + "databasequeryprocessor-table": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#cobj-pageview-properties-example", - "Example: Display a page with Fluid templates" + "DataProcessing\/DatabaseQueryProcessor.html#DatabaseQueryProcessor-table", + "-" ], - "cobj-pageview-data": [ + "databasequeryprocessor-as": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#cobj-pageview-data", - "Default variables in Fluid templates" + "DataProcessing\/DatabaseQueryProcessor.html#DatabaseQueryProcessor-as", + "-" ], - "cobj-pageview-data-example": [ + "databasequeryprocessor-dataprocessing": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#cobj-pageview-data-example", - "Examples for using default variables" + "DataProcessing\/DatabaseQueryProcessor.html#DatabaseQueryProcessor-dataProcessing", + "-" ], - "cobj-pageview-data-language-example": [ + "databasequeryprocessor-example-record-transformation": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#cobj-pageview-data-language-example", - "Example: Display the site title in the current language" + "DataProcessing\/DatabaseQueryProcessor.html#DatabaseQueryProcessor-example-record-transformation", + "Example: Usage in combination with the RecordTransformationProcessor" ], - "cobj-pageview-data-page-example": [ + "databasequeryprocessor-examples": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#cobj-pageview-data-page-example", - "Example: Display the title and abstract of the current page" + "DataProcessing\/DatabaseQueryProcessor.html#DatabaseQueryProcessor-examples", + "Example: Display haiku records" ], - "cobj-pageview-data-settings-example": [ + "filesprocessor": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#cobj-pageview-data-settings-example", - "Example: Use TypoScript constant in a Fluid template" + "DataProcessing\/FilesProcessor.html#FilesProcessor", + "files data processor" ], - "cobj-pageview-data-site-example": [ + "filesprocessor-options": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#cobj-pageview-data-site-example", - "Example: Link to the root page of the current site" + "DataProcessing\/FilesProcessor.html#FilesProcessor-options", + "Options:" ], - "cobj-pageview-properties": [ + "filesprocessor-if": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#cobj-pageview-properties", - "Properties" + "DataProcessing\/FilesProcessor.html#FilesProcessor-if", + "-" ], - "cobj-pageview-examples": [ + "filesprocessor-references": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#cobj-pageview-examples", - "Examples" + "DataProcessing\/FilesProcessor.html#FilesProcessor-references", + "-" ], - "cobj-pageview-dataprocessing-example": [ + "filesprocessor-references-fieldname": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#cobj-pageview-dataProcessing-example", - "Example: Display a main menu and a breadcrumb on the page" + "DataProcessing\/FilesProcessor.html#FilesProcessor-references-fieldName", + "-" ], - "cobj-pageview-paths-example": [ + "filesprocessor-references-table": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#cobj-pageview-paths-example", - "Example: Define a path that contains all templates" + "DataProcessing\/FilesProcessor.html#FilesProcessor-references-table", + "-" ], - "cobj-pageview-paths-example-extended": [ + "filesprocessor-files": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#cobj-pageview-paths-example-extended", - "Example: Define fallbacks for a template paths" + "DataProcessing\/FilesProcessor.html#FilesProcessor-files", + "-" ], - "cobj-pageview-variables-example": [ + "filesprocessor-collections": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#cobj-pageview-variables-example", - "Example: Make additional variables available in the Fluid template" + "DataProcessing\/FilesProcessor.html#FilesProcessor-collections", + "-" ], - "cobj-records-introduction": [ + "filesprocessor-folders": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#cobj-records-introduction", - "RECORDS" + "DataProcessing\/FilesProcessor.html#FilesProcessor-folders", + "-" ], - "cobj-records": [ + "filesprocessor-folders-recursive": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#cobj-records", - "RECORDS" + "DataProcessing\/FilesProcessor.html#FilesProcessor-folders-recursive", + "-" ], - "cobj-records-details": [ + "filesprocessor-sorting": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#cobj-records-details", - "Properties" + "DataProcessing\/FilesProcessor.html#FilesProcessor-sorting", + "-" ], - "cobj-records-properties": [ + "filesprocessor-sorting-direction": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#cobj-records-properties", - "Properties" + "DataProcessing\/FilesProcessor.html#FilesProcessor-sorting-direction", + "-" ], - "cobj-records-properties-source": [ + "filesprocessor-as": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#cobj-records-properties-source", - "Properties" + "DataProcessing\/FilesProcessor.html#FilesProcessor-as", + "-" ], - "cobj-records-properties-categories": [ + "filesprocessor-example-render-image": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#cobj-records-properties-categories", - "Properties" + "DataProcessing\/FilesProcessor.html#FilesProcessor-example-render-image", + "Example 1: Render the images stored in field image" ], - "cobj-records-categories-relation": [ + "filesprocessor-stdwrap-on-references": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#cobj-records-categories-relation", - "Properties" + "DataProcessing\/FilesProcessor.html#FilesProcessor-stdWrap-on-references", + "Example 2: use stdWrap property on references" ], - "cobj-records-properties-tables": [ + "filesprocessor-flexform": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#cobj-records-properties-tables", - "Properties" + "DataProcessing\/FilesProcessor.html#FilesProcessor-FlexForm", + "Example 3: files from a FlexForm" ], - "cobj-records-properties-conf": [ + "flexformprocessor": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#cobj-records-properties-conf", - "Properties" + "DataProcessing\/FlexFormProcessor.html#FlexFormProcessor", + "flex-form data processor" ], - "cobj-records-properties-dontcheckpid": [ + "flexformprocessor-options": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#cobj-records-properties-dontcheckpid", - "Properties" + "DataProcessing\/FlexFormProcessor.html#FlexFormProcessor-options", + "Options" ], - "cobj-records-properties-wrap": [ + "flexformprocessor-fieldname": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#cobj-records-properties-wrap", - "Properties" + "DataProcessing\/FlexFormProcessor.html#FlexFormProcessor-fieldname", + "-" ], - "cobj-records-properties-stdwrap": [ + "flexformprocessor-references": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#cobj-records-properties-stdwrap", - "Properties" + "DataProcessing\/FlexFormProcessor.html#FlexFormProcessor-references", + "-" ], - "cobj-records-properties-cache": [ + "flexformprocessor-as": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#cobj-records-properties-cache", - "Properties" + "DataProcessing\/FlexFormProcessor.html#FlexFormProcessor-as", + "-" ], - "cobj-records-examples": [ + "flexformprocessor-examples": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#cobj-records-examples", + "DataProcessing\/FlexFormProcessor.html#FlexFormProcessor-examples", "Examples" ], - "cobj-records-examples-source": [ - "TypoScript Explained", - "main", - "ContentObjects\/Records\/Index.html#cobj-records-examples-source", - "Selection with source" - ], - "cobj-records-examples-source-ii": [ - "TypoScript Explained", - "main", - "ContentObjects\/Records\/Index.html#cobj-records-examples-source-ii", - "Selection with source II" - ], - "cobj-records-examples-categories": [ - "TypoScript Explained", - "main", - "ContentObjects\/Records\/Index.html#cobj-records-examples-categories", - "Selection with categories" - ], - "cobj-restore-register": [ - "TypoScript Explained", - "main", - "ContentObjects\/RestoreRegister\/Index.html#cobj-restore-register", - "RESTORE_REGISTER" - ], - "cobj-restore-register-examples": [ - "TypoScript Explained", - "main", - "ContentObjects\/RestoreRegister\/Index.html#cobj-restore-register-examples", - "Example:" - ], - "cobj-svg": [ - "TypoScript Explained", - "main", - "ContentObjects\/Svg\/Index.html#cobj-svg", - "SVG" - ], - "cobj-svg-properties": [ - "TypoScript Explained", - "main", - "ContentObjects\/Svg\/Index.html#cobj-svg-properties", - "Properties" - ], - "cobj-svg-cache": [ - "TypoScript Explained", - "main", - "ContentObjects\/Svg\/Index.html#cobj-svg-cache", - "Properties" - ], - "cobj-svg-width": [ - "TypoScript Explained", - "main", - "ContentObjects\/Svg\/Index.html#cobj-svg-width", - "Properties" - ], - "cobj-svg-height": [ - "TypoScript Explained", - "main", - "ContentObjects\/Svg\/Index.html#cobj-svg-height", - "Properties" - ], - "cobj-svg-src": [ - "TypoScript Explained", - "main", - "ContentObjects\/Svg\/Index.html#cobj-svg-src", - "Properties" - ], - "cobj-svg-rendermode": [ - "TypoScript Explained", - "main", - "ContentObjects\/Svg\/Index.html#cobj-svg-renderMode", - "Properties" - ], - "cobj-svg-stdwrap": [ - "TypoScript Explained", - "main", - "ContentObjects\/Svg\/Index.html#cobj-svg-stdWrap", - "Properties" - ], - "cobj-svg-examples": [ - "TypoScript Explained", - "main", - "ContentObjects\/Svg\/Index.html#cobj-svg-examples", - "Example" - ], - "cobj-text": [ + "flexformprocessor-example-minimal": [ "TypoScript Explained", "main", - "ContentObjects\/Text\/Index.html#cobj-text", - "TEXT" + "DataProcessing\/FlexFormProcessor.html#FlexFormProcessor-example-minimal", + "Example of a minimal TypoScript configuration" ], - "cobj-text-properties": [ + "flexformprocessor-example-advanced": [ "TypoScript Explained", "main", - "ContentObjects\/Text\/Index.html#cobj-text-properties", - "Properties" + "DataProcessing\/FlexFormProcessor.html#FlexFormProcessor-example-advanced", + "Example of an advanced TypoScript configuration" ], - "cobj-text-value": [ + "flexformprocessor-example-sub-processor": [ "TypoScript Explained", "main", - "ContentObjects\/Text\/Index.html#cobj-text-value", - "Properties" + "DataProcessing\/FlexFormProcessor.html#FlexFormProcessor-example-sub-processor", + "Example with a custom sub-processor" ], - "cobj-text-stdwrap": [ + "flexformprocessor-resolving-fal": [ "TypoScript Explained", "main", - "ContentObjects\/Text\/Index.html#cobj-text-stdWrap", - "Properties" + "DataProcessing\/FlexFormProcessor.html#FlexFormProcessor-resolving-fal", + "Example of resolving FAL references" ], - "cobj-text-cache": [ + "galleryprocessor": [ "TypoScript Explained", "main", - "ContentObjects\/Text\/Index.html#cobj-text-cache", - "Properties" + "DataProcessing\/GalleryProcessor.html#GalleryProcessor", + "gallery data processor" ], - "cobj-text-examples": [ + "galleryprocessor-options": [ "TypoScript Explained", "main", - "ContentObjects\/Text\/Index.html#cobj-text-examples", - "Examples" + "DataProcessing\/GalleryProcessor.html#GalleryProcessor-options", + "Options:" ], - "cobj-user-int": [ + "galleryprocessor-if": [ "TypoScript Explained", "main", - "ContentObjects\/UserAndUserInt\/Index.html#cobj-user-int", - "USER and USER_INT" + "DataProcessing\/GalleryProcessor.html#GalleryProcessor-if", + "-" ], - "cobj-user": [ + "galleryprocessor-filesprocesseddatakey": [ "TypoScript Explained", "main", - "ContentObjects\/UserAndUserInt\/Index.html#cobj-user", - "USER and USER_INT" + "DataProcessing\/GalleryProcessor.html#GalleryProcessor-filesProcessedDataKey", + "-" ], - "cobj-user-properties": [ + "galleryprocessor-numberofcolumns": [ "TypoScript Explained", "main", - "ContentObjects\/UserAndUserInt\/Index.html#cobj-user-properties", - "Properties" + "DataProcessing\/GalleryProcessor.html#GalleryProcessor-numberOfColumns", + "-" ], - "cobj-user-userfunc": [ + "galleryprocessor-mediaorientation": [ "TypoScript Explained", "main", - "ContentObjects\/UserAndUserInt\/Index.html#cobj-user-userFunc", - "Properties" + "DataProcessing\/GalleryProcessor.html#GalleryProcessor-mediaOrientation", + "-" ], - "cobj-user-defined-properties": [ + "galleryprocessor-maxgallerywidth": [ "TypoScript Explained", "main", - "ContentObjects\/UserAndUserInt\/Index.html#cobj-user-defined-properties", - "Properties" + "DataProcessing\/GalleryProcessor.html#GalleryProcessor-maxGalleryWidth", + "-" ], - "cobj-user-stdwrap": [ + "galleryprocessor-maxgallerywidthintext": [ "TypoScript Explained", "main", - "ContentObjects\/UserAndUserInt\/Index.html#cobj-user-stdWrap", - "Properties" + "DataProcessing\/GalleryProcessor.html#GalleryProcessor-maxGalleryWidthInText", + "-" ], - "cobj-user-cache": [ + "galleryprocessor-equalmediaheight": [ "TypoScript Explained", "main", - "ContentObjects\/UserAndUserInt\/Index.html#cobj-user-cache", - "Properties" + "DataProcessing\/GalleryProcessor.html#GalleryProcessor-equalMediaHeight", + "-" ], - "cobj-user-int-examples": [ + "galleryprocessor-equalmediawidth": [ "TypoScript Explained", "main", - "ContentObjects\/UserAndUserInt\/Index.html#cobj-user-int-examples", - "Examples" + "DataProcessing\/GalleryProcessor.html#GalleryProcessor-equalMediaWidth", + "-" ], - "cobj-user-examples": [ + "galleryprocessor-columnspacing": [ "TypoScript Explained", "main", - "ContentObjects\/UserAndUserInt\/Index.html#cobj-user-examples", - "Examples" + "DataProcessing\/GalleryProcessor.html#GalleryProcessor-columnSpacing", + "-" ], - "commaseparatedvalueprocessor": [ + "galleryprocessor-borderenabled": [ "TypoScript Explained", "main", - "DataProcessing\/CommaSeparatedValueProcessor.html#CommaSeparatedValueProcessor", - "comma-separated-value data processor" + "DataProcessing\/GalleryProcessor.html#GalleryProcessor-borderEnabled", + "-" ], - "commaseparatedvalueprocessor-options": [ + "galleryprocessor-borderwidth": [ "TypoScript Explained", "main", - "DataProcessing\/CommaSeparatedValueProcessor.html#CommaSeparatedValueProcessor-options", - "Options:" + "DataProcessing\/GalleryProcessor.html#GalleryProcessor-borderWidth", + "-" ], - "commaseparatedvalueprocessor-if": [ + "galleryprocessor-borderpadding": [ "TypoScript Explained", "main", - "DataProcessing\/CommaSeparatedValueProcessor.html#CommaSeparatedValueProcessor-if", + "DataProcessing\/GalleryProcessor.html#GalleryProcessor-borderPadding", "-" ], - "commaseparatedvalueprocessor-fieldname": [ + "galleryprocessor-cropvariant": [ "TypoScript Explained", "main", - "DataProcessing\/CommaSeparatedValueProcessor.html#CommaSeparatedValueProcessor-fieldName", + "DataProcessing\/GalleryProcessor.html#GalleryProcessor-cropVariant", "-" ], - "commaseparatedvalueprocessor-as": [ + "galleryprocessor-as": [ "TypoScript Explained", "main", - "DataProcessing\/CommaSeparatedValueProcessor.html#CommaSeparatedValueProcessor-as", + "DataProcessing\/GalleryProcessor.html#GalleryProcessor-as", "-" ], - "commaseparatedvalueprocessor-maximumcolumns": [ + "galleryprocessor-dataprocessing": [ "TypoScript Explained", "main", - "DataProcessing\/CommaSeparatedValueProcessor.html#CommaSeparatedValueProcessor-maximumColumns", + "DataProcessing\/GalleryProcessor.html#GalleryProcessor-dataProcessing", "-" ], - "commaseparatedvalueprocessor-fielddelimiter": [ + "galleryprocessor-example-rows-columns": [ "TypoScript Explained", "main", - "DataProcessing\/CommaSeparatedValueProcessor.html#CommaSeparatedValueProcessor-fieldDelimiter", - "-" + "DataProcessing\/GalleryProcessor.html#GalleryProcessor-example-rows-columns", + "Example: display images in rows and columns" ], - "commaseparatedvalueprocessor-fieldenclosure": [ + "dataprocessing": [ "TypoScript Explained", "main", - "DataProcessing\/CommaSeparatedValueProcessor.html#CommaSeparatedValueProcessor-fieldEnclosure", - "-" + "DataProcessing\/Index.html#dataProcessing", + "Data processors" ], - "commaseparatedvalueprocessor-examples": [ + "cobj-fluidtemplate-properties-dataprocessing": [ "TypoScript Explained", "main", - "DataProcessing\/CommaSeparatedValueProcessor.html#CommaSeparatedValueProcessor-examples", - "Example: Transforming comma separated content into a html table" + "DataProcessing\/Index.html#cobj-fluidtemplate-properties-dataprocessing", + "Data processors" ], - "customdataprocessors": [ + "dataprocessing-about-examples": [ "TypoScript Explained", "main", - "DataProcessing\/CustomDataProcessors.html#CustomDataProcessors", - "Custom data processors" + "DataProcessing\/Index.html#dataProcessing-about-examples", + "About the examples" ], - "databasequeryprocessor": [ + "languagemenuprocessor": [ "TypoScript Explained", "main", - "DataProcessing\/DatabaseQueryProcessor.html#DatabaseQueryProcessor", - "database-query data processor" + "DataProcessing\/LanguageMenuProcessor.html#LanguageMenuProcessor", + "language-menu data processor" ], - "databasequeryprocessor-options": [ + "languagemenuprocessor-options": [ "TypoScript Explained", "main", - "DataProcessing\/DatabaseQueryProcessor.html#DatabaseQueryProcessor-options", + "DataProcessing\/LanguageMenuProcessor.html#LanguageMenuProcessor-options", "Options:" ], - "databasequeryprocessor-if": [ + "languagemenuprocessor-if": [ "TypoScript Explained", "main", - "DataProcessing\/DatabaseQueryProcessor.html#DatabaseQueryProcessor-if", + "DataProcessing\/LanguageMenuProcessor.html#LanguageMenuProcessor-if", "-" ], - "databasequeryprocessor-table": [ + "languagemenuprocessor-languages": [ "TypoScript Explained", "main", - "DataProcessing\/DatabaseQueryProcessor.html#DatabaseQueryProcessor-table", + "DataProcessing\/LanguageMenuProcessor.html#LanguageMenuProcessor-languages", "-" ], - "databasequeryprocessor-as": [ + "languagemenuprocessor-addquerystring-exclude": [ "TypoScript Explained", "main", - "DataProcessing\/DatabaseQueryProcessor.html#DatabaseQueryProcessor-as", + "DataProcessing\/LanguageMenuProcessor.html#LanguageMenuProcessor-addQueryString-exclude", "-" ], - "databasequeryprocessor-dataprocessing": [ + "languagemenuprocessor-as": [ "TypoScript Explained", "main", - "DataProcessing\/DatabaseQueryProcessor.html#DatabaseQueryProcessor-dataProcessing", + "DataProcessing\/LanguageMenuProcessor.html#LanguageMenuProcessor-as", "-" ], - "databasequeryprocessor-example-record-transformation": [ + "languagemenuprocessor-example": [ "TypoScript Explained", "main", - "DataProcessing\/DatabaseQueryProcessor.html#DatabaseQueryProcessor-example-record-transformation", - "Example: Usage in combination with the RecordTransformationProcessor" + "DataProcessing\/LanguageMenuProcessor.html#LanguageMenuProcessor-example", + "Example: Menu of all language from site configuration" ], - "databasequeryprocessor-examples": [ + "menuprocessor-special-browse": [ "TypoScript Explained", "main", - "DataProcessing\/DatabaseQueryProcessor.html#DatabaseQueryProcessor-examples", - "Example: Display haiku records" + "DataProcessing\/MenuProcessor\/Browse.html#MenuProcessor-special-browse", + "Browse navigation - previous and next links" ], - "filesprocessor": [ + "hmenu-special-browse": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#FilesProcessor", - "files data processor" + "DataProcessing\/MenuProcessor\/Browse.html#hmenu-special-browse", + "Browse navigation - previous and next links" ], - "filesprocessor-options": [ + "menuprocessor-special-browse-properties": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#FilesProcessor-options", - "Options:" + "DataProcessing\/MenuProcessor\/Browse.html#MenuProcessor-special-browse-properties", + "Properties" ], - "filesprocessor-if": [ + "menuprocessor-special-browse-example": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#FilesProcessor-if", - "-" + "DataProcessing\/MenuProcessor\/Browse.html#MenuProcessor-special-browse-example", + "Example: Display a browse navigation" ], - "filesprocessor-references": [ + "hmenu-special-categories": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#FilesProcessor-references", - "-" + "DataProcessing\/MenuProcessor\/Categories.html#hmenu-special-categories", + "Categories" ], - "filesprocessor-references-fieldname": [ + "hmenu-special-categories-properties": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#FilesProcessor-references-fieldName", - "-" + "DataProcessing\/MenuProcessor\/Categories.html#hmenu-special-categories-properties", + "Properties" ], - "filesprocessor-references-table": [ + "hmenu-special-categories-value": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#FilesProcessor-references-table", - "-" + "DataProcessing\/MenuProcessor\/Categories.html#hmenu-special-categories-value", + "Properties" ], - "filesprocessor-files": [ + "hmenu-special-categories-relation": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#FilesProcessor-files", - "-" + "DataProcessing\/MenuProcessor\/Categories.html#hmenu-special-categories-relation", + "Properties" ], - "filesprocessor-collections": [ + "hmenu-special-categories-sorting": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#FilesProcessor-collections", - "-" + "DataProcessing\/MenuProcessor\/Categories.html#hmenu-special-categories-sorting", + "Properties" ], - "filesprocessor-folders": [ + "hmenu-special-categories-order": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#FilesProcessor-folders", - "-" + "DataProcessing\/MenuProcessor\/Categories.html#hmenu-special-categories-order", + "Properties" ], - "filesprocessor-folders-recursive": [ + "hmenu-special-categories-examples": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#FilesProcessor-folders-recursive", - "-" + "DataProcessing\/MenuProcessor\/Categories.html#hmenu-special-categories-examples", + "Examples" ], - "filesprocessor-sorting": [ + "hmenu-special-categories-example": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#FilesProcessor-sorting", - "-" + "DataProcessing\/MenuProcessor\/Categories.html#hmenu-special-categories-example", + "Example: Menu of pages in a certain category" ], - "filesprocessor-sorting-direction": [ + "hmenu-special-categories-value-example": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#FilesProcessor-sorting-direction", - "-" + "DataProcessing\/MenuProcessor\/Categories.html#hmenu-special-categories-value-example", + "Example: List pages in categories with UID 1 and 2" ], - "filesprocessor-as": [ + "hmenu-special-directory": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#FilesProcessor-as", - "-" + "DataProcessing\/MenuProcessor\/Directory.html#hmenu-special-directory", + "Directory menu - menu of subpages" ], - "filesprocessor-example-render-image": [ + "hmenu-special-directory-properties": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#FilesProcessor-example-render-image", - "Example 1: Render the images stored in field image" + "DataProcessing\/MenuProcessor\/Directory.html#hmenu-special-directory-properties", + "Properties" ], - "filesprocessor-stdwrap-on-references": [ + "hmenu-special-directory-value": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#FilesProcessor-stdWrap-on-references", - "Example 2: use stdWrap property on references" + "DataProcessing\/MenuProcessor\/Directory.html#hmenu-special-directory-value", + "Properties" ], - "filesprocessor-flexform": [ + "hmenu-special-directory-example": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#FilesProcessor-FlexForm", - "Example 3: files from a FlexForm" + "DataProcessing\/MenuProcessor\/Directory.html#hmenu-special-directory-example", + "Example: Menu of all subpages" ], - "flexformprocessor": [ + "menuprocessor": [ "TypoScript Explained", "main", - "DataProcessing\/FlexFormProcessor.html#FlexFormProcessor", - "flex-form data processor" + "DataProcessing\/MenuProcessor\/Index.html#MenuProcessor", + "menu data processor" ], - "flexformprocessor-options": [ + "menuprocessor-options": [ "TypoScript Explained", "main", - "DataProcessing\/FlexFormProcessor.html#FlexFormProcessor-options", + "DataProcessing\/MenuProcessor\/Index.html#MenuProcessor-options", "Options" ], - "flexformprocessor-fieldname": [ + "menuprocessor-as": [ "TypoScript Explained", "main", - "DataProcessing\/FlexFormProcessor.html#FlexFormProcessor-fieldname", + "DataProcessing\/MenuProcessor\/Index.html#MenuProcessor-as", "-" ], - "flexformprocessor-references": [ + "menuprocessor-expandall": [ "TypoScript Explained", "main", - "DataProcessing\/FlexFormProcessor.html#FlexFormProcessor-references", + "DataProcessing\/MenuProcessor\/Index.html#MenuProcessor-expandAll", "-" ], - "flexformprocessor-as": [ + "menuprocessor-levels": [ "TypoScript Explained", "main", - "DataProcessing\/FlexFormProcessor.html#FlexFormProcessor-as", + "DataProcessing\/MenuProcessor\/Index.html#MenuProcessor-levels", "-" ], - "flexformprocessor-examples": [ + "menuprocessor-includespacer": [ "TypoScript Explained", "main", - "DataProcessing\/FlexFormProcessor.html#FlexFormProcessor-examples", - "Examples" + "DataProcessing\/MenuProcessor\/Index.html#MenuProcessor-includeSpacer", + "-" ], - "flexformprocessor-example-minimal": [ + "menuprocessor-titlefield": [ "TypoScript Explained", "main", - "DataProcessing\/FlexFormProcessor.html#FlexFormProcessor-example-minimal", - "Example of a minimal TypoScript configuration" + "DataProcessing\/MenuProcessor\/Index.html#MenuProcessor-titleField", + "-" ], - "flexformprocessor-example-advanced": [ + "menuprocessor-special": [ "TypoScript Explained", "main", - "DataProcessing\/FlexFormProcessor.html#FlexFormProcessor-example-advanced", - "Example of an advanced TypoScript configuration" + "DataProcessing\/MenuProcessor\/Index.html#MenuProcessor-special", + "Special menu types" ], - "flexformprocessor-example-sub-processor": [ + "menuprocessor-example-two-levels": [ "TypoScript Explained", "main", - "DataProcessing\/FlexFormProcessor.html#FlexFormProcessor-example-sub-processor", - "Example with a custom sub-processor" + "DataProcessing\/MenuProcessor\/Index.html#MenuProcessor-example-two-levels", + "Example: Two level menu of the web page" ], - "flexformprocessor-resolving-fal": [ + "hmenu-special-keywords": [ "TypoScript Explained", "main", - "DataProcessing\/FlexFormProcessor.html#FlexFormProcessor-resolving-fal", - "Example of resolving FAL references" + "DataProcessing\/MenuProcessor\/Keywords.html#hmenu-special-keywords", + "Keywords - menu of related pages" ], - "galleryprocessor": [ + "hmenu-special-keywords-properties": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#GalleryProcessor", - "gallery data processor" + "DataProcessing\/MenuProcessor\/Keywords.html#hmenu-special-keywords-properties", + "Properties" ], - "galleryprocessor-options": [ + "hmenu-special-keywords-value": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#GalleryProcessor-options", - "Options:" + "DataProcessing\/MenuProcessor\/Keywords.html#hmenu-special-keywords-value", + "Properties" ], - "galleryprocessor-if": [ + "hmenu-special-keywords-mode": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#GalleryProcessor-if", - "-" + "DataProcessing\/MenuProcessor\/Keywords.html#hmenu-special-keywords-mode", + "Properties" ], - "galleryprocessor-filesprocesseddatakey": [ + "hmenu-special-keywords-entrylevel": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#GalleryProcessor-filesProcessedDataKey", - "-" + "DataProcessing\/MenuProcessor\/Keywords.html#hmenu-special-keywords-entrylevel", + "Properties" ], - "galleryprocessor-numberofcolumns": [ + "hmenu-special-keywords-depth": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#GalleryProcessor-numberOfColumns", - "-" + "DataProcessing\/MenuProcessor\/Keywords.html#hmenu-special-keywords-depth", + "Properties" ], - "galleryprocessor-mediaorientation": [ + "hmenu-special-keywords-limit": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#GalleryProcessor-mediaOrientation", - "-" + "DataProcessing\/MenuProcessor\/Keywords.html#hmenu-special-keywords-limit", + "Properties" ], - "galleryprocessor-maxgallerywidth": [ + "hmenu-special-keywords-excludenosearchpages": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#GalleryProcessor-maxGalleryWidth", - "-" + "DataProcessing\/MenuProcessor\/Keywords.html#hmenu-special-keywords-excludenosearchpages", + "Properties" ], - "galleryprocessor-maxgallerywidthintext": [ + "hmenu-special-keywords-begin": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#GalleryProcessor-maxGalleryWidthInText", - "-" + "DataProcessing\/MenuProcessor\/Keywords.html#hmenu-special-keywords-begin", + "Properties" ], - "galleryprocessor-equalmediaheight": [ + "hmenu-special-keywords-setkeywords": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#GalleryProcessor-equalMediaHeight", - "-" + "DataProcessing\/MenuProcessor\/Keywords.html#hmenu-special-keywords-setkeywords", + "Properties" ], - "galleryprocessor-equalmediawidth": [ + "hmenu-special-keywords-keywordsfield": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#GalleryProcessor-equalMediaWidth", - "-" + "DataProcessing\/MenuProcessor\/Keywords.html#hmenu-special-keywords-keywordsfield", + "Properties" ], - "galleryprocessor-columnspacing": [ + "hmenu-special-keywords-sourcefield": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#GalleryProcessor-columnSpacing", - "-" + "DataProcessing\/MenuProcessor\/Keywords.html#hmenu-special-keywords-sourcefield", + "Properties" ], - "galleryprocessor-borderenabled": [ + "hmenu-special-keywords-examples": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#GalleryProcessor-borderEnabled", - "-" + "DataProcessing\/MenuProcessor\/Keywords.html#hmenu-special-keywords-examples", + "Examples" ], - "galleryprocessor-borderwidth": [ + "hmenu-special-keywords-example-related": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#GalleryProcessor-borderWidth", - "-" + "DataProcessing\/MenuProcessor\/Keywords.html#hmenu-special-keywords-example-related", + "Example: Menu of related pages" ], - "galleryprocessor-borderpadding": [ + "hmenu-special-keywords-value-example": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#GalleryProcessor-borderPadding", - "-" + "DataProcessing\/MenuProcessor\/Keywords.html#hmenu-special-keywords-value-example", + "Example: Find related pages of the current page" ], - "galleryprocessor-cropvariant": [ + "hmenu-special-language": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#GalleryProcessor-cropVariant", - "-" + "DataProcessing\/MenuProcessor\/Language.html#hmenu-special-language", + "Pure TypoScript language menu (For backward compatibility)" ], - "galleryprocessor-as": [ + "hmenu-special-list": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#GalleryProcessor-as", - "-" + "DataProcessing\/MenuProcessor\/List.html#hmenu-special-list", + "List menu" + ], + "hmenu-special-list-properties": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/List.html#hmenu-special-list-properties", + "Properties" + ], + "hmenu-special-list-value": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/List.html#hmenu-special-list-value", + "Properties" + ], + "hmenu-special-rootline": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Rootline.html#hmenu-special-rootline", + "Rootline - breadcrumb menu" + ], + "hmenu-special-rootline-properties": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Rootline.html#hmenu-special-rootline-properties", + "Properties" ], - "galleryprocessor-dataprocessing": [ + "hmenu-special-rootline-range": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#GalleryProcessor-dataProcessing", - "-" + "DataProcessing\/MenuProcessor\/Rootline.html#hmenu-special-rootline-range", + "Properties" ], - "galleryprocessor-example-rows-columns": [ + "hmenu-special-rootline-reverseorder": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#GalleryProcessor-example-rows-columns", - "Example: display images in rows and columns" + "DataProcessing\/MenuProcessor\/Rootline.html#hmenu-special-rootline-reverseorder", + "Properties" ], - "dataprocessing": [ + "hmenu-special-rootline-targets": [ "TypoScript Explained", "main", - "DataProcessing\/Index.html#dataProcessing", - "Data processors" + "DataProcessing\/MenuProcessor\/Rootline.html#hmenu-special-rootline-targets", + "Properties" ], - "cobj-fluidtemplate-properties-dataprocessing": [ + "hmenu-special-rootline-examples": [ "TypoScript Explained", "main", - "DataProcessing\/Index.html#cobj-fluidtemplate-properties-dataprocessing", - "Data processors" + "DataProcessing\/MenuProcessor\/Rootline.html#hmenu-special-rootline-examples", + "Examples" ], - "dataprocessing-about-examples": [ + "hmenu-special-rootline-breadcrumb": [ "TypoScript Explained", "main", - "DataProcessing\/Index.html#dataProcessing-about-examples", - "About the examples" + "DataProcessing\/MenuProcessor\/Rootline.html#hmenu-special-rootline-breadcrumb", + "Breadcrumb styled with Fluid" ], - "languagemenuprocessor": [ + "hmenu-special-rootline-breadcrumb-pure": [ "TypoScript Explained", "main", - "DataProcessing\/LanguageMenuProcessor.html#LanguageMenuProcessor", - "language-menu data processor" + "DataProcessing\/MenuProcessor\/Rootline.html#hmenu-special-rootline-breadcrumb-pure", + "Breadcrumb with pure TypoScript" ], - "languagemenuprocessor-options": [ + "hmenu-special-rootline-range-example": [ "TypoScript Explained", "main", - "DataProcessing\/LanguageMenuProcessor.html#LanguageMenuProcessor-options", - "Options:" + "DataProcessing\/MenuProcessor\/Rootline.html#hmenu-special-rootline-range-example", + "Example: Skip the current page" ], - "languagemenuprocessor-if": [ + "hmenu-special-rootline-targets-example": [ "TypoScript Explained", "main", - "DataProcessing\/LanguageMenuProcessor.html#LanguageMenuProcessor-if", - "-" + "DataProcessing\/MenuProcessor\/Rootline.html#hmenu-special-rootline-targets-example", + "Example: Set targets for levels" ], - "languagemenuprocessor-languages": [ + "hmenu-special-updated": [ "TypoScript Explained", "main", - "DataProcessing\/LanguageMenuProcessor.html#LanguageMenuProcessor-languages", - "-" + "DataProcessing\/MenuProcessor\/Updated.html#hmenu-special-updated", + "Updated HMENU" ], - "languagemenuprocessor-addquerystring-exclude": [ + "hmenu-special-updated-properties": [ "TypoScript Explained", "main", - "DataProcessing\/LanguageMenuProcessor.html#LanguageMenuProcessor-addQueryString-exclude", - "-" + "DataProcessing\/MenuProcessor\/Updated.html#hmenu-special-updated-properties", + "Properties" ], - "languagemenuprocessor-as": [ + "hmenu-special-updated-value": [ "TypoScript Explained", "main", - "DataProcessing\/LanguageMenuProcessor.html#LanguageMenuProcessor-as", - "-" + "DataProcessing\/MenuProcessor\/Updated.html#hmenu-special-updated-value", + "Properties" ], - "languagemenuprocessor-example": [ + "hmenu-special-updated-mode": [ "TypoScript Explained", "main", - "DataProcessing\/LanguageMenuProcessor.html#LanguageMenuProcessor-example", - "Example: Menu of all language from site configuration" + "DataProcessing\/MenuProcessor\/Updated.html#hmenu-special-updated-mode", + "Properties" ], - "menuprocessor": [ + "hmenu-special-updated-depth": [ "TypoScript Explained", "main", - "DataProcessing\/MenuProcessor.html#MenuProcessor", - "menu data processor" + "DataProcessing\/MenuProcessor\/Updated.html#hmenu-special-updated-depth", + "Properties" ], - "menuprocessor-options": [ + "hmenu-special-updated-beginatlevel": [ "TypoScript Explained", "main", - "DataProcessing\/MenuProcessor.html#MenuProcessor-options", - "Options" + "DataProcessing\/MenuProcessor\/Updated.html#hmenu-special-updated-beginatlevel", + "Properties" ], - "menuprocessor-levels": [ + "hmenu-special-updated-maxage": [ "TypoScript Explained", "main", - "DataProcessing\/MenuProcessor.html#MenuProcessor-levels", - "-" + "DataProcessing\/MenuProcessor\/Updated.html#hmenu-special-updated-maxage", + "Properties" ], - "menuprocessor-expandall": [ + "hmenu-special-updated-limit": [ "TypoScript Explained", "main", - "DataProcessing\/MenuProcessor.html#MenuProcessor-expandAll", - "-" + "DataProcessing\/MenuProcessor\/Updated.html#hmenu-special-updated-limit", + "Properties" ], - "menuprocessor-includespacer": [ + "hmenu-special-updated-excludenosearchpages": [ "TypoScript Explained", "main", - "DataProcessing\/MenuProcessor.html#MenuProcessor-includeSpacer", - "-" + "DataProcessing\/MenuProcessor\/Updated.html#hmenu-special-updated-excludenosearchpages", + "Properties" ], - "menuprocessor-titlefield": [ + "hmenu-special-updated-examples": [ "TypoScript Explained", "main", - "DataProcessing\/MenuProcessor.html#MenuProcessor-titleField", - "-" + "DataProcessing\/MenuProcessor\/Updated.html#hmenu-special-updated-examples", + "Example: Recently updated pages styled with Fluid" ], - "menuprocessor-as": [ + "hmenu-special-userfunction-examples": [ "TypoScript Explained", "main", - "DataProcessing\/MenuProcessor.html#MenuProcessor-as", - "-" + "DataProcessing\/MenuProcessor\/Userfunction.html#hmenu-special-userfunction-examples", + "Userfunction menu (For backward compability)" ], - "menuprocessor-example-two-levels": [ + "hmenu-special-userfunction": [ "TypoScript Explained", "main", - "DataProcessing\/MenuProcessor.html#MenuProcessor-example-two-levels", - "Example: Two level menu of the web page" + "DataProcessing\/MenuProcessor\/Userfunction.html#hmenu-special-userfunction", + "Userfunction menu (For backward compability)" ], "pagecontentfetchingprocessor": [ "TypoScript Explained", @@ -3914,6 +3836,12 @@ "DataProcessing\/PageContentFetchingProcessor.html#PageContentFetchingProcessor-example", "Example: Use the page-content data processor to display the content" ], + "pagecontentfetchingprocessor-aftercontenthasbeenfetchedevent": [ + "TypoScript Explained", + "main", + "DataProcessing\/PageContentFetchingProcessor.html#PageContentFetchingProcessor-AfterContentHasBeenFetchedEvent", + "Modify the result via AfterContentHasBeenFetchedEvent" + ], "recordtransformationprocessor": [ "TypoScript Explained", "main", @@ -5892,61 +5820,61 @@ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-setContentToCurrent", - "setContentToCurrent" + "-" ], "stdwrap-addpagecachetags": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-addpagecachetags", - "addPageCacheTags" + "-" ], "stdwrap-setcurrent": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-setCurrent", - "setCurrent" + "-" ], "stdwrap-lang": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-lang", - "lang" + "-" ], "stdwrap-data": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-data", - "data" + "-" ], "stdwrap-field": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-field", - "field" + "-" ], "stdwrap-current": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-current", - "current" + "-" ], "stdwrap-cobject": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-cObject", - "cObject" + "-" ], "stdwrap-numrows": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-numRows", - "numRows" + "-" ], "stdwrap-preuserfunc": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-preUserFunc", - "preUserFunc" + "-" ], "stdwrap-override-conditions": [ "TypoScript Explained", @@ -5958,79 +5886,79 @@ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-override", - "override" + "-" ], "stdwrap-preifemptylistnum": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-preIfEmptyListNum", - "preIfEmptyListNum" + "-" ], "stdwrap-ifnull": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-ifNull", - "ifNull" + "-" ], "stdwrap-ifempty": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-ifEmpty", - "ifEmpty" + "-" ], "stdwrap-ifblank": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-ifBlank", - "ifBlank" + "-" ], "stdwrap-listnum": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-listNum", - "listNum" + "-" ], "stdwrap-listnum-splitchar": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-listNum-splitChar", - "listNum.splitChar" + "-" ], "stdwrap-trim": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-trim", - "trim" + "-" ], "stdwrap-strpad": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-strPad", - "strPad" + "-" ], "stdwrap-stdwrap": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-stdWrap", - "stdWrap" + "-" ], "stdwrap-required": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-required", - "required" + "-" ], "stdwrap-if": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-if", - "if" + "-" ], "stdwrap-fieldrequired": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-fieldRequired", - "fieldRequired" + "-" ], "stdwrap-properties-parsing": [ "TypoScript Explained", @@ -6042,349 +5970,367 @@ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-csConv", - "csConv" + "-" ], "stdwrap-parsefunc": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-parseFunc", - "parseFunc" + "-" ], "stdwrap-parsefunc-sanitization": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-parseFunc-sanitization", - "Sanitization" + "-" ], "stdwrap-htmlparser": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-htmlparser", - "HTMLparser" + "-" ], "stdwrap-split": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-split", - "split" + "-" ], "stdwrap-replacement": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-replacement", - "replacement" + "-" ], "stdwrap-prioricalc": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-prioriCalc", - "prioriCalc" + "-" ], "stdwrap-char": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-char", - "char" + "-" ], "stdwrap-intval": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-intval", - "intval" + "-" ], "stdwrap-hash": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-hash", - "hash" + "-" ], "stdwrap-round": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-round", - "round" + "-" ], "stdwrap-numberformat": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-numberFormat", - "numberFormat" + "-" ], "stdwrap-date": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-date", - "date" + "-" ], "stdwrap-strtotime": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-strtotime", - "strtotime" + "-" ], - "stdwrap-strftime": [ + "data-type-strftime-conf": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-strftime", - "strftime" + "Functions\/Stdwrap.html#data-type-strftime-conf", + "-" ], - "data-type-strftime-conf": [ + "stdwrap-strftime": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#data-type-strftime-conf", - "strftime" + "Functions\/Stdwrap.html#stdwrap-strftime", + "-" ], "stdwrap-formatteddate": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-formattedDate", - "formattedDate" + "-" ], "stdwrap-age": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-age", - "age" + "-" ], - "stdwrap-case": [ + "data-type-case": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-case", - "case" + "Functions\/Stdwrap.html#data-type-case", + "-" ], - "data-type-case": [ + "stdwrap-case": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#data-type-case", - "case" + "Functions\/Stdwrap.html#stdwrap-case", + "-" ], "stdwrap-bytes": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-bytes", - "bytes" + "-" ], "stdwrap-substring": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-substring", - "substring" + "-" ], "stdwrap-crophtml": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-cropHTML", - "cropHTML" + "-" ], "stdwrap-striphtml": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-stripHtml", - "stripHtml" + "-" ], "stdwrap-crop": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-crop", - "crop" + "-" ], "stdwrap-rawurlencode": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-rawUrlEncode", - "rawUrlEncode" + "-" ], "stdwrap-htmlspecialchars": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-htmlSpecialChars", - "htmlSpecialChars" + "-" ], "stdwrap-encodeforjavascriptvalue": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-encodeForJavaScriptValue", - "encodeForJavaScriptValue" + "-" ], "stdwrap-doublebrtag": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-doubleBrTag", - "doubleBrTag" + "-" ], "stdwrap-br": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-br", - "br" + "-" ], "stdwrap-brtag": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-brTag", - "brTag" + "-" ], "stdwrap-encapslines": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-encapsLines", - "encapsLines" + "-" ], "stdwrap-keywords": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-keywords", - "keywords" + "-" + ], + "stdwrap-properties-wrap": [ + "TypoScript Explained", + "main", + "Functions\/Stdwrap.html#stdwrap-properties-wrap", + "Properties for wrapping data" ], "stdwrap-innerwrap": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-innerWrap", - "innerWrap" + "-" ], "stdwrap-innerwrap2": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-innerWrap2", - "innerWrap2" + "-" ], "stdwrap-precobject": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-preCObject", - "preCObject" + "-" ], "stdwrap-postcobject": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-postCObject", - "postCObject" + "-" ], - "stdwrap-wrapalign": [ + "data-type-align": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-wrapAlign", - "wrapAlign" + "Functions\/Stdwrap.html#data-type-align", + "-" ], - "data-type-align": [ + "stdwrap-wrapalign": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#data-type-align", - "wrapAlign" + "Functions\/Stdwrap.html#stdwrap-wrapAlign", + "-" ], "stdwrap-typolink": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-typolink", - "typolink" + "-" ], "stdwrap-wrap": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-wrap", - "wrap" + "-" ], "stdwrap-notrimwrap": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-noTrimWrap", - "noTrimWrap" + "-" ], "stdwrap-wrap2": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-wrap2", - "wrap2" + "-" ], "stdwrap-datawrap": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-dataWrap", - "dataWrap" + "-" ], "stdwrap-prepend": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-prepend", - "prepend" + "-" ], "stdwrap-append": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-append", - "append" + "-" ], "stdwrap-wrap3": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-wrap3", - "wrap3" + "-" ], "stdwrap-orderedstdwrap": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-orderedStdWrap", - "orderedStdWrap" + "-" ], "stdwrap-outerwrap": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-outerWrap", - "outerWrap" + "-" ], "stdwrap-insertdata": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-insertData", - "insertData" + "-" ], "stdwrap-postuserfunc": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-postUserFunc", - "postUserFunc" + "-" ], "stdwrap-postuserfuncint": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-postUserFuncInt", - "postUserFuncInt" + "-" ], "stdwrap-prefixcomment": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-prefixComment", - "prefixComment" + "-" + ], + "stdwrap-properties-cache": [ + "TypoScript Explained", + "main", + "Functions\/Stdwrap.html#stdwrap-properties-cache", + "Properties for sanitizing and caching data" ], "stdwrap-htmlsanitize": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-htmlSanitize", - "htmlSanitize" + "-" ], "stdwrap-cache": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-cache", - "cache" + "-" + ], + "stdwrap-properties-debug": [ + "TypoScript Explained", + "main", + "Functions\/Stdwrap.html#stdwrap-properties-debug", + "Properties for debugging data" ], "stdwrap-debug": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-debug", - "debug" + "-" ], "stdwrap-debugfunc": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-debugFunc", - "debugFunc" + "-" ], "stdwrap-debugdata": [ "TypoScript Explained", "main", "Functions\/Stdwrap.html#stdwrap-debugData", - "debugData" + "-" ], "stdwrap-examples": [ "TypoScript Explained", @@ -8066,6 +8012,12 @@ "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebListDeniedNewTables", "deniedNewTables" ], + "pagetsconfigweblist-disablesearchbox": [ + "TypoScript Explained", + "main", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-disableSearchBox", + "disableSearchBox" + ], "pagetsconfigweblist-disablesingletableview": [ "TypoScript Explained", "main", @@ -12488,96 +12440,6 @@ "ContentObjects\/Fluidtemplate\/Index.html#confval-fluidtemplate-variables", "variables" ], - "confval-menu-contentobjects-hmenu-browse": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Browse.html#confval-menu-contentobjects-hmenu-browse", - "" - ], - "confval-hmenu-browse-special-value": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Browse.html#confval-hmenu-browse-special-value", - "special.value" - ], - "confval-hmenu-browse-special-items": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Browse.html#confval-hmenu-browse-special-items", - "special.items" - ], - "confval-hmenu-browse-special-items-prevnexttosection": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Browse.html#confval-hmenu-browse-special-items-prevnexttosection", - "special.items.prevnextToSection" - ], - "confval-hmenu-browse-special-itemname-target": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Browse.html#confval-hmenu-browse-special-itemname-target", - "special.[itemname].target" - ], - "confval-hmenu-browse-special-itemname-uid": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Browse.html#confval-hmenu-browse-special-itemname-uid", - "special.[itemname].uid" - ], - "confval-hmenu-browse-special-itemname-fields": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Browse.html#confval-hmenu-browse-special-itemname-fields", - "special.[itemname].fields.[field name]" - ], - "confval-hmenu-browse-special-excludenosearchpages": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Browse.html#confval-hmenu-browse-special-excludenosearchpages", - "special.excludeNoSearchPages" - ], - "confval-menu-contentobjects-hmenu-categories": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Categories.html#confval-menu-contentobjects-hmenu-categories", - "" - ], - "confval-hmenu-categories-special-value": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Categories.html#confval-hmenu-categories-special-value", - "special.value" - ], - "confval-hmenu-categories-special-relation": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Categories.html#confval-hmenu-categories-special-relation", - "special.relation" - ], - "confval-hmenu-categories-special-sorting": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Categories.html#confval-hmenu-categories-special-sorting", - "special.sorting" - ], - "confval-hmenu-categories-special-order": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Categories.html#confval-hmenu-categories-special-order", - "special.order" - ], - "confval-menu-contentobjects-hmenu-directory": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Directory.html#confval-menu-contentobjects-hmenu-directory", - "" - ], - "confval-hmenu-directory-special-value": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Directory.html#confval-hmenu-directory-special-value", - "special.value" - ], "confval-menu-contentobjects-hmenu-index": [ "TypoScript Explained", "main", @@ -12668,12 +12530,6 @@ "ContentObjects\/Hmenu\/Index.html#confval-hmenu-protectlvar", "protectLvar" ], - "confval-hmenu-addquerystring": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Index.html#confval-hmenu-addquerystring", - "addQueryString" - ], "confval-hmenu-if": [ "TypoScript Explained", "main", @@ -12692,126 +12548,6 @@ "ContentObjects\/Hmenu\/Index.html#confval-hmenu-stdwrap", "stdWrap" ], - "confval-menu-contentobjects-hmenu-keywords": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Keywords.html#confval-menu-contentobjects-hmenu-keywords", - "" - ], - "confval-hmenu-keywords-special-value": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Keywords.html#confval-hmenu-keywords-special-value", - "special.value" - ], - "confval-hmenu-keywords-special-mode": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Keywords.html#confval-hmenu-keywords-special-mode", - "special.mode" - ], - "confval-hmenu-keywords-special-entrylevel": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Keywords.html#confval-hmenu-keywords-special-entrylevel", - "special.entryLevel" - ], - "confval-hmenu-keywords-special-depth": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Keywords.html#confval-hmenu-keywords-special-depth", - "special.depth" - ], - "confval-hmenu-keywords-special-limit": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Keywords.html#confval-hmenu-keywords-special-limit", - "special.limit" - ], - "confval-hmenu-keywords-special-excludenosearchpages": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Keywords.html#confval-hmenu-keywords-special-excludenosearchpages", - "special.excludeNoSearchPages" - ], - "confval-hmenu-keywords-special-begin": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Keywords.html#confval-hmenu-keywords-special-begin", - "special.begin" - ], - "confval-hmenu-keywords-special-setkeywords": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Keywords.html#confval-hmenu-keywords-special-setkeywords", - "special.setKeywords" - ], - "confval-hmenu-keywords-special-keywordsfield": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Keywords.html#confval-hmenu-keywords-special-keywordsfield", - "special.keywordsField" - ], - "confval-hmenu-keywords-special-setkeywords-sourcefield": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Keywords.html#confval-hmenu-keywords-special-setkeywords-sourcefield", - "special.keywordsField.sourceField" - ], - "confval-menu-contentobjects-hmenu-language": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Language.html#confval-menu-contentobjects-hmenu-language", - "" - ], - "confval-hmenu-language-special-value": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Language.html#confval-hmenu-language-special-value", - "special.value" - ], - "confval-hmenu-language-special-normalwhennolanguage": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Language.html#confval-hmenu-language-special-normalwhennolanguage", - "special.normalWhenNoLanguage" - ], - "confval-menu-contentobjects-hmenu-list": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/List.html#confval-menu-contentobjects-hmenu-list", - "" - ], - "confval-hmenu-list-special-value": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/List.html#confval-hmenu-list-special-value", - "special.value" - ], - "confval-menu-contentobjects-hmenu-rootline": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Rootline.html#confval-menu-contentobjects-hmenu-rootline", - "" - ], - "confval-hmenu-rootline-special-range": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Rootline.html#confval-hmenu-rootline-special-range", - "special.range" - ], - "confval-hmenu-rootline-special-reverseorder": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Rootline.html#confval-hmenu-rootline-special-reverseorder", - "special.reverseOrder" - ], - "confval-hmenu-rootline-special-targets": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Rootline.html#confval-hmenu-rootline-special-targets", - "special.targets.[level number]" - ], "confval-menu-tmenu-item-states": [ "TypoScript Explained", "main", @@ -13070,119 +12806,59 @@ "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-stdwrap", "stdWrap" ], - "confval-tmenuitem-atagbeforewrap": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-atagbeforewrap", - "ATagBeforeWrap" - ], - "confval-tmenuitem-atagparams": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-atagparams", - "ATagParams" - ], - "confval-tmenuitem-atagtitle": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-atagtitle", - "ATagTitle" - ], - "confval-tmenuitem-additionalparams": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-additionalparams", - "additionalParams" - ], - "confval-tmenuitem-donotlinkit": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-donotlinkit", - "doNotLinkIt" - ], - "confval-tmenuitem-donotshowlink": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-donotshowlink", - "doNotShowLink" - ], - "confval-tmenuitem-stdwrap2": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-stdwrap2", - "stdWrap2" - ], - "confval-tmenuitem-alttarget": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-alttarget", - "altTarget" - ], - "confval-tmenuitem-allstdwrap": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-allstdwrap", - "allStdWrap" - ], - "confval-menu-contentobjects-hmenu-updated": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Updated.html#confval-menu-contentobjects-hmenu-updated", - "" - ], - "confval-hmenu-updated-special-value": [ + "confval-tmenuitem-atagbeforewrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Updated.html#confval-hmenu-updated-special-value", - "special.value" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-atagbeforewrap", + "ATagBeforeWrap" ], - "confval-hmenu-updated-special-mode": [ + "confval-tmenuitem-atagparams": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Updated.html#confval-hmenu-updated-special-mode", - "special.mode" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-atagparams", + "ATagParams" ], - "confval-hmenu-updated-special-depth": [ + "confval-tmenuitem-atagtitle": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Updated.html#confval-hmenu-updated-special-depth", - "special.depth" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-atagtitle", + "ATagTitle" ], - "confval-hmenu-updated-special-beginatlevel": [ + "confval-tmenuitem-additionalparams": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Updated.html#confval-hmenu-updated-special-beginatlevel", - "special.beginAtLevel" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-additionalparams", + "additionalParams" ], - "confval-hmenu-updated-special-maxage": [ + "confval-tmenuitem-donotlinkit": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Updated.html#confval-hmenu-updated-special-maxage", - "special.maxAge" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-donotlinkit", + "doNotLinkIt" ], - "confval-hmenu-updated-special-limit": [ + "confval-tmenuitem-donotshowlink": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Updated.html#confval-hmenu-updated-special-limit", - "special.limit" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-donotshowlink", + "doNotShowLink" ], - "confval-hmenu-updated-special-excludenosearchpages": [ + "confval-tmenuitem-stdwrap2": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Updated.html#confval-hmenu-updated-special-excludenosearchpages", - "special.excludeNoSearchPages" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-stdwrap2", + "stdWrap2" ], - "confval-menu-contentobjects-hmenu-userfunction": [ + "confval-tmenuitem-alttarget": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Userfunction.html#confval-menu-contentobjects-hmenu-userfunction", - "" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-alttarget", + "altTarget" ], - "confval-hmenu-userfunction-special-userfunc": [ + "confval-tmenuitem-allstdwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Userfunction.html#confval-hmenu-userfunction-special-userfunc", - "special.userFunc" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-allstdwrap", + "allStdWrap" ], "confval-menu-contentobjects-image-index": [ "TypoScript Explained", @@ -13898,41 +13574,311 @@ "DataProcessing\/LanguageMenuProcessor.html#confval-languagemenuprocessor-as", "as" ], - "confval-menu-dataprocessing-menuprocessor": [ + "confval-menu-dataprocessing-menuprocessor-browse": [ "TypoScript Explained", "main", - "DataProcessing\/MenuProcessor.html#confval-menu-dataprocessing-menuprocessor", + "DataProcessing\/MenuProcessor\/Browse.html#confval-menu-dataprocessing-menuprocessor-browse", "" ], - "confval-menuprocessor-levels": [ + "confval-hmenu-browse-special-value": [ "TypoScript Explained", "main", - "DataProcessing\/MenuProcessor.html#confval-menuprocessor-levels", - "levels" + "DataProcessing\/MenuProcessor\/Browse.html#confval-hmenu-browse-special-value", + "special.value" + ], + "confval-hmenu-browse-special-items": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Browse.html#confval-hmenu-browse-special-items", + "special.items" + ], + "confval-hmenu-browse-special-items-prevnexttosection": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Browse.html#confval-hmenu-browse-special-items-prevnexttosection", + "special.items.prevnextToSection" + ], + "confval-hmenu-browse-special-excludenosearchpages": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Browse.html#confval-hmenu-browse-special-excludenosearchpages", + "special.excludeNoSearchPages" + ], + "confval-menu-dataprocessing-menuprocessor-categories": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Categories.html#confval-menu-dataprocessing-menuprocessor-categories", + "" + ], + "confval-hmenu-categories-special-value": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Categories.html#confval-hmenu-categories-special-value", + "special.value" + ], + "confval-hmenu-categories-special-relation": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Categories.html#confval-hmenu-categories-special-relation", + "special.relation" + ], + "confval-hmenu-categories-special-sorting": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Categories.html#confval-hmenu-categories-special-sorting", + "special.sorting" + ], + "confval-hmenu-categories-special-order": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Categories.html#confval-hmenu-categories-special-order", + "special.order" + ], + "confval-menu-dataprocessing-menuprocessor-directory": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Directory.html#confval-menu-dataprocessing-menuprocessor-directory", + "" + ], + "confval-hmenu-directory-special-value": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Directory.html#confval-hmenu-directory-special-value", + "special.value" + ], + "confval-menu-dataprocessing-menuprocessor-index": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Index.html#confval-menu-dataprocessing-menuprocessor-index", + "" + ], + "confval-menuprocessor-as": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-as", + "as" + ], + "confval-menuprocessor-alwaysactivepidlist": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-alwaysactivepidlist", + "alwaysActivePIDlist" + ], + "confval-menuprocessor-entrylevel": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-entrylevel", + "entryLevel" + ], + "confval-menuprocessor-excludedoktypes": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-excludedoktypes", + "excludeDoktypes" + ], + "confval-menuprocessor-excludeuidlist": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-excludeuidlist", + "excludeUidList" ], "confval-menuprocessor-expandall": [ "TypoScript Explained", "main", - "DataProcessing\/MenuProcessor.html#confval-menuprocessor-expandall", + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-expandall", "expandAll" ], + "confval-menuprocessor-levels": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-levels", + "levels" + ], + "confval-menuprocessor-includenotinmenu": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-includenotinmenu", + "includeNotInMenu" + ], "confval-menuprocessor-includespacer": [ "TypoScript Explained", "main", - "DataProcessing\/MenuProcessor.html#confval-menuprocessor-includespacer", + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-includespacer", "includeSpacer" ], + "confval-menuprocessor-protectlvar": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-protectlvar", + "protectLvar" + ], + "confval-menuprocessor-special": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-special", + "special" + ], + "confval-menuprocessor-special-value": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-special-value", + "value" + ], "confval-menuprocessor-titlefield": [ "TypoScript Explained", "main", - "DataProcessing\/MenuProcessor.html#confval-menuprocessor-titlefield", - "titleField" + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-titlefield", + "titleField" + ], + "confval-menu-dataprocessing-menuprocessor-keywords": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Keywords.html#confval-menu-dataprocessing-menuprocessor-keywords", + "" + ], + "confval-hmenu-keywords-special-value": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Keywords.html#confval-hmenu-keywords-special-value", + "special.value" + ], + "confval-hmenu-keywords-special-mode": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Keywords.html#confval-hmenu-keywords-special-mode", + "special.mode" + ], + "confval-hmenu-keywords-special-entrylevel": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Keywords.html#confval-hmenu-keywords-special-entrylevel", + "special.entryLevel" + ], + "confval-hmenu-keywords-special-depth": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Keywords.html#confval-hmenu-keywords-special-depth", + "special.depth" + ], + "confval-hmenu-keywords-special-limit": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Keywords.html#confval-hmenu-keywords-special-limit", + "special.limit" + ], + "confval-hmenu-keywords-special-excludenosearchpages": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Keywords.html#confval-hmenu-keywords-special-excludenosearchpages", + "special.excludeNoSearchPages" + ], + "confval-hmenu-keywords-special-begin": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Keywords.html#confval-hmenu-keywords-special-begin", + "special.begin" + ], + "confval-hmenu-keywords-special-setkeywords": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Keywords.html#confval-hmenu-keywords-special-setkeywords", + "special.setKeywords" + ], + "confval-hmenu-keywords-special-keywordsfield": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Keywords.html#confval-hmenu-keywords-special-keywordsfield", + "special.keywordsField" + ], + "confval-hmenu-keywords-special-setkeywords-sourcefield": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Keywords.html#confval-hmenu-keywords-special-setkeywords-sourcefield", + "special.keywordsField.sourceField" + ], + "confval-menu-dataprocessing-menuprocessor-list": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/List.html#confval-menu-dataprocessing-menuprocessor-list", + "" + ], + "confval-hmenu-list-special-value": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/List.html#confval-hmenu-list-special-value", + "special.value" + ], + "confval-menu-dataprocessing-menuprocessor-rootline": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Rootline.html#confval-menu-dataprocessing-menuprocessor-rootline", + "" + ], + "confval-hmenu-rootline-special-range": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Rootline.html#confval-hmenu-rootline-special-range", + "special.range" + ], + "confval-hmenu-rootline-special-reverseorder": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Rootline.html#confval-hmenu-rootline-special-reverseorder", + "special.reverseOrder" + ], + "confval-hmenu-rootline-special-targets": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Rootline.html#confval-hmenu-rootline-special-targets", + "special.targets.[level number]" + ], + "confval-menu-dataprocessing-menuprocessor-updated": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Updated.html#confval-menu-dataprocessing-menuprocessor-updated", + "" + ], + "confval-hmenu-updated-special-value": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Updated.html#confval-hmenu-updated-special-value", + "special.value" + ], + "confval-hmenu-updated-special-mode": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Updated.html#confval-hmenu-updated-special-mode", + "special.mode" + ], + "confval-hmenu-updated-special-depth": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Updated.html#confval-hmenu-updated-special-depth", + "special.depth" + ], + "confval-hmenu-updated-special-beginatlevel": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Updated.html#confval-hmenu-updated-special-beginatlevel", + "special.beginAtLevel" + ], + "confval-hmenu-updated-special-maxage": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Updated.html#confval-hmenu-updated-special-maxage", + "special.maxAge" + ], + "confval-hmenu-updated-special-limit": [ + "TypoScript Explained", + "main", + "DataProcessing\/MenuProcessor\/Updated.html#confval-hmenu-updated-special-limit", + "special.limit" ], - "confval-menuprocessor-as": [ + "confval-hmenu-updated-special-excludenosearchpages": [ "TypoScript Explained", "main", - "DataProcessing\/MenuProcessor.html#confval-menuprocessor-as", - "as" + "DataProcessing\/MenuProcessor\/Updated.html#confval-hmenu-updated-special-excludenosearchpages", + "special.excludeNoSearchPages" ], "confval-menu-dataprocessing-pagecontentfetchingprocessor": [ "TypoScript Explained", @@ -15158,6 +15104,12 @@ "Functions\/Split.html#confval-split-wrap", "wrap" ], + "confval-menu-stdwrap-get": [ + "TypoScript Explained", + "main", + "Functions\/Stdwrap.html#confval-menu-stdwrap-get", + "" + ], "confval-stdwrap-setcontenttocurrent": [ "TypoScript Explained", "main", @@ -15218,6 +15170,12 @@ "Functions\/Stdwrap.html#confval-stdwrap-preuserfunc", "preUserFunc" ], + "confval-menu-stdwrap-override": [ + "TypoScript Explained", + "main", + "Functions\/Stdwrap.html#confval-menu-stdwrap-override", + "" + ], "confval-stdwrap-override": [ "TypoScript Explained", "main", @@ -15296,6 +15254,12 @@ "Functions\/Stdwrap.html#confval-stdwrap-fieldrequired", "fieldRequired" ], + "confval-menu-stdwrap-parse": [ + "TypoScript Explained", + "main", + "Functions\/Stdwrap.html#confval-menu-stdwrap-parse", + "" + ], "confval-stdwrap-csconv": [ "TypoScript Explained", "main", @@ -15476,6 +15440,12 @@ "Functions\/Stdwrap.html#confval-stdwrap-keywords", "keywords" ], + "confval-menu-stdwrap-wrap": [ + "TypoScript Explained", + "main", + "Functions\/Stdwrap.html#confval-menu-stdwrap-wrap", + "" + ], "confval-stdwrap-innerwrap": [ "TypoScript Explained", "main", @@ -15590,6 +15560,12 @@ "Functions\/Stdwrap.html#confval-stdwrap-prefixcomment", "prefixComment" ], + "confval-menu-stdwrap-cache": [ + "TypoScript Explained", + "main", + "Functions\/Stdwrap.html#confval-menu-stdwrap-cache", + "" + ], "confval-stdwrap-htmlsanitize": [ "TypoScript Explained", "main", @@ -15602,6 +15578,12 @@ "Functions\/Stdwrap.html#confval-stdwrap-cache", "cache" ], + "confval-menu-stdwrap-debug": [ + "TypoScript Explained", + "main", + "Functions\/Stdwrap.html#confval-menu-stdwrap-debug", + "" + ], "confval-stdwrap-debug": [ "TypoScript Explained", "main", @@ -16700,6 +16682,12 @@ "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-deniednewtables", "deniedNewTables" ], + "confval-mod-web-list-disablesearchbox": [ + "TypoScript Explained", + "main", + "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-disablesearchbox", + "disableSearchBox" + ], "confval-mod-web-list-disablesingletableview": [ "TypoScript Explained", "main", @@ -18733,19 +18721,19 @@ "php-and-typoscript": [ "TypoScript Explained", "main", - "AppendixA\/Index.html#php-and-typoscript", + "AppendixA\/Index.html#appendix-a", "PHP and TypoScript" ], "contentobjectrenderer": [ "TypoScript Explained", "main", - "AppendixA\/Index.html#contentobjectrenderer", + "AppendixA\/Index.html#content-object-renderer", "ContentObjectRenderer" ], "contentobjectrenderer-cobjgetsingle-value-properties-tskey": [ "TypoScript Explained", "main", - "AppendixA\/Index.html#contentobjectrenderer-cobjgetsingle-value-properties-tskey", + "AppendixA\/Index.html#appendix-include-cobjgetsingle", "ContentObjectRenderer::cObjGetSingle(value, properties[, TSkey = '__'])" ], "example": [ @@ -18757,895 +18745,709 @@ "contentobjectrenderer-stdwrap-value-properties": [ "TypoScript Explained", "main", - "AppendixA\/Index.html#contentobjectrenderer-stdwrap-value-properties", + "AppendixA\/Index.html#appendix-include-stdwrap", "ContentObjectRenderer::stdWrap(value, properties)" ], "typoscriptfrontendcontroller-tsfe": [ "TypoScript Explained", "main", - "AppendixA\/Index.html#typoscriptfrontendcontroller-tsfe", + "AppendixA\/Index.html#TypoScript-Frontend-Controller", "TypoScriptFrontendController, TSFE" ], "typoscriptfrontendcontroller-id": [ "TypoScript Explained", "main", - "AppendixA\/Index.html#typoscriptfrontendcontroller-id", + "AppendixA\/Index.html#appendix-include-tsfe-id", "TypoScriptFrontendController->id" ], "typoscriptfrontendcontroller-type": [ "TypoScript Explained", "main", - "AppendixA\/Index.html#typoscriptfrontendcontroller-type", + "AppendixA\/Index.html#appendix-include-tsfe-type", "TypoScriptFrontendController->type" ], "migration-from-globals-tsfe-type": [ "TypoScript Explained", "main", - "AppendixA\/Index.html#migration-from-globals-tsfe-type", + "AppendixA\/Index.html#appendix-include-tsfe-type-migration", "Migration from $GLOBALS['TSFE']->type" ], "typoscriptfrontendcontroller-page": [ "TypoScript Explained", "main", - "AppendixA\/Index.html#typoscriptfrontendcontroller-page", + "AppendixA\/Index.html#appendix-include-tsfe-page", "TypoScriptFrontendController->page" ], "typoscriptfrontendcontroller-feuser": [ "TypoScript Explained", "main", - "AppendixA\/Index.html#typoscriptfrontendcontroller-feuser", + "AppendixA\/Index.html#appendix-include-tsfe-feuser", "TypoScriptFrontendController->feuser" ], "migration-use-useraspect-or-context-instead-of-globals-tsfe-fe-user": [ "TypoScript Explained", "main", - "AppendixA\/Index.html#migration-use-useraspect-or-context-instead-of-globals-tsfe-fe-user", + "AppendixA\/Index.html#appendix-include-tsfe-feuser-migration", "Migration: Use UserAspect or context instead of $GLOBALS['TSFE']->fe_user" ], "typoscriptfrontendcontroller-rootline": [ "TypoScript Explained", "main", - "AppendixA\/Index.html#typoscriptfrontendcontroller-rootline", + "AppendixA\/Index.html#appendix-include-tsfe-rootLine", "TypoScriptFrontendController->rootLine" ], "typoscriptfrontendcontroller-table-row": [ "TypoScript Explained", "main", - "AppendixA\/Index.html#typoscriptfrontendcontroller-table-row", + "AppendixA\/Index.html#appendix-include-tsfe-table-row", "TypoScriptFrontendController->table-row" ], "conditions-1": [ "TypoScript Explained", "main", - "Conditions\/Index.html#conditions-1", + "Conditions\/Index.html#condition-functions-in-frontend-context", "Conditions" ], "applicationcontext": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#applicationcontext", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-applicationContext", "applicationContext" ], "page": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#page", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-page", "page" ], "tree": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tree", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-tree", "tree" ], "tree-level": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tree-level", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-tree-level", "tree.level" ], "tree-pagelayout": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tree-pagelayout", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-tree-pagelayout", "tree.pagelayout" ], "tree-rootline": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tree-rootline", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-tree-rootLine", "tree.rootLine" ], "tree-rootlineids": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tree-rootlineids", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-tree-rootLineIds", "tree.rootLineIds" ], "tree-rootlineparentids": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tree-rootlineparentids", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-tree-rootLineParentIds", "tree.rootLineParentIds" ], "backend": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#backend", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-backend", "backend" ], "backend-user": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#backend-user", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-backend-user", "backend.user" ], "backend-user-isadmin": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#backend-user-isadmin", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-backend-user-isAdmin", "backend.user.isAdmin" ], "backend-user-isloggedin": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#backend-user-isloggedin", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-backend-user-isLoggedIn", "backend.user.isLoggedIn" ], "backend-user-userid": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#backend-user-userid", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-backend-user-userId", "backend.user.userId" ], "backend-user-usergroupids": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#backend-user-usergroupids", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-backend-user-userGroupIds", "backend.user.userGroupIds" ], "backend-user-usergrouplist": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#backend-user-usergrouplist", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-backend-user-userGroupList", "backend.user.userGroupList" ], "frontend": [ "TypoScript Explained", "main", - "Conditions\/Index.html#frontend", + "Conditions\/Index.html#condition-frontend", "frontend" ], "frontend-user": [ "TypoScript Explained", "main", - "Conditions\/Index.html#frontend-user", + "Conditions\/Index.html#condition-frontend-user", "frontend.user" ], "frontend-user-isloggedin": [ "TypoScript Explained", "main", - "Conditions\/Index.html#frontend-user-isloggedin", + "Conditions\/Index.html#condition-frontend-user-isLoggedIn", "frontend.user.isLoggedIn" ], "frontend-user-userid": [ "TypoScript Explained", "main", - "Conditions\/Index.html#frontend-user-userid", + "Conditions\/Index.html#condition-frontend-user-userId", "frontend.user.userId" ], "frontend-user-usergroupids": [ "TypoScript Explained", "main", - "Conditions\/Index.html#frontend-user-usergroupids", + "Conditions\/Index.html#condition-frontend-user-userGroupIds", "frontend.user.userGroupIds" ], "frontend-user-usergrouplist": [ "TypoScript Explained", "main", - "Conditions\/Index.html#frontend-user-usergrouplist", + "Conditions\/Index.html#condition-frontend-user-userGroupList", "frontend.user.userGroupList" ], "workspace": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#workspace", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-workspace", "workspace" ], "workspace-workspaceid": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#workspace-workspaceid", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-workspace-workspaceId", "workspace.workspaceId" ], "workspace-islive": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#workspace-islive", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-workspace-isLive", "workspace.isLive" ], "workspace-isoffline": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#workspace-isoffline", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-workspace-isOffline", "workspace.isOffline" ], "typo3": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#typo3", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-typo3", "typo3" ], "typo3-version": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#typo3-version", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-typo3-version", "typo3.version" ], "typo3-branch": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#typo3-branch", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-typo3-branch", "typo3.branch" ], "typo3-devipmask": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#typo3-devipmask", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-typo3-devIpMask", "typo3.devIpMask" ], "date": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#date", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-function-date", "date()" ], "like": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#like", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-function-like", "like()" ], "traverse": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#traverse", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-function-traverse", "traverse()" ], "compatversion": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#compatversion", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-function-compatVersion", "compatVersion()" ], "gettsfe": [ "TypoScript Explained", "main", - "Conditions\/Index.html#gettsfe", + "Conditions\/Index.html#condition-function-getTSFE", "getTSFE()" ], "getenv": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#getenv", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-function-getenv", "getenv()" ], "feature": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#feature", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-function-feature", "feature()" ], "ip": [ "TypoScript Explained", "main", - "Conditions\/Index.html#ip", + "Conditions\/Index.html#condition-function-ip", "ip()" ], "request": [ "TypoScript Explained", "main", - "Functions\/Data.html#request", + "Functions\/Data.html#data-type-gettext-request", "request" ], "request-getqueryparams": [ "TypoScript Explained", "main", - "Conditions\/Index.html#request-getqueryparams", + "Conditions\/Index.html#condition-function-request-getQueryParams()", "request.getQueryParams()" ], "request-getparsedbody": [ "TypoScript Explained", "main", - "Conditions\/Index.html#request-getparsedbody", + "Conditions\/Index.html#condition-function-request-getParsedBody()", "request.getParsedBody()" ], "request-getheaders": [ "TypoScript Explained", "main", - "Conditions\/Index.html#request-getheaders", + "Conditions\/Index.html#condition-function-request-getHeaders()", "request.getHeaders()" ], "request-getcookieparams": [ "TypoScript Explained", "main", - "Conditions\/Index.html#request-getcookieparams", + "Conditions\/Index.html#condition-function-request-getCookieParams()", "request.getCookieParams()" ], "request-getnormalizedparams": [ "TypoScript Explained", "main", - "Conditions\/Index.html#request-getnormalizedparams", + "Conditions\/Index.html#condition-function-request-getNormalizedParams()", "request.getNormalizedParams()" ], "request-getpagearguments": [ "TypoScript Explained", "main", - "Conditions\/Index.html#request-getpagearguments", + "Conditions\/Index.html#condition-function-request-getPageArguments()", "request.getPageArguments()" ], "session": [ "TypoScript Explained", "main", - "Functions\/Data.html#session", + "Functions\/Data.html#data-type-gettext-session", "session" ], "site": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#site", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-function-site", "site()" ], "sitelanguage": [ "TypoScript Explained", "main", - "Functions\/Data.html#sitelanguage", + "Functions\/Data.html#data-type-siteLanguage", "siteLanguage" ], "loginuser": [ "TypoScript Explained", "main", - "Conditions\/Index.html#loginuser", + "Conditions\/Index.html#condition-function-loginUser", "loginUser()" ], "usergroup": [ "TypoScript Explained", "main", - "Conditions\/Index.html#usergroup", + "Conditions\/Index.html#condition-function-usergroup", "usergroup()" ], "examples": [ "TypoScript Explained", "main", - "UserTsconfig\/Auth.html#examples", + "UserTsconfig\/Auth.html#user-auth-mfa-example", "Examples" ], "check-if-a-constant-is-set-to-a-certain-value": [ "TypoScript Explained", "main", - "Conditions\/Index.html#check-if-a-constant-is-set-to-a-certain-value", + "Conditions\/Index.html#condition-examples-constant", "Check if a constant is set to a certain value" ], "compare-constant-with-strict-types": [ "TypoScript Explained", "main", - "Conditions\/Index.html#compare-constant-with-strict-types", + "Conditions\/Index.html#condition-examples-constant-strict-types", "Compare constant with strict types" ], "compare-constant-against-strings": [ "TypoScript Explained", "main", - "Conditions\/Index.html#compare-constant-against-strings", + "Conditions\/Index.html#condition-examples-constant-compare-strings", "Compare constant against strings" ], "use-constants-with-reserved-keywords": [ "TypoScript Explained", "main", - "Conditions\/Index.html#use-constants-with-reserved-keywords", + "Conditions\/Index.html#condition-examples-constant-reserved-keywords", "Use constants with reserved keywords" ], "case": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#case", - "case" + "ContentObjects\/Case\/Index.html#cobj-case", + "CASE" ], "properties": [ "TypoScript Explained", "main", - "UserTsconfig\/Setup.html#properties", + "UserTsconfig\/Setup.html#user-setup-properties", "Properties" ], "content-object-array-coa-coa-int": [ "TypoScript Explained", "main", - "ContentObjects\/CoaAndCoaInt\/Index.html#content-object-array-coa-coa-int", + "ContentObjects\/CoaAndCoaInt\/Index.html#cobj-coa-int", "Content object array - COA, COA_INT" ], "content": [ "TypoScript Explained", "main", - "ContentObjects\/Content\/Index.html#content", + "ContentObjects\/Content\/Index.html#cobj-content", "CONTENT" ], "content-explained-in-detail": [ "TypoScript Explained", "main", - "ContentObjects\/Content\/Index.html#content-explained-in-detail", + "ContentObjects\/Content\/Index.html#cobj-content-example-detail", "CONTENT explained in detail" ], "display-all-tt-content-records-from-this-page": [ "TypoScript Explained", "main", - "ContentObjects\/Content\/Index.html#display-all-tt-content-records-from-this-page", + "ContentObjects\/Content\/Index.html#cobj-content-example-display-all", "Display all tt_content records from this page" ], "apply-special-rendering": [ "TypoScript Explained", "main", - "ContentObjects\/Content\/Index.html#apply-special-rendering", + "ContentObjects\/Content\/Index.html#cobj-content-special-rendering", "Apply special rendering" ], "extbaseplugin": [ "TypoScript Explained", "main", - "ContentObjects\/Extbaseplugin\/Index.html#extbaseplugin", + "ContentObjects\/Extbaseplugin\/Index.html#cobj-extbaseplugin", "EXTBASEPLUGIN" ], "example-display-an-extbase-plugin-via-typoscript": [ "TypoScript Explained", "main", - "ContentObjects\/Extbaseplugin\/Index.html#example-display-an-extbase-plugin-via-typoscript", + "ContentObjects\/Extbaseplugin\/Index.html#cobj-extbaseplugin-examples", "Example: Display an Extbase plugin via TypoScript" ], "example-display-an-extbase-plugin-in-a-fluid-template": [ "TypoScript Explained", "main", - "ContentObjects\/Extbaseplugin\/Index.html#example-display-an-extbase-plugin-in-a-fluid-template", + "ContentObjects\/Extbaseplugin\/Index.html#cobj-extbaseplugin-examples-fluid", "Example: Display an Extbase plugin in a Fluid template" ], "files": [ "TypoScript Explained", "main", - "ContentObjects\/Files\/Index.html#files", + "ContentObjects\/Files\/Index.html#cobj-files", "FILES" ], "special-key-references": [ "TypoScript Explained", "main", - "ContentObjects\/Files\/Index.html#special-key-references", + "ContentObjects\/Files\/Index.html#cobj-files-references-sub", "Special key: \"references\"" ], "usage-with-files": [ "TypoScript Explained", "main", - "ContentObjects\/Files\/Index.html#usage-with-files", + "ContentObjects\/Files\/Index.html#cobj-files-examples-files", "Usage with files" ], "usage-with-references": [ "TypoScript Explained", "main", - "ContentObjects\/Files\/Index.html#usage-with-references", + "ContentObjects\/Files\/Index.html#cobj-files-examples-references", "Usage with references" ], "usage-with-sliding": [ "TypoScript Explained", "main", - "ContentObjects\/Files\/Index.html#usage-with-sliding", + "ContentObjects\/Files\/Index.html#cobj-files-examples-sliding", "Usage with sliding" ], "fluidtemplate": [ "TypoScript Explained", "main", - "ContentObjects\/Fluidtemplate\/Index.html#fluidtemplate", + "ContentObjects\/Fluidtemplate\/Index.html#cobj-template", "FLUIDTEMPLATE" ], "data-available-in-fluid-templates": [ "TypoScript Explained", "main", - "ContentObjects\/Fluidtemplate\/Index.html#data-available-in-fluid-templates", + "ContentObjects\/Fluidtemplate\/Index.html#cobj-fluidtemplate-data", "Data available in Fluid templates" ], "example-usage-with-recordtransformationprocessor": [ "TypoScript Explained", "main", - "ContentObjects\/Fluidtemplate\/Index.html#example-usage-with-recordtransformationprocessor", + "ContentObjects\/Fluidtemplate\/Index.html#cobj-fluidtemplate-example-RecordTransformationProcessor", "Example: Usage with RecordTransformationProcessor" ], "migration-from-fluidtemplate-to-pageview": [ "TypoScript Explained", "main", - "ContentObjects\/Fluidtemplate\/Index.html#migration-from-fluidtemplate-to-pageview", + "ContentObjects\/Fluidtemplate\/Index.html#cobj-fluidtemplate-migration", "Migration from FLUIDTEMPLATE to PAGEVIEW" ], "content-objects-general-information": [ "TypoScript Explained", "main", - "ContentObjects\/GeneralInformation\/Index.html#content-objects-general-information", + "ContentObjects\/GeneralInformation\/Index.html#cobjects-general-information", "Content objects (general information)" ], "php-information": [ "TypoScript Explained", "main", - "ContentObjects\/GeneralInformation\/Index.html#php-information", + "ContentObjects\/GeneralInformation\/Index.html#cobjects-php", "PHP information" ], "reusing-content-objects": [ "TypoScript Explained", "main", - "ContentObjects\/GeneralInformation\/Index.html#reusing-content-objects", + "ContentObjects\/GeneralInformation\/Index.html#reusing-cobjects", "Reusing content objects" ], "note": [ "TypoScript Explained", "main", - "ContentObjects\/GeneralInformation\/Index.html#note", + "ContentObjects\/GeneralInformation\/Index.html#reusing-cobjects-temp-objects", "Note:" ], - "browse-previous-and-next-links": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Browse.html#browse-previous-and-next-links", - "Browse - previous and next links" - ], - "example-display-different-types-of-browse-links": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Browse.html#example-display-different-types-of-browse-links", - "Example: Display different types of browse links" - ], - "special-items-prevnexttosection": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Browse.html#special-items-prevnexttosection", - "special.items.prevnextToSection" - ], - "special-itemname-target": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Browse.html#special-itemname-target", - "special.[itemname].target" - ], - "special-itemname-uid": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Browse.html#special-itemname-uid", - "special.[itemname].uid" - ], - "special-itemname-fields-field-name": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Browse.html#special-itemname-fields-field-name", - "special.[itemname].fields.[field name]" - ], - "example-use-back-as-text-on-the-prev-link": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Browse.html#example-use-back-as-text-on-the-prev-link", - "Example: Use \"back\" as text on the prev link" - ], - "special-excludenosearchpages": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Browse.html#special-excludenosearchpages", - "special.excludeNoSearchPages" - ], - "example-pagination-with-rel-next-and-rel-prev": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Browse.html#example-pagination-with-rel-next-and-rel-prev", - "Example: Pagination with rel=\"next\" and rel=\"prev\"" - ], - "categories-hmenu": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Categories.html#categories-hmenu", - "Categories HMENU" - ], - "example-menu-of-pages-in-a-certain-category": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Categories.html#example-menu-of-pages-in-a-certain-category", - "Example: Menu of pages in a certain category" - ], - "example-list-pages-in-categories-with-uid-1-and-2": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Categories.html#example-list-pages-in-categories-with-uid-1-and-2", - "Example: List pages in categories with UID 1 and 2" - ], - "directory-menu-menu-of-subpages": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Directory.html#directory-menu-menu-of-subpages", - "Directory menu - menu of subpages" - ], - "example-menu-of-all-subpages": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/List.html#example-menu-of-all-subpages", - "Example: Menu of all subpages" - ], "hmenu": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu", + "ContentObjects\/Hmenu\/Index.html#cobj-hmenu", "HMENU" ], - "the-special-property": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Index.html#the-special-property", - "The .special property" - ], - "keywords-menu-of-related-pages": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Keywords.html#keywords-menu-of-related-pages", - "Keywords - menu of related pages" - ], - "example-menu-of-related-pages": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Keywords.html#example-menu-of-related-pages", - "Example: Menu of related pages" - ], - "example-find-related-pages-of-the-current-page": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Keywords.html#example-find-related-pages-of-the-current-page", - "Example: Find related pages of the current page" - ], - "language-menu": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Language.html#language-menu", - "Language menu" - ], - "example-create-a-language-menu-with-pure-typoscript": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Language.html#example-create-a-language-menu-with-pure-typoscript", - "Example: Create a language menu with pure TypoScript" - ], - "note-on-item-states": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Language.html#note-on-item-states", - "Note on item states" - ], - "list-menu": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/List.html#list-menu", - "List menu" - ], - "rootline-breadcrumb-menu": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Rootline.html#rootline-breadcrumb-menu", - "Rootline - breadcrumb menu" - ], - "breadcrumb-styled-with-fluid": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Rootline.html#breadcrumb-styled-with-fluid", - "Breadcrumb styled with Fluid" - ], - "breadcrumb-with-pure-typoscript": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Rootline.html#breadcrumb-with-pure-typoscript", - "Breadcrumb with pure TypoScript" - ], - "example-skip-the-current-page": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Rootline.html#example-skip-the-current-page", - "Example: Skip the current page" - ], - "example-set-targets-for-levels": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Rootline.html#example-set-targets-for-levels", - "Example: Set targets for levels" - ], "tmenu-1": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-1", + "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu", "TMENU" ], "tmenu-item-states": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-item-states", + "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-properties", "TMENU item states" ], - "tmenuitem-1": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-1", - "TMENUITEM" - ], - "updated-hmenu": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Updated.html#updated-hmenu", - "Updated HMENU" - ], - "example-recently-updated-pages-styled-with-fluid": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Updated.html#example-recently-updated-pages-styled-with-fluid", - "Example: Recently updated pages styled with Fluid" - ], - "userfunction-menu": [ - "TypoScript Explained", - "main", - "ContentObjects\/Hmenu\/Userfunction.html#userfunction-menu", - "Userfunction menu" - ], - "example-set-a-userfunc": [ + "tmenuitem-1": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Userfunction.html#example-set-a-userfunc", - "Example: Set a userFunc" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem", + "TMENUITEM" ], "image": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Image\/Index.html#image", + "Gifbuilder\/ObjectNames\/Image\/Index.html#gifbuilder-image", "IMAGE" ], "standard-rendering": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#standard-rendering", + "ContentObjects\/Image\/Index.html#cobj-image-examples-standard", "Standard rendering" ], "responsive-adaptive-rendering": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#responsive-adaptive-rendering", + "ContentObjects\/Image\/Index.html#cobj-image-examples-responsive", "Responsive\/adaptive rendering" ], "img-resource": [ "TypoScript Explained", "main", - "ContentObjects\/ImgResource\/Index.html#img-resource", + "ContentObjects\/ImgResource\/Index.html#cobj-img-resource", "IMG_RESOURCE" ], "content-objects-cobject": [ "TypoScript Explained", "main", - "ContentObjects\/Index.html#content-objects-cobject", + "ContentObjects\/Index.html#cobject", "Content Objects (cObject)" ], "load-register": [ "TypoScript Explained", "main", - "ContentObjects\/LoadRegister\/Index.html#load-register", + "ContentObjects\/LoadRegister\/Index.html#cobj-load-register", "LOAD_REGISTER" ], "pageview": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#pageview", + "ContentObjects\/Pageview\/Index.html#cobj-pageview", "PAGEVIEW" ], "example-display-a-page-with-fluid-templates": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#example-display-a-page-with-fluid-templates", + "ContentObjects\/Pageview\/Index.html#cobj-pageview-properties-example", "Example: Display a page with Fluid templates" ], "default-variables-in-fluid-templates": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#default-variables-in-fluid-templates", + "ContentObjects\/Pageview\/Index.html#cobj-pageview-data", "Default variables in Fluid templates" ], "examples-for-using-default-variables": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#examples-for-using-default-variables", + "ContentObjects\/Pageview\/Index.html#cobj-pageview-data-example", "Examples for using default variables" ], "example-display-the-site-title-in-the-current-language": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#example-display-the-site-title-in-the-current-language", + "ContentObjects\/Pageview\/Index.html#cobj-pageview-data-language-example", "Example: Display the site title in the current language" ], "example-display-the-title-and-abstract-of-the-current-page": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#example-display-the-title-and-abstract-of-the-current-page", + "ContentObjects\/Pageview\/Index.html#cobj-pageview-data-page-example", "Example: Display the title and abstract of the current page" ], "example-use-typoscript-constant-in-a-fluid-template": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#example-use-typoscript-constant-in-a-fluid-template", + "ContentObjects\/Pageview\/Index.html#cobj-pageview-data-settings-example", "Example: Use TypoScript constant in a Fluid template" ], "example-link-to-the-root-page-of-the-current-site": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#example-link-to-the-root-page-of-the-current-site", + "ContentObjects\/Pageview\/Index.html#cobj-pageview-data-site-example", "Example: Link to the root page of the current site" ], "example-display-a-main-menu-and-a-breadcrumb-on-the-page": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#example-display-a-main-menu-and-a-breadcrumb-on-the-page", + "ContentObjects\/Pageview\/Index.html#cobj-pageview-dataProcessing-example", "Example: Display a main menu and a breadcrumb on the page" ], "example-define-a-path-that-contains-all-templates": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#example-define-a-path-that-contains-all-templates", + "ContentObjects\/Pageview\/Index.html#cobj-pageview-paths-example", "Example: Define a path that contains all templates" ], "example-define-fallbacks-for-a-template-paths": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#example-define-fallbacks-for-a-template-paths", + "ContentObjects\/Pageview\/Index.html#cobj-pageview-paths-example-extended", "Example: Define fallbacks for a template paths" ], "example-make-additional-variables-available-in-the-fluid-template": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#example-make-additional-variables-available-in-the-fluid-template", + "ContentObjects\/Pageview\/Index.html#cobj-pageview-variables-example", "Example: Make additional variables available in the Fluid template" ], "records": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#records", + "ContentObjects\/Records\/Index.html#cobj-records-introduction", "RECORDS" ], "selection-with-source": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#selection-with-source", + "ContentObjects\/Records\/Index.html#cobj-records-examples-source", "Selection with source" ], "selection-with-source-ii": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#selection-with-source-ii", + "ContentObjects\/Records\/Index.html#cobj-records-examples-source-ii", "Selection with source II" ], "selection-with-categories": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#selection-with-categories", + "ContentObjects\/Records\/Index.html#cobj-records-examples-categories", "Selection with categories" ], "restore-register": [ "TypoScript Explained", "main", - "ContentObjects\/RestoreRegister\/Index.html#restore-register", + "ContentObjects\/RestoreRegister\/Index.html#cobj-restore-register", "RESTORE_REGISTER" ], "svg": [ "TypoScript Explained", "main", - "ContentObjects\/Svg\/Index.html#svg", + "ContentObjects\/Svg\/Index.html#cobj-svg", "SVG" ], "text": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#text", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-text", "text" ], "user-and-user-int": [ "TypoScript Explained", "main", - "ContentObjects\/UserAndUserInt\/Index.html#user-and-user-int", + "ContentObjects\/UserAndUserInt\/Index.html#cobj-user-int", "USER and USER_INT" ], "example-1": [ @@ -19675,25 +19477,25 @@ "comma-separated-value-data-processor": [ "TypoScript Explained", "main", - "DataProcessing\/CommaSeparatedValueProcessor.html#comma-separated-value-data-processor", + "DataProcessing\/CommaSeparatedValueProcessor.html#CommaSeparatedValueProcessor", "comma-separated-value data processor" ], "options": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#options", + "UserTsconfig\/Options.html#useroptions", "options" ], "example-transforming-comma-separated-content-into-a-html-table": [ "TypoScript Explained", "main", - "DataProcessing\/CommaSeparatedValueProcessor.html#example-transforming-comma-separated-content-into-a-html-table", + "DataProcessing\/CommaSeparatedValueProcessor.html#CommaSeparatedValueProcessor-examples", "Example: Transforming comma separated content into a html table" ], "custom-data-processors": [ "TypoScript Explained", "main", - "DataProcessing\/CustomDataProcessors.html#custom-data-processors", + "DataProcessing\/CustomDataProcessors.html#CustomDataProcessors", "Custom data processors" ], "example-output": [ @@ -19705,2263 +19507,2017 @@ "database-query-data-processor": [ "TypoScript Explained", "main", - "DataProcessing\/DatabaseQueryProcessor.html#database-query-data-processor", + "DataProcessing\/DatabaseQueryProcessor.html#DatabaseQueryProcessor", "database-query data processor" ], "example-usage-in-combination-with-the-recordtransformationprocessor": [ "TypoScript Explained", "main", - "DataProcessing\/DatabaseQueryProcessor.html#example-usage-in-combination-with-the-recordtransformationprocessor", + "DataProcessing\/DatabaseQueryProcessor.html#DatabaseQueryProcessor-example-record-transformation", "Example: Usage in combination with the RecordTransformationProcessor" ], "example-display-haiku-records": [ "TypoScript Explained", "main", - "DataProcessing\/DatabaseQueryProcessor.html#example-display-haiku-records", + "DataProcessing\/DatabaseQueryProcessor.html#DatabaseQueryProcessor-examples", "Example: Display haiku records" ], "files-data-processor": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#files-data-processor", + "DataProcessing\/FilesProcessor.html#FilesProcessor", "files data processor" ], "example-1-render-the-images-stored-in-field-image": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#example-1-render-the-images-stored-in-field-image", + "DataProcessing\/FilesProcessor.html#FilesProcessor-example-render-image", "Example 1: Render the images stored in field image" ], "example-2-use-stdwrap-property-on-references": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#example-2-use-stdwrap-property-on-references", + "DataProcessing\/FilesProcessor.html#FilesProcessor-stdWrap-on-references", "Example 2: use stdWrap property on references" ], "example-3-files-from-a-flexform": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#example-3-files-from-a-flexform", + "DataProcessing\/FilesProcessor.html#FilesProcessor-FlexForm", "Example 3: files from a FlexForm" ], "flex-form-data-processor": [ "TypoScript Explained", "main", - "DataProcessing\/FlexFormProcessor.html#flex-form-data-processor", + "DataProcessing\/FlexFormProcessor.html#FlexFormProcessor", "flex-form data processor" ], "example-of-a-minimal-typoscript-configuration": [ "TypoScript Explained", "main", - "DataProcessing\/FlexFormProcessor.html#example-of-a-minimal-typoscript-configuration", + "DataProcessing\/FlexFormProcessor.html#FlexFormProcessor-example-minimal", "Example of a minimal TypoScript configuration" ], "example-of-an-advanced-typoscript-configuration": [ "TypoScript Explained", "main", - "DataProcessing\/FlexFormProcessor.html#example-of-an-advanced-typoscript-configuration", + "DataProcessing\/FlexFormProcessor.html#FlexFormProcessor-example-advanced", "Example of an advanced TypoScript configuration" ], "example-with-a-custom-sub-processor": [ "TypoScript Explained", "main", - "DataProcessing\/FlexFormProcessor.html#example-with-a-custom-sub-processor", + "DataProcessing\/FlexFormProcessor.html#FlexFormProcessor-example-sub-processor", "Example with a custom sub-processor" ], "example-of-resolving-fal-references": [ "TypoScript Explained", "main", - "DataProcessing\/FlexFormProcessor.html#example-of-resolving-fal-references", + "DataProcessing\/FlexFormProcessor.html#FlexFormProcessor-resolving-fal", "Example of resolving FAL references" ], - "gallery-data-processor": [ - "TypoScript Explained", - "main", - "DataProcessing\/GalleryProcessor.html#gallery-data-processor", - "gallery data processor" - ], - "example-display-images-in-rows-and-columns": [ - "TypoScript Explained", - "main", - "DataProcessing\/GalleryProcessor.html#example-display-images-in-rows-and-columns", - "Example: display images in rows and columns" - ], - "data-processors": [ - "TypoScript Explained", - "main", - "DataProcessing\/Index.html#data-processors", - "Data processors" - ], - "about-the-examples": [ - "TypoScript Explained", - "main", - "DataProcessing\/Index.html#about-the-examples", - "About the examples" - ], - "language-menu-data-processor": [ - "TypoScript Explained", - "main", - "DataProcessing\/LanguageMenuProcessor.html#language-menu-data-processor", - "language-menu data processor" - ], - "example-menu-of-all-language-from-site-configuration": [ - "TypoScript Explained", - "main", - "DataProcessing\/LanguageMenuProcessor.html#example-menu-of-all-language-from-site-configuration", - "Example: Menu of all language from site configuration" - ], - "menu-data-processor": [ - "TypoScript Explained", - "main", - "DataProcessing\/MenuProcessor.html#menu-data-processor", - "menu data processor" - ], - "example-two-level-menu-of-the-web-page": [ - "TypoScript Explained", - "main", - "DataProcessing\/MenuProcessor.html#example-two-level-menu-of-the-web-page", - "Example: Two level menu of the web page" - ], - "page-content-data-processor": [ - "TypoScript Explained", - "main", - "DataProcessing\/PageContentFetchingProcessor.html#page-content-data-processor", - "page-content data processor" - ], - "example-use-the-page-content-data-processor-to-display-the-content": [ - "TypoScript Explained", - "main", - "DataProcessing\/PageContentFetchingProcessor.html#example-use-the-page-content-data-processor-to-display-the-content", - "Example: Use the page-content data processor to display the content" - ], - "record-transformation-data-processor": [ - "TypoScript Explained", - "main", - "DataProcessing\/RecordTransformationProcessor.html#record-transformation-data-processor", - "record-transformation data processor" - ], - "example-usage-with-the-databasequeryprocessor": [ - "TypoScript Explained", - "main", - "DataProcessing\/RecordTransformationProcessor.html#example-usage-with-the-databasequeryprocessor", - "Example: Usage with the DatabaseQueryProcessor" - ], - "example-usage-with-fluidtemplate": [ - "TypoScript Explained", - "main", - "DataProcessing\/RecordTransformationProcessor.html#example-usage-with-fluidtemplate", - "Example: Usage with FLUIDTEMPLATE" - ], - "usage-in-fluid": [ - "TypoScript Explained", - "main", - "DataProcessing\/RecordTransformationProcessor.html#usage-in-fluid", - "Usage in Fluid" - ], - "site-language-data-processor": [ - "TypoScript Explained", - "main", - "DataProcessing\/SiteLanguageProcessor.html#site-language-data-processor", - "site-language data processor" - ], - "example-output-some-data-from-the-site-language-configuration": [ - "TypoScript Explained", - "main", - "DataProcessing\/SiteLanguageProcessor.html#example-output-some-data-from-the-site-language-configuration", - "Example: Output some data from the site language configuration" - ], - "site-data-processor": [ - "TypoScript Explained", - "main", - "DataProcessing\/SiteProcessor.html#site-data-processor", - "site data processor" - ], - "example-output-some-data-from-the-site-configuration": [ - "TypoScript Explained", - "main", - "DataProcessing\/SiteProcessor.html#example-output-some-data-from-the-site-configuration", - "Example: Output some data from the site configuration" - ], - "split-data-processor": [ - "TypoScript Explained", - "main", - "DataProcessing\/SplitProcessor.html#split-data-processor", - "split data processor" - ], - "example-splitting-a-url": [ - "TypoScript Explained", - "main", - "DataProcessing\/SplitProcessor.html#example-splitting-a-url", - "Example: Splitting a URL" - ], - "examples-for-typolink-userfunc": [ - "TypoScript Explained", - "main", - "Functions\/_Examples\/Typolink-Example.html#examples-for-typolink-userfunc", - "Examples for typolink.userFunc" - ], - "cache-1": [ - "TypoScript Explained", - "main", - "Functions\/Cache.html#cache-1", - "cache" - ], - "key": [ - "TypoScript Explained", - "main", - "Functions\/Cache.html#key", - "key" - ], - "lifetime": [ - "TypoScript Explained", - "main", - "Functions\/Cache.html#lifetime", - "lifetime" - ], - "tags": [ - "TypoScript Explained", - "main", - "Functions\/Parsefunc.html#tags", - "tags" - ], - "cache-as-first-class-function": [ - "TypoScript Explained", - "main", - "Functions\/Cache.html#cache-as-first-class-function", - "cache as first-class function" - ], - "calc-1": [ - "TypoScript Explained", - "main", - "Functions\/Calc.html#calc-1", - "Calc" - ], - "calculating-values-calc": [ - "TypoScript Explained", - "main", - "Functions\/Calc.html#calculating-values-calc", - "Calculating values (+calc)" - ], - "how-value-is-calculated": [ - "TypoScript Explained", - "main", - "Functions\/Calc.html#how-value-is-calculated", - "How value is calculated" - ], - "calc-usage-example": [ - "TypoScript Explained", - "main", - "Functions\/Calc.html#calc-usage-example", - "calc usage example" - ], - "data-gettext": [ - "TypoScript Explained", - "main", - "Functions\/Data.html#data-gettext", - "Data \/ getText" - ], - "example-evaluate-the-current-application-context": [ - "TypoScript Explained", - "main", - "Functions\/Data.html#example-evaluate-the-current-application-context", - "Example: Evaluate the current application context" - ], - "asset": [ - "TypoScript Explained", - "main", - "Functions\/Data.html#asset", - "asset" - ], - "example-display-extension-icon-with-cache-buster": [ - "TypoScript Explained", - "main", - "Functions\/Data.html#example-display-extension-icon-with-cache-buster", - "Example: Display extension icon with cache buster" - ], - "cobj": [ - "TypoScript Explained", - "main", - "Functions\/Data.html#cobj", - "cObj" - ], - "example-get-the-number-of-the-current-cobject-record": [ - "TypoScript Explained", - "main", - "Functions\/Data.html#example-get-the-number-of-the-current-cobject-record", - "Example: Get the number of the current cObject record" - ], - "context": [ - "TypoScript Explained", - "main", - "Functions\/Data.html#context", - "context" - ], - "example-retrieve-current-workspace-id": [ - "TypoScript Explained", - "main", - "Functions\/Data.html#example-retrieve-current-workspace-id", - "Example: Retrieve current workspace ID" - ], - "current": [ - "TypoScript Explained", - "main", - "Functions\/Stdwrap.html#current", - "current" - ], - "example-get-the-current-value": [ - "TypoScript Explained", - "main", - "Functions\/Data.html#example-get-the-current-value", - "Example: Get the current value" - ], - "example-get-the-current-time-formatted-dd-mm-yy": [ - "TypoScript Explained", - "main", - "Functions\/Data.html#example-get-the-current-time-formatted-dd-mm-yy", - "Example: Get the current time formatted dd-mm-yy" - ], - "db": [ + "gallery-data-processor": [ "TypoScript Explained", "main", - "Functions\/Data.html#db", - "DB" + "DataProcessing\/GalleryProcessor.html#GalleryProcessor", + "gallery data processor" ], - "example-get-a-header-field-value-of-a-record": [ + "example-display-images-in-rows-and-columns": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-get-a-header-field-value-of-a-record", - "Example: Get a header field value of a record" + "DataProcessing\/GalleryProcessor.html#GalleryProcessor-example-rows-columns", + "Example: display images in rows and columns" ], - "debug": [ + "data-processors": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#debug", - "debug" + "DataProcessing\/Index.html#dataProcessing", + "Data processors" ], - "example-debug-the-current-root-line": [ + "about-the-examples": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-debug-the-current-root-line", - "Example: Debug the current root-line" + "DataProcessing\/Index.html#dataProcessing-about-examples", + "About the examples" ], - "field": [ + "language-menu-data-processor": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#field", - "field" + "DataProcessing\/LanguageMenuProcessor.html#LanguageMenuProcessor", + "language-menu data processor" ], - "example-get-header-data": [ + "example-menu-of-all-language-from-site-configuration": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-get-header-data", - "Example: Get header data" + "DataProcessing\/LanguageMenuProcessor.html#LanguageMenuProcessor-example", + "Example: Menu of all language from site configuration" ], - "example-get-data-of-a-field": [ + "browse-navigation-previous-and-next-links": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-get-data-of-a-field", - "Example: Get data of a field" + "DataProcessing\/MenuProcessor\/Browse.html#MenuProcessor-special-browse", + "Browse navigation - previous and next links" ], - "file": [ + "example-display-a-browse-navigation": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Image\/Index.html#file", - "file" + "DataProcessing\/MenuProcessor\/Browse.html#MenuProcessor-special-browse-example", + "Example: Display a browse navigation" ], - "example-get-the-size-of-a-file": [ + "categories": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-get-the-size-of-a-file", - "Example: Get the size of a file" + "DataProcessing\/MenuProcessor\/Categories.html#hmenu-special-categories", + "Categories" ], - "flexform": [ + "example-menu-of-pages-in-a-certain-category": [ "TypoScript Explained", "main", - "Functions\/Data.html#flexform", - "flexform" + "DataProcessing\/MenuProcessor\/Categories.html#hmenu-special-categories-example", + "Example: Menu of pages in a certain category" ], - "example-get-a-flexform-value": [ + "example-list-pages-in-categories-with-uid-1-and-2": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-get-a-flexform-value", - "Example: Get a FlexForm value" + "DataProcessing\/MenuProcessor\/Categories.html#hmenu-special-categories-value-example", + "Example: List pages in categories with UID 1 and 2" ], - "fullrootline": [ + "directory-menu-menu-of-subpages": [ "TypoScript Explained", "main", - "Functions\/Data.html#fullrootline", - "fullRootLine" + "DataProcessing\/MenuProcessor\/Directory.html#hmenu-special-directory", + "Directory menu - menu of subpages" ], - "example-get-the-title-of-the-previous-page": [ + "example-menu-of-all-subpages": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-get-the-title-of-the-previous-page", - "Example: Get the title of the previous page" + "DataProcessing\/MenuProcessor\/List.html#example-menu-of-all-subpages", + "Example: Menu of all subpages" ], - "example-get-the-http-referer": [ + "menu-data-processor": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-get-the-http-referer", - "Example: Get the HTTP referer" + "DataProcessing\/MenuProcessor\/Index.html#MenuProcessor", + "menu data processor" ], - "getindpenv": [ + "special-menu-types": [ "TypoScript Explained", "main", - "Functions\/Data.html#getindpenv", - "getIndpEnv" + "DataProcessing\/MenuProcessor\/Index.html#MenuProcessor-special", + "Special menu types" ], - "example-get-the-remote-address": [ + "example-two-level-menu-of-the-web-page": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-get-the-remote-address", - "Example: Get the remote address" + "DataProcessing\/MenuProcessor\/Index.html#MenuProcessor-example-two-levels", + "Example: Two level menu of the web page" ], - "global": [ + "keywords-menu-of-related-pages": [ "TypoScript Explained", "main", - "Functions\/Data.html#global", - "global" + "DataProcessing\/MenuProcessor\/Keywords.html#hmenu-special-keywords", + "Keywords - menu of related pages" ], - "gp": [ + "example-menu-of-related-pages": [ "TypoScript Explained", "main", - "Functions\/Data.html#gp", - "GP" + "DataProcessing\/MenuProcessor\/Keywords.html#hmenu-special-keywords-example-related", + "Example: Menu of related pages" ], - "example-get-the-input-value-from-query-string": [ + "example-find-related-pages-of-the-current-page": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-get-the-input-value-from-query-string", - "Example: Get the input value from query string" + "DataProcessing\/MenuProcessor\/Keywords.html#hmenu-special-keywords-value-example", + "Example: Find related pages of the current page" ], - "level": [ + "pure-typoscript-language-menu-for-backward-compatibility": [ "TypoScript Explained", "main", - "Functions\/Data.html#level", - "level" + "DataProcessing\/MenuProcessor\/Language.html#hmenu-special-language", + "Pure TypoScript language menu (For backward compatibility)" ], - "example-get-the-root-line-level-of-the-current-page": [ + "list-menu": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-get-the-root-line-level-of-the-current-page", - "Example: Get the root line level of the current page" + "DataProcessing\/MenuProcessor\/List.html#hmenu-special-list", + "List menu" ], - "levelfield": [ + "rootline-breadcrumb-menu": [ "TypoScript Explained", "main", - "Functions\/Data.html#levelfield", - "levelfield" + "DataProcessing\/MenuProcessor\/Rootline.html#hmenu-special-rootline", + "Rootline - breadcrumb menu" ], - "example-get-a-field-from-a-page-up-in-the-root-line": [ + "breadcrumb-styled-with-fluid": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-get-a-field-from-a-page-up-in-the-root-line", - "Example: Get a field from a page up in the root-line" + "DataProcessing\/MenuProcessor\/Rootline.html#hmenu-special-rootline-breadcrumb", + "Breadcrumb styled with Fluid" ], - "levelmedia": [ + "breadcrumb-with-pure-typoscript": [ "TypoScript Explained", "main", - "Functions\/Data.html#levelmedia", - "levelmedia" + "DataProcessing\/MenuProcessor\/Rootline.html#hmenu-special-rootline-breadcrumb-pure", + "Breadcrumb with pure TypoScript" ], - "leveltitle": [ + "example-skip-the-current-page": [ "TypoScript Explained", "main", - "Functions\/Data.html#leveltitle", - "leveltitle" + "DataProcessing\/MenuProcessor\/Rootline.html#hmenu-special-rootline-range-example", + "Example: Skip the current page" ], - "example-get-the-title-of-a-page-up-in-the-root-line": [ + "example-set-targets-for-levels": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-get-the-title-of-a-page-up-in-the-root-line", - "Example: Get the title of a page up in the root line" + "DataProcessing\/MenuProcessor\/Rootline.html#hmenu-special-rootline-targets-example", + "Example: Set targets for levels" ], - "leveluid": [ + "updated-hmenu": [ "TypoScript Explained", "main", - "Functions\/Data.html#leveluid", - "leveluid" + "DataProcessing\/MenuProcessor\/Updated.html#hmenu-special-updated", + "Updated HMENU" ], - "example-get-the-id-of-the-root-page-of-the-page-tree": [ + "example-recently-updated-pages-styled-with-fluid": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-get-the-id-of-the-root-page-of-the-page-tree", - "Example: Get the ID of the root page of the page tree" + "DataProcessing\/MenuProcessor\/Updated.html#hmenu-special-updated-examples", + "Example: Recently updated pages styled with Fluid" ], - "lll": [ + "userfunction-menu-for-backward-compability": [ "TypoScript Explained", "main", - "Functions\/Data.html#lll", - "LLL" + "DataProcessing\/MenuProcessor\/Userfunction.html#hmenu-special-userfunction-examples", + "Userfunction menu (For backward compability)" ], - "example-get-a-localized-label": [ + "page-content-data-processor": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-get-a-localized-label", - "Example: Get a localized label" + "DataProcessing\/PageContentFetchingProcessor.html#PageContentFetchingProcessor", + "page-content data processor" ], - "example-get-the-current-page-title": [ + "example-use-the-page-content-data-processor-to-display-the-content": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-get-the-current-page-title", - "Example: Get the current page title" + "DataProcessing\/PageContentFetchingProcessor.html#PageContentFetchingProcessor-example", + "Example: Use the page-content data processor to display the content" ], - "pagelayout": [ + "modify-the-result-via-aftercontenthasbeenfetchedevent": [ "TypoScript Explained", "main", - "Functions\/Data.html#pagelayout", - "pagelayout" + "DataProcessing\/PageContentFetchingProcessor.html#PageContentFetchingProcessor-AfterContentHasBeenFetchedEvent", + "Modify the result via AfterContentHasBeenFetchedEvent" ], - "example-get-the-current-backend-layout": [ + "record-transformation-data-processor": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-get-the-current-backend-layout", - "Example: Get the current backend layout" + "DataProcessing\/RecordTransformationProcessor.html#RecordTransformationProcessor", + "record-transformation data processor" ], - "parameters": [ + "example-usage-with-the-databasequeryprocessor": [ "TypoScript Explained", "main", - "Functions\/Data.html#parameters", - "parameters" + "DataProcessing\/RecordTransformationProcessor.html#RecordTransformationProcessor-databasequeryprocessor-example", + "Example: Usage with the DatabaseQueryProcessor" ], - "example-get-the-parameter-color": [ + "example-usage-with-fluidtemplate": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-get-the-parameter-color", - "Example: Get the parameter color" + "DataProcessing\/RecordTransformationProcessor.html#RecordTransformationProcessor-fluidtemplate-example", + "Example: Usage with FLUIDTEMPLATE" ], - "path": [ + "usage-in-fluid": [ "TypoScript Explained", "main", - "Syntax\/StringFormats\/Index.html#path", - "path" + "DataProcessing\/RecordTransformationProcessor.html#RecordTransformationProcessor-fluid", + "Usage in Fluid" ], - "example-resolve-the-path-to-a-file": [ + "site-language-data-processor": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-resolve-the-path-to-a-file", - "Example: Resolve the path to a file" + "DataProcessing\/SiteLanguageProcessor.html#SiteLanguageProcessor", + "site-language data processor" ], - "register": [ + "example-output-some-data-from-the-site-language-configuration": [ "TypoScript Explained", "main", - "UsingSetting\/Register.html#register", - "Register" + "DataProcessing\/SiteLanguageProcessor.html#SiteLanguageProcessor-example", + "Example: Output some data from the site language configuration" ], - "example-get-the-content-of-a-register": [ + "site-data-processor": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-get-the-content-of-a-register", - "Example: Get the content of a register" + "DataProcessing\/SiteProcessor.html#SiteProcessor", + "site data processor" ], - "example-get-the-page-type": [ + "example-output-some-data-from-the-site-configuration": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-get-the-page-type", - "Example: Get the page type" + "DataProcessing\/SiteProcessor.html#SiteProcessor-examples", + "Example: Output some data from the site configuration" ], - "example-get-a-query-argument": [ + "split-data-processor": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-get-a-query-argument", - "Example: Get a query argument" + "DataProcessing\/SplitProcessor.html#splitProcessor", + "split data processor" ], - "example-get-the-nonce": [ + "example-splitting-a-url": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-get-the-nonce", - "Example: Get the nonce" + "DataProcessing\/SplitProcessor.html#splitProcessor-example-split-url", + "Example: Splitting a URL" ], - "example-get-a-value-stored-in-the-current-session": [ + "examples-for-typolink-userfunc": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-get-a-value-stored-in-the-current-session", - "Example: Get a value stored in the current session" + "Functions\/_Examples\/Typolink-Example.html#typolink-userfunc-examples", + "Examples for typolink.userFunc" ], - "example-get-values-from-the-current-site": [ + "cache-1": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-get-values-from-the-current-site", - "Example: Get values from the current site" + "Functions\/Cache.html#cache", + "cache" ], - "example-get-values-from-the-current-site-language": [ + "key": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-get-values-from-the-current-site-language", - "Example: Get values from the current site language" + "Functions\/Cache.html#cache-key", + "key" ], - "sitesettings": [ + "lifetime": [ "TypoScript Explained", "main", - "Functions\/Data.html#sitesettings", - "siteSettings" + "Functions\/Cache.html#cache-lifetime", + "lifetime" ], - "example-access-the-redirects-http-status-code": [ + "tags": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-access-the-redirects-http-status-code", - "Example: Access the redirects HTTP status code" + "Functions\/Parsefunc.html#parsefunc-tags", + "tags" ], - "tsfe": [ + "cache-as-first-class-function": [ "TypoScript Explained", "main", - "Functions\/Data.html#tsfe", - "TSFE" + "Functions\/Cache.html#cache-as-first-class-function", + "cache as first-class function" ], - "example-get-the-username-field-of-the-current-frontend-user": [ + "calc-1": [ "TypoScript Explained", "main", - "Functions\/Data.html#example-get-the-username-field-of-the-current-frontend-user", - "Example: Get the username field of the current frontend user" + "Functions\/Calc.html#calc", + "Calc" ], - "encapslines-1": [ + "calculating-values-calc": [ "TypoScript Explained", "main", - "Functions\/Encapslines.html#encapslines-1", - "encapsLines" + "Functions\/Calc.html#calculating-values-calc", + "Calculating values (+calc)" ], - "encapstaglist": [ + "how-value-is-calculated": [ "TypoScript Explained", "main", - "Functions\/Encapslines.html#encapstaglist", - "encapsTagList" + "Functions\/Calc.html#how-value-is-calculated", + "How value is calculated" ], - "remaptag-tagname": [ + "calc-usage-example": [ "TypoScript Explained", "main", - "Functions\/Encapslines.html#remaptag-tagname", - "remapTag.[tagname]" + "Functions\/Calc.html#calc-usage-example", + "calc usage example" ], - "addattributes-tagname": [ + "data-gettext": [ "TypoScript Explained", "main", - "Functions\/Encapslines.html#addattributes-tagname", - "addAttributes.[tagname]" + "Functions\/Data.html#data-type-gettext", + "Data \/ getText" ], - "removewrapping": [ + "example-evaluate-the-current-application-context": [ "TypoScript Explained", "main", - "Functions\/Encapslines.html#removewrapping", - "removeWrapping" + "Functions\/Data.html#data-type-gettext-applicationcontext-example", + "Example: Evaluate the current application context" ], - "wrapnonwrappedlines": [ + "asset": [ "TypoScript Explained", "main", - "Functions\/Encapslines.html#wrapnonwrappedlines", - "wrapNonWrappedLines" + "Functions\/Data.html#data-type-gettext-asset", + "asset" ], - "innerstdwrap-all": [ + "example-display-extension-icon-with-cache-buster": [ "TypoScript Explained", "main", - "Functions\/Encapslines.html#innerstdwrap-all", - "innerStdWrap_all" + "Functions\/Data.html#example-display-extension-icon-with-cache-buster", + "Example: Display extension icon with cache buster" ], - "encapslinesstdwrap-tagname": [ + "cobj": [ "TypoScript Explained", "main", - "Functions\/Encapslines.html#encapslinesstdwrap-tagname", - "encapsLinesStdWrap.[tagname]" + "Functions\/Data.html#data-type-gettext-cobj", + "cObj" ], - "defaultalign": [ + "example-get-the-number-of-the-current-cobject-record": [ "TypoScript Explained", "main", - "Functions\/Encapslines.html#defaultalign", - "defaultAlign" + "Functions\/Data.html#data-type-gettext-cobj-example", + "Example: Get the number of the current cObject record" ], - "nonwrappedtag": [ + "context": [ "TypoScript Explained", "main", - "Functions\/Encapslines.html#nonwrappedtag", - "nonWrappedTag" + "Functions\/Data.html#data-type-gettext-context", + "context" ], - "html-p-tag-is-used-to-encapsulate-each-line": [ + "example-retrieve-current-workspace-id": [ "TypoScript Explained", "main", - "Functions\/Encapslines.html#html-p-tag-is-used-to-encapsulate-each-line", - "<p> tag is used to encapsulate each line" + "Functions\/Data.html#data-type-gettext-context-example", + "Example: Retrieve current workspace ID" ], - "advanced-example": [ + "current": [ "TypoScript Explained", "main", - "Functions\/Encapslines.html#advanced-example", - "Advanced example" + "Functions\/Data.html#data-type-gettext-current", + "current" ], - "getenv-1": [ + "example-get-the-current-value": [ "TypoScript Explained", "main", - "Functions\/GetEnv.html#getenv-1", - "getEnv" + "Functions\/Data.html#example-get-the-current-value", + "Example: Get the current value" ], - "htmlparser-1": [ + "example-get-the-current-time-formatted-dd-mm-yy": [ "TypoScript Explained", "main", - "Functions\/Htmlparser.html#htmlparser-1", - "HTMLparser" + "Functions\/Data.html#data-type-gettext-date-example", + "Example: Get the current time formatted dd-mm-yy" ], - "allowtags": [ + "db": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#allowtags", - "allowTags" + "Functions\/Data.html#data-type-gettext-db", + "DB" ], - "stripemptytags": [ + "example-get-a-header-field-value-of-a-record": [ "TypoScript Explained", "main", - "Functions\/Htmlparser.html#stripemptytags", - "stripEmptyTags" + "Functions\/Data.html#data-type-gettext-db-example", + "Example: Get a header field value of a record" ], - "stripemptytags-keeptags": [ + "debug": [ "TypoScript Explained", "main", - "Functions\/Htmlparser.html#stripemptytags-keeptags", - "stripEmptyTags.keepTags" + "Functions\/Data.html#data-type-gettext-debug", + "debug" ], - "tags-tagname": [ + "example-debug-the-current-root-line": [ "TypoScript Explained", "main", - "Functions\/Htmlparser.html#tags-tagname", - "tags.[tagname]" + "Functions\/Data.html#data-type-gettext-debug-example", + "Example: Debug the current root-line" ], - "localnesting": [ + "field": [ "TypoScript Explained", "main", - "Functions\/Htmlparser.html#localnesting", - "localNesting" + "Functions\/Data.html#data-type-gettext-field", + "field" ], - "globalnesting": [ + "example-get-header-data": [ "TypoScript Explained", "main", - "Functions\/Htmlparser.html#globalnesting", - "globalNesting" + "Functions\/Data.html#data-type-gettext-field-example", + "Example: Get header data" ], - "rmtagifnoattrib": [ + "example-get-data-of-a-field": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#rmtagifnoattrib", - "rmTagIfNoAttrib" + "Functions\/Data.html#example-get-data-of-a-field", + "Example: Get data of a field" ], - "noattrib": [ + "file": [ "TypoScript Explained", "main", - "Functions\/Htmlparser.html#noattrib", - "noAttrib" + "Gifbuilder\/ObjectNames\/Image\/Index.html#gifbuilder-image-file", + "file" ], - "removetags": [ + "example-get-the-size-of-a-file": [ "TypoScript Explained", "main", - "Functions\/Htmlparser.html#removetags", - "removeTags" + "Functions\/Data.html#data-type-gettext-file-example", + "Example: Get the size of a file" ], - "keepnonmatchedtags": [ + "flexform": [ "TypoScript Explained", "main", - "Functions\/Htmlparser.html#keepnonmatchedtags", - "keepNonMatchedTags" + "Functions\/Data.html#data-type-gettext-flexform", + "flexform" ], - "htmlspecialchars": [ + "example-get-a-flexform-value": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#htmlspecialchars", - "htmlSpecialChars" + "Functions\/Data.html#data-type-gettext-flexform-example", + "Example: Get a FlexForm value" ], - "htmlparser-tags-1": [ + "fullrootline": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#htmlparser-tags-1", - "HTMLparser_tags" + "Functions\/Data.html#data-type-gettext-fullrootline", + "fullRootLine" ], - "overrideattribs": [ + "example-get-the-title-of-the-previous-page": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#overrideattribs", - "overrideAttribs" + "Functions\/Data.html#data-type-gettext-fullrootline-example", + "Example: Get the title of the previous page" ], - "allowedattribs": [ + "example-get-the-http-referer": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#allowedattribs", - "allowedAttribs" + "Functions\/Data.html#data-type-gettext-getenv-example", + "Example: Get the HTTP referer" ], - "fixattrib-attribute-set": [ + "getindpenv": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#fixattrib-attribute-set", - "fixAttrib.[attribute].set" + "Functions\/Data.html#data-type-gettext-getindpenv", + "getIndpEnv" ], - "fixattrib-attribute-unset": [ + "example-get-the-remote-address": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#fixattrib-attribute-unset", - "fixAttrib.[attribute].unset" + "Functions\/Data.html#data-type-gettext-getindpenv-example", + "Example: Get the remote address" ], - "fixattrib-attribute-default": [ + "global": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#fixattrib-attribute-default", - "fixAttrib.[attribute].default" + "Functions\/Data.html#data-type-gettext-global", + "global" ], - "fixattrib-attribute-always": [ + "gp": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#fixattrib-attribute-always", - "fixAttrib.[attribute].always" + "Functions\/Data.html#data-type-gettext-gp", + "GP" ], - "fixattrib-attribute-trim": [ + "example-get-the-input-value-from-query-string": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#fixattrib-attribute-trim", - "fixAttrib.[attribute].trim" + "Functions\/Data.html#data-type-gettext-gp-example", + "Example: Get the input value from query string" ], - "fixattrib-attribute-intval": [ + "level": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#fixattrib-attribute-intval", - "fixAttrib.[attribute].intval" + "Functions\/Data.html#data-type-gettext-level", + "level" ], - "fixattrib-attribute-upper": [ + "example-get-the-root-line-level-of-the-current-page": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#fixattrib-attribute-upper", - "fixAttrib.[attribute].upper" + "Functions\/Data.html#data-type-gettext-level-example", + "Example: Get the root line level of the current page" ], - "fixattrib-attribute-lower": [ + "levelfield": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#fixattrib-attribute-lower", - "fixAttrib.[attribute].lower" + "Functions\/Data.html#data-type-gettext-levelfield", + "levelfield" ], - "fixattrib-attribute-range": [ + "example-get-a-field-from-a-page-up-in-the-root-line": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#fixattrib-attribute-range", - "fixAttrib.[attribute].range" + "Functions\/Data.html#data-type-gettext-levelfield-example", + "Example: Get a field from a page up in the root-line" ], - "fixattrib-attribute-list": [ + "levelmedia": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#fixattrib-attribute-list", - "fixAttrib.[attribute].list" + "Functions\/Data.html#data-type-gettext-levelmedia", + "levelmedia" ], - "fixattrib-attribute-removeiffalse": [ + "leveltitle": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#fixattrib-attribute-removeiffalse", - "fixAttrib.[attribute].removeIfFalse" + "Functions\/Data.html#data-type-gettext-leveltitle", + "leveltitle" ], - "fixattrib-attribute-removeifequals": [ + "example-get-the-title-of-a-page-up-in-the-root-line": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#fixattrib-attribute-removeifequals", - "fixAttrib.[attribute].removeIfEquals" + "Functions\/Data.html#example-get-the-title-of-a-page-up-in-the-root-line", + "Example: Get the title of a page up in the root line" ], - "fixattrib-attribute-casesensitivecomp": [ + "leveluid": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#fixattrib-attribute-casesensitivecomp", - "fixAttrib.[attribute].casesensitiveComp" + "Functions\/Data.html#data-type-gettext-leveluid", + "leveluid" ], - "fixattrib-attribute-prefixrelpathwith": [ + "example-get-the-id-of-the-root-page-of-the-page-tree": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#fixattrib-attribute-prefixrelpathwith", - "fixAttrib.[attribute].prefixRelPathWith" + "Functions\/Data.html#data-type-gettext-leveluid-example", + "Example: Get the ID of the root page of the page tree" ], - "fixattrib-attribute-userfunc": [ + "lll": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#fixattrib-attribute-userfunc", - "fixAttrib.[attribute].userFunc" + "Functions\/Data.html#data-type-gettext-lll", + "LLL" ], - "protect": [ + "example-get-a-localized-label": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#protect", - "protect" + "Functions\/Data.html#example-get-a-localized-label", + "Example: Get a localized label" ], - "remap": [ + "example-get-the-current-page-title": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#remap", - "remap" + "Functions\/Data.html#data-type-gettext-page-example", + "Example: Get the current page title" ], - "nesting": [ + "pagelayout": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#nesting", - "nesting" + "Functions\/Data.html#data-type-gettext-pagelayout", + "pagelayout" ], - "if-1": [ + "example-get-the-current-backend-layout": [ "TypoScript Explained", "main", - "Functions\/If.html#if-1", - "if" + "Functions\/Data.html#data-type-gettext-pagelayout-example", + "Example: Get the current backend layout" ], - "bitand": [ + "parameters": [ "TypoScript Explained", "main", - "Functions\/If.html#bitand", - "bitAnd" + "Functions\/Data.html#data-type-gettext-parameters", + "parameters" ], - "contains": [ + "example-get-the-parameter-color": [ "TypoScript Explained", "main", - "Functions\/If.html#contains", - "contains" + "Functions\/Data.html#data-type-gettext-parameters-examples", + "Example: Get the parameter color" ], - "directreturn": [ + "path": [ "TypoScript Explained", "main", - "Functions\/If.html#directreturn", - "directReturn" + "Syntax\/StringFormats\/Index.html#data-type-path", + "path" ], - "endswith": [ + "example-resolve-the-path-to-a-file": [ "TypoScript Explained", "main", - "Functions\/If.html#endswith", - "endsWith" + "Functions\/Data.html#data-type-gettext-path-example", + "Example: Resolve the path to a file" ], - "equals": [ + "register": [ "TypoScript Explained", "main", - "Functions\/If.html#equals", - "equals" + "UsingSetting\/Register.html#using-setting-register", + "Register" ], - "isfalse": [ + "example-get-the-content-of-a-register": [ "TypoScript Explained", "main", - "Functions\/If.html#isfalse", - "isFalse" + "Functions\/Data.html#data-type-gettext-register-example", + "Example: Get the content of a register" ], - "isgreaterthan": [ + "example-get-the-page-type": [ "TypoScript Explained", "main", - "Functions\/If.html#isgreaterthan", - "isGreaterThan" + "Functions\/Data.html#data-type-gettext-request-example-page-type", + "Example: Get the page type" ], - "isinlist": [ + "example-get-a-query-argument": [ "TypoScript Explained", "main", - "Functions\/If.html#isinlist", - "isInList" + "Functions\/Data.html#data-type-gettext-request-example-queryArguments", + "Example: Get a query argument" ], - "islessthan": [ + "example-get-the-nonce": [ "TypoScript Explained", "main", - "Functions\/If.html#islessthan", - "isLessThan" + "Functions\/Data.html#data-type-gettext-request-example-nonce", + "Example: Get the nonce" ], - "isnull": [ + "example-get-a-value-stored-in-the-current-session": [ "TypoScript Explained", "main", - "Functions\/If.html#isnull", - "isNull" + "Functions\/Data.html#data-type-gettext-session-example", + "Example: Get a value stored in the current session" ], - "ispositive": [ + "example-get-values-from-the-current-site": [ "TypoScript Explained", "main", - "Functions\/If.html#ispositive", - "isPositive" + "Functions\/Data.html#data-type-site-example", + "Example: Get values from the current site" ], - "istrue": [ + "example-get-values-from-the-current-site-language": [ "TypoScript Explained", "main", - "Functions\/If.html#istrue", - "isTrue" + "Functions\/Data.html#data-type-siteLanguage-example", + "Example: Get values from the current site language" ], - "negate": [ + "sitesettings": [ "TypoScript Explained", "main", - "Functions\/If.html#negate", - "negate" + "Functions\/Data.html#data-type-siteSettings", + "siteSettings" ], - "startswith": [ + "example-access-the-redirects-http-status-code": [ "TypoScript Explained", "main", - "Functions\/If.html#startswith", - "startsWith" + "Functions\/Data.html#data-type-siteSettings-example", + "Example: Access the redirects HTTP status code" ], - "value": [ + "tsfe": [ "TypoScript Explained", "main", - "Functions\/If.html#value", - "value" + "Functions\/Data.html#data-type-gettext-tsfe", + "TSFE" ], - "explanation": [ + "example-get-the-username-field-of-the-current-frontend-user": [ "TypoScript Explained", "main", - "Functions\/If.html#explanation", - "Explanation" + "Functions\/Data.html#data-type-gettext-tsfe-example", + "Example: Get the username field of the current frontend user" ], - "imagelinkwrap-1": [ + "encapslines-1": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#imagelinkwrap-1", - "imageLinkWrap" + "Functions\/Encapslines.html#encapslines", + "encapsLines" ], - "enable": [ + "encapstaglist": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#enable", - "enable" + "Functions\/Encapslines.html#encapslines-encapsTagList", + "encapsTagList" ], - "width": [ + "remaptag-tagname": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Scale\/Index.html#width", - "width" + "Functions\/Encapslines.html#encapslines-remapTag", + "remapTag.[tagname]" ], - "height": [ + "addattributes-tagname": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Scale\/Index.html#height", - "height" + "Functions\/Encapslines.html#encapslines-addAttributes", + "addAttributes.[tagname]" ], - "effects": [ + "removewrapping": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#effects", - "Effects" + "Functions\/Encapslines.html#encapslines-removeWrapping", + "removeWrapping" ], - "example-for-effects": [ + "wrapnonwrappedlines": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#example-for-effects", - "Example for effects" + "Functions\/Encapslines.html#encapslines-wrapNonWrappedLines", + "wrapNonWrappedLines" ], - "sample": [ + "innerstdwrap-all": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#sample", - "sample" + "Functions\/Encapslines.html#encapslines-innerStdWrap-all", + "innerStdWrap_all" ], - "title": [ + "encapslinesstdwrap-tagname": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#title", - "title" + "Functions\/Encapslines.html#encapslines-encapsLinesStdWrap", + "encapsLinesStdWrap.[tagname]" ], - "bodytag": [ + "defaultalign": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#bodytag", - "bodyTag" + "Functions\/Encapslines.html#encapslines-defaultAlign", + "defaultAlign" ], - "example-setting-a-bodytag-for-the-preview-window": [ + "nonwrappedtag": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#example-setting-a-bodytag-for-the-preview-window", - "Example setting a bodytag for the preview window" + "Functions\/Encapslines.html#encapslines-nonWrappedTag", + "nonWrappedTag" ], - "wrap": [ + "html-p-tag-is-used-to-encapsulate-each-line": [ "TypoScript Explained", "main", - "Functions\/Wrap.html#wrap", - "Wrap" + "Functions\/Encapslines.html#html-p-tag-is-used-to-encapsulate-each-line", + "<p> tag is used to encapsulate each line" ], - "target": [ + "advanced-example": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#target", - "target" + "Functions\/Encapslines.html#advanced-example", + "Advanced example" ], - "example-use-an-alternative-target-for-the-javascript-window": [ + "getenv-1": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#example-use-an-alternative-target-for-the-javascript-window", - "Example: Use an alternative target for the JavaScript Window" + "Functions\/GetEnv.html#getenv", + "getEnv" ], - "jswindow": [ + "htmlparser-1": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#jswindow", - "JSwindow" + "Functions\/Htmlparser.html#htmlparser", + "HTMLparser" ], - "jswindow-expand": [ + "allowtags": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#jswindow-expand", - "JSwindow.expand" + "PageTsconfig\/Rte.html#rte-proc-allowTags", + "allowTags" ], - "jswindow-newwindow": [ + "stripemptytags": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#jswindow-newwindow", - "JSwindow.newWindow" + "Functions\/Htmlparser.html#htmlparser-stripEmptyTags", + "stripEmptyTags" ], - "jswindow-alturl": [ + "stripemptytags-keeptags": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#jswindow-alturl", - "JSwindow.altUrl" + "Functions\/Htmlparser.html#htmlparser-stripEmptyTags-keepTags", + "stripEmptyTags.keepTags" ], - "jswindow-alturl-nodefaultparams": [ + "tags-tagname": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#jswindow-alturl-nodefaultparams", - "JSwindow.altUrl_noDefaultParams" + "Functions\/Htmlparser.html#htmlparser-function-tags", + "tags.[tagname]" ], - "typolink": [ + "localnesting": [ "TypoScript Explained", "main", - "Guide\/TypoScriptFunctions\/Typolink\/Index.html#typolink", - "typolink" + "Functions\/Htmlparser.html#htmlparser-localNesting", + "localNesting" ], - "directimagelink": [ + "globalnesting": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#directimagelink", - "directImageLink" + "Functions\/Htmlparser.html#htmlparser-globalNesting", + "globalNesting" ], - "linkparams": [ + "rmtagifnoattrib": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#linkparams", - "linkParams" + "Functions\/HtmlparserTags.html#htmlparser-tags-rmTagIfNoAttrib", + "rmTagIfNoAttrib" ], - "example-use-alternative-parameters-for-the-a-tag": [ + "noattrib": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#example-use-alternative-parameters-for-the-a-tag", - "Example: Use alternative parameters for the a-tag" + "Functions\/Htmlparser.html#htmlparser-noAttrib", + "noAttrib" ], - "stdwrap": [ + "removetags": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap", - "stdWrap" + "Functions\/Htmlparser.html#htmlparser-removeTags", + "removeTags" ], - "what-it-does": [ + "keepnonmatchedtags": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#what-it-does", - "What it does" + "Functions\/Htmlparser.html#htmlparser-keepNonMatchedTags", + "keepNonMatchedTags" ], - "implementation": [ + "htmlspecialchars": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#implementation", - "Implementation" + "Functions\/Htmlparser.html#htmlparser-htmlSpecialChars", + "htmlSpecialChars" ], - "examples-for-imagelinkwrap": [ + "htmlparser-tags-1": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#examples-for-imagelinkwrap", - "Examples for imageLinkWrap" + "Functions\/HtmlparserTags.html#htmlparser-tags", + "HTMLparser_tags" ], - "basic-example-create-a-link-to-the-showpic-script": [ + "overrideattribs": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#basic-example-create-a-link-to-the-showpic-script", - "Basic example: Create a link to the showpic script" + "Functions\/HtmlparserTags.html#htmlparser-tags-overrideAttribs", + "overrideAttribs" ], - "basic-example-link-directly-to-the-original-image": [ + "allowedattribs": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#basic-example-link-directly-to-the-original-image", - "Basic example: Link directly to the original image" + "Functions\/HtmlparserTags.html#htmlparser-tags-allowedAttribs", + "allowedAttribs" ], - "example-larger-display-in-a-popup-window": [ + "fixattrib-attribute-set": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#example-larger-display-in-a-popup-window", - "Example: Larger display in a popup window" + "Functions\/HtmlparserTags.html#htmlparser-tags-fixAttrib-set", + "fixAttrib.[attribute].set" ], - "example-printlink": [ + "fixattrib-attribute-unset": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#example-printlink", - "Example: Printlink" + "Functions\/HtmlparserTags.html#htmlparser-tags-fixAttrib-unset", + "fixAttrib.[attribute].unset" ], - "example-images-in-lightbox-fancybox": [ + "fixattrib-attribute-default": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#example-images-in-lightbox-fancybox", - "Example: Images in lightbox \"fancybox\"" + "Functions\/HtmlparserTags.html#htmlparser-tags-fixAttrib-default", + "fixAttrib.[attribute].default" ], - "example-images-in-lightbox-topup": [ + "fixattrib-attribute-always": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#example-images-in-lightbox-topup", - "Example: Images in lightbox \"TopUp\"" + "Functions\/HtmlparserTags.html#htmlparser-tags-fixAttrib-always", + "fixAttrib.[attribute].always" ], - "imgresource-1": [ + "fixattrib-attribute-trim": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#imgresource-1", - "imgResource" + "Functions\/HtmlparserTags.html#htmlparser-tags-fixAttrib-trim", + "fixAttrib.[attribute].trim" ], - "ext": [ + "fixattrib-attribute-intval": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#ext", - "ext" + "Functions\/HtmlparserTags.html#htmlparser-tags-fixAttrib-intval", + "fixAttrib.[attribute].intval" ], - "params": [ + "fixattrib-attribute-upper": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Scale\/Index.html#params", - "params" + "Functions\/HtmlparserTags.html#htmlparser-tags-fixAttrib-upper", + "fixAttrib.[attribute].upper" ], - "noscale": [ + "fixattrib-attribute-lower": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#noscale", - "noScale" + "Functions\/HtmlparserTags.html#htmlparser-tags-fixAttrib-lower", + "fixAttrib.[attribute].lower" ], - "crop": [ + "fixattrib-attribute-range": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Crop\/Index.html#crop", - "crop" + "Functions\/HtmlparserTags.html#htmlparser-tags-fixAttrib-range", + "fixAttrib.[attribute].range" ], - "cropvariant": [ + "fixattrib-attribute-list": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#cropvariant", - "cropVariant" + "Functions\/HtmlparserTags.html#htmlparser-tags-fixAttrib-list", + "fixAttrib.[attribute].list" ], - "frame": [ + "fixattrib-attribute-removeiffalse": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#frame", - "frame" + "Functions\/HtmlparserTags.html#htmlparser-tags-fixAttrib-removeIfFalse", + "fixAttrib.[attribute].removeIfFalse" ], - "import": [ + "fixattrib-attribute-removeifequals": [ "TypoScript Explained", "main", - "Syntax\/FileImports\/Index.html#import", - "@import" + "Functions\/HtmlparserTags.html#htmlparser-tags-fixAttrib-removeIfEquals", + "fixAttrib.[attribute].removeIfEquals" ], - "treatidasreference": [ + "fixattrib-attribute-casesensitivecomp": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#treatidasreference", - "treatIdAsReference" + "Functions\/HtmlparserTags.html#htmlparser-tags-fixAttrib-casesensitiveComp", + "fixAttrib.[attribute].casesensitiveComp" ], - "maxw": [ + "fixattrib-attribute-prefixrelpathwith": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#maxw", - "maxW" + "Functions\/HtmlparserTags.html#htmlparser-tags-fixAttrib-prefixRelPathWith", + "fixAttrib.[attribute].prefixRelPathWith" ], - "maxh": [ + "fixattrib-attribute-userfunc": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#maxh", - "maxH" + "Functions\/HtmlparserTags.html#htmlparser-tags-fixAttrib-userFunc", + "fixAttrib.[attribute].userFunc" ], - "minw": [ + "protect": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#minw", - "minW" + "Functions\/HtmlparserTags.html#htmlparser-tags-protect", + "protect" ], - "minh": [ + "remap": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#minh", - "minH" + "Functions\/HtmlparserTags.html#htmlparser-tags-remap", + "remap" ], - "stripprofile": [ + "nesting": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#stripprofile", - "stripProfile" + "Functions\/HtmlparserTags.html#htmlparser-tags-nesting", + "nesting" ], - "masking-m": [ + "if-1": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#masking-m", - "Masking (m)" + "Functions\/If.html#if", + "if" ], - "m-mask": [ + "bitand": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#m-mask", - "m.mask" + "Functions\/If.html#if-bitAnd", + "bitAnd" ], - "m-bgimg": [ + "contains": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#m-bgimg", - "m.bgImg" + "Functions\/If.html#if-contains", + "contains" ], - "m-bottomimg": [ + "directreturn": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#m-bottomimg", - "m.bottomImg" + "Functions\/If.html#if-directReturn", + "directReturn" ], - "m-bottomimg-mask": [ + "endswith": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#m-bottomimg-mask", - "m.bottomImg_mask" + "Functions\/If.html#if-endsWith", + "endsWith" ], - "functions-1": [ + "equals": [ "TypoScript Explained", "main", - "Functions\/Index.html#functions-1", - "Functions" + "Functions\/If.html#if-equals", + "equals" ], - "makelinks-1": [ + "isfalse": [ "TypoScript Explained", "main", - "Functions\/Makelinks.html#makelinks-1", - "makelinks" + "Functions\/If.html#if-isFalse", + "isFalse" ], - "http": [ + "isgreaterthan": [ "TypoScript Explained", "main", - "Functions\/Makelinks.html#http", - "http" + "Functions\/If.html#if-isGreaterThan", + "isGreaterThan" ], - "http-exttarget": [ + "isinlist": [ "TypoScript Explained", "main", - "Functions\/Makelinks.html#http-exttarget", - "http.extTarget" + "Functions\/If.html#if-isInList", + "isInList" ], - "http-wrap": [ + "islessthan": [ "TypoScript Explained", "main", - "Functions\/Makelinks.html#http-wrap", - "http.wrap" + "Functions\/If.html#if-isLessThan", + "isLessThan" ], - "http-atagbeforewrap": [ + "isnull": [ "TypoScript Explained", "main", - "Functions\/Makelinks.html#http-atagbeforewrap", - "http.ATagBeforeWrap" + "Functions\/If.html#if-isNull", + "isNull" ], - "http-keep": [ + "ispositive": [ "TypoScript Explained", "main", - "Functions\/Makelinks.html#http-keep", - "http.keep" + "Functions\/If.html#if-isPositive", + "isPositive" ], - "http-atagparams": [ + "istrue": [ "TypoScript Explained", "main", - "Functions\/Makelinks.html#http-atagparams", - "http.ATagParams" + "Functions\/If.html#if-isTrue", + "isTrue" ], - "mailto": [ + "negate": [ "TypoScript Explained", "main", - "Functions\/Makelinks.html#mailto", - "mailto" + "Functions\/If.html#if-negate", + "negate" ], - "mailto-wrap": [ + "startswith": [ "TypoScript Explained", "main", - "Functions\/Makelinks.html#mailto-wrap", - "mailto.wrap" + "Functions\/If.html#if-startsWith", + "startsWith" ], - "mailto-atagbeforewrap": [ + "value": [ "TypoScript Explained", "main", - "Functions\/Makelinks.html#mailto-atagbeforewrap", - "mailto.ATagBeforeWrap" + "Functions\/If.html#if-value", + "value" ], - "mailto-atagparams": [ + "explanation": [ "TypoScript Explained", "main", - "Functions\/Makelinks.html#mailto-atagparams", - "mailto.ATagParams" + "Functions\/If.html#if-explanation", + "Explanation" ], - "numberformat-1": [ + "imagelinkwrap-1": [ "TypoScript Explained", "main", - "Functions\/Numberformat.html#numberformat-1", - "numberFormat" + "Functions\/Imagelinkwrap.html#imagelinkwrap", + "imageLinkWrap" ], - "decimals": [ + "enable": [ "TypoScript Explained", "main", - "Functions\/Round.html#decimals", - "decimals" + "Functions\/Imagelinkwrap.html#imagelinkwrap-enable", + "enable" ], - "dec-point": [ + "width": [ "TypoScript Explained", "main", - "Functions\/Numberformat.html#dec-point", - "dec_point" + "Gifbuilder\/ObjectNames\/Scale\/Index.html#gifbuilder-scale-width", + "width" ], - "thousands-sep": [ + "height": [ "TypoScript Explained", "main", - "Functions\/Numberformat.html#thousands-sep", - "thousands_sep" + "Gifbuilder\/ObjectNames\/Scale\/Index.html#gifbuilder-scale-height", + "height" ], - "numrows-1": [ + "effects": [ "TypoScript Explained", "main", - "Functions\/Numrows.html#numrows-1", - "numRows" + "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-effects", + "Effects" ], - "table": [ + "example-for-effects": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#table", - "table" + "Functions\/Imagelinkwrap.html#example-for-effects", + "Example for effects" ], - "select": [ + "sample": [ "TypoScript Explained", "main", - "Guide\/TypoScriptFunctions\/Select\/Index.html#select", - "select" + "Functions\/Imgresource.html#imgresource-sample", + "sample" ], - "optionsplit-1": [ + "title": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#optionsplit-1", - "optionSplit" + "Functions\/Typolink.html#typolink-title", + "title" ], - "introduction": [ + "bodytag": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#introduction", - "Introduction" + "Functions\/Imagelinkwrap.html#imagelinkwrap-bodyTag", + "bodyTag" ], - "php-code": [ + "example-setting-a-bodytag-for-the-preview-window": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#php-code", - "PHP-Code" + "Functions\/Imagelinkwrap.html#example-setting-a-bodytag-for-the-preview-window", + "Example setting a bodytag for the preview window" ], - "terminology": [ + "wrap": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#terminology", - "Terminology" + "Functions\/Wrap.html#data-type-wrap", + "Wrap" ], - "mainparts": [ + "target": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#mainparts", - "Mainparts" + "Functions\/Typolink.html#typolink-target", + "target" ], - "subparts": [ + "example-use-an-alternative-target-for-the-javascript-window": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#subparts", - "Subparts" + "Functions\/Imagelinkwrap.html#example-use-an-alternative-target-for-the-javascript-window", + "Example: Use an alternative target for the JavaScript Window" ], - "full-example-to-see-how-it-works": [ + "jswindow": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#full-example-to-see-how-it-works", - "Full example to see how it works" + "Functions\/Imagelinkwrap.html#imagelinkwrap-JSwindow", + "JSwindow" ], - "three-by-three-items": [ + "jswindow-expand": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#three-by-three-items", - "Three by three items" + "Functions\/Imagelinkwrap.html#imagelinkwrap-JSwindow-expand", + "JSwindow.expand" ], - "the-optionsplit-ruleset": [ + "jswindow-newwindow": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#the-optionsplit-ruleset", - "The optionSplit ruleset" + "Functions\/Imagelinkwrap.html#imagelinkwrap-JSwindow-newWindow", + "JSwindow.newWindow" ], - "more-examples": [ + "jswindow-alturl": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#more-examples", - "More Examples" + "Functions\/Imagelinkwrap.html#imagelinkwrap-JSwindow-altUrl", + "JSwindow.altUrl" ], - "three-by-two-items": [ + "jswindow-alturl-nodefaultparams": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#three-by-two-items", - "Three by two items" + "Functions\/Imagelinkwrap.html#imagelinkwrap-JSwindow-altUrl-noDefaultParams", + "JSwindow.altUrl_noDefaultParams" ], - "three-by-one-items": [ + "typolink": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#three-by-one-items", - "Three by one items" + "Guide\/TypoScriptFunctions\/Typolink\/Index.html#guide-function-typolink", + "typolink" ], - "two-by-three-items": [ + "directimagelink": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#two-by-three-items", - "Two by three items" + "Functions\/Imagelinkwrap.html#imagelinkwrap-directImageLink", + "directImageLink" ], - "two-by-two-items": [ + "linkparams": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#two-by-two-items", - "Two by two items" + "Functions\/Imagelinkwrap.html#imagelinkwrap-linkParams", + "linkParams" ], - "two-by-one-items": [ + "example-use-alternative-parameters-for-the-a-tag": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#two-by-one-items", - "Two by one items" + "Functions\/Imagelinkwrap.html#example-use-alternative-parameters-for-the-a-tag", + "Example: Use alternative parameters for the a-tag" ], - "one-by-one-items": [ + "stdwrap": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#one-by-one-items", - "One by one items" + "Functions\/Imagelinkwrap.html#imagelinkwrap-stdWrap", + "stdWrap" ], - "one-by-two-items": [ + "what-it-does": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#one-by-two-items", - "One by two items" + "Functions\/Imagelinkwrap.html#what-it-does", + "What it does" ], - "one-by-three-items": [ + "implementation": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#one-by-three-items", - "One by three items" + "Functions\/Imagelinkwrap.html#implementation", + "Implementation" ], - "one-by-four-items": [ + "examples-for-imagelinkwrap": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#one-by-four-items", - "One by four items" + "Functions\/Imagelinkwrap.html#imagelinkwrap-examples", + "Examples for imageLinkWrap" ], - "more-examples-tricky-stuff": [ + "basic-example-create-a-link-to-the-showpic-script": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#more-examples-tricky-stuff", - "More examples: Tricky stuff" + "Functions\/Imagelinkwrap.html#imageLinkWrap-basic-example-showpic", + "Basic example: Create a link to the showpic script" ], - "three-items-a-no-item-r-three-items-z": [ + "basic-example-link-directly-to-the-original-image": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#three-items-a-no-item-r-three-items-z", - "Three items A, no item R, three items Z" + "Functions\/Imagelinkwrap.html#imageLinkWrap-basic-example-directImageLink", + "Basic example: Link directly to the original image" ], - "one-item-a-no-item-r-one-items-z": [ + "example-larger-display-in-a-popup-window": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#one-item-a-no-item-r-one-items-z", - "One item A, no item R, one items Z" + "Functions\/Imagelinkwrap.html#imageLinkWrap-example-popup-window", + "Example: Larger display in a popup window" ], - "one-item-a-one-unexpected-item-r-one-item-z": [ + "example-printlink": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#one-item-a-one-unexpected-item-r-one-item-z", - "One item A, one (unexpected!?) item R, one item Z" + "Functions\/Imagelinkwrap.html#imageLinkWrap-example-printlink", + "Example: Printlink" ], - "more": [ + "example-images-in-lightbox-fancybox": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#more", - "More" + "Functions\/Imagelinkwrap.html#imageLinkWrap-example-fancybox", + "Example: Images in lightbox \"fancybox\"" ], - "test-code-1-typoscript": [ + "example-images-in-lightbox-topup": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#test-code-1-typoscript", - "Test Code 1 (TypoScript)" + "Functions\/Imagelinkwrap.html#imageLinkWrap-example-topup", + "Example: Images in lightbox \"TopUp\"" ], - "test-code-1-result": [ + "imgresource-1": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#test-code-1-result", - "Test Code 1 Result" + "Functions\/Imgresource.html#imgresource", + "imgResource" ], - "test-code-2-typoscript": [ + "ext": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#test-code-2-typoscript", - "Test Code 2 (TypoScript)" + "Functions\/Imgresource.html#imgresource-ext", + "ext" ], - "test-code-2-result": [ + "params": [ "TypoScript Explained", "main", - "Functions\/OptionSplit.html#test-code-2-result", - "Test Code 2 Result" + "Gifbuilder\/ObjectNames\/Scale\/Index.html#gifbuilder-scale-params", + "params" ], - "parsefunc-1": [ + "noscale": [ "TypoScript Explained", "main", - "Functions\/Parsefunc.html#parsefunc-1", - "parseFunc" + "Functions\/Imgresource.html#imgresource-noScale", + "noScale" ], - "externalblocks": [ + "crop": [ "TypoScript Explained", "main", - "Functions\/Parsefunc.html#externalblocks", - "externalBlocks" + "Gifbuilder\/ObjectNames\/Crop\/Index.html#gifbuilder-crop-crop", + "crop" ], - "short": [ + "cropvariant": [ "TypoScript Explained", "main", - "Functions\/Parsefunc.html#short", - "short" + "Functions\/Imgresource.html#imgresource-cropVariant", + "cropVariant" ], - "plaintextstdwrap": [ + "frame": [ "TypoScript Explained", "main", - "Functions\/Parsefunc.html#plaintextstdwrap", - "plainTextStdWrap" + "Functions\/Imgresource.html#imgresource-frame", + "frame" ], - "userfunc": [ + "import": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#userfunc", - "userFunc" + "Syntax\/FileImports\/Index.html#typoscript-syntax-import", + "@import" ], - "nontypotagstdwrap": [ + "treatidasreference": [ "TypoScript Explained", "main", - "Functions\/Parsefunc.html#nontypotagstdwrap", - "nonTypoTagStdWrap" + "Functions\/Imgresource.html#imgresource-treatIdAsReference", + "treatIdAsReference" ], - "nontypotaguserfunc": [ + "maxw": [ "TypoScript Explained", "main", - "Functions\/Parsefunc.html#nontypotaguserfunc", - "nonTypoTagUserFunc" + "Functions\/Imgresource.html#imgresource-maxW", + "maxW" ], - "makelinks": [ + "maxh": [ "TypoScript Explained", "main", - "Functions\/Parsefunc.html#makelinks", - "makelinks" + "Functions\/Imgresource.html#imgresource-maxH", + "maxH" ], - "denytags": [ + "minw": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#denytags", - "denyTags" + "Functions\/Imgresource.html#imgresource-minW", + "minW" ], - "if": [ + "minh": [ "TypoScript Explained", "main", - "Guide\/TypoScriptFunctions\/If\/Index.html#if", - "if" + "Functions\/Imgresource.html#imgresource-minH", + "minH" ], - "replacement-1": [ + "stripprofile": [ "TypoScript Explained", "main", - "Functions\/Replacement.html#replacement-1", - "replacement" + "Functions\/Imgresource.html#imgresource-stripProfile", + "stripProfile" ], - "search": [ + "masking-m": [ "TypoScript Explained", "main", - "Functions\/Replacement.html#search", - "search" + "Functions\/Imgresource.html#imgresource-masking", + "Masking (m)" ], - "replace": [ + "m-mask": [ "TypoScript Explained", "main", - "Functions\/Replacement.html#replace", - "replace" + "Functions\/Imgresource.html#imgresource-masking-mask", + "m.mask" ], - "useregexp": [ + "m-bgimg": [ "TypoScript Explained", "main", - "Functions\/Replacement.html#useregexp", - "useRegExp" + "Functions\/Imgresource.html#imgresource-masking-bgImg", + "m.bgImg" ], - "useoptionsplitreplace": [ + "m-bottomimg": [ "TypoScript Explained", "main", - "Functions\/Replacement.html#useoptionsplitreplace", - "useOptionSplitReplace" + "Functions\/Imgresource.html#imgresource-masking-bottomImg", + "m.bottomImg" ], - "round-1": [ + "m-bottomimg-mask": [ "TypoScript Explained", "main", - "Functions\/Round.html#round-1", - "round" + "Functions\/Imgresource.html#imgresource-masking-bottomImg-mask", + "m.bottomImg_mask" ], - "roundtype": [ + "functions-1": [ "TypoScript Explained", "main", - "Functions\/Round.html#roundtype", - "roundType" + "Functions\/Index.html#functions", + "Functions" ], - "round": [ + "makelinks-1": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#round", - "round" + "Functions\/Makelinks.html#makelinks", + "makelinks" ], - "select-1": [ + "http": [ "TypoScript Explained", "main", - "Functions\/Select.html#select-1", - "select" + "Functions\/Makelinks.html#makelinks-http", + "http" ], - "uidinlist": [ + "http-exttarget": [ "TypoScript Explained", "main", - "Functions\/Select.html#uidinlist", - "uidInList" + "Functions\/Makelinks.html#makelinks-http-extTarget", + "http.extTarget" ], - "pidinlist": [ + "http-wrap": [ "TypoScript Explained", "main", - "Functions\/Select.html#pidinlist", - "pidInList" + "Functions\/Makelinks.html#makelinks-http-wrap", + "http.wrap" ], - "recursive": [ + "http-atagbeforewrap": [ "TypoScript Explained", "main", - "Functions\/Select.html#recursive", - "recursive" + "Functions\/Makelinks.html#makelinks-http-ATagBeforeWrap", + "http.ATagBeforeWrap" ], - "orderby": [ + "http-keep": [ "TypoScript Explained", "main", - "Functions\/Select.html#orderby", - "orderBy" + "Functions\/Makelinks.html#makelinks-http-keep", + "http.keep" ], - "groupby": [ + "http-atagparams": [ "TypoScript Explained", "main", - "Functions\/Select.html#groupby", - "groupBy" + "Functions\/Makelinks.html#makelinks-http-ATagParams", + "http.ATagParams" ], - "max": [ + "mailto": [ "TypoScript Explained", "main", - "Functions\/Split.html#max", - "max" + "Functions\/Makelinks.html#makelinks-mailto", + "mailto" ], - "begin": [ + "mailto-wrap": [ "TypoScript Explained", "main", - "Functions\/Select.html#begin", - "begin" + "Functions\/Makelinks.html#makelinks-mailto.wrap", + "mailto.wrap" ], - "where": [ + "mailto-atagbeforewrap": [ "TypoScript Explained", "main", - "Functions\/Select.html#where", - "where" + "Functions\/Makelinks.html#makelinks-mailto.ATagBeforeWrap", + "mailto.ATagBeforeWrap" ], - "languagefield": [ + "mailto-atagparams": [ "TypoScript Explained", "main", - "Functions\/Select.html#languagefield", - "languageField" + "Functions\/Makelinks.html#makelinks-mailto.ATagParams", + "mailto.ATagParams" ], - "includerecordswithoutdefaulttranslation": [ + "numberformat-1": [ "TypoScript Explained", "main", - "Functions\/Select.html#includerecordswithoutdefaulttranslation", - "includeRecordsWithoutDefaultTranslation" + "Functions\/Numberformat.html#numberformat", + "numberFormat" ], - "selectfields": [ + "decimals": [ "TypoScript Explained", "main", - "Functions\/Select.html#selectfields", - "selectFields" + "Functions\/Round.html#round-decimals", + "decimals" ], - "join-leftjoin-rightjoin": [ + "dec-point": [ "TypoScript Explained", "main", - "Functions\/Select.html#join-leftjoin-rightjoin", - "join, leftjoin, rightjoin" + "Functions\/Numberformat.html#numberformat-dec-point", + "dec_point" ], - "markers": [ + "thousands-sep": [ "TypoScript Explained", "main", - "Functions\/Select.html#markers", - "markers" + "Functions\/Numberformat.html#numberformat-thousands-sep", + "thousands_sep" ], - "quoting-of-fields": [ + "numrows-1": [ "TypoScript Explained", "main", - "Functions\/Select.html#quoting-of-fields", - "Quoting of fields" + "Functions\/Numrows.html#numrows", + "numRows" ], - "split-1": [ + "table": [ "TypoScript Explained", "main", - "Functions\/Split.html#split-1", - "split" + "PageTsconfig\/TceMain.html#pagetcemain-table-table-name", + "table" ], - "token": [ + "select": [ "TypoScript Explained", "main", - "Functions\/Split.html#token", - "token" + "Guide\/TypoScriptFunctions\/Select\/Index.html#guide-function-select", + "select" ], - "min": [ + "optionsplit-1": [ "TypoScript Explained", "main", - "Functions\/Split.html#min", - "min" + "Functions\/OptionSplit.html#optionsplit", + "optionSplit" ], - "returnkey": [ + "introduction": [ "TypoScript Explained", "main", - "Functions\/Split.html#returnkey", - "returnKey" + "Functions\/OptionSplit.html#optionsplit-intro", + "Introduction" ], - "returncount": [ + "php-code": [ "TypoScript Explained", "main", - "Functions\/Split.html#returncount", - "returnCount" + "Functions\/OptionSplit.html#optionsplit-php-code", + "PHP-Code" ], - "cobjnum": [ + "terminology": [ "TypoScript Explained", "main", - "Functions\/Split.html#cobjnum", - "cObjNum" + "Functions\/OptionSplit.html#optionsplit-terminology", + "Terminology" ], - "1-2-3-4": [ + "mainparts": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#1-2-3-4", - "1,2,3,4..." + "Functions\/OptionSplit.html#optionsplit-main-parts", + "Mainparts" ], - "stdwrap-1": [ + "subparts": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-1", - "stdWrap" + "Functions\/OptionSplit.html#optionsplit-sub-parts", + "Subparts" ], - "content-supplying-properties-of-stdwrap": [ + "full-example-to-see-how-it-works": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#content-supplying-properties-of-stdwrap", - "Content-supplying properties of stdWrap" + "Functions\/OptionSplit.html#optionsplit-examples", + "Full example to see how it works" ], - "properties-for-getting-data": [ + "three-by-three-items": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#properties-for-getting-data", - "Properties for getting data" + "Functions\/OptionSplit.html#optionsplit-example-three-by-three-items", + "Three by three items" ], - "setcontenttocurrent": [ + "the-optionsplit-ruleset": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#setcontenttocurrent", - "setContentToCurrent" + "Functions\/OptionSplit.html#optionsplit-ruleset", + "The optionSplit ruleset" ], - "addpagecachetags": [ + "more-examples": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#addpagecachetags", - "addPageCacheTags" + "Functions\/OptionSplit.html#optionsplit-more-examples", + "More Examples" ], - "setcurrent": [ + "three-by-two-items": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#setcurrent", - "setCurrent" + "Functions\/OptionSplit.html#optionsplit-example-three-by-two-items", + "Three by two items" ], - "lang": [ + "three-by-one-items": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#lang", - "lang" + "Functions\/OptionSplit.html#optionsplit-example-three-by-one-item", + "Three by one items" ], - "data": [ + "two-by-three-items": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#data", - "data" + "Functions\/OptionSplit.html#optionsplit-example-two-by-three-items", + "Two by three items" ], - "cobject": [ + "two-by-two-items": [ "TypoScript Explained", "main", - "Guide\/TypoScriptFunctions\/StdWrap\/Index.html#cobject", - "cObject" + "Functions\/OptionSplit.html#optionsplit-example-two-by-two-items", + "Two by two items" ], - "numrows": [ + "two-by-one-items": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#numrows", - "numRows" + "Functions\/OptionSplit.html#optionsplit-example-two-by-one-item", + "Two by one items" ], - "preuserfunc": [ + "one-by-one-items": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#preuserfunc", - "preUserFunc" + "Functions\/OptionSplit.html#optionsplit-example-one-by-one-item", + "One by one items" ], - "properties-for-overriding-and-conditions": [ + "one-by-two-items": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#properties-for-overriding-and-conditions", - "Properties for overriding and conditions" + "Functions\/OptionSplit.html#optionsplit-example-one-by-two-items", + "One by two items" ], - "override": [ + "one-by-three-items": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#override", - "override" + "Functions\/OptionSplit.html#optionsplit-example-one-by-three-items", + "One by three items" ], - "preifemptylistnum": [ + "one-by-four-items": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#preifemptylistnum", - "preIfEmptyListNum" + "Functions\/OptionSplit.html#optionsplit-example-one-by-four-items", + "One by four items" ], - "ifnull": [ + "more-examples-tricky-stuff": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#ifnull", - "ifNull" + "Functions\/OptionSplit.html#optionsplit-tricky-examples", + "More examples: Tricky stuff" ], - "ifempty": [ + "three-items-a-no-item-r-three-items-z": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#ifempty", - "ifEmpty" + "Functions\/OptionSplit.html#optionsplit-tricky-examples-three-items-a-no-item-r-three-items-z", + "Three items A, no item R, three items Z" ], - "ifblank": [ + "one-item-a-no-item-r-one-items-z": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#ifblank", - "ifBlank" + "Functions\/OptionSplit.html#optionsplit-tricky-examples-one-item-a-no-item-r-one-item-z", + "One item A, no item R, one items Z" ], - "listnum": [ + "one-item-a-one-unexpected-item-r-one-item-z": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#listnum", - "listNum" + "Functions\/OptionSplit.html#optionsplit-tricky-examples-one-item-a-one-item-r-one-item-z", + "One item A, one (unexpected!?) item R, one item Z" ], - "listnum-splitchar": [ + "more": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#listnum-splitchar", - "listNum.splitChar" + "Functions\/OptionSplit.html#optionsplit-more", + "More" ], - "trim": [ + "test-code-1-typoscript": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#trim", - "trim" + "Functions\/OptionSplit.html#optionsplit-test-code-1", + "Test Code 1 (TypoScript)" ], - "strpad": [ + "test-code-1-result": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#strpad", - "strPad" + "Functions\/OptionSplit.html#optionsplit-test-code-1-result", + "Test Code 1 Result" ], - "required": [ + "test-code-2-typoscript": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#required", - "required" + "Functions\/OptionSplit.html#optionsplit-test-code-2", + "Test Code 2 (TypoScript)" ], - "fieldrequired": [ + "test-code-2-result": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#fieldrequired", - "fieldRequired" + "Functions\/OptionSplit.html#optionsplit-test-code-2-result", + "Test Code 2 Result" ], - "properties-for-parsing-data": [ + "parsefunc-1": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#properties-for-parsing-data", - "Properties for parsing data" + "Functions\/Parsefunc.html#parsefunc", + "parseFunc" ], - "csconv": [ + "externalblocks": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#csconv", - "csConv" + "Functions\/Parsefunc.html#parsefunc-externalBlocks", + "externalBlocks" ], - "parsefunc": [ + "short": [ "TypoScript Explained", "main", - "Guide\/TypoScriptFunctions\/ParseFunc\/Index.html#parsefunc", - "parseFunc" + "Functions\/Parsefunc.html#parsefunc-short", + "short" ], - "sanitization": [ + "plaintextstdwrap": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#sanitization", - "Sanitization" + "Functions\/Parsefunc.html#parsefunc-plainTextStdWrap", + "plainTextStdWrap" ], - "htmlparser": [ + "userfunc": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#htmlparser", - "HTMLparser" + "Functions\/Typolink.html#typolink-userFunc", + "userFunc" ], - "split": [ + "nontypotagstdwrap": [ "TypoScript Explained", "main", - "Guide\/TypoScriptFunctions\/Split\/Index.html#split", - "split" + "Functions\/Parsefunc.html#parsefunc-nonTypoTagStdWrap", + "nonTypoTagStdWrap" ], - "replacement": [ + "nontypotaguserfunc": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#replacement", - "replacement" + "Functions\/Parsefunc.html#parsefunc-nonTypoTagUserFunc", + "nonTypoTagUserFunc" ], - "prioricalc": [ + "makelinks": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#prioricalc", - "prioriCalc" + "Functions\/Parsefunc.html#parsefunc-makelinks", + "makelinks" ], - "char": [ + "denytags": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#char", - "char" + "PageTsconfig\/Rte.html#rte-proc-denyTags", + "denyTags" ], - "intval": [ + "if": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#intval", - "intval" + "Guide\/TypoScriptFunctions\/If\/Index.html#guide-function-if", + "if" ], - "hash": [ + "replacement-1": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#hash", - "hash" + "Functions\/Replacement.html#replacement", + "replacement" ], - "numberformat": [ + "search": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#numberformat", - "numberFormat" + "Functions\/Replacement.html#replacement-search", + "search" ], - "strtotime": [ + "replace": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#strtotime", - "strtotime" + "Functions\/Replacement.html#replacement-replace", + "replace" ], - "strftime": [ + "useregexp": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#strftime", - "strftime" + "Functions\/Replacement.html#replacement-useRegExp", + "useRegExp" ], - "formatteddate": [ + "useoptionsplitreplace": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#formatteddate", - "formattedDate" + "Functions\/Replacement.html#replacement-useOptionSplitReplace", + "useOptionSplitReplace" ], - "age": [ + "round-1": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#age", - "age" + "Functions\/Round.html#round", + "round" ], - "bytes": [ + "roundtype": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#bytes", - "bytes" + "Functions\/Round.html#round-roundType", + "roundType" ], - "substring": [ + "round": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#substring", - "substring" + "Functions\/Round.html#round-round", + "round" ], - "crophtml": [ + "select-1": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#crophtml", - "cropHTML" + "Functions\/Select.html#select", + "select" ], - "striphtml": [ + "uidinlist": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#striphtml", - "stripHtml" + "Functions\/Select.html#select-uidInList", + "uidInList" ], - "rawurlencode": [ + "pidinlist": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#rawurlencode", - "rawUrlEncode" + "Functions\/Select.html#select_pidInList", + "pidInList" ], - "encodeforjavascriptvalue": [ + "recursive": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#encodeforjavascriptvalue", - "encodeForJavaScriptValue" + "Functions\/Select.html#select-recursive", + "recursive" ], - "doublebrtag": [ + "orderby": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#doublebrtag", - "doubleBrTag" + "Functions\/Select.html#select-orderBy", + "orderBy" ], - "br": [ + "groupby": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#br", - "br" + "Functions\/Select.html#select-groupBy", + "groupBy" ], - "brtag": [ + "max": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#brtag", - "brTag" + "Functions\/Split.html#split-max", + "max" ], - "encapslines": [ + "begin": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#encapslines", - "encapsLines" + "Functions\/Select.html#select-begin", + "begin" ], - "keywords": [ + "where": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#keywords", - "keywords" + "Functions\/Select.html#select-where", + "where" ], - "innerwrap": [ + "languagefield": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#innerwrap", - "innerWrap" + "Functions\/Select.html#select-languageField", + "languageField" ], - "innerwrap2": [ + "includerecordswithoutdefaulttranslation": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#innerwrap2", - "innerWrap2" + "Functions\/Select.html#select-includeRecordsWithoutDefaultTranslation", + "includeRecordsWithoutDefaultTranslation" ], - "precobject": [ + "selectfields": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#precobject", - "preCObject" + "Functions\/Select.html#select-selectFields", + "selectFields" ], - "postcobject": [ + "join-leftjoin-rightjoin": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#postcobject", - "postCObject" + "Functions\/Select.html#select-join", + "join, leftjoin, rightjoin" ], - "wrapalign": [ + "markers": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#wrapalign", - "wrapAlign" + "Functions\/Select.html#select-markers", + "markers" ], - "notrimwrap": [ + "quoting-of-fields": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#notrimwrap", - "noTrimWrap" + "Functions\/Select.html#selectQuotingOfFields", + "Quoting of fields" ], - "wrap2": [ + "split-1": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#wrap2", - "wrap2" + "Functions\/Split.html#split", + "split" ], - "datawrap": [ + "token": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#datawrap", - "dataWrap" + "Functions\/Split.html#split-token", + "token" ], - "prepend": [ + "min": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#prepend", - "prepend" + "Functions\/Split.html#split-min", + "min" ], - "append": [ + "returnkey": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#append", - "append" + "Functions\/Split.html#split-returnKey", + "returnKey" ], - "wrap3": [ + "returncount": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#wrap3", - "wrap3" + "Functions\/Split.html#split-returnCount", + "returnCount" ], - "orderedstdwrap": [ + "cobjnum": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#orderedstdwrap", - "orderedStdWrap" + "Functions\/Split.html#split-cObjNum", + "cObjNum" ], - "outerwrap": [ + "1-2-3-4": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#outerwrap", - "outerWrap" + "Gifbuilder\/Properties.html#gifbuilder-properties-array", + "1,2,3,4..." ], - "insertdata": [ + "stdwrap-1": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#insertdata", - "insertData" + "Functions\/Stdwrap.html#stdwrap", + "stdWrap" ], - "postuserfunc": [ + "content-supplying-properties-of-stdwrap": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#postuserfunc", - "postUserFunc" + "Functions\/Stdwrap.html#stdwrap-properties-content-supply", + "Content-supplying properties of stdWrap" ], - "postuserfuncint": [ + "properties-for-getting-data": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#postuserfuncint", - "postUserFuncInt" + "Functions\/Stdwrap.html#stdwrap-get-data", + "Properties for getting data" ], - "prefixcomment": [ + "properties-for-overriding-and-conditions": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#prefixcomment", - "prefixComment" + "Functions\/Stdwrap.html#stdwrap-override-conditions", + "Properties for overriding and conditions" ], - "htmlsanitize": [ + "properties-for-parsing-data": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#htmlsanitize", - "htmlSanitize" + "Functions\/Stdwrap.html#stdwrap-properties-parsing", + "Properties for parsing data" ], - "cache": [ + "properties-for-wrapping-data": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#cache", - "cache" + "Functions\/Stdwrap.html#stdwrap-properties-wrap", + "Properties for wrapping data" ], - "debugfunc": [ + "properties-for-sanitizing-and-caching-data": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#debugfunc", - "debugFunc" + "Functions\/Stdwrap.html#stdwrap-properties-cache", + "Properties for sanitizing and caching data" ], - "debugdata": [ + "properties-for-debugging-data": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#debugdata", - "debugData" + "Functions\/Stdwrap.html#stdwrap-properties-debug", + "Properties for debugging data" ], "strpad-1": [ "TypoScript Explained", "main", - "Functions\/Strpad.html#strpad-1", + "Functions\/Strpad.html#strpad", "strPad" ], "length": [ "TypoScript Explained", "main", - "Functions\/Strpad.html#length", + "Functions\/Strpad.html#strpad-length", "length" ], "padwith": [ "TypoScript Explained", "main", - "Functions\/Strpad.html#padwith", + "Functions\/Strpad.html#strpad-padWith", "padWith" ], "type": [ @@ -21973,247 +21529,247 @@ "tags-1": [ "TypoScript Explained", "main", - "Functions\/Tags.html#tags-1", + "Functions\/Tags.html#tags", "tags" ], "array-of-strings": [ "TypoScript Explained", "main", - "Functions\/Tags.html#array-of-strings", + "Functions\/Tags.html#tags-array", "(array of strings)" ], "typolink-1": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-1", + "Functions\/Typolink.html#typolink", "typolink" ], "exttarget": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#exttarget", + "Functions\/Typolink.html#typolink-extTarget", "extTarget" ], "filetarget": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#filetarget", + "Functions\/Typolink.html#typolink-fileTarget", "fileTarget" ], "language": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#language", + "Functions\/Typolink.html#typolink-language", "language" ], "no-cache": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#no-cache", + "Functions\/Typolink.html#typolink-no-cache", "no_cache" ], "additionalparams": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#additionalparams", + "Functions\/Typolink.html#typolink-additionalParams", "additionalParams" ], "addquerystring": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#addquerystring", + "Functions\/Typolink.html#typolink-addQueryString", "addQueryString" ], "addquerystring-exclude": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#addquerystring-exclude", + "Functions\/Typolink.html#typolink-addQueryString-exclude", "addQueryString.exclude" ], "atagbeforewrap": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#atagbeforewrap", + "Functions\/Typolink.html#typolink-ATagBeforeWrap", "ATagBeforeWrap" ], "parameter": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#parameter", + "Functions\/Typolink.html#typolink-parameter", "parameter" ], "forceabsoluteurl": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#forceabsoluteurl", + "Functions\/Typolink.html#typolink-forceAbsoluteUrl", "forceAbsoluteUrl" ], "forceabsoluteurl-scheme": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#forceabsoluteurl-scheme", + "Functions\/Typolink.html#typolink-forceAbsoluteUrl-scheme", "forceAbsoluteUrl.scheme" ], "jswindow-params": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#jswindow-params", + "Functions\/Typolink.html#typolink-JSwindow-params", "JSwindow_params" ], "returnlast": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#returnlast", + "Functions\/Typolink.html#typolink-returnLast", "returnLast" ], "section": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#section", + "Functions\/Typolink.html#typolink-section", "section" ], "atagparams": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#atagparams", + "Functions\/Typolink.html#typolink-ATagParams", "ATagParams" ], "linkaccessrestrictedpages": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#linkaccessrestrictedpages", + "Functions\/Typolink.html#typolink-linkAccessRestrictedPages", "linkAccessRestrictedPages" ], "resource-references": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#resource-references", + "Functions\/Typolink.html#typolink-resource_references", "Resource references" ], "handler-syntax": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#handler-syntax", + "Functions\/Typolink.html#typolink-handler-syntax", "Handler syntax" ], "page-uid": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#page-uid", + "Functions\/Typolink.html#typolink-handler-page-uid", "page.uid" ], "page-alias": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#page-alias", + "Functions\/Typolink.html#typolink-handler-page-alias", "page.alias" ], "page-type": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#page-type", + "Functions\/Typolink.html#typolink-handler-page-type", "page.type" ], "page-parameters": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#page-parameters", + "Functions\/Typolink.html#typolink-handler-page-parameters", "page.parameters" ], "page-fragment": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#page-fragment", + "Functions\/Typolink.html#typolink-handler-page-fragment", "page.fragment" ], "file-uid": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#file-uid", + "Functions\/Typolink.html#typolink-handler-file-uid", "file.uid" ], "file-identifier": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#file-identifier", + "Functions\/Typolink.html#typolink-handler-file-identifier", "file.identifier" ], "folder": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#folder", + "Functions\/Typolink.html#typolink-handler-folder", "folder" ], "folder-identifier": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#folder-identifier", + "Functions\/Typolink.html#typolink-handler-folder-identifier", "folder.identifier" ], "folder-storage": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#folder-storage", + "Functions\/Typolink.html#typolink-handler-folder-storage", "folder.storage" ], "email": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#email", + "Functions\/Typolink.html#typolink-handler-email", "email" ], "url": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#url", + "Functions\/Typolink.html#typolink-handler-url", "url" ], "record": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#record", + "Functions\/Typolink.html#typolink-handler-record", "record" ], "record-identifier": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#record-identifier", + "Functions\/Typolink.html#typolink-handler-record-identifier", "record.identifier" ], "record-uid": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#record-uid", + "Functions\/Typolink.html#typolink-handler-record-uid", "record.uid" ], "phone": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#phone", + "Functions\/Typolink.html#typolink-handler-phone", "phone" ], "using-link-handlers": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#using-link-handlers", + "Functions\/Typolink.html#link-handler", "Using link handlers" ], "note-on-calc": [ "TypoScript Explained", "main", - "Gifbuilder\/Calc.html#note-on-calc", + "Gifbuilder\/Calc.html#gifbuilder-calc", "Note on (+calc)" ], "colors-in-typoscript-gifbuilder": [ "TypoScript Explained", "main", - "Gifbuilder\/Colors.html#colors-in-typoscript-gifbuilder", + "Gifbuilder\/Colors.html#gifbuilder-colors", "Colors in TypoScript GIFBUILDER" ], "using-the-avif-format": [ "TypoScript Explained", "main", - "Gifbuilder\/Examples.html#using-the-avif-format", + "Gifbuilder\/Examples.html#gifbuilder-examples-avif", "Using the AVIF format" ], "masking-semi-transparent-images-logos-onto-other-images": [ @@ -22261,7 +21817,7 @@ "setup": [ "TypoScript Explained", "main", - "UserTsconfig\/Setup.html#setup", + "UserTsconfig\/Setup.html#user-setup", "setup" ], "result": [ @@ -22279,7 +21835,7 @@ "constants": [ "TypoScript Explained", "main", - "UsingSetting\/Constants.html#constants", + "UsingSetting\/Constants.html#typoscript-syntax-constants", "Constants" ], "notes": [ @@ -22291,745 +21847,763 @@ "quality": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#quality", + "Gifbuilder\/Properties.html#gifbuilder-properties-quality", "quality" ], "gifbuilder-1": [ "TypoScript Explained", "main", - "Gifbuilder\/Index.html#gifbuilder-1", + "Gifbuilder\/Index.html#gifbuilder-toc", "GIFBUILDER" ], "adjust": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Adjust\/Index.html#adjust", + "Gifbuilder\/ObjectNames\/Adjust\/Index.html#gifbuilder-adjust", "ADJUST" ], "inputlevels": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Adjust\/Index.html#inputlevels", + "Gifbuilder\/ObjectNames\/Adjust\/Index.html#gifbuilder-adjust-inputLevels", "inputLevels" ], "outputlevels": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Adjust\/Index.html#outputlevels", + "Gifbuilder\/ObjectNames\/Adjust\/Index.html#gifbuilder-adjust-outputLevels", "outputLevels" ], "autolevels": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Adjust\/Index.html#autolevels", + "Gifbuilder\/ObjectNames\/Adjust\/Index.html#gifbuilder-adjust-autoLevels", "autoLevels" ], "box": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Box\/Index.html#box", + "Gifbuilder\/ObjectNames\/Box\/Index.html#gifbuilder-box", "BOX" ], "align": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#align", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-align", "align" ], "color": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Shadow\/Index.html#color", + "Gifbuilder\/ObjectNames\/Shadow\/Index.html#gifbuilder-shadow-color", "color" ], "dimensions": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Ellipse\/Index.html#dimensions", + "Gifbuilder\/ObjectNames\/Ellipse\/Index.html#gifbuilder-ellipse-dimensions", "dimensions" ], "opacity": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Shadow\/Index.html#opacity", + "Gifbuilder\/ObjectNames\/Shadow\/Index.html#gifbuilder-shadow-opacity", "opacity" ], "backcolor": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#backcolor", + "Gifbuilder\/Properties.html#gifbuilder-properties-backColor", "backColor" ], "effect": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#effect", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect", "EFFECT" ], "syntax": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#syntax", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-syntax", "Syntax" ], "blur": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Shadow\/Index.html#blur", + "Gifbuilder\/ObjectNames\/Shadow\/Index.html#gifbuilder-shadow-blur", "blur" ], "charcoal": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#charcoal", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-charcoal", "charcoal" ], "colors": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#colors", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-colors", "colors" ], "edge": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#edge", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-edge", "edge" ], "emboss": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#emboss", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-emboss", "emboss" ], "flip": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#flip", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-flip", "flip" ], "flop": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#flop", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-flop", "flop" ], "gamma": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#gamma", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-gamma", "gamma" ], "gray": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#gray", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-gray", "gray" ], "invert": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#invert", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-invert", "invert" ], "rotate": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#rotate", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-rotate", "rotate" ], "sharpen": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#sharpen", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-niceText-sharpen", "sharpen" ], "shear": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#shear", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-shear", "shear" ], "solarize": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#solarize", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-solarize", "solarize" ], "swirl": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#swirl", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-swirl", "swirl" ], "wave": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#wave", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-wave", "wave" ], "ellipse": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Ellipse\/Index.html#ellipse", + "Gifbuilder\/ObjectNames\/Ellipse\/Index.html#gifbuilder-ellipse", "ELLIPSE" ], "highcolor": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Emboss\/Index.html#highcolor", + "Gifbuilder\/ObjectNames\/Emboss\/Index.html#gifbuilder-emboss-highColor", "highColor" ], "intensity": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Shadow\/Index.html#intensity", + "Gifbuilder\/ObjectNames\/Shadow\/Index.html#gifbuilder-shadow-intensity", "intensity" ], "lowcolor": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Emboss\/Index.html#lowcolor", + "Gifbuilder\/ObjectNames\/Emboss\/Index.html#gifbuilder-emboss-lowColor", "lowColor" ], "offset": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#offset", + "Gifbuilder\/Properties.html#gifbuilder-properties-offset", "offset" ], "textobjnum": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Shadow\/Index.html#textobjnum", + "Gifbuilder\/ObjectNames\/Shadow\/Index.html#gifbuilder-shadow-textObjNum", "textObjNum" ], "mask": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Image\/Index.html#mask", + "Gifbuilder\/ObjectNames\/Image\/Index.html#gifbuilder-image-mask", "mask" ], "tile": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Image\/Index.html#tile", + "Gifbuilder\/ObjectNames\/Image\/Index.html#gifbuilder-image-tile", "tile" ], "gifbuilder-objects": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Index.html#gifbuilder-objects", + "Gifbuilder\/ObjectNames\/Index.html#gifbuilder-object-names", "GIFBUILDER objects" ], "outline": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#outline", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-outline", "outline" ], "thickness": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Outline\/Index.html#thickness", + "Gifbuilder\/ObjectNames\/Outline\/Index.html#gifbuilder-outline-thickness", "thickness" ], "scale": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Scale\/Index.html#scale", + "Gifbuilder\/ObjectNames\/Scale\/Index.html#gifbuilder-scale", "SCALE" ], "shadow": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#shadow", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-shadow", "shadow" ], "angle": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#angle", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-angle", "angle" ], "antialias": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#antialias", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-antiAlias", "antiAlias" ], "breakspace": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#breakspace", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-breakSpace", "breakSpace" ], "breakwidth": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#breakwidth", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-breakWidth", "breakWidth" ], "donotstriphtml": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#donotstriphtml", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-doNotStripHTML", "doNotStripHTML" ], "fontcolor": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#fontcolor", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-fontColor", "fontColor" ], "fontfile": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#fontfile", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-fontFile", "fontFile" ], "fontsize": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#fontsize", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-fontSize", "fontSize" ], "hide": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#hide", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-hide", "hide" ], "iterations": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#iterations", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-iterations", "iterations" ], "maxwidth": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#maxwidth", + "Gifbuilder\/Properties.html#gifbuilder-properties-maxWidth", "maxWidth" ], "nicetext": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#nicetext", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-niceText", "niceText" ], "after": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#after", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-niceText-after", "after" ], "before": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#before", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-niceText-before", "before" ], "scalefactor": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#scalefactor", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-niceText-scaleFactor", "scaleFactor" ], "spacing": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#spacing", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-spacing", "spacing" ], "splitrendering": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#splitrendering", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-splitRendering", "splitRendering" ], "array": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#array", + "Gifbuilder\/Properties.html#gifbuilder-properties-charRangeMap-array", "[array]" ], "compx": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#compx", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-splitRendering-compX", "compX" ], "compy": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#compy", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-splitRendering-compY", "compY" ], "textmaxlength": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#textmaxlength", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-textMaxLength", "textMaxLength" ], "wordspacing": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#wordspacing", + "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-wordSpacing", "wordSpacing" ], "workarea": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#workarea", + "Gifbuilder\/Properties.html#gifbuilder-properties-workArea", "workArea" ], "clear": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Workarea\/Index.html#clear", + "Gifbuilder\/ObjectNames\/Workarea\/Index.html#gifbuilder-workarea-clear", "clear" ], "set": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Workarea\/Index.html#set", + "Gifbuilder\/ObjectNames\/Workarea\/Index.html#gifbuilder-workarea-set", "set" ], "charrangemap": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#charrangemap", + "Gifbuilder\/Properties.html#gifbuilder-properties-charRangeMap", "charRangeMap" ], "array-charmapconfig": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#array-charmapconfig", + "Gifbuilder\/Properties.html#gifbuilder-properties-charRangeMap-charMapConfig", "[array].charMapConfig" ], "array-fontsizemultiplicator": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#array-fontsizemultiplicator", + "Gifbuilder\/Properties.html#gifbuilder-properties-charRangeMap-fontSizeMultiplicator", "[array].fontSizeMultiplicator" ], "array-pixelspacefontsizeref": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#array-pixelspacefontsizeref", + "Gifbuilder\/Properties.html#gifbuilder-properties-charRangeMap-pixelSpaceFontSizeRef", "[array].pixelSpaceFontSizeRef" ], "format": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#format", + "Gifbuilder\/Properties.html#gifbuilder-properties-format", "format" ], "maxheight": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#maxheight", + "Gifbuilder\/Properties.html#gifbuilder-properties-maxHeight", "maxHeight" ], "speed": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#speed", + "Gifbuilder\/Properties.html#gifbuilder-properties-speed", "speed" ], "transparentbackground": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#transparentbackground", + "Gifbuilder\/Properties.html#gifbuilder-properties-transparentBackground", "transparentBackground" ], "transparentcolor": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#transparentcolor", + "Gifbuilder\/Properties.html#gifbuilder-properties-transparentColor", "transparentColor" ], "closest": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#closest", + "Gifbuilder\/Properties.html#gifbuilder-properties-transparentColor-closest", "closest" ], "xy": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#xy", + "Gifbuilder\/Properties.html#gifbuilder-properties-XY", "XY" ], "reducecolors": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#reducecolors", + "Gifbuilder\/Properties.html#gifbuilder-properties-reduceColors", "reduceColors" ], "glossary-1": [ "TypoScript Explained", "main", - "Glossary.html#glossary-1", + "Glossary.html#glossary", "Glossary" ], "reading-content-records": [ "TypoScript Explained", "main", - "Guide\/Content\/Index.html#reading-content-records", + "Guide\/Content\/Index.html#guide-content-records", "Reading content records" ], "insert-content-in-a-html-template": [ "TypoScript Explained", "main", - "Guide\/Content\/Index.html#insert-content-in-a-html-template", + "Guide\/Content\/Index.html#insert-content-in-a-template", "Insert content in a HTML template" ], "the-various-content-elements": [ "TypoScript Explained", "main", - "Guide\/Content\/Index.html#the-various-content-elements", + "Guide\/Content\/Index.html#guide-content-elements", "The various content elements" ], "first-steps": [ "TypoScript Explained", "main", - "Guide\/FirstSteps\/Index.html#first-steps", + "Guide\/FirstSteps\/Index.html#guide-first-steps", "First steps" ], "getting-started-a-quick-introduction-into-typoscript": [ "TypoScript Explained", "main", - "Guide\/Index.html#getting-started-a-quick-introduction-into-typoscript", + "Guide\/Index.html#guide", "Getting started: A quick introduction into TypoScript" ], "create-a-menu-with-typoscript": [ "TypoScript Explained", "main", - "Guide\/Menu\/Index.html#create-a-menu-with-typoscript", + "Guide\/Menu\/Index.html#guide-menu", "Create a menu with TypoScript" ], "next-steps": [ "TypoScript Explained", "main", - "Guide\/NextSteps\/Index.html#next-steps", + "Guide\/NextSteps\/Index.html#guide-next-steps", "Next steps" ], "typoscript-a-quick-overview": [ "TypoScript Explained", "main", - "Guide\/Overview\/Index.html#typoscript-a-quick-overview", + "Guide\/Overview\/Index.html#guide-overview", "TypoScript - A quick overview" ], "backend-configuration": [ "TypoScript Explained", "main", - "Guide\/Overview\/Index.html#backend-configuration", + "Guide\/Overview\/Index.html#guide-backend-configuration", "Backend configuration" ], "prerequisites": [ "TypoScript Explained", "main", - "Guide\/Overview\/Index.html#prerequisites", + "Guide\/Overview\/Index.html#guide-prerequisites", "Prerequisites" ], "why-typoscript": [ "TypoScript Explained", "main", - "Guide\/Overview\/Index.html#why-typoscript", + "Guide\/Overview\/Index.html#guide-why-typoscript", "Why TypoScript?" ], "the-main-typoscript-record": [ "TypoScript Explained", "main", - "Guide\/Overview\/Index.html#the-main-typoscript-record", + "Guide\/Overview\/Index.html#guide-main-typoscript-record", "The main TypoScript record" ], "the-term-template": [ "TypoScript Explained", "main", - "Guide\/Overview\/Index.html#the-term-template", + "Guide\/Overview\/Index.html#guide-template", "The term \"template\"" ], "troubleshooting": [ "TypoScript Explained", "main", - "Guide\/Overview\/Index.html#troubleshooting", + "Guide\/Overview\/Index.html#guide-troubleshooting", "Troubleshooting" ], "typoscript-is-just-an-array": [ "TypoScript Explained", "main", - "Guide\/Overview\/Index.html#typoscript-is-just-an-array", + "Guide\/Overview\/Index.html#guide-typoscript-array", "TypoScript is just an array" ], "configure-the-page-in-typoscript": [ "TypoScript Explained", "main", - "Guide\/Page\/Index.html#configure-the-page-in-typoscript", + "Guide\/Page\/Index.html#guide-page", "Configure the PAGE in TypoScript" ], "displaying-the-page-body-with-typoscript": [ "TypoScript Explained", "main", - "Guide\/Page\/Index.html#displaying-the-page-body-with-typoscript", + "Guide\/Page\/Index.html#guide-page-body", "Displaying the page body with TypoScript" ], "loading-css-in-typoscript": [ "TypoScript Explained", "main", - "Guide\/Page\/Index.html#loading-css-in-typoscript", + "Guide\/Page\/Index.html#guide-page-loading-css", "Loading CSS in TypoScript" ], "loading-javascript-in-typoscript": [ "TypoScript Explained", "main", - "Guide\/Page\/Index.html#loading-javascript-in-typoscript", + "Guide\/Page\/Index.html#guide-page-loading-js", "Loading JavaScript in TypoScript" ], "favicon-shortcut-icon-definition-in-the-typoscript-page": [ "TypoScript Explained", "main", - "Guide\/Page\/Index.html#favicon-shortcut-icon-definition-in-the-typoscript-page", + "Guide\/Page\/Index.html#guide-page-favicon", "Favicon \/ shortcut icon definition in the TypoScript PAGE" ], "tracking-code-add-content-to-the-end-of-your-page": [ "TypoScript Explained", "main", - "Guide\/Page\/Index.html#tracking-code-add-content-to-the-end-of-your-page", + "Guide\/Page\/Index.html#guide-page-tracking-code", "Tracking code: Add content to the end of your page" ], "using-the-gettext-data-type": [ "TypoScript Explained", "main", - "Guide\/TypoScriptFunctions\/GetText\/Index.html#using-the-gettext-data-type", + "Guide\/TypoScriptFunctions\/GetText\/Index.html#using-gettext", "Using the getText data type" ], "imgresource": [ "TypoScript Explained", "main", - "Guide\/TypoScriptFunctions\/ImgResource\/Index.html#imgresource", + "Guide\/TypoScriptFunctions\/ImgResource\/Index.html#guide-imgresource", "imgResource" ], "typoscript-functions": [ "TypoScript Explained", "main", - "Guide\/TypoScriptFunctions\/Index.html#typoscript-functions", + "Guide\/TypoScriptFunctions\/Index.html#guide-functions", "TypoScript functions" ], + "parsefunc": [ + "TypoScript Explained", + "main", + "Guide\/TypoScriptFunctions\/ParseFunc\/Index.html#guide-function-parsefunc", + "parseFunc" + ], + "split": [ + "TypoScript Explained", + "main", + "Guide\/TypoScriptFunctions\/Split\/Index.html#guide-function-split", + "split" + ], "using-stdwrap-correctly": [ "TypoScript Explained", "main", - "Guide\/TypoScriptFunctions\/StdWrap\/Index.html#using-stdwrap-correctly", + "Guide\/TypoScriptFunctions\/StdWrap\/Index.html#guide-using-stdwrap", "Using stdWrap correctly" ], "heed-the-order": [ "TypoScript Explained", "main", - "Guide\/TypoScriptFunctions\/StdWrap\/Index.html#heed-the-order", + "Guide\/TypoScriptFunctions\/StdWrap\/Index.html#guide-stdwrap-order", "Heed the order" ], "modify-the-order": [ "TypoScript Explained", "main", - "Guide\/TypoScriptFunctions\/StdWrap\/Index.html#modify-the-order", + "Guide\/TypoScriptFunctions\/StdWrap\/Index.html#guide-stdwrap-recursively", "Modify the order" ], "the-data-type": [ "TypoScript Explained", "main", - "Guide\/TypoScriptFunctions\/StdWrap\/Index.html#the-data-type", + "Guide\/TypoScriptFunctions\/StdWrap\/Index.html#guide-data-types", "The data type" ], + "cobject": [ + "TypoScript Explained", + "main", + "Guide\/TypoScriptFunctions\/StdWrap\/Index.html#guide-stdwrap-cobject", + "cObject" + ], "objects-executing-database-queries": [ "TypoScript Explained", "main", - "Guide\/TypoScriptObjects\/DatabaseQueries\/Index.html#objects-executing-database-queries", + "Guide\/TypoScriptObjects\/DatabaseQueries\/Index.html#guide-cobjects-database-queries", "Objects executing database queries" ], "further-objects": [ "TypoScript Explained", "main", - "Guide\/TypoScriptObjects\/FurtherObjects\/Index.html#further-objects", + "Guide\/TypoScriptObjects\/FurtherObjects\/Index.html#guide-cobjects-further-cobjects", "Further objects" ], "typoscript-objects": [ "TypoScript Explained", "main", - "Guide\/TypoScriptObjects\/Index.html#typoscript-objects", + "Guide\/TypoScriptObjects\/Index.html#guide-cobjects", "TypoScript objects" ], "objects-rendering-content": [ "TypoScript Explained", "main", - "Guide\/TypoScriptObjects\/RenderingContent\/Index.html#objects-rendering-content", + "Guide\/TypoScriptObjects\/RenderingContent\/Index.html#guide-cobjects-rendering-content", "Objects rendering content" ], "using-fluid-styled-content-1": [ "TypoScript Explained", "main", - "Guide\/UsingFluidStyledContent\/Index.html#using-fluid-styled-content-1", + "Guide\/UsingFluidStyledContent\/Index.html#using-fluid-styled-content", "Using fluid_styled_content" ], "typoscript-explained": [ "TypoScript Explained", "main", - "Index.html#typoscript-explained", + "Index.html#start", "TypoScript Explained" ], "introduction-into-typoscript": [ "TypoScript Explained", "main", - "Introduction\/Index.html#introduction-into-typoscript", + "Introduction\/Index.html#introduction", "Introduction into TypoScript" ], "frontend-typoscript": [ "TypoScript Explained", "main", - "Introduction\/Index.html#frontend-typoscript", + "Introduction\/Index.html#introduction-frontend-typoscript", "Frontend TypoScript" ], "backend-typoscript-tsconfig": [ "TypoScript Explained", "main", - "Introduction\/Index.html#backend-typoscript-tsconfig", + "Introduction\/Index.html#about-tsconfig", "Backend TypoScript \/ TSconfig" ], "page-tsconfig": [ "TypoScript Explained", "main", - "Introduction\/Index.html#page-tsconfig", + "Introduction\/Index.html#about-page-tsconfig", "Page TSconfig" ], "user-tsconfig": [ "TypoScript Explained", "main", - "Introduction\/Index.html#user-tsconfig", + "Introduction\/Index.html#about-user-tsconfig", "User TSconfig" ], "colorpalettes": [ "TypoScript Explained", "main", - "PageTsconfig\/ColorPalettes.html#colorpalettes", + "PageTsconfig\/ColorPalettes.html#pagecolorpalettes", "colorPalettes" ], "basic-syntax": [ "TypoScript Explained", "main", - "PageTsconfig\/Templates.html#basic-syntax", + "PageTsconfig\/Templates.html#pagetemplates-syntax", "Basic syntax" ], "page-tsconfig-reference": [ "TypoScript Explained", "main", - "PageTsconfig\/Index.html#page-tsconfig-reference", + "PageTsconfig\/Index.html#pagetoplevelobjects", "Page TSconfig Reference" ], "shared": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Shared.html#shared", + "PageTsconfig\/Mod\/Shared.html#mod-shared", "SHARED" ], "colpos-list": [ @@ -23041,13 +22615,13 @@ "example-make-a-column-in-a-backend-layout-not-editable": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Shared.html#example-make-a-column-in-a-backend-layout-not-editable", + "PageTsconfig\/Mod\/Shared.html#example_for_backend_layout", "Example: Make a column in a backend layout not editable" ], "defaultlanguageflag": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Shared.html#defaultlanguageflag", + "PageTsconfig\/Mod\/Shared.html#pageTsConfigSharedDefaultLanguageLabel", "defaultLanguageFlag" ], "example-show-a-german-flag-on-a-nullsite": [ @@ -23059,7 +22633,7 @@ "defaultlanguagelabel": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#defaultlanguagelabel", + "PageTsconfig\/Mod\/WebLayout.html#mod-web-layout-defaultLanguageLabel", "defaultLanguageLabel" ], "disablelanguages": [ @@ -23083,19 +22657,19 @@ "fielddefinitions": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebInfo.html#fielddefinitions", + "PageTsconfig\/Mod\/WebInfo.html#fieldDefinitions-webinfo", "fieldDefinitions" ], "example-override-the-field-definitions-in-the-info-module": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebInfo.html#example-override-the-field-definitions-in-the-info-module", + "PageTsconfig\/Mod\/WebInfo.html#fieldDefinitions-webinfo-example", "Example: Override the field definitions in the info module" ], "backend-layouts-1": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#backend-layouts-1", + "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#backend-layouts", "Backend layouts" ], "example-use-a-backend-layout-in-the-page-content-data-processor": [ @@ -23107,127 +22681,127 @@ "web-layout": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#web-layout", + "PageTsconfig\/Mod\/WebLayout.html#pagewebpage", "web_layout" ], "allowinconsistentlanguagehandling": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#allowinconsistentlanguagehandling", + "PageTsconfig\/Mod\/WebLayout.html#mod-web-layout-allowInconsistentLanguageHandling", "allowInconsistentLanguageHandling" ], "example-allow-inconsistent-language-modes": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#example-allow-inconsistent-language-modes", + "PageTsconfig\/Mod\/WebLayout.html#mod-web-layout-allowInconsistentLanguageHandling-example", "Example: Allow inconsistent language modes" ], "backendlayouts": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#backendlayouts", + "PageTsconfig\/Mod\/WebLayout.html#mod-web-layout-backendLayouts", "BackendLayouts" ], "example-define-a-backend-layout": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#example-define-a-backend-layout", + "PageTsconfig\/Mod\/WebLayout.html#mod-web-layout-backendLayouts-example", "Example: Define a backend layout" ], "deflangbinding": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#deflangbinding", + "PageTsconfig\/Mod\/WebLayout.html#mod-web-layout-defLangBinding", "defLangBinding" ], "hiderestrictedcols": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#hiderestrictedcols", + "PageTsconfig\/Mod\/WebLayout.html#mod-web-layout-hideRestrictedCols", "hideRestrictedCols" ], "localization-enablecopy": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#localization-enablecopy", + "PageTsconfig\/Mod\/WebLayout.html#mod-web-layout-localization-enableCopy", "localization.enableCopy" ], "example-disable-free-mode-button-for-localization": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#example-disable-free-mode-button-for-localization", + "PageTsconfig\/Mod\/WebLayout.html#mod-web-layout-localization-enableCopy-example", "Example: Disable free mode button for localization" ], "localization-enabletranslate": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#localization-enabletranslate", + "PageTsconfig\/Mod\/WebLayout.html#mod-web-layout-localization-enableTranslate", "localization.enableTranslate" ], "example-disable-connected-mode-button-for-translation": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#example-disable-connected-mode-button-for-translation", + "PageTsconfig\/Mod\/WebLayout.html#mod-web-layout-localization-enableTranslate-example", "Example: Disable \"connected mode\" button for translation" ], "menu-functions": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#menu-functions", + "PageTsconfig\/Mod\/WebLayout.html#pageblindingfunctionmenuoptions-weblayout", "menu.functions" ], "example-disable-languages-from-the-function-menu": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#example-disable-languages-from-the-function-menu", + "PageTsconfig\/Mod\/WebLayout.html#pageblindingfunctionmenuoptions-weblayout-example", "Example: Disable \"Languages\" from the function menu" ], "nocreaterecordslink": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#nocreaterecordslink", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-noCreateRecordsLink", "noCreateRecordsLink" ], "tt-content-preview": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#tt-content-preview", + "PageTsconfig\/Mod\/WebLayout.html#pageweblayoutpreview", "tt_content.preview" ], "example-define-previews-for-custom-content-elements": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#example-define-previews-for-custom-content-elements", + "PageTsconfig\/Mod\/WebLayout.html#pageweblayoutpreview-example", "Example: Define previews for custom content elements" ], "web-list": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#web-list", + "PageTsconfig\/Mod\/WebList.html#pageweblist", "web_list" ], "allowednewtables": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#allowednewtables", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebListAllowedNewTables", "allowedNewTables" ], "example-only-allow-records-of-type-pages-or-sys-category-in-the-new-record-wizard": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#example-only-allow-records-of-type-pages-or-sys-category-in-the-new-record-wizard", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebListAllowedNewTable-example", "Example: Only allow records of type pages or sys_category in the new record wizard" ], "clicktitlemode": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#clicktitlemode", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-clickTitleMode", "clickTitleMode" ], "csvdelimiter": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#csvdelimiter", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-csvDelimiter", "csvDelimiter" ], "example-use-semicolon-as-delimiter-csv-downloads": [ @@ -23239,19 +22813,19 @@ "csvquote": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#csvquote", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-csvQuote", "csvQuote" ], "example-use-single-quotes-as-quoting-character-for-csv-downloads": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#example-use-single-quotes-as-quoting-character-for-csv-downloads", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-csvQuote-example", "Example: Use single quotes as quoting character for CSV downloads" ], "deniednewtables": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#deniednewtables", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebListDeniedNewTables", "deniedNewTables" ], "hide-create-new-record-links-in-tables-sys-category-and-tt-content": [ @@ -23260,196 +22834,202 @@ "PageTsconfig\/Mod\/WebList.html#hide-create-new-record-links-in-tables-sys-category-and-tt-content", "Hide \"Create new record\" links in tables sys_category and tt_content" ], + "disablesearchbox": [ + "TypoScript Explained", + "main", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-disableSearchBox", + "disableSearchBox" + ], "disablesingletableview": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#disablesingletableview", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-disableSingleTableView", "disableSingleTableView" ], "displaycolumnselector": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#displaycolumnselector", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-displayColumnSelector", "displayColumnSelector" ], "example-hide-the-column-selector": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#example-hide-the-column-selector", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-displayColumnSelector-example", "Example: Hide the column selector" ], "downloadpresets": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#downloadpresets", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-downloadPresets", "downloadPresets" ], "example-create-download-presets-for-table-page": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#example-create-download-presets-for-table-page", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-downloadPresets-example", "Example: Create download presets for table page" ], "enableclipboard": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#enableclipboard", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-enableClipBoard", "enableClipBoard" ], "enabledisplaybigcontrolpanel": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#enabledisplaybigcontrolpanel", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-enableDisplayBigControlPanel", "enableDisplayBigControlPanel" ], "hidetables": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#hidetables", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-hideTables", "hideTables" ], "hidetranslations": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#hidetranslations", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-hideTranslations", "hideTranslations" ], "example-hide-all-translated-records": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#example-hide-all-translated-records", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-hideTranslations-example-all", "Example: Hide all translated records" ], "example-hide-translated-records-in-tables-tt-content-and-tt-news": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#example-hide-translated-records-in-tables-tt-content-and-tt-news", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-hideTranslations-example", "Example: Hide translated records in tables tt_content and tt_news" ], "itemslimitpertable": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#itemslimitpertable", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-itemsLimitPerTable", "itemsLimitPerTable" ], "example-limit-items-per-table-in-overview-to-10": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#example-limit-items-per-table-in-overview-to-10", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-itemsLimitPerTable-example", "Example: Limit items per table in overview to 10" ], "itemslimitsingletable": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#itemslimitsingletable", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-itemsLimitSingleTable", "itemsLimitSingleTable" ], "example-limit-items-in-single-table-view-to-10": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#example-limit-items-in-single-table-view-to-10", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-itemsLimitSingleTable-example", "Example: Limit items in single table view to 10" ], "listonlyinsingletableview": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#listonlyinsingletableview", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-listOnlyInSingleTableView", "listOnlyInSingleTableView" ], "example-only-list-records-of-tables-in-single-table-mode": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#example-only-list-records-of-tables-in-single-table-mode", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-listOnlyInSingleTableView-example", "Example: Only list records of tables in single-table mode" ], "newpagewizard-override": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#newpagewizard-override", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-newPageWizard-override", "newPageWizard.override" ], "example-hide-the-create-new-record-link": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#example-hide-the-create-new-record-link", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-noCreateRecordsLink-example", "Example: Hide the \"Create new record\" link." ], "noexportrecordslinks": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#noexportrecordslinks", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-noExportRecordsLinks", "noExportRecordsLinks" ], "example-hide-the-download-and-export-links": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#example-hide-the-download-and-export-links", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-noExportRecordsLinks-example", "Example: Hide the \"Download\" and \"Export\" links" ], "noviewwithdoktypes": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#noviewwithdoktypes", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-noViewWithDokTypes", "noViewWithDokTypes" ], "table-tablename-hidetable": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#table-tablename-hidetable", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-table-tableName-hideTable", "table.[tableName].hideTable" ], "example-hide-table-tt-content": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#example-hide-table-tt-content", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-table-tableName-hideTable-example", "Example: Hide table tt_content" ], "table-tablename-displaycolumnselector": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#table-tablename-displaycolumnselector", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-table-tableName-displayColumnSelector", "table.[tableName].displayColumnSelector" ], "example-hide-the-column-selector-for-tt-content": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#example-hide-the-column-selector-for-tt-content", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-table-tableName-displayColumnSelector-example-disable", "Example: Hide the column selector for tt_content" ], "example-hide-the-column-selector-for-all-tables-but-sys-category": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#example-hide-the-column-selector-for-all-tables-but-sys-category", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-table-tableName-displayColumnSelector-example-enable", "Example: Hide the column selector for all tables but sys_category" ], "tabledisplayorder": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#tabledisplayorder", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-tableDisplayOrder", "tableDisplayOrder" ], "searchlevel-items": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#searchlevel-items", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-searchLevel-items", "searchLevel.items" ], "searchlevel-default": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#searchlevel-default", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-searchLevel-default", "searchLevel.default" ], "example-set-the-default-search-level-to-infinite-levels": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#example-set-the-default-search-level-to-infinite-levels", + "PageTsconfig\/Mod\/WebList.html#pageTsConfigWebList-searchLevel-default-example", "Example: Set the default search level to \"infinite levels\"" ], "web-view": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebView.html#web-view", + "PageTsconfig\/Mod\/WebView.html#pagewebview", "web_view" ], "previewframewidths": [ @@ -23473,73 +23053,73 @@ "wizards": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#wizards", + "PageTsconfig\/Mod\/Wizards.html#page-mod-wizard", "wizards" ], "newcontentelement-wizarditems": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#newcontentelement-wizarditems", + "PageTsconfig\/Mod\/Wizards.html#pagenewcontentelementwizard", "newContentElement.wizardItems" ], "example-add-a-new-element-to-the-common-group": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#example-add-a-new-element-to-the-common-group", + "PageTsconfig\/Mod\/Wizards.html#pageexample1", "Example: Add a new element to the \"common\" group" ], "example-create-a-new-group-and-add-an-element-to-it": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#example-create-a-new-group-and-add-an-element-to-it", + "PageTsconfig\/Mod\/Wizards.html#pageexample2", "Example: Create a new group and add an element to it" ], "newrecord-order": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#newrecord-order", + "PageTsconfig\/Mod\/Wizards.html#mod-wizards-newRecord-order", "newRecord.order" ], "example-place-the-tt-news-group-at-the-top-of-the-new-record-dialog": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#example-place-the-tt-news-group-at-the-top-of-the-new-record-dialog", + "PageTsconfig\/Mod\/Wizards.html#mod-wizards-newRecord-order-example", "Example: Place the tt_news group at the top of the new record dialog" ], "newrecord-pages": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#newrecord-pages", + "PageTsconfig\/Mod\/Wizards.html#mod-wizards-newRecord-pages", "newRecord.pages" ], "example-hide-the-page-inside-link-in-the-new-record-dialog": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#example-hide-the-page-inside-link-in-the-new-record-dialog", + "PageTsconfig\/Mod\/Wizards.html#mod-wizards-newRecord-pages-example", "Example: Hide the \"Page (inside)\" link in the \"New Record\" dialog" ], "mod": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod.html#mod", + "PageTsconfig\/Mod.html#pagemod", "mod" ], "backendlayout-exclude": [ "TypoScript Explained", "main", - "PageTsconfig\/Options.html#backendlayout-exclude", + "PageTsconfig\/Options.html#pagebackendlayout", "backendLayout.exclude" ], "example-exclude-two-backend-layouts-from-drop-down-selector": [ "TypoScript Explained", "main", - "PageTsconfig\/Options.html#example-exclude-two-backend-layouts-from-drop-down-selector", + "PageTsconfig\/Options.html#pagebackendlayout-example", "Example: Exclude two backend layouts from drop down selector" ], "defaultuploadfolder": [ "TypoScript Explained", "main", - "PageTsconfig\/Options.html#defaultuploadfolder", + "PageTsconfig\/Options.html#pagedefaultuploadfolder", "defaultUploadFolder" ], "example-set-default-upload": [ @@ -23551,25 +23131,25 @@ "rte": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#rte", + "PageTsconfig\/Rte.html#pageTsRte", "RTE" ], "example-disable-rte": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#example-disable-rte", + "PageTsconfig\/Rte.html#pageTsRte-example-disable", "Example: Disable RTE" ], "example-override-preset": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#example-override-preset", + "PageTsconfig\/Rte.html#pageTsRteOverridePreset", "Example: Override preset" ], "disabled": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#disabled", + "PageTsconfig\/TceForm.html#tceform-disabled", "disabled" ], "buttons": [ @@ -23641,25 +23221,25 @@ "config-contentslanguagedirection": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#config-contentslanguagedirection", + "PageTsconfig\/Rte.html#rte-config-contentsLanguageDirection", "config.contentsLanguageDirection" ], "proc": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#proc", + "PageTsconfig\/Rte.html#rte-config-proc", "proc" ], "allowedclasses": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#allowedclasses", + "PageTsconfig\/Rte.html#rte-proc-allowedClasses", "allowedClasses" ], "allowtagsoutside": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#allowtagsoutside", + "PageTsconfig\/Rte.html#rte-proc-allowTagsOutside", "allowTagsOutside" ], "example-allow-only-hr-tags-outside-of-p-and-div": [ @@ -23671,445 +23251,451 @@ "blockelementlist": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#blockelementlist", + "PageTsconfig\/Rte.html#rte-proc-blockElementList", "blockElementList" ], "entryhtmlparser-db": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#entryhtmlparser-db", + "PageTsconfig\/Rte.html#rte-proc-entryHTMLparser_db", "entryHTMLparser_db" ], "entryhtmlparser-rte": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#entryhtmlparser-rte", + "PageTsconfig\/Rte.html#rte-proc-entryHTMLparser_rte", "entryHTMLparser_rte" ], "exithtmlparser-db": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#exithtmlparser-db", + "PageTsconfig\/Rte.html#rte-proc-exitHTMLparser_db", "exitHTMLparser_db" ], "exithtmlparser-rte": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#exithtmlparser-rte", + "PageTsconfig\/Rte.html#rte-proc-exitHTMLparser_rte", "exitHTMLparser_rte" ], "htmlparser-db": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#htmlparser-db", + "PageTsconfig\/Rte.html#pageTsRteProcHtmlParserDb", "HTMLparser_db" ], + "sanitization": [ + "TypoScript Explained", + "main", + "PageTsconfig\/Rte.html#pageTsRteProcHtmlParserDb-Sanitization", + "Sanitization" + ], "htmlparser-rte": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#htmlparser-rte", + "PageTsconfig\/Rte.html#rte-proc-HTMLparser_rte", "HTMLparser_rte" ], "overrulemode": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#overrulemode", + "PageTsconfig\/Rte.html#rte-proc-", "overruleMode" ], "tcadefaults": [ "TypoScript Explained", "main", - "UserTsconfig\/TcaDefaults.html#tcadefaults", + "UserTsconfig\/TcaDefaults.html#userTsTcaDefaults", "TCAdefaults" ], "example-do-not-hide-newly-created-pages-by-default": [ "TypoScript Explained", "main", - "PageTsconfig\/TcaDefaults.html#example-do-not-hide-newly-created-pages-by-default", + "PageTsconfig\/TcaDefaults.html#pageTsTcaDefaults-example", "Example: Do not hide newly created pages by default" ], "tceform-1": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-1", + "PageTsconfig\/TceForm.html#pagetceformflexformsheet", "TCEFORM" ], "applying-properties": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#applying-properties", + "PageTsconfig\/TceForm.html#tceform-apply-properties", "Applying properties" ], "applying-properties-to-flexform-fields": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#applying-properties-to-flexform-fields", + "PageTsconfig\/TceForm.html#tceformApplyPropertiesFlexForm", "Applying properties to FlexForm fields" ], "additems": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#additems", + "PageTsconfig\/TceForm.html#tceform-addItems", "addItems" ], "example-add-header-layout-option": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#example-add-header-layout-option", + "PageTsconfig\/TceForm.html#tceform-addItems-example", "Example: Add header layout option" ], "altlabels": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#altlabels", + "PageTsconfig\/TceForm.html#tceform-altLabels", "altLabels" ], "example-override-labels-for-document-types": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#example-override-labels-for-document-types", + "PageTsconfig\/TceForm.html#tceform-altLabels-example", "Example: Override labels for document types" ], "page-tsconfig-id": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#page-tsconfig-id", + "PageTsconfig\/TceForm.html#tceform-page_tsconfig_id", "PAGE_TSCONFIG_ID" ], "example-substitute-a-marker-in-a-plugin-flexform": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#example-substitute-a-marker-in-a-plugin-flexform", + "PageTsconfig\/TceForm.html#tceform-page_tsconfig_id-example", "Example: Substitute a marker in a plugin FlexForm" ], "page-tsconfig-idlist": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#page-tsconfig-idlist", + "PageTsconfig\/TceForm.html#tceform-page_tsconfig_idlist", "PAGE_TSCONFIG_IDLIST" ], "example-substitute-a-list-of-ids-in-a-plugin-flexform": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#example-substitute-a-list-of-ids-in-a-plugin-flexform", + "PageTsconfig\/TceForm.html#tceform-page_tsconfig_idlist-example", "Example: Substitute a list of IDs in a plugin FlexForm" ], "page-tsconfig-str": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#page-tsconfig-str", + "PageTsconfig\/TceForm.html#tceform-page_tsconfig_str", "PAGE_TSCONFIG_STR" ], "example-substitute-a-string-in-a-plugin-flexform": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#example-substitute-a-string-in-a-plugin-flexform", + "PageTsconfig\/TceForm.html#tceform-page_tsconfig_str-example", "Example: Substitute a string in a plugin FlexForm" ], "colorpalette": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#colorpalette", + "PageTsconfig\/TceForm.html#pageTsConfigTceFormColorPalette", "colorPalette" ], "example-assign-a-palette-to-a-field": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#example-assign-a-palette-to-a-field", + "PageTsconfig\/TceForm.html#pageTsConfigTceFormColorPalette-example", "Example: Assign a palette to a field" ], "config": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#config", + "PageTsconfig\/TceForm.html#pageTsConfigTceFormConfig", "config" ], "config-treeconfig": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#config-treeconfig", + "PageTsconfig\/TceForm.html#pageTsConfigTceFormConfigTreeConfig", "config.treeConfig" ], "description": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#description", + "PageTsconfig\/TceForm.html#tceform-description", "description" ], "example-disable-editing-of-the-page-title": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#example-disable-editing-of-the-page-title", + "PageTsconfig\/TceForm.html#tceform-disabled-example", "Example: Disable editing of the page title" ], "disablenomatchingvalueelement": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#disablenomatchingvalueelement", + "PageTsconfig\/TceForm.html#pageFormEngineDisableNoMatchingElement", "disableNoMatchingValueElement" ], "example-disable-invalid-value-label": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#example-disable-invalid-value-label", + "PageTsconfig\/TceForm.html#pageFormEngineDisableNoMatchingElement-example", "Example: Disable \"INVALID VALUE ...\" label" ], "filefolderconfig": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#filefolderconfig", + "PageTsconfig\/TceForm.html#fileFolderConfig", "fileFolderConfig" ], "itemsprocfunc": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#itemsprocfunc", + "PageTsconfig\/TceForm.html#itemsProcFunc", "itemsProcFunc" ], "keepitems": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#keepitems", + "PageTsconfig\/TceForm.html#tceform-keepItems", "keepItems" ], "example-show-only-standard-and-spacer-pages": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#example-show-only-standard-and-spacer-pages", + "PageTsconfig\/TceForm.html#tceform-keepItems-example", "Example: Show only standard and spacer pages" ], "label": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#label", + "PageTsconfig\/TceForm.html#tceform_label", "label" ], "example-override-the-label-of-a-field": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#example-override-the-label-of-a-field", + "PageTsconfig\/TceForm.html#tceform_label-example", "Example: Override the label of a field" ], "nomatchingvalue-label": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#nomatchingvalue-label", + "PageTsconfig\/TceForm.html#tceform-noMatchingValue_label", "noMatchingValue_label" ], "example-replace-invalid-value-label-with-another-string": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#example-replace-invalid-value-label-with-another-string", + "PageTsconfig\/TceForm.html#tceform-noMatchingValue_label-example", "Example: Replace \"INVALID VALUE ...\" label with another string" ], "removeitems": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#removeitems", + "PageTsconfig\/TceForm.html#tceform-removeItems", "removeItems" ], "example-remove-recycler-and-spacer-page-types": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#example-remove-recycler-and-spacer-page-types", + "PageTsconfig\/TceForm.html#tceform-removeItems-example", "Example: Remove \"Recycler\" and \"Spacer\" page types" ], "sheetdescription": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#sheetdescription", + "PageTsconfig\/TceForm.html#tceform-sheetDescription", "sheetDescription" ], "sheetshortdescr": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#sheetshortdescr", + "PageTsconfig\/TceForm.html#tceform-sheetShortDescr", "sheetShortDescr" ], "sheettitle": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#sheettitle", + "PageTsconfig\/TceForm.html#tceform-sheetTitle", "sheetTitle" ], "example-rename-the-first-tab-of-the-flexform-plugin": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#example-rename-the-first-tab-of-the-flexform-plugin", + "PageTsconfig\/TceForm.html#tceform-sheetTitle-example", "Example: Rename the first tab of the FlexForm plugin" ], "suggest": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#suggest", + "PageTsconfig\/TceForm.html#pagetceformsuggest", "suggest" ], "suggest-additionalsearchfields": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#suggest-additionalsearchfields", + "PageTsconfig\/TceForm.html#tceform-suggest-additionalSearchFields", "suggest.additionalSearchFields" ], "suggest-addwhere": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#suggest-addwhere", + "PageTsconfig\/TceForm.html#tceform-suggest-addWhere", "suggest.addWhere" ], "example-limit-storage-pid-to-the-children-of-a-certain-page": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#example-limit-storage-pid-to-the-children-of-a-certain-page", + "PageTsconfig\/TceForm.html#tceform-suggest-addWhere-example", "Example: limit storage_pid to the children of a certain page" ], "suggest-cssclass": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#suggest-cssclass", + "PageTsconfig\/TceForm.html#tceform-suggest-cssClass", "suggest.cssClass" ], "suggest-hide": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#suggest-hide", + "PageTsconfig\/TceForm.html#tceform-suggest-hide", "suggest.hide" ], "example-hide-the-suggest-field-for-the-storage-pid": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#example-hide-the-suggest-field-for-the-storage-pid", + "PageTsconfig\/TceForm.html#tceform-suggest-hide-example", "Example: Hide the suggest field for the storage_pid" ], "suggest-maxpathtitlelength": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#suggest-maxpathtitlelength", + "PageTsconfig\/TceForm.html#tceform-suggest-maxPathTitleLength", "suggest.maxPathTitleLength" ], "example-limit-the-suggest-field-to-30-characters": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#example-limit-the-suggest-field-to-30-characters", + "PageTsconfig\/TceForm.html#tceform-suggest-maxPathTitleLength-example", "Example: Limit the suggest field to 30 characters" ], "suggest-minimumcharacters": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#suggest-minimumcharacters", + "PageTsconfig\/TceForm.html#tceform-suggest-minimumCharacters", "suggest.minimumCharacters" ], "example-start-the-suggest-search-after-3-characters": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#example-start-the-suggest-search-after-3-characters", + "PageTsconfig\/TceForm.html#tceform-suggest-minimumCharacters-example", "Example: Start the suggest search after 3 characters" ], "suggest-piddepth": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#suggest-piddepth", + "PageTsconfig\/TceForm.html#tceform-suggest-pidDepth", "suggest.pidDepth" ], "example-set-search-depth-for-suggest-field": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#example-set-search-depth-for-suggest-field", + "PageTsconfig\/TceForm.html#tceform-suggest-pidDepth-example", "Example: Set search depth for suggest field" ], "suggest-pidlist": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#suggest-pidlist", + "PageTsconfig\/TceForm.html#tceform-suggest-pidList", "suggest.pidList" ], "example-limit-suggest-search-to-records-on-certain-pages": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#example-limit-suggest-search-to-records-on-certain-pages", + "PageTsconfig\/TceForm.html#tceform-suggest-pidList-example", "Example: Limit suggest search to records on certain pages" ], "suggest-receiverclass": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#suggest-receiverclass", + "PageTsconfig\/TceForm.html#tceform-suggest-receiverClass", "suggest.receiverClass" ], "suggest-renderfunc": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#suggest-renderfunc", + "PageTsconfig\/TceForm.html#tceform-suggest-renderFunc", "suggest.renderFunc" ], "suggest-searchcondition": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#suggest-searchcondition", + "PageTsconfig\/TceForm.html#tceform-suggest-searchCondition", "suggest.searchCondition" ], "example-only-search-on-pages-with-doktype-1": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#example-only-search-on-pages-with-doktype-1", + "PageTsconfig\/TceForm.html#tceform-suggest-searchCondition-example", "Example: Only search on pages with doktype=1" ], "suggest-searchwholephrase": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#suggest-searchwholephrase", + "PageTsconfig\/TceForm.html#tceform-suggest-searchWholePhrase", "suggest.searchWholePhrase" ], "example-search-only-for-whole-phrases": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#example-search-only-for-whole-phrases", + "PageTsconfig\/TceForm.html#tceform-suggest-searchWholePhrase-example", "Example: Search only for whole phrases" ], "tcemain": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#tcemain", + "PageTsconfig\/TceMain.html#pagetcemain-properties", "TCEMAIN" ], "clearcachecmd": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#clearcachecmd", + "PageTsconfig\/TceMain.html#pagetcemain-clearcachecmd", "clearCacheCmd" ], "example-clear-the-cache-for-certain-pages-when-a-record-is-changed": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#example-clear-the-cache-for-certain-pages-when-a-record-is-changed", + "PageTsconfig\/TceMain.html#pagetcemain-clearcachecmd-example", "Example: Clear the cache for certain pages when a record is changed" ], "clearcache-disable": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#clearcache-disable", + "PageTsconfig\/TceMain.html#pagetcemain-clearcache-disable", "clearCache_disable" ], "clearcache-pagegrandparent": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#clearcache-pagegrandparent", + "PageTsconfig\/TceMain.html#pagetcemain-clearcache-pagegrandparent", "clearCache_pageGrandParent" ], "clearcache-pagesiblingchildren": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#clearcache-pagesiblingchildren", + "PageTsconfig\/TceMain.html#pagetcemain-clearcache-pagesiblingchildren", "clearCache_pageSiblingChildren" ], "disablehideatcopy": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#disablehideatcopy", + "PageTsconfig\/TceMain.html#pagetcemaintables-disablehideatcopy", "disableHideAtCopy" ], "example-do-not-hide-pages-when-they-are-copy-pasted": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#example-do-not-hide-pages-when-they-are-copy-pasted", + "PageTsconfig\/TceMain.html#pagetcemaintables-disablehideatcopy-example", "Example: Do not hide pages when they are copy-pasted" ], "example-apply-disablehideatcopy-as-default-to-all-tables": [ @@ -24121,13 +23707,13 @@ "disableprependatcopy": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#disableprependatcopy", + "PageTsconfig\/TceMain.html#pagetcemaintables-disableprependatcopy", "disablePrependAtCopy" ], "example-do-not-append-the-copy-label-to-newly-copied-pages": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#example-do-not-append-the-copy-label-to-newly-copied-pages", + "PageTsconfig\/TceMain.html#pagetcemaintables-disableprependatcopy-example", "Example: Do not append the \"(copy)\" label to newly copied pages" ], "example-apply-disableprependatcopy-as-default-to-all-tables": [ @@ -24139,25 +23725,25 @@ "linkhandler": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#linkhandler", + "PageTsconfig\/TceMain.html#pagetcemaintables-linkhandler", "linkHandler" ], "example-display-an-additional-tab-in-the-linkbrowser": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#example-display-an-additional-tab-in-the-linkbrowser", + "PageTsconfig\/TceMain.html#pagetcemaintables-linkhandler-example", "Example: Display an additional tab in the linkbrowser" ], "permissions": [ "TypoScript Explained", "main", - "UserTsconfig\/Permissions.html#permissions", + "UserTsconfig\/Permissions.html#userTsConfigPermissions", "permissions" ], "value-copyfromparent": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#value-copyfromparent", + "PageTsconfig\/TceMain.html#pagetcemain-permissions-copyFromParent", "Value copyFromParent" ], "example-inherit-the-group-id-of-the-parent-page": [ @@ -24169,109 +23755,109 @@ "everybody": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#everybody", + "PageTsconfig\/TceMain.html#pagetcemain-permissions-everybody", "everybody" ], "example-set-permissions-defaults-so-that-everybody-can-see-the-page": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#example-set-permissions-defaults-so-that-everybody-can-see-the-page", + "PageTsconfig\/TceMain.html#pagetcemain-permissions-everybody-example", "Example: Set permissions defaults so that everybody can see the page" ], "group": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#group", + "PageTsconfig\/TceMain.html#pagetcemain-permissions-group", "group" ], "example-set-permission-defaults-so-that-the-group-can-do-anything-but-delete-a-page": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#example-set-permission-defaults-so-that-the-group-can-do-anything-but-delete-a-page", + "PageTsconfig\/TceMain.html#pagetcemain-permissions-group-example", "Example: Set permission defaults so that the group can do anything but delete a page" ], "groupid": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#groupid", + "PageTsconfig\/TceMain.html#pagetcemain-permissions-groupid", "groupid" ], "example-set-default-user-group-for-permissions-on-new-pages": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#example-set-default-user-group-for-permissions-on-new-pages", + "PageTsconfig\/TceMain.html#pagetcemain-permissions-groupid-example", "Example: Set default user group for permissions on new pages" ], "user": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#user", + "PageTsconfig\/TceMain.html#pagetcemain-permissions-actions", "user" ], "example-set-permission-defaults-so-that-the-pages-owner-can-do-anything": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#example-set-permission-defaults-so-that-the-pages-owner-can-do-anything", + "PageTsconfig\/TceMain.html#pagetcemain-permissions-actions-example", "Example: Set permission defaults so that the pages owner can do anything" ], "userid": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#userid", + "PageTsconfig\/TceMain.html#pagetcemain-permissions-userid", "userid" ], "example-set-default-user-for-permissions-on-new-pages": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#example-set-default-user-for-permissions-on-new-pages", + "PageTsconfig\/TceMain.html#pagetcemain-permissions-userid-example", "Example: Set default user for permissions on new pages" ], "preview": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#preview", + "PageTsconfig\/TceMain.html#pagetcemain-preview", "preview" ], "translatetomessage": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#translatetomessage", + "PageTsconfig\/TceMain.html#pagetcemain-translatetomessage", "translateToMessage" ], "example-set-a-german-prefix-for-newly-translated-records": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#example-set-a-german-prefix-for-newly-translated-records", + "PageTsconfig\/TceMain.html#pagetcemain-translatetomessage-example", "Example: Set a German prefix for newly translated records" ], "example-disable-the-translate-to-prefix": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#example-disable-the-translate-to-prefix", + "PageTsconfig\/TceMain.html#pagetcemain-translatetomessage-example-disable", "Example: Disable the \"[Translate to ...]\" prefix" ], "templates": [ "TypoScript Explained", "main", - "PageTsconfig\/Templates.html#templates", + "PageTsconfig\/Templates.html#pagetemplates", "templates" ], "combinations-of-overrides": [ "TypoScript Explained", "main", - "PageTsconfig\/Templates.html#combinations-of-overrides", + "PageTsconfig\/Templates.html#pagetemplates-combinations", "Combinations of overrides" ], "usage-in-own-modules": [ "TypoScript Explained", "main", - "PageTsconfig\/Templates.html#usage-in-own-modules", + "PageTsconfig\/Templates.html#pagetemplates-third-party-modules", "Usage in own modules" ], "tx": [ "TypoScript Explained", "main", - "UserTsconfig\/Tx.html#tx", + "UserTsconfig\/Tx.html#user_tx", "tx_*" ], "sitemap": [ @@ -24283,19 +23869,19 @@ "code-blocks": [ "TypoScript Explained", "main", - "Syntax\/CodeBlocks\/Index.html#code-blocks", + "Syntax\/CodeBlocks\/Index.html#typoscript-syntax-syntax-curly-brackets", "Code blocks" ], "comments": [ "TypoScript Explained", "main", - "Syntax\/Comments\/Index.html#comments", + "Syntax\/Comments\/Index.html#typoscript-syntax-syntax-comment-blocks", "Comments" ], "conditions": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#conditions", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-differences", "Conditions" ], "basic-example": [ @@ -24307,73 +23893,73 @@ "syntax-and-rules": [ "TypoScript Explained", "main", - "Syntax\/Conditions\/Index.html#syntax-and-rules", + "Syntax\/Conditions\/Index.html#typoscript-syntax-conditions-syntax", "Syntax and rules" ], "file-imports": [ "TypoScript Explained", "main", - "Syntax\/FileImports\/Index.html#file-imports", + "Syntax\/FileImports\/Index.html#typoscript-syntax-includes", "File imports" ], "alternatives-to-using-file-imports": [ "TypoScript Explained", "main", - "Syntax\/FileImports\/Index.html#alternatives-to-using-file-imports", + "Syntax\/FileImports\/Index.html#typoscript-syntax-includes-alternatives", "Alternatives to using file imports" ], "identifiers": [ "TypoScript Explained", "main", - "Syntax\/Identifiers\/Index.html#identifiers", + "Syntax\/Identifiers\/Index.html#typoscript-syntax-syntax-object-path", "Identifiers" ], "typoscript-syntax-1": [ "TypoScript Explained", "main", - "Syntax\/Index.html#typoscript-syntax-1", + "Syntax\/Index.html#typoscript-syntax", "TypoScript syntax" ], "operators": [ "TypoScript Explained", "main", - "Syntax\/Operators\/Index.html#operators", + "Syntax\/Operators\/Index.html#typoscript-syntax-syntax-operator", "Operators" ], "value-assignment-with": [ "TypoScript Explained", "main", - "Syntax\/Operators\/Index.html#value-assignment-with", + "Syntax\/Operators\/Index.html#typoscript-syntax-syntax-value-assignment", "Value assignment with \"=\"" ], "multiline-assignment-with-and": [ "TypoScript Explained", "main", - "Syntax\/Operators\/Index.html#multiline-assignment-with-and", + "Syntax\/Operators\/Index.html#typoscript-syntax-syntax-multiline-values", "Multiline assignment with \"(\" and \")\"" ], "unset-with": [ "TypoScript Explained", "main", - "Syntax\/Operators\/Index.html#unset-with", + "Syntax\/Operators\/Index.html#typoscript-syntax-syntax-unsetting-operator", "Unset with \">\"" ], "copy-with": [ "TypoScript Explained", "main", - "Syntax\/Operators\/Index.html#copy-with", + "Syntax\/Operators\/Index.html#typoscript-syntax-syntax-object-copying", "Copy with \"<\"" ], "references-with": [ "TypoScript Explained", "main", - "Syntax\/Operators\/Index.html#references-with", + "Syntax\/Operators\/Index.html#typoscript-syntax-syntax-object-referencing", "References with \"=<\"" ], "value-modifications-with": [ "TypoScript Explained", "main", - "Syntax\/Operators\/Index.html#value-modifications-with", + "Syntax\/Operators\/Index.html#typoscript-syntax-syntax-value-modification", "Value modifications with \":=\"" ], "null-coalescing-operator-for-typoscript-constants": [ @@ -24385,241 +23971,241 @@ "typoscript-string-formats": [ "TypoScript Explained", "main", - "Syntax\/StringFormats\/Index.html#typoscript-string-formats", + "Syntax\/StringFormats\/Index.html#string-formats", "TypoScript string formats" ], "boolean": [ "TypoScript Explained", "main", - "Syntax\/StringFormats\/Index.html#boolean", + "Syntax\/StringFormats\/Index.html#data-type-boolean", "boolean" ], "date-conf": [ "TypoScript Explained", "main", - "Syntax\/StringFormats\/Index.html#date-conf", + "Syntax\/StringFormats\/Index.html#data-type-date-conf", "date-conf" ], "function-name": [ "TypoScript Explained", "main", - "Syntax\/StringFormats\/Index.html#function-name", + "Syntax\/StringFormats\/Index.html#data-type-function-name", "function name" ], "integer": [ "TypoScript Explained", "main", - "Syntax\/StringFormats\/Index.html#integer", + "Syntax\/StringFormats\/Index.html#data-type-integer", "integer" ], "resource": [ "TypoScript Explained", "main", - "Syntax\/StringFormats\/Index.html#resource", + "Syntax\/StringFormats\/Index.html#data-type-resource", "resource" ], "string": [ "TypoScript Explained", "main", - "Syntax\/StringFormats\/Index.html#string", + "Syntax\/StringFormats\/Index.html#data-type-string", "string" ], "config-config": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-config", + "TopLevelObjects\/Config.html#top-level-objects-config", "CONFIG & config" ], "the-config-top-level-object": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#the-config-top-level-object", + "TopLevelObjects\/Config.html#top-level-objects-config-about", "The 'config' top-level-object" ], "properties-of-config": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#properties-of-config", + "TopLevelObjects\/Config.html#top-level-objects-config-properties", "Properties of 'config'" ], "example-prefix-absolute-paths": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#example-prefix-absolute-paths", + "TopLevelObjects\/Config.html#setup-config-absrefprefix", "Example: prefix absolute paths" ], "set-additional-headers-data": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#set-additional-headers-data", + "TopLevelObjects\/Config.html#setup-config-additionalheaders", "set additional headers data" ], "config-cache-examples": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-cache-examples", + "TopLevelObjects\/Config.html#setup-config-cache", "config cache examples" ], "config-compress-css-example": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-compress-css-example", + "TopLevelObjects\/Config.html#setup-config-compresscss", "Config compress CSS example" ], "config-compress-javascript": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-compress-javascript", + "TopLevelObjects\/Config.html#setup-config-compressjs", "Config compress JavaScript" ], "concatenate-css-example": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#concatenate-css-example", + "TopLevelObjects\/Config.html#setup-config-concatenatecss", "Concatenate CSS Example" ], "concatenatejs": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#concatenatejs", + "TopLevelObjects\/Config.html#setup-config-concatenateJs", "concatenateJs" ], "contentobjectexceptionhandler-example": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#contentobjectexceptionhandler-example", + "TopLevelObjects\/Config.html#setup-config-contentObjectExceptionHandler", "contentObjectExceptionHandler example" ], "provide-json-and-disable-html-headers": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#provide-json-and-disable-html-headers", + "TopLevelObjects\/Config.html#setup-config-disableallheadercode", "Provide JSON and disable HTML headers" ], "html-tag-attributes-example": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#html-tag-attributes-example", + "TopLevelObjects\/Config.html#setup-config-htmltag-attributes", "HTML tag attributes example" ], "htmltag-setparams-example": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#htmltag-setparams-example", + "TopLevelObjects\/Config.html#setup-config-htmltag-setparams", "htmlTag_setParams example" ], "inlinestyle2tempfile-example": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#inlinestyle2tempfile-example", + "TopLevelObjects\/Config.html#setup-config-inlinestyle2tempfile", "inlineStyle2TempFile example" ], "add-print-parameter-to-all-links": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#add-print-parameter-to-all-links", + "TopLevelObjects\/Config.html#setup-config-linkvars", "Add &print parameter to all links" ], "customize-workspace-display-box": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#customize-workspace-display-box", + "TopLevelObjects\/Config.html#setup-config-message-preview-workspace", "Customize workspace display box" ], "define-mounting-point-defaults-for-certain-pages": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#define-mounting-point-defaults-for-certain-pages", + "TopLevelObjects\/Config.html#setup-config-mp-defaults", "Define mounting point defaults for certain pages" ], "define-dublin-core-metadata-element-set-dc-xmlns-namespace": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#define-dublin-core-metadata-element-set-dc-xmlns-namespace", + "TopLevelObjects\/Config.html#setup-config-namespaces", "Define Dublin Core Metadata Element Set (dc) xmlns namespace" ], "set-a-custom-page-renderer-template": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#set-a-custom-page-renderer-template", + "TopLevelObjects\/Config.html#setup-config-pagerenderertemplatefile", "Set a custom page renderer template" ], "reorder-the-default-page-title-providers": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#reorder-the-default-page-title-providers", + "TopLevelObjects\/Config.html#setup-config-pagetitleproviders", "Reorder the default page title providers" ], "use-custom-separators-between-page-title-parts": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#use-custom-separators-between-page-title-parts", + "TopLevelObjects\/Config.html#setup-config-pagetitleseparator", "Use custom separators between page title parts" ], "remove-default-external-javascript-and-all-default-css": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#remove-default-external-javascript-and-all-default-css", + "TopLevelObjects\/Config.html#setup-config-removedefaultjs", "Remove default external JavaScript and all default CSS" ], "spam-protect-email-addresses-automatically": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#spam-protect-email-addresses-automatically", + "TopLevelObjects\/Config.html#setup-config-spamprotectemailaddresses-lastdotsubst", "Spam protect email addresses automatically" ], "define-configuration-for-custom-namespaces": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#define-configuration-for-custom-namespaces", + "TopLevelObjects\/Config.html#setup-config-tx-extension-key-with-no-underscores", "Define configuration for custom namespaces" ], "define-custom-styling-for-access-restricted-page-links": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#define-custom-styling-for-access-restricted-page-links", + "TopLevelObjects\/Config.html#setup-config-typolinklinkaccessrestrictedpages", "Define custom styling for access restricted page links" ], "top-level-objects-1": [ "TypoScript Explained", "main", - "TopLevelObjects\/Index.html#top-level-objects-1", + "TopLevelObjects\/Index.html#top-level-objects", "Top-level objects" ], "module": [ "TypoScript Explained", "main", - "TopLevelObjects\/Module.html#module", + "TopLevelObjects\/Module.html#tlo-module", "module" ], "options-for-simple-backend-modules": [ "TypoScript Explained", "main", - "TopLevelObjects\/Module.html#options-for-simple-backend-modules", + "TopLevelObjects\/Module.html#module-options", "Options for simple backend modules" ], "options-for-extbase-backend-modules": [ "TypoScript Explained", "main", - "TopLevelObjects\/Module.html#options-for-extbase-backend-modules", + "TopLevelObjects\/Module.html#tlo-module-options-extbase", "Options for Extbase backend modules" ], "view-templaterootpaths": [ "TypoScript Explained", "main", - "TopLevelObjects\/Module.html#view-templaterootpaths", + "TopLevelObjects\/Module.html#tlo-module-properties-templaterootpaths", "view.templateRootPaths" ], "example-set-the-template-root-paths": [ "TypoScript Explained", "main", - "TopLevelObjects\/Module.html#example-set-the-template-root-paths", + "TopLevelObjects\/Module.html#tlo-module-properties-templaterootpaths-example", "Example: Set the template root paths" ], "view-partialrootpaths": [ "TypoScript Explained", "main", - "TopLevelObjects\/Module.html#view-partialrootpaths", + "TopLevelObjects\/Module.html#tlo-module-properties-partialRootPaths", "view.partialRootPaths" ], "example-set-the-partial-root-paths": [ @@ -24631,7 +24217,7 @@ "settings": [ "TypoScript Explained", "main", - "TopLevelObjects\/Module.html#settings", + "TopLevelObjects\/Module.html#tlo-module-properties-settings", "settings" ], "example-limit-pagination-in-the-backend": [ @@ -24649,349 +24235,349 @@ "reserved-top-level-objects": [ "TypoScript Explained", "main", - "TopLevelObjects\/Other.html#reserved-top-level-objects", + "TopLevelObjects\/Other.html#top-level-objects-other-reserved-tlo-s", "Reserved top-level objects" ], "lib": [ "TypoScript Explained", "main", - "TopLevelObjects\/Other.html#lib", + "TopLevelObjects\/Other.html#tlo-lib", "lib" ], "styles": [ "TypoScript Explained", "main", - "TopLevelObjects\/Other.html#styles", + "TopLevelObjects\/Other.html#tlo-styles", "styles" ], "tt-content": [ "TypoScript Explained", "main", - "TopLevelObjects\/Other.html#tt-content", + "TopLevelObjects\/Other.html#tlo-tt_content", "tt_content" ], "resources": [ "TypoScript Explained", "main", - "TopLevelObjects\/Other.html#resources", + "TopLevelObjects\/Other.html#tlo-resources", "resources" ], "sitetitle": [ "TypoScript Explained", "main", - "TopLevelObjects\/Other.html#sitetitle", + "TopLevelObjects\/Other.html#tlo-sitetitle", "sitetitle" ], "page-examples": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Examples.html#page-examples", + "TopLevelObjects\/Page\/Examples.html#page_examples", "PAGE Examples" ], "a-simple-hello-world-example": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Examples.html#a-simple-hello-world-example", + "TopLevelObjects\/Page\/Examples.html#page_examples_hello_world", "A simple \"Hello World\" Example" ], "a-page-using-a-fluid-template": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Examples.html#a-page-using-a-fluid-template", + "TopLevelObjects\/Page\/Examples.html#page_examples_fluid", "A page using a Fluid template" ], "a-page-type-used-for-ajax-requests": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Examples.html#a-page-type-used-for-ajax-requests", + "TopLevelObjects\/Page\/Examples.html#page_examples_ajax", "A page type used for ajax requests" ], "a-page-type-used-for-json-data": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Examples.html#a-page-type-used-for-json-data", + "TopLevelObjects\/Page\/Examples.html#page_examples_json", "A page type used for JSON data" ], "page-1": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-1", + "TopLevelObjects\/Page\/Index.html#object-type-page", "PAGE" ], "getting-started-with-the-page-object": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#getting-started-with-the-page-object", + "TopLevelObjects\/Page\/Index.html#page-getting-started", "Getting started with the PAGE object" ], "output-of-the-page-object": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#output-of-the-page-object", + "TopLevelObjects\/Page\/Index.html#page_output", "Output of the PAGE object" ], "multiple-pages": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#multiple-pages", + "TopLevelObjects\/Page\/Index.html#page_multiple", "Multiple pages" ], "guidelines": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#guidelines", + "TopLevelObjects\/Page\/Index.html#page_guidelines", "Guidelines" ], "page-property-examples": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-property-examples", + "TopLevelObjects\/Page\/Index.html#page_property-examples", "Page property examples" ], "example-render-hello-world": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#example-render-hello-world", + "TopLevelObjects\/Page\/Index.html#setup-page-array-example", "Example: Render \"Hello World\"" ], "example-set-a-class-on-the-body-tag": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#example-set-a-class-on-the-body-tag", + "TopLevelObjects\/Page\/Index.html#setup-page-bodytag-example", "Example: Set a class on the body tag" ], "example-add-a-parameter-to-the-body-tag": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#example-add-a-parameter-to-the-body-tag", + "TopLevelObjects\/Page\/Index.html#setup-page-bodytagadd-example", "Example: Add a parameter to the body tag" ], "example-add-inline-styles-for-the-h1-tag": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#example-add-inline-styles-for-the-h1-tag", + "TopLevelObjects\/Page\/Index.html#setup-page-cssinline-example", "Example: Add inline styles for the h1 tag" ], "example-add-a-script-and-a-comment-to-the-page-footer": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#example-add-a-script-and-a-comment-to-the-page-footer", + "TopLevelObjects\/Page\/Index.html#setup-page-footerdata-example", "Example: Add a script and a comment to the page footer" ], "example-add-a-script-tag-and-a-comment-to-the-head-tag": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#example-add-a-script-tag-and-a-comment-to-the-head-tag", + "TopLevelObjects\/Page\/Index.html#setup-page-headerdata-example", "Example: Add a script tag and a comment to the head tag" ], "example-include-additional-css-files": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#example-include-additional-css-files", + "TopLevelObjects\/Page\/Index.html#setup-page-includecss-example", "Example: Include additional css files" ], "example-include-css-libraries": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#example-include-css-libraries", + "TopLevelObjects\/Page\/Index.html#setup-page-includecsslibs-exqample", "Example: Include CSS libraries" ], "example-include-javascript-in-the-header": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#example-include-javascript-in-the-header", + "TopLevelObjects\/Page\/Index.html#setup-page-includejs-example", "Example: Include JavaScript in the header" ], "example-make-a-language-file-available-in-javascript": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#example-make-a-language-file-available-in-javascript", + "TopLevelObjects\/Page\/Index.html#setup-page-inlinelanguagelabelfiles-example", "Example: Make a language file available in JavaScript" ], "example-make-some-values-available-in-javascript": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#example-make-some-values-available-in-javascript", + "TopLevelObjects\/Page\/Index.html#setup-page-inlinesettings-example", "Example: Make some values available in JavaScript" ], "example-add-some-inline-javascript-to-the-page-footer": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#example-add-some-inline-javascript-to-the-page-footer", + "TopLevelObjects\/Page\/Index.html#setup-page-jsfooterinline-example", "Example: Add some inline JavaScript to the page footer" ], "example-make-a-cobject-available-in-javascript": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#example-make-a-cobject-available-in-javascript", + "TopLevelObjects\/Page\/Index.html#setup-page-jsinline-example", "Example: Make a cObject available in JavaScript" ], "example-define-meta-tags-for-description-and-keywords": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#example-define-meta-tags-for-description-and-keywords", + "TopLevelObjects\/Page\/Index.html#setup-page-meta-example", "Example: Define meta tags for description and keywords" ], "example-fetch-data-for-the-keyword-meta-tag-from-the-page-record": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#example-fetch-data-for-the-keyword-meta-tag-from-the-page-record", + "TopLevelObjects\/Page\/Index.html#setup-page-meta-example-keywords", "Example: Fetch data for the keyword meta tag from the page record" ], "example-make-a-meta-refresh-entry": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#example-make-a-meta-refresh-entry", + "TopLevelObjects\/Page\/Index.html#setup-page-meta-example-refresh", "Example: Make a meta.refresh entry" ], "example-set-open-graph-meta-tags": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#example-set-open-graph-meta-tags", + "TopLevelObjects\/Page\/Index.html#setup-page-meta-example-og", "Example set Open graph meta tags" ], "example-add-a-favicon-to-the-page": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#example-add-a-favicon-to-the-page", + "TopLevelObjects\/Page\/Index.html#setup-page-shortcuticon-example", "Example: Add a favicon to the page" ], "plugin-1": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-1", + "TopLevelObjects\/Plugin.html#plugin", "plugin" ], "properties-for-all-frontend-plugin-types": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#properties-for-all-frontend-plugin-types", + "TopLevelObjects\/Plugin.html#setup-plugin-css-default-style", "Properties for all frontend plugin types" ], "properties-for-all-frontend-plugins-based-on-extbase": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#properties-for-all-frontend-plugins-based-on-extbase", + "TopLevelObjects\/Plugin.html#setup-plugin-extbase", "Properties for all frontend plugins based on Extbase" ], "extbase-plugin-typoscript-examples": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#extbase-plugin-typoscript-examples", + "TopLevelObjects\/Plugin.html#setup-plugin-extbase-examples", "Extbase plugin TypoScript examples" ], "plugin-general-examples": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-general-examples", + "TopLevelObjects\/Plugin.html#extbase_typoscript_configuration-general-example", "Plugin general examples" ], "examples-ignore-certain-flexform-settings-if-empty": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#examples-ignore-certain-flexform-settings-if-empty", + "TopLevelObjects\/Plugin.html#setup-plugin-configuration-ignoreFlexFormSettingsIfEmpty-example", "Examples: Ignore certain FlexForm settings if empty" ], "plugin-persistence-examples": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-persistence-examples", + "TopLevelObjects\/Plugin.html#extbase_typoscript_configuration-persistence-example", "Plugin persistence Examples" ], "example-disable-automatic-cache-clearing-for-an-extbase-plugin": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#example-disable-automatic-cache-clearing-for-an-extbase-plugin", + "TopLevelObjects\/Plugin.html#extbase_persistence-enableAutomaticCacheClearing-example", "Example: Disable automatic cache clearing for an Extbase plugin" ], "example-set-recursive-storage-pid-for-extbase-plugin": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#example-set-recursive-storage-pid-for-extbase-plugin", + "TopLevelObjects\/Plugin.html#setup-plugin-persistence-classes-classname-newRecordStoragePid-example", "Example: Set recursive storage PID for Extbase plugin" ], "plugin-view-examples": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-view-examples", + "TopLevelObjects\/Plugin.html#extbase_typoscript_configuration-view-example", "Plugin view Examples" ], "example-set-template-paths-for-extbase-plugin": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#example-set-template-paths-for-extbase-plugin", + "TopLevelObjects\/Plugin.html#setup-plugin-view-example", "Example: Set template paths for Extbase plugin" ], "plugin-mvc-examples": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-mvc-examples", + "TopLevelObjects\/Plugin.html#extbase_typoscript_configuration-mvc-example", "Plugin MVC Examples" ], "example-call-default-action-if-action-cannot-be-resolved": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#example-call-default-action-if-action-cannot-be-resolved", + "TopLevelObjects\/Plugin.html#setup-plugin-mvc-callDefaultActionIfActionCantBeResolved-example", "Example: Call default action if action cannot be resolved" ], "example-show-404-page-not-found-page-if-action-cannot-be-resolved": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#example-show-404-page-not-found-page-if-action-cannot-be-resolved", + "TopLevelObjects\/Plugin.html#setup-plugin-mvc-throwPageNotFoundExceptionIfActionCantBeResolved-example", "Example: Show 404 (page not found) page if action cannot be resolved" ], "plugin-format-examples": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-format-examples", + "TopLevelObjects\/Plugin.html#extbase_format-examples", "Plugin format examples" ], "example-define-alternative-output-formats-for-rss-feeds": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#example-define-alternative-output-formats-for-rss-feeds", + "TopLevelObjects\/Plugin.html#extbase_format-example", "Example: Define alternative output formats for RSS feeds" ], "plugin-localization-examples": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-localization-examples", + "TopLevelObjects\/Plugin.html#extbase_localization-examples", "Plugin localization examples" ], "example-override-a-language-key-in-an-extbase-plugin": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#example-override-a-language-key-in-an-extbase-plugin", + "TopLevelObjects\/Plugin.html#setup-plugin-local-lang-example", "Example: Override a language key in an Extbase plugin" ], "auth": [ "TypoScript Explained", "main", - "UserTsconfig\/Auth.html#auth", + "UserTsconfig\/Auth.html#user-auth", "auth" ], "example-disable-a-multi-factor-authentication-provider": [ "TypoScript Explained", "main", - "UserTsconfig\/Auth.html#example-disable-a-multi-factor-authentication-provider", + "UserTsconfig\/Auth.html#user-auth-mfa-disableProviders-example", "Example: Disable a multi-factor authentication provider" ], "example-set-a-recommended-multi-factor-authentication-provider": [ "TypoScript Explained", "main", - "UserTsconfig\/Auth.html#example-set-a-recommended-multi-factor-authentication-provider", + "UserTsconfig\/Auth.html#user-auth-mfa-recommendedProvider-example", "Example: Set a recommended multi-factor authentication provider" ], "user-tsconfig-reference": [ "TypoScript Explained", "main", - "UserTsconfig\/Index.html#user-tsconfig-reference", + "UserTsconfig\/Index.html#usertoplevelobjects", "User TSconfig reference" ], "access-typoscript-in-an-extension": [ "TypoScript Explained", "main", - "UsingSetting\/AccessTypoScriptWithExtensions.html#access-typoscript-in-an-extension", + "UsingSetting\/AccessTypoScriptWithExtensions.html#extdev-access-typoscript", "Access TypoScript in an extension" ], "extbase-controllers": [ @@ -25009,61 +24595,61 @@ "provide-frontend-typoscript-in-a-typo3-extension": [ "TypoScript Explained", "main", - "UsingSetting\/AddTypoScriptWithExtensions.html#provide-frontend-typoscript-in-a-typo3-extension", + "UsingSetting\/AddTypoScriptWithExtensions.html#extdev-add-typoscript", "Provide frontend TypoScript in a TYPO3 extension" ], "provide-typoscript-in-your-extension-or-site-package": [ "TypoScript Explained", "main", - "UsingSetting\/AddTypoScriptWithExtensions.html#provide-typoscript-in-your-extension-or-site-package", + "UsingSetting\/AddTypoScriptWithExtensions.html#extdev-add-typoscript-extension", "Provide TypoScript in your extension or site package" ], "typoscript-provided-as-site-set-only-typo3-v13-1-and-above": [ "TypoScript Explained", "main", - "UsingSetting\/AddTypoScriptWithExtensions.html#typoscript-provided-as-site-set-only-typo3-v13-1-and-above", + "UsingSetting\/AddTypoScriptWithExtensions.html#extdev-add-typoscript-sets-typoscript", "TypoScript provided as site set (only TYPO3 v13.1 and above)" ], "the-main-set-of-the-extension": [ "TypoScript Explained", "main", - "UsingSetting\/AddTypoScriptWithExtensions.html#the-main-set-of-the-extension", + "UsingSetting\/AddTypoScriptWithExtensions.html#extdev-add-typoscript-sets-main", "The main set of the extension" ], "the-sub-set-for-an-optional-feature": [ "TypoScript Explained", "main", - "UsingSetting\/AddTypoScriptWithExtensions.html#the-sub-set-for-an-optional-feature", + "UsingSetting\/AddTypoScriptWithExtensions.html#extdev-add-typoscript-sets-feature", "The sub set for an optional feature" ], "overriding-the-typoscript": [ "TypoScript Explained", "main", - "UsingSetting\/AddTypoScriptWithExtensions.html#overriding-the-typoscript", + "UsingSetting\/AddTypoScriptWithExtensions.html#extdev-add-typoscript-sets-override", "Overriding the TypoScript" ], "supporting-both-site-sets-and-typoscript-records": [ "TypoScript Explained", "main", - "UsingSetting\/AddTypoScriptWithExtensions.html#supporting-both-site-sets-and-typoscript-records", + "UsingSetting\/AddTypoScriptWithExtensions.html#extdev-add-typoscript-sets-v12", "Supporting both site sets and TypoScript records" ], "one-typoscript-include-set": [ "TypoScript Explained", "main", - "UsingSetting\/AddTypoScriptWithExtensions.html#one-typoscript-include-set", + "UsingSetting\/AddTypoScriptWithExtensions.html#extension-configuration-typoscript-set-record-one", "One TypoScript include set" ], "multiple-typoscript-include-sets": [ "TypoScript Explained", "main", - "UsingSetting\/AddTypoScriptWithExtensions.html#multiple-typoscript-include-sets", + "UsingSetting\/AddTypoScriptWithExtensions.html#extension-configuration-typoscript-set-record-multiple", "Multiple TypoScript include sets" ], "make-typoscript-available-always-load": [ "TypoScript Explained", "main", - "UsingSetting\/AddTypoScriptWithExtensions.html#make-typoscript-available-always-load", + "UsingSetting\/AddTypoScriptWithExtensions.html#extdev-always-load", "Make TypoScript available (always load)" ], "more-information": [ @@ -25075,85 +24661,85 @@ "defining-constants": [ "TypoScript Explained", "main", - "UsingSetting\/Constants.html#defining-constants", + "UsingSetting\/Constants.html#typoscript-syntax-constants-definition", "Defining constants" ], "using-constants": [ "TypoScript Explained", "main", - "UsingSetting\/Constants.html#using-constants", + "UsingSetting\/Constants.html#typoscript-syntax-using-constants", "Using constants" ], "debugging-analyzing": [ "TypoScript Explained", "main", - "UsingSetting\/Debugging.html#debugging-analyzing", + "UsingSetting\/Debugging.html#typoscript-debugging", "Debugging \/ analyzing" ], "analyzing-defined-constants": [ "TypoScript Explained", "main", - "UsingSetting\/Debugging.html#analyzing-defined-constants", + "UsingSetting\/Debugging.html#typoscript-debugging-constants", "Analyzing defined constants" ], "finding-errors": [ "TypoScript Explained", "main", - "UsingSetting\/Debugging.html#finding-errors", + "UsingSetting\/Debugging.html#typoscript-syntax-finding-errors", "Finding errors" ], "debugging": [ "TypoScript Explained", "main", - "UsingSetting\/Debugging.html#debugging", + "UsingSetting\/Debugging.html#typoscript-syntax-templates-debugging", "Debugging" ], "typoscript-backend-module": [ "TypoScript Explained", "main", - "UsingSetting\/Entering.html#typoscript-backend-module", + "UsingSetting\/Entering.html#typoscript-syntax-typoscript-templates-structure", "TypoScript backend module" ], "submodule-typoscript-records-overview": [ "TypoScript Explained", "main", - "UsingSetting\/Entering.html#submodule-typoscript-records-overview", + "UsingSetting\/Entering.html#typoscript_module_overview", "Submodule \"TypoScript records overview\"" ], "submodule-constant-editor": [ "TypoScript Explained", "main", - "UsingSetting\/Entering.html#submodule-constant-editor", + "UsingSetting\/Entering.html#constant-editor", "Submodule \"Constant Editor\"" ], "submodule-edit-typoscript-record": [ "TypoScript Explained", "main", - "UsingSetting\/Entering.html#submodule-edit-typoscript-record", + "UsingSetting\/Entering.html#typoscript_module_edit", "Submodule \"Edit TypoScript Record\"" ], "include-typoscript-files": [ "TypoScript Explained", "main", - "UsingSetting\/Entering.html#include-typoscript-files", + "UsingSetting\/Entering.html#typoscript-syntax-typoscript-templates-structure-includes", "Include TypoScript files" ], "include-typoscript-from-extensions": [ "TypoScript Explained", "main", - "UsingSetting\/Entering.html#include-typoscript-from-extensions", + "UsingSetting\/Entering.html#static-includes", "Include TypoScript from extensions" ], "include-other-typoscript-records": [ "TypoScript Explained", "main", - "UsingSetting\/Entering.html#include-other-typoscript-records", + "UsingSetting\/Entering.html#basedOn", "Include other TypoScript records" ], "submodule-included-typoscript": [ "TypoScript Explained", "main", - "UsingSetting\/Entering.html#submodule-included-typoscript", + "UsingSetting\/Entering.html#typoscript-syntax-typoscript-templates-structure-analyzer", "Submodule \"Included TypoScript\"" ], "submodule-active-typoscript": [ @@ -25165,7 +24751,7 @@ "using-and-setting-typoscript": [ "TypoScript Explained", "main", - "UsingSetting\/Index.html#using-and-setting-typoscript", + "UsingSetting\/Index.html#using-and-setting", "Using and setting TypoScript" ], "defining-registers": [ @@ -25177,43 +24763,43 @@ "typoscript-provider-for-sites-and-sets": [ "TypoScript Explained", "main", - "UsingSetting\/SiteTypoScriptProvider.html#typoscript-provider-for-sites-and-sets", + "UsingSetting\/SiteTypoScriptProvider.html#typoscript-site-sets", "TypoScript provider for sites and sets" ], "site-as-a-typoscript-provider": [ "TypoScript Explained", "main", - "UsingSetting\/SiteTypoScriptProvider.html#site-as-a-typoscript-provider", + "UsingSetting\/SiteTypoScriptProvider.html#typoscript-site-sets-site", "Site as a TypoScript provider" ], "example-a-site-that-depends-on-a-sitepackage": [ "TypoScript Explained", "main", - "UsingSetting\/SiteTypoScriptProvider.html#example-a-site-that-depends-on-a-sitepackage", + "UsingSetting\/SiteTypoScriptProvider.html#typoscript-site-sets-site-example", "Example: A site that depends on a sitepackage" ], "set-as-a-typoscript-provider": [ "TypoScript Explained", "main", - "UsingSetting\/SiteTypoScriptProvider.html#set-as-a-typoscript-provider", + "UsingSetting\/SiteTypoScriptProvider.html#typoscript-site-sets-set", "Set as a TypoScript provider" ], "example-the-set-of-a-sitepackage": [ "TypoScript Explained", "main", - "UsingSetting\/SiteTypoScriptProvider.html#example-the-set-of-a-sitepackage", + "UsingSetting\/SiteTypoScriptProvider.html#typoscript-site-sets-set-example", "Example: The set of a sitepackage" ], "condition-variables-available-in-tsconfig": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#condition-variables-available-in-tsconfig", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-variables", "Condition variables available in TSconfig" ], "example-condition-applies-in-application-context-development": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#example-condition-applies-in-application-context-development", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-applicationContext-example", "Example: Condition applies in application context \"Development\"" ], "example-condition-applies-in-any-application-context-that-does-not-start-with-production": [ @@ -25225,223 +24811,223 @@ "example-condition-applies-only-on-certain-pages": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#example-condition-applies-only-on-certain-pages", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-page-example", "Example: Condition applies only on certain pages" ], "example-condition-applies-on-a-page-on-root-level": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#example-condition-applies-on-a-page-on-root-level", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-tree-level-example", "Example: Condition applies on a page on root level" ], "example-condition-applies-on-pages-with-a-certain-backend-layout": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#example-condition-applies-on-pages-with-a-certain-backend-layout", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-tree-pagelayout-example", "Example: Condition applies on pages with a certain backend layout" ], "example-condition-applies-on-all-subpages-of-page": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#example-condition-applies-on-all-subpages-of-page", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-tree-rootLine-example", "Example: Condition applies on all subpages of page" ], "example-condition-applies-if-a-page-is-in-the-root-line": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#example-condition-applies-if-a-page-is-in-the-root-line", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-tree-rootLineIds-example", "Example: Condition applies if a page is in the root line" ], "example-condition-applies-if-a-page-s-parent-is-in-the-root-line": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#example-condition-applies-if-a-page-s-parent-is-in-the-root-line", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-tree-rootLineParentIds-example", "Example: Condition applies if a page's parent is in the root line" ], "example-condition-applies-if-the-current-backend-user-is-an-admin": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#example-condition-applies-if-the-current-backend-user-is-an-admin", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-backend-user-isAdmin-example", "Example: Condition applies if the current backend user is an admin" ], "example-condition-applies-if-any-backend-user-is-logged-in": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#example-condition-applies-if-any-backend-user-is-logged-in", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-backend-user-isLoggedIn-example", "Example: Condition applies if any backend user is logged in" ], "example-condition-applies-if-a-certain-backend-user-is-logged-in": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#example-condition-applies-if-a-certain-backend-user-is-logged-in", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-backend-user-userId-example", "Example: Condition applies if a certain backend user is logged in" ], "example-condition-applies-if-a-backend-user-of-a-certain-group-is-logged-in": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#example-condition-applies-if-a-backend-user-of-a-certain-group-is-logged-in", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-backend-user-userGroupIds-example", "Example: Condition applies if a backend user of a certain group is logged in" ], "example-condition-applies-if-the-groups-of-a-user-meet-a-certain-pattern": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#example-condition-applies-if-the-groups-of-a-user-meet-a-certain-pattern", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-backend-user-userGroupList-example", "Example: Condition applies if the groups of a user meet a certain pattern" ], "example-condition-applies-only-in-a-certain-workspace": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#example-condition-applies-only-in-a-certain-workspace", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-workspace-workspaceId-example", "Example: Condition applies only in a certain workspace" ], "example-condition-applies-only-in-live-workspace": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#example-condition-applies-only-in-live-workspace", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-workspace-isLive-example", "Example: Condition applies only in live workspace" ], "example-condition-applies-only-in-offline-workspace": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#example-condition-applies-only-in-offline-workspace", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-workspace-isOffline-example", "Example: Condition applies only in offline workspace" ], "example-condition-only-applies-in-an-exact-typo3-version-like-13-4-0": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#example-condition-only-applies-in-an-exact-typo3-version-like-13-4-0", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-typo3-version-example", "Example: Condition only applies in an exact TYPO3 version like 13.4.0" ], "example-condition-applies-in-all-typo3-versions-of-a-branch-like-13-4": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#example-condition-applies-in-all-typo3-versions-of-a-branch-like-13-4", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-typo3-branch-example", "Example: Condition applies in all TYPO3 versions of a branch like 13.4" ], "example-condition-only-applies-if-the-devipmask-is-set-to-a-certain-value": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#example-condition-only-applies-if-the-devipmask-is-set-to-a-certain-value", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-typo3-devIpMask-example", "Example: Condition only applies if the devIpMask is set to a certain value" ], "condition-functions-available-in-tsconfig": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#condition-functions-available-in-tsconfig", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-functions", "Condition functions available in TSconfig" ], "example-condition-applies-at-certain-dates-or-times": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#example-condition-applies-at-certain-dates-or-times", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-function-date-example", "Example: Condition applies at certain dates or times" ], "example-use-the-like-function-in-conditions": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#example-use-the-like-function-in-conditions", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-function-like-example", "Example: Use the \"like()\" function in conditions" ], "example-condition-applies-if-request-parameter-matches-a-certain-value": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#example-condition-applies-if-request-parameter-matches-a-certain-value", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-function-traverse-example", "Example: Condition applies if request parameter matches a certain value" ], "example-condition-applies-if-the-current-typo3-version-matches-a-pattern": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#example-condition-applies-if-the-current-typo3-version-matches-a-pattern", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-function-compatVersion-example", "Example: Condition applies if the current TYPO3 version matches a pattern" ], "example-condition-applies-if-the-virtual-host-is-set-to-a-certain-value": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#example-condition-applies-if-the-virtual-host-is-set-to-a-certain-value", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-function-getenv-example", "Example: Condition applies if the virtual host is set to a certain value" ], "example-condition-applies-if-a-feature-toggle-is-enabled": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#example-condition-applies-if-a-feature-toggle-is-enabled", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-function-feature-example", "Example: condition applies if a feature toggle is enabled" ], "example-condition-applies-if-a-certain-value-is-set-in-the-site-configuration": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#example-condition-applies-if-a-certain-value-is-set-in-the-site-configuration", + "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-function-site-example", "Example: Condition applies if a certain value is set in the site configuration" ], "using-and-setting-tsconfig": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Index.html#using-and-setting-tsconfig", + "UsingSettingTSconfig\/Index.html#typoscript-syntax-using-setting", "Using and setting TSconfig" ], "setting-page-tsconfig-1": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/PageTSconfig.html#setting-page-tsconfig-1", + "UsingSettingTSconfig\/PageTSconfig.html#setting-page-tsconfig", "Setting page TSconfig" ], "setting-the-page-tsconfig-globally": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/PageTSconfig.html#setting-the-page-tsconfig-globally", + "UsingSettingTSconfig\/PageTSconfig.html#pagesettingdefaultpagetsconfig", "Setting the page TSconfig globally" ], "page-tsconfig-on-site-level": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/PageTSconfig.html#page-tsconfig-on-site-level", + "UsingSettingTSconfig\/PageTSconfig.html#include-static-page-tsconfig-per-site", "Page TSconfig on site level" ], "example-load-page-tsconfig-from-the-site-set-and-the-site": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/PageTSconfig.html#example-load-page-tsconfig-from-the-site-set-and-the-site", + "UsingSettingTSconfig\/PageTSconfig.html#include-static-page-tsconfig-per-site-example", "Example: load page TSconfig from the site set and the site" ], "static-page-tsconfig": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/PageTSconfig.html#static-page-tsconfig", + "UsingSettingTSconfig\/PageTSconfig.html#pagesettingstaticpagetsconfigfiles", "Static page TSconfig" ], "include-static-page-tsconfig-into-a-page-tree": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/PageTSconfig.html#include-static-page-tsconfig-into-a-page-tree", + "UsingSettingTSconfig\/PageTSconfig.html#include-static-page-tsconfig", "Include static page TSconfig into a page tree" ], "register-static-page-tsconfig-files": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/PageTSconfig.html#register-static-page-tsconfig-files", + "UsingSettingTSconfig\/PageTSconfig.html#register-static-page-tsconfig", "Register static page TSconfig files" ], "set-page-tsconfig-directly-in-the-page-properties": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/PageTSconfig.html#set-page-tsconfig-directly-in-the-page-properties", + "UsingSettingTSconfig\/PageTSconfig.html#pagethetsconfigfield", "Set page TSconfig directly in the page properties" ], "verify-the-final-configuration": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/UserTSconfig.html#verify-the-final-configuration", + "UsingSettingTSconfig\/UserTSconfig.html#userverifyingthefinalconfiguration", "Verify the final configuration" ], "overriding-and-modifying-values": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/PageTSconfig.html#overriding-and-modifying-values", + "UsingSettingTSconfig\/PageTSconfig.html#page-overriding-and-modifying-values", "Overriding and modifying values" ], "php-api": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/PhpApi.html#php-api", + "UsingSettingTSconfig\/PhpApi.html#phpapi", "PHP API" ], "retrieving-tsconfig-settings": [ @@ -25459,37 +25045,37 @@ "syntax-1": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Syntax.html#syntax-1", + "UsingSettingTSconfig\/Syntax.html#syntax", "Syntax" ], "setting-user-tsconfig-1": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/UserTSconfig.html#setting-user-tsconfig-1", + "UsingSettingTSconfig\/UserTSconfig.html#setting-user-tsconfig", "Setting user TSconfig" ], "importing-the-user-tsconfig-into-a-backend-user-or-group": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/UserTSconfig.html#importing-the-user-tsconfig-into-a-backend-user-or-group", + "UsingSettingTSconfig\/UserTSconfig.html#userthetsconfigfield", "Importing the user TSconfig into a backend user or group" ], "setting-default-user-tsconfig": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/UserTSconfig.html#setting-default-user-tsconfig", + "UsingSettingTSconfig\/UserTSconfig.html#usersettingdefaultusertsconfig", "Setting default user TSconfig" ], "override-and-modify-values": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/UserTSconfig.html#override-and-modify-values", + "UsingSettingTSconfig\/UserTSconfig.html#user-override-modify-values", "Override and modify values" ], "overriding-page-tsconfig-in-user-tsconfig": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/UserTSconfig.html#overriding-page-tsconfig-in-user-tsconfig", + "UsingSettingTSconfig\/UserTSconfig.html#pageoverridingpagetsconfigwithusertsconfig", "Overriding page TSconfig in user TSconfig" ] }, @@ -25497,6649 +25083,6661 @@ "tsfe-id": [ "TypoScript Explained", "main", - "AppendixA\/Index.html#tsfe-id", + "AppendixA\/Index.html#confval-tsfe-id", "id" ], "tsfe-type": [ "TypoScript Explained", "main", - "AppendixA\/Index.html#tsfe-type", + "AppendixA\/Index.html#confval-tsfe-type", "type" ], "tsfe-page": [ "TypoScript Explained", "main", - "AppendixA\/Index.html#tsfe-page", + "AppendixA\/Index.html#confval-tsfe-page", "page" ], "tsfe-fe-user": [ "TypoScript Explained", "main", - "AppendixA\/Index.html#tsfe-fe-user", + "AppendixA\/Index.html#confval-tsfe-fe-user", "fe_user" ], "tsfe-rootline": [ "TypoScript Explained", "main", - "AppendixA\/Index.html#tsfe-rootline", + "AppendixA\/Index.html#confval-tsfe-rootline", "rootLine" ], "tsfe-table-row": [ "TypoScript Explained", "main", - "AppendixA\/Index.html#tsfe-table-row", + "AppendixA\/Index.html#confval-tsfe-table-row", "rootLine" ], "condition-applicationcontext": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-applicationcontext", + "Conditions\/Index.html#confval-condition-applicationcontext", "applicationContext" ], "condition-page": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-page", + "Conditions\/Index.html#confval-condition-page", "page" ], "condition-tree": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-tree", + "Conditions\/Index.html#confval-condition-tree", "tree" ], "condition-tree-level": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-tree-level", + "Conditions\/Index.html#confval-condition-tree-level", "tree.level" ], "condition-tree-pagelayout": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-tree-pagelayout", + "Conditions\/Index.html#confval-condition-tree-pagelayout", "tree.pagelayout" ], "condition-tree-rootline": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-tree-rootline", + "Conditions\/Index.html#confval-condition-tree-rootline", "tree.rootLine" ], "condition-tree-rootlineids": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-tree-rootlineids", + "Conditions\/Index.html#confval-condition-tree-rootlineids", "tree.rootLineIds" ], "condition-tree-rootlineparentids": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-tree-rootlineparentids", + "Conditions\/Index.html#confval-condition-tree-rootlineparentids", "tree.rootLineParentIds" ], "condition-backend": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-backend", + "Conditions\/Index.html#confval-condition-backend", "backend" ], "condition-backend-user": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-backend-user", + "Conditions\/Index.html#confval-condition-backend-user", "backend.user" ], "condition-backend-user-isadmin": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-backend-user-isadmin", + "Conditions\/Index.html#confval-condition-backend-user-isadmin", "backend.user.isAdmin" ], "condition-backend-user-isloggedin": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-backend-user-isloggedin", + "Conditions\/Index.html#confval-condition-backend-user-isloggedin", "backend.user.isLoggedIn" ], "condition-backend-user-userid": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-backend-user-userid", + "Conditions\/Index.html#confval-condition-backend-user-userid", "backend.user.userId" ], "condition-backend-user-usergroupids": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-backend-user-usergroupids", + "Conditions\/Index.html#confval-condition-backend-user-usergroupids", "backend.user.userGroupIds" ], "condition-backend-user-usergrouplist": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-backend-user-usergrouplist", + "Conditions\/Index.html#confval-condition-backend-user-usergrouplist", "backend.user.userGroupList" ], "condition-frontend": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-frontend", + "Conditions\/Index.html#confval-condition-frontend", "frontend" ], "condition-frontend-user": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-frontend-user", + "Conditions\/Index.html#confval-condition-frontend-user", "frontend.user" ], "condition-frontend-user-isloggedin": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-frontend-user-isloggedin", + "Conditions\/Index.html#confval-condition-frontend-user-isloggedin", "frontend.user.isLoggedIn" ], "condition-frontend-user-userid": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-frontend-user-userid", + "Conditions\/Index.html#confval-condition-frontend-user-userid", "frontend.user.userId" ], "condition-frontend-user-usergroupids": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-frontend-user-usergroupids", + "Conditions\/Index.html#confval-condition-frontend-user-usergroupids", "frontend.user.userGroupIds" ], "condition-frontend-user-usergrouplist": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-frontend-user-usergrouplist", + "Conditions\/Index.html#confval-condition-frontend-user-usergrouplist", "frontend.user.userGroupList" ], "condition-workspace": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-workspace", + "Conditions\/Index.html#confval-condition-workspace", "workspace" ], "condition-workspace-workspaceid": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-workspace-workspaceid", + "Conditions\/Index.html#confval-condition-workspace-workspaceid", "workspace.workspaceId" ], "condition-workspace-islive": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-workspace-islive", + "Conditions\/Index.html#confval-condition-workspace-islive", "workspace.isLive" ], "condition-workspace-isoffline": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-workspace-isoffline", + "Conditions\/Index.html#confval-condition-workspace-isoffline", "workspace.isOffline" ], "condition-typo3": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-typo3", + "Conditions\/Index.html#confval-condition-typo3", "typo3" ], "condition-typo3-version": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-typo3-version", + "Conditions\/Index.html#confval-condition-typo3-version", "typo3.version" ], "condition-typo3-branch": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-typo3-branch", + "Conditions\/Index.html#confval-condition-typo3-branch", "typo3.branch" ], "condition-typo3-devipmask": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-typo3-devipmask", + "Conditions\/Index.html#confval-condition-typo3-devipmask", "typo3.devIpMask" ], "condition-date": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-date", + "Conditions\/Index.html#confval-condition-date", "date()" ], "condition-like": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-like", + "Conditions\/Index.html#confval-condition-like", "like()" ], "condition-traverse": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-traverse", + "Conditions\/Index.html#confval-condition-traverse", "traverse()" ], "condition-compatversion": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-compatversion", + "Conditions\/Index.html#confval-condition-compatversion", "compatVersion()" ], "condition-gettsfe": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-gettsfe", + "Conditions\/Index.html#confval-condition-gettsfe", "getTSFE()" ], "condition-getenv": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-getenv", + "Conditions\/Index.html#confval-condition-getenv", "getenv()" ], "condition-feature": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-feature", + "Conditions\/Index.html#confval-condition-feature", "feature()" ], "condition-ip": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-ip", + "Conditions\/Index.html#confval-condition-ip", "ip()" ], "condition-request": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-request", + "Conditions\/Index.html#confval-condition-request", "request()" ], "condition-request-getqueryparams": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-request-getqueryparams", + "Conditions\/Index.html#confval-condition-request-getqueryparams", "request.getQueryParams()" ], "condition-request-getparsedbody": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-request-getparsedbody", + "Conditions\/Index.html#confval-condition-request-getparsedbody", "request.getParsedBody()" ], "condition-request-getheaders": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-request-getheaders", + "Conditions\/Index.html#confval-condition-request-getheaders", "request.getHeaders()" ], "condition-request-getcookieparams": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-request-getcookieparams", + "Conditions\/Index.html#confval-condition-request-getcookieparams", "request.getCookieParams()" ], "condition-request-getnormalizedparams": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-request-getnormalizedparams", + "Conditions\/Index.html#confval-condition-request-getnormalizedparams", "request.getNormalizedParams()" ], "condition-request-getpagearguments": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-request-getpagearguments", + "Conditions\/Index.html#confval-condition-request-getpagearguments", "request.getPageArguments()" ], "condition-session": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-session", + "Conditions\/Index.html#confval-condition-session", "session()" ], "condition-site": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-site", + "Conditions\/Index.html#confval-condition-site", "site()" ], "condition-sitelanguage": [ "TypoScript Explained", "main", - "Conditions\/Index.html#condition-sitelanguage", + "Conditions\/Index.html#confval-condition-sitelanguage", "siteLanguage()" ], "case-array": [ "TypoScript Explained", "main", - "ContentObjects\/Case\/Index.html#case-array", + "ContentObjects\/Case\/Index.html#confval-case-array", "array of cObjects" ], "case-cache": [ "TypoScript Explained", "main", - "ContentObjects\/Case\/Index.html#case-cache", + "ContentObjects\/Case\/Index.html#confval-case-cache", "cache" ], "case-default": [ "TypoScript Explained", "main", - "ContentObjects\/Case\/Index.html#case-default", + "ContentObjects\/Case\/Index.html#confval-case-default", "default" ], "case-if": [ "TypoScript Explained", "main", - "ContentObjects\/Case\/Index.html#case-if", + "ContentObjects\/Case\/Index.html#confval-case-if", "if" ], "case-key": [ "TypoScript Explained", "main", - "ContentObjects\/Case\/Index.html#case-key", + "ContentObjects\/Case\/Index.html#confval-case-key", "key" ], "case-setcurrent": [ "TypoScript Explained", "main", - "ContentObjects\/Case\/Index.html#case-setcurrent", + "ContentObjects\/Case\/Index.html#confval-case-setcurrent", "setCurrent" ], "case-stdwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Case\/Index.html#case-stdwrap", + "ContentObjects\/Case\/Index.html#confval-case-stdwrap", "stdWrap" ], "coa-array": [ "TypoScript Explained", "main", - "ContentObjects\/CoaAndCoaInt\/Index.html#coa-array", + "ContentObjects\/CoaAndCoaInt\/Index.html#confval-coa-array", "1,2,3,4..." ], "coa-cache": [ "TypoScript Explained", "main", - "ContentObjects\/CoaAndCoaInt\/Index.html#coa-cache", + "ContentObjects\/CoaAndCoaInt\/Index.html#confval-coa-cache", "cache" ], "coa-if": [ "TypoScript Explained", "main", - "ContentObjects\/CoaAndCoaInt\/Index.html#coa-if", + "ContentObjects\/CoaAndCoaInt\/Index.html#confval-coa-if", "if" ], "coa-stdwrap": [ "TypoScript Explained", "main", - "ContentObjects\/CoaAndCoaInt\/Index.html#coa-stdwrap", + "ContentObjects\/CoaAndCoaInt\/Index.html#confval-coa-stdwrap", "stdWrap" ], "coa-wrap": [ "TypoScript Explained", "main", - "ContentObjects\/CoaAndCoaInt\/Index.html#coa-wrap", + "ContentObjects\/CoaAndCoaInt\/Index.html#confval-coa-wrap", "wrap" ], "content-select": [ "TypoScript Explained", "main", - "ContentObjects\/Content\/Index.html#content-select", + "ContentObjects\/Content\/Index.html#confval-content-select", "select" ], "content-table": [ "TypoScript Explained", "main", - "ContentObjects\/Content\/Index.html#content-table", + "ContentObjects\/Content\/Index.html#confval-content-table", "table" ], "content-renderobj": [ "TypoScript Explained", "main", - "ContentObjects\/Content\/Index.html#content-renderobj", + "ContentObjects\/Content\/Index.html#confval-content-renderobj", "renderObj" ], "content-slide": [ "TypoScript Explained", "main", - "ContentObjects\/Content\/Index.html#content-slide", + "ContentObjects\/Content\/Index.html#confval-content-slide", "slide" ], "content-slide-collect": [ "TypoScript Explained", "main", - "ContentObjects\/Content\/Index.html#content-slide-collect", + "ContentObjects\/Content\/Index.html#confval-content-slide-collect", "slide.collect" ], "content-slide-collectfuzzy": [ "TypoScript Explained", "main", - "ContentObjects\/Content\/Index.html#content-slide-collectfuzzy", + "ContentObjects\/Content\/Index.html#confval-content-slide-collectfuzzy", "slide.collectFuzzy" ], "content-slide-collectreverse": [ "TypoScript Explained", "main", - "ContentObjects\/Content\/Index.html#content-slide-collectreverse", + "ContentObjects\/Content\/Index.html#confval-content-slide-collectreverse", "slide.collectReverse" ], "content-wrap": [ "TypoScript Explained", "main", - "ContentObjects\/Content\/Index.html#content-wrap", + "ContentObjects\/Content\/Index.html#confval-content-wrap", "wrap" ], "content-stdwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Content\/Index.html#content-stdwrap", + "ContentObjects\/Content\/Index.html#confval-content-stdwrap", "stdWrap" ], "content-cache": [ "TypoScript Explained", "main", - "ContentObjects\/Content\/Index.html#content-cache", + "ContentObjects\/Content\/Index.html#confval-content-cache", "cache" ], "extbaseplugin-cache": [ "TypoScript Explained", "main", - "ContentObjects\/Extbaseplugin\/Index.html#extbaseplugin-cache", + "ContentObjects\/Extbaseplugin\/Index.html#confval-extbaseplugin-cache", "cache" ], "extbaseplugin-extensionname": [ "TypoScript Explained", "main", - "ContentObjects\/Extbaseplugin\/Index.html#extbaseplugin-extensionname", + "ContentObjects\/Extbaseplugin\/Index.html#confval-extbaseplugin-extensionname", "extensionName" ], "extbaseplugin-pluginname": [ "TypoScript Explained", "main", - "ContentObjects\/Extbaseplugin\/Index.html#extbaseplugin-pluginname", + "ContentObjects\/Extbaseplugin\/Index.html#confval-extbaseplugin-pluginname", "pluginName" ], "files-cache": [ "TypoScript Explained", "main", - "ContentObjects\/Files\/Index.html#files-cache", + "ContentObjects\/Files\/Index.html#confval-files-cache", "cache" ], "files-files": [ "TypoScript Explained", "main", - "ContentObjects\/Files\/Index.html#files-files", + "ContentObjects\/Files\/Index.html#confval-files-files", "files" ], "files-references": [ "TypoScript Explained", "main", - "ContentObjects\/Files\/Index.html#files-references", + "ContentObjects\/Files\/Index.html#confval-files-references", "references" ], "files-collections": [ "TypoScript Explained", "main", - "ContentObjects\/Files\/Index.html#files-collections", + "ContentObjects\/Files\/Index.html#confval-files-collections", "collections" ], "files-folders": [ "TypoScript Explained", "main", - "ContentObjects\/Files\/Index.html#files-folders", + "ContentObjects\/Files\/Index.html#confval-files-folders", "folders" ], "files-sorting": [ "TypoScript Explained", "main", - "ContentObjects\/Files\/Index.html#files-sorting", + "ContentObjects\/Files\/Index.html#confval-files-sorting", "sorting" ], "files-sorting-direction": [ "TypoScript Explained", "main", - "ContentObjects\/Files\/Index.html#files-sorting-direction", + "ContentObjects\/Files\/Index.html#confval-files-sorting-direction", "sorting.direction" ], "files-begin": [ "TypoScript Explained", "main", - "ContentObjects\/Files\/Index.html#files-begin", + "ContentObjects\/Files\/Index.html#confval-files-begin", "begin" ], "files-maxitems": [ "TypoScript Explained", "main", - "ContentObjects\/Files\/Index.html#files-maxitems", + "ContentObjects\/Files\/Index.html#confval-files-maxitems", "maxItems" ], "files-renderobj": [ "TypoScript Explained", "main", - "ContentObjects\/Files\/Index.html#files-renderobj", + "ContentObjects\/Files\/Index.html#confval-files-renderobj", "renderObj" ], "files-stdwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Files\/Index.html#files-stdwrap", + "ContentObjects\/Files\/Index.html#confval-files-stdwrap", "stdWrap" ], "files-references-table": [ "TypoScript Explained", "main", - "ContentObjects\/Files\/Index.html#files-references-table", + "ContentObjects\/Files\/Index.html#confval-files-references-table", "references.table" ], "files-references-uid": [ "TypoScript Explained", "main", - "ContentObjects\/Files\/Index.html#files-references-uid", + "ContentObjects\/Files\/Index.html#confval-files-references-uid", "references.uid" ], "files-references-fieldname": [ "TypoScript Explained", "main", - "ContentObjects\/Files\/Index.html#files-references-fieldname", + "ContentObjects\/Files\/Index.html#confval-files-references-fieldname", "references.fieldName" ], "fluidtemplate-cache": [ "TypoScript Explained", "main", - "ContentObjects\/Fluidtemplate\/Index.html#fluidtemplate-cache", + "ContentObjects\/Fluidtemplate\/Index.html#confval-fluidtemplate-cache", "cache" ], "fluidtemplate-dataprocessing": [ "TypoScript Explained", "main", - "ContentObjects\/Fluidtemplate\/Index.html#fluidtemplate-dataprocessing", + "ContentObjects\/Fluidtemplate\/Index.html#confval-fluidtemplate-dataprocessing", "dataProcessing" ], "fluidtemplate-extbase-controlleractionname": [ "TypoScript Explained", "main", - "ContentObjects\/Fluidtemplate\/Index.html#fluidtemplate-extbase-controlleractionname", + "ContentObjects\/Fluidtemplate\/Index.html#confval-fluidtemplate-extbase-controlleractionname", "extbase.controllerActionName" ], "fluidtemplate-extbase-controllerextensionname": [ "TypoScript Explained", "main", - "ContentObjects\/Fluidtemplate\/Index.html#fluidtemplate-extbase-controllerextensionname", + "ContentObjects\/Fluidtemplate\/Index.html#confval-fluidtemplate-extbase-controllerextensionname", "extbase.controllerExtensionName" ], "fluidtemplate-extbase-controllername": [ "TypoScript Explained", "main", - "ContentObjects\/Fluidtemplate\/Index.html#fluidtemplate-extbase-controllername", + "ContentObjects\/Fluidtemplate\/Index.html#confval-fluidtemplate-extbase-controllername", "extbase.controllerName" ], "fluidtemplate-extbase-pluginname": [ "TypoScript Explained", "main", - "ContentObjects\/Fluidtemplate\/Index.html#fluidtemplate-extbase-pluginname", + "ContentObjects\/Fluidtemplate\/Index.html#confval-fluidtemplate-extbase-pluginname", "extbase.pluginName" ], "fluidtemplate-file": [ "TypoScript Explained", "main", - "ContentObjects\/Fluidtemplate\/Index.html#fluidtemplate-file", + "ContentObjects\/Fluidtemplate\/Index.html#confval-fluidtemplate-file", "file" ], "fluidtemplate-format": [ "TypoScript Explained", "main", - "ContentObjects\/Fluidtemplate\/Index.html#fluidtemplate-format", + "ContentObjects\/Fluidtemplate\/Index.html#confval-fluidtemplate-format", "format" ], "fluidtemplate-layoutrootpath": [ "TypoScript Explained", "main", - "ContentObjects\/Fluidtemplate\/Index.html#fluidtemplate-layoutrootpath", + "ContentObjects\/Fluidtemplate\/Index.html#confval-fluidtemplate-layoutrootpath", "layoutRootPath" ], "fluidtemplate-layoutrootpaths": [ "TypoScript Explained", "main", - "ContentObjects\/Fluidtemplate\/Index.html#fluidtemplate-layoutrootpaths", + "ContentObjects\/Fluidtemplate\/Index.html#confval-fluidtemplate-layoutrootpaths", "layoutRootPaths" ], "fluidtemplate-partialrootpath": [ "TypoScript Explained", "main", - "ContentObjects\/Fluidtemplate\/Index.html#fluidtemplate-partialrootpath", + "ContentObjects\/Fluidtemplate\/Index.html#confval-fluidtemplate-partialrootpath", "partialRootPath" ], "fluidtemplate-partialrootpaths": [ "TypoScript Explained", "main", - "ContentObjects\/Fluidtemplate\/Index.html#fluidtemplate-partialrootpaths", + "ContentObjects\/Fluidtemplate\/Index.html#confval-fluidtemplate-partialrootpaths", "partialRootPaths" ], "fluidtemplate-settings": [ "TypoScript Explained", "main", - "ContentObjects\/Fluidtemplate\/Index.html#fluidtemplate-settings", + "ContentObjects\/Fluidtemplate\/Index.html#confval-fluidtemplate-settings", "settings" ], "fluidtemplate-stdwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Fluidtemplate\/Index.html#fluidtemplate-stdwrap", + "ContentObjects\/Fluidtemplate\/Index.html#confval-fluidtemplate-stdwrap", "stdWrap" ], "fluidtemplate-template": [ "TypoScript Explained", "main", - "ContentObjects\/Fluidtemplate\/Index.html#fluidtemplate-template", + "ContentObjects\/Fluidtemplate\/Index.html#confval-fluidtemplate-template", "template" ], "fluidtemplate-templatename": [ "TypoScript Explained", "main", - "ContentObjects\/Fluidtemplate\/Index.html#fluidtemplate-templatename", + "ContentObjects\/Fluidtemplate\/Index.html#confval-fluidtemplate-templatename", "templateName" ], "fluidtemplate-templaterootpath": [ "TypoScript Explained", "main", - "ContentObjects\/Fluidtemplate\/Index.html#fluidtemplate-templaterootpath", + "ContentObjects\/Fluidtemplate\/Index.html#confval-fluidtemplate-templaterootpath", "templateRootPath" ], "fluidtemplate-templaterootpaths": [ "TypoScript Explained", "main", - "ContentObjects\/Fluidtemplate\/Index.html#fluidtemplate-templaterootpaths", + "ContentObjects\/Fluidtemplate\/Index.html#confval-fluidtemplate-templaterootpaths", "templateRootPaths" ], "fluidtemplate-variables": [ "TypoScript Explained", "main", - "ContentObjects\/Fluidtemplate\/Index.html#fluidtemplate-variables", + "ContentObjects\/Fluidtemplate\/Index.html#confval-fluidtemplate-variables", "variables" ], - "hmenu-browse-special-value": [ + "hmenu-array": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Browse.html#hmenu-browse-special-value", - "special.value" + "ContentObjects\/Hmenu\/Index.html#confval-hmenu-array", + "1, 2, 3, ..." ], - "hmenu-browse-special-items": [ + "hmenu-cache-period": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Browse.html#hmenu-browse-special-items", - "special.items" + "ContentObjects\/Hmenu\/Index.html#confval-hmenu-cache-period", + "cache_period" ], - "hmenu-browse-special-items-prevnexttosection": [ + "hmenu-cache": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Browse.html#hmenu-browse-special-items-prevnexttosection", - "special.items.prevnextToSection" + "ContentObjects\/Hmenu\/Index.html#confval-hmenu-cache", + "cache" ], - "hmenu-browse-special-itemname-target": [ + "hmenu-entrylevel": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Browse.html#hmenu-browse-special-itemname-target", - "special.[itemname].target" + "ContentObjects\/Hmenu\/Index.html#confval-hmenu-entrylevel", + "entryLevel" ], - "hmenu-browse-special-itemname-uid": [ + "hmenu-special": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Browse.html#hmenu-browse-special-itemname-uid", - "special.[itemname].uid" + "ContentObjects\/Hmenu\/Index.html#confval-hmenu-special", + "special" ], - "hmenu-browse-special-itemname-fields": [ + "hmenu-special-value": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Browse.html#hmenu-browse-special-itemname-fields", - "special.[itemname].fields.[field name]" + "ContentObjects\/Hmenu\/Index.html#confval-hmenu-special-value", + "special.value" ], - "hmenu-browse-special-excludenosearchpages": [ + "hmenu-minitems": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Browse.html#hmenu-browse-special-excludenosearchpages", - "special.excludeNoSearchPages" + "ContentObjects\/Hmenu\/Index.html#confval-hmenu-minitems", + "minItems" ], - "hmenu-categories-special-value": [ + "hmenu-maxitems": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Categories.html#hmenu-categories-special-value", - "special.value" + "ContentObjects\/Hmenu\/Index.html#confval-hmenu-maxitems", + "maxItems" ], - "hmenu-categories-special-relation": [ + "hmenu-begin": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Categories.html#hmenu-categories-special-relation", - "special.relation" + "ContentObjects\/Hmenu\/Index.html#confval-hmenu-begin", + "begin" ], - "hmenu-categories-special-sorting": [ + "hmenu-excludeuidlist": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Categories.html#hmenu-categories-special-sorting", - "special.sorting" + "ContentObjects\/Hmenu\/Index.html#confval-hmenu-excludeuidlist", + "excludeUidList" ], - "hmenu-categories-special-order": [ + "hmenu-excludedoktypes": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Categories.html#hmenu-categories-special-order", - "special.order" + "ContentObjects\/Hmenu\/Index.html#confval-hmenu-excludedoktypes", + "excludeDoktypes" ], - "hmenu-directory-special-value": [ + "hmenu-includenotinmenu": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Directory.html#hmenu-directory-special-value", - "special.value" + "ContentObjects\/Hmenu\/Index.html#confval-hmenu-includenotinmenu", + "includeNotInMenu" ], - "hmenu-array": [ + "hmenu-alwaysactivepidlist": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-array", - "1, 2, 3, ..." + "ContentObjects\/Hmenu\/Index.html#confval-hmenu-alwaysactivepidlist", + "alwaysActivePIDlist" ], - "hmenu-cache-period": [ + "hmenu-protectlvar": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-cache-period", - "cache_period" + "ContentObjects\/Hmenu\/Index.html#confval-hmenu-protectlvar", + "protectLvar" ], - "hmenu-cache": [ + "hmenu-if": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-cache", - "cache" + "ContentObjects\/Hmenu\/Index.html#confval-hmenu-if", + "if" ], - "hmenu-entrylevel": [ + "hmenu-wrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-entrylevel", - "entryLevel" + "ContentObjects\/Hmenu\/Index.html#confval-hmenu-wrap", + "wrap" ], - "hmenu-special": [ + "hmenu-stdwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-special", - "special" + "ContentObjects\/Hmenu\/Index.html#confval-hmenu-stdwrap", + "stdWrap" ], - "hmenu-special-value": [ + "tmenu-common-property-no": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-special-value", - "special.value" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-tmenu-common-property-no", + "NO" ], - "hmenu-minitems": [ + "tmenu-common-property-ifsub": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-minitems", - "minItems" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-tmenu-common-property-ifsub", + "IFSUB" + ], + "tmenu-common-property-act": [ + "TypoScript Explained", + "main", + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-tmenu-common-property-act", + "ACT" ], - "hmenu-maxitems": [ + "tmenu-common-property-actifsub": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-maxitems", - "maxItems" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-tmenu-common-property-actifsub", + "ACTIFSUB" ], - "hmenu-begin": [ + "tmenu-common-property-cur": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-begin", - "begin" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-tmenu-common-property-cur", + "CUR" ], - "hmenu-excludeuidlist": [ + "tmenu-common-property-curifsub": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-excludeuidlist", - "excludeUidList" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-tmenu-common-property-curifsub", + "CURIFSUB" ], - "hmenu-excludedoktypes": [ + "tmenu-common-property-usr": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-excludedoktypes", - "excludeDoktypes" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-tmenu-common-property-usr", + "USR" ], - "hmenu-includenotinmenu": [ + "tmenu-common-property-spc": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-includenotinmenu", - "includeNotInMenu" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-tmenu-common-property-spc", + "SPC" ], - "hmenu-alwaysactivepidlist": [ + "tmenu-common-property-userdef1": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-alwaysactivepidlist", - "alwaysActivePIDlist" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-tmenu-common-property-userdef1", + "USERDEF1" ], - "hmenu-protectlvar": [ + "tmenu-common-property-userdef2": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-protectlvar", - "protectLvar" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-tmenu-common-property-userdef2", + "USERDEF2" ], - "hmenu-addquerystring": [ + "menu-common-properties-expall": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-addquerystring", - "addQueryString" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-menu-common-properties-expall", + "expAll" ], - "hmenu-if": [ + "menu-common-properties-sectionindex": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-if", - "if" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-menu-common-properties-sectionindex", + "sectionIndex" ], - "hmenu-wrap": [ + "menu-common-properties-sectionindex-type": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-wrap", - "wrap" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-menu-common-properties-sectionindex-type", + "sectionIndex.type" ], - "hmenu-stdwrap": [ + "menu-common-properties-sectionindex-includehiddenheaders": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#hmenu-stdwrap", - "stdWrap" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-menu-common-properties-sectionindex-includehiddenheaders", + "sectionIndex.includeHiddenHeaders" ], - "hmenu-keywords-special-value": [ + "menu-common-properties-sectionindex-usecolpos": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#hmenu-keywords-special-value", - "special.value" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-menu-common-properties-sectionindex-usecolpos", + "sectionIndex.useColPos" ], - "hmenu-keywords-special-mode": [ + "menu-common-properties-target": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#hmenu-keywords-special-mode", - "special.mode" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-menu-common-properties-target", + "target" ], - "hmenu-keywords-special-entrylevel": [ + "menu-common-properties-forcetypevalue": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#hmenu-keywords-special-entrylevel", - "special.entryLevel" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-menu-common-properties-forcetypevalue", + "forceTypeValue" ], - "hmenu-keywords-special-depth": [ + "menu-common-properties-stdwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#hmenu-keywords-special-depth", - "special.depth" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-menu-common-properties-stdwrap", + "stdWrap" ], - "hmenu-keywords-special-limit": [ + "menu-common-properties-wrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#hmenu-keywords-special-limit", - "special.limit" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-menu-common-properties-wrap", + "wrap" ], - "hmenu-keywords-special-excludenosearchpages": [ + "menu-common-properties-iprocfunc": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#hmenu-keywords-special-excludenosearchpages", - "special.excludeNoSearchPages" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-menu-common-properties-iprocfunc", + "IProcFunc" ], - "hmenu-keywords-special-begin": [ + "menu-common-properties-alternativesortingfield": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#hmenu-keywords-special-begin", - "special.begin" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-menu-common-properties-alternativesortingfield", + "alternativeSortingField" ], - "hmenu-keywords-special-setkeywords": [ + "menu-common-properties-minitems": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#hmenu-keywords-special-setkeywords", - "special.setKeywords" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-menu-common-properties-minitems", + "minItems" ], - "hmenu-keywords-special-keywordsfield": [ + "menu-common-properties-maxitems": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#hmenu-keywords-special-keywordsfield", - "special.keywordsField" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-menu-common-properties-maxitems", + "maxItems" ], - "hmenu-keywords-special-setkeywords-sourcefield": [ + "menu-common-properties-begin": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#hmenu-keywords-special-setkeywords-sourcefield", - "special.keywordsField.sourceField" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-menu-common-properties-begin", + "begin" ], - "hmenu-language-special-value": [ + "menu-common-properties-debugitemconf": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Language.html#hmenu-language-special-value", - "special.value" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-menu-common-properties-debugitemconf", + "debugItemConf" ], - "hmenu-language-special-normalwhennolanguage": [ + "menu-common-properties-overrideid": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Language.html#hmenu-language-special-normalwhennolanguage", - "special.normalWhenNoLanguage" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-menu-common-properties-overrideid", + "overrideId" ], - "hmenu-list-special-value": [ + "menu-common-properties-addparams": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/List.html#hmenu-list-special-value", - "special.value" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-menu-common-properties-addparams", + "addParams" ], - "hmenu-rootline-special-range": [ + "menu-common-properties-showaccessrestrictedpages": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Rootline.html#hmenu-rootline-special-range", - "special.range" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-menu-common-properties-showaccessrestrictedpages", + "showAccessRestrictedPages" ], - "hmenu-rootline-special-reverseorder": [ + "menu-common-properties-additionalwhere": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Rootline.html#hmenu-rootline-special-reverseorder", - "special.reverseOrder" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-menu-common-properties-additionalwhere", + "additionalWhere" ], - "hmenu-rootline-special-targets": [ + "menu-common-properties-itemarrayprocfunc": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Rootline.html#hmenu-rootline-special-targets", - "special.targets.[level number]" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-menu-common-properties-itemarrayprocfunc", + "itemArrayProcFunc" ], - "tmenu-common-property-no": [ + "menu-common-properties-submenuobjsuffixes": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-no", - "NO" + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-menu-common-properties-submenuobjsuffixes", + "submenuObjSuffixes" ], - "tmenu-common-property-ifsub": [ + "tmenuitem-allwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-ifsub", - "IFSUB" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-allwrap", + "allWrap" ], - "tmenu-common-property-act": [ + "tmenuitem-wrapitemandsub": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-act", - "ACT" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-wrapitemandsub", + "wrapItemAndSub" ], - "tmenu-common-property-actifsub": [ + "tmenuitem-subst-elementuid": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-actifsub", - "ACTIFSUB" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-subst-elementuid", + "subst_elementUid" ], - "tmenu-common-property-cur": [ + "tmenuitem-before": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-cur", - "CUR" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-before", + "before" ], - "tmenu-common-property-curifsub": [ + "tmenuitem-beforewrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-curifsub", - "CURIFSUB" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-beforewrap", + "beforeWrap" ], - "tmenu-common-property-usr": [ + "tmenuitem-after": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-usr", - "USR" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-after", + "after" ], - "tmenu-common-property-spc": [ + "tmenuitem-afterwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-spc", - "SPC" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-afterwrap", + "afterWrap" ], - "tmenu-common-property-userdef1": [ + "tmenuitem-linkwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-userdef1", - "USERDEF1" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-linkwrap", + "linkWrap" ], - "tmenu-common-property-userdef2": [ + "tmenuitem-stdwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-common-property-userdef2", - "USERDEF2" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-stdwrap", + "stdWrap" ], - "menu-common-properties-expall": [ + "tmenuitem-atagbeforewrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#menu-common-properties-expall", - "expAll" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-atagbeforewrap", + "ATagBeforeWrap" ], - "menu-common-properties-sectionindex": [ + "tmenuitem-atagparams": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#menu-common-properties-sectionindex", - "sectionIndex" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-atagparams", + "ATagParams" ], - "menu-common-properties-sectionindex-type": [ + "tmenuitem-atagtitle": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#menu-common-properties-sectionindex-type", - "sectionIndex.type" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-atagtitle", + "ATagTitle" ], - "menu-common-properties-sectionindex-includehiddenheaders": [ + "tmenuitem-additionalparams": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#menu-common-properties-sectionindex-includehiddenheaders", - "sectionIndex.includeHiddenHeaders" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-additionalparams", + "additionalParams" ], - "menu-common-properties-sectionindex-usecolpos": [ + "tmenuitem-donotlinkit": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#menu-common-properties-sectionindex-usecolpos", - "sectionIndex.useColPos" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-donotlinkit", + "doNotLinkIt" ], - "menu-common-properties-target": [ + "tmenuitem-donotshowlink": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#menu-common-properties-target", - "target" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-donotshowlink", + "doNotShowLink" ], - "menu-common-properties-forcetypevalue": [ + "tmenuitem-stdwrap2": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#menu-common-properties-forcetypevalue", - "forceTypeValue" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-stdwrap2", + "stdWrap2" ], - "menu-common-properties-stdwrap": [ + "tmenuitem-alttarget": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#menu-common-properties-stdwrap", - "stdWrap" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-alttarget", + "altTarget" ], - "menu-common-properties-wrap": [ + "tmenuitem-allstdwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#menu-common-properties-wrap", - "wrap" + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-tmenuitem-allstdwrap", + "allStdWrap" ], - "menu-common-properties-iprocfunc": [ + "image-cache": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#menu-common-properties-iprocfunc", - "IProcFunc" + "ContentObjects\/Image\/Index.html#confval-image-cache", + "cache" ], - "menu-common-properties-alternativesortingfield": [ + "image-if": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#menu-common-properties-alternativesortingfield", - "alternativeSortingField" + "ContentObjects\/Image\/Index.html#confval-image-if", + "if" ], - "menu-common-properties-minitems": [ + "image-file": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#menu-common-properties-minitems", - "minItems" + "ContentObjects\/Image\/Index.html#confval-image-file", + "file" ], - "menu-common-properties-maxitems": [ + "image-params": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#menu-common-properties-maxitems", - "maxItems" + "ContentObjects\/Image\/Index.html#confval-image-params", + "params" ], - "menu-common-properties-begin": [ + "image-alttext": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#menu-common-properties-begin", - "begin" + "ContentObjects\/Image\/Index.html#confval-image-alttext", + "altText" ], - "menu-common-properties-debugitemconf": [ + "image-titletext": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#menu-common-properties-debugitemconf", - "debugItemConf" + "ContentObjects\/Image\/Index.html#confval-image-titletext", + "titleText" ], - "menu-common-properties-overrideid": [ + "image-emptytitlehandling": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#menu-common-properties-overrideid", - "overrideId" + "ContentObjects\/Image\/Index.html#confval-image-emptytitlehandling", + "emptyTitleHandling" ], - "menu-common-properties-addparams": [ + "image-layoutkey": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#menu-common-properties-addparams", - "addParams" + "ContentObjects\/Image\/Index.html#confval-image-layoutkey", + "layoutKey" ], - "menu-common-properties-showaccessrestrictedpages": [ + "image-layout": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#menu-common-properties-showaccessrestrictedpages", - "showAccessRestrictedPages" + "ContentObjects\/Image\/Index.html#confval-image-layout", + "layout" ], - "menu-common-properties-additionalwhere": [ + "image-layout-layoutkey": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#menu-common-properties-additionalwhere", - "additionalWhere" + "ContentObjects\/Image\/Index.html#confval-image-layout-layoutkey", + "layout.layoutKey" ], - "menu-common-properties-itemarrayprocfunc": [ + "image-layout-layoutkey-element": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#menu-common-properties-itemarrayprocfunc", - "itemArrayProcFunc" + "ContentObjects\/Image\/Index.html#confval-image-layout-layoutkey-element", + "layout.layoutKey.element" ], - "menu-common-properties-submenuobjsuffixes": [ + "image-layout-layoutkey-source": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#menu-common-properties-submenuobjsuffixes", - "submenuObjSuffixes" + "ContentObjects\/Image\/Index.html#confval-image-layout-layoutkey-source", + "layout.layoutKey.source" ], - "tmenuitem-allwrap": [ + "image-sourcecollection": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-allwrap", - "allWrap" + "ContentObjects\/Image\/Index.html#confval-image-sourcecollection", + "sourceCollection" ], - "tmenuitem-wrapitemandsub": [ + "image-datakey": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-wrapitemandsub", - "wrapItemAndSub" + "ContentObjects\/Image\/Index.html#confval-image-datakey", + "sourceCollection.dataKey" ], - "tmenuitem-subst-elementuid": [ + "image-datakey-if": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-subst-elementuid", - "subst_elementUid" + "ContentObjects\/Image\/Index.html#confval-image-datakey-if", + "sourceCollection.dataKey.if" ], - "tmenuitem-before": [ + "image-pixeldensity": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-before", - "before" + "ContentObjects\/Image\/Index.html#confval-image-pixeldensity", + "sourceCollection.dataKey.pixelDensity" ], - "tmenuitem-beforewrap": [ + "image-datakey-width": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-beforewrap", - "beforeWrap" + "ContentObjects\/Image\/Index.html#confval-image-datakey-width", + "sourceCollection.dataKey.width" ], - "tmenuitem-after": [ + "image-datakey-height": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-after", - "after" + "ContentObjects\/Image\/Index.html#confval-image-datakey-height", + "sourceCollection.dataKey.height" ], - "tmenuitem-afterwrap": [ + "image-datakey-maxw": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-afterwrap", - "afterWrap" + "ContentObjects\/Image\/Index.html#confval-image-datakey-maxw", + "sourceCollection.dataKey.maxW" ], - "tmenuitem-linkwrap": [ + "image-datakey-maxh": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-linkwrap", - "linkWrap" + "ContentObjects\/Image\/Index.html#confval-image-datakey-maxh", + "sourceCollection.dataKey.maxH" ], - "tmenuitem-stdwrap": [ + "image-datakey-minw": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-stdwrap", - "stdWrap" + "ContentObjects\/Image\/Index.html#confval-image-datakey-minw", + "sourceCollection.dataKey.minW" ], - "tmenuitem-atagbeforewrap": [ + "image-datakey-minh": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-atagbeforewrap", - "ATagBeforeWrap" + "ContentObjects\/Image\/Index.html#confval-image-datakey-minh", + "sourceCollection.dataKey.minH" ], - "tmenuitem-atagparams": [ + "image-datakey-quality": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-atagparams", - "ATagParams" + "ContentObjects\/Image\/Index.html#confval-image-datakey-quality", + "sourceCollection.dataKey.quality" ], - "tmenuitem-atagtitle": [ + "image-datakey-others": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-atagtitle", - "ATagTitle" + "ContentObjects\/Image\/Index.html#confval-image-datakey-others", + "sourceCollection.dataKey.*" ], - "tmenuitem-additionalparams": [ + "image-linkwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-additionalparams", - "additionalParams" + "ContentObjects\/Image\/Index.html#confval-image-linkwrap", + "linkWrap" ], - "tmenuitem-donotlinkit": [ + "image-imagelinkwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-donotlinkit", - "doNotLinkIt" + "ContentObjects\/Image\/Index.html#confval-image-imagelinkwrap", + "imageLinkWrap" ], - "tmenuitem-donotshowlink": [ + "image-wrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-donotshowlink", - "doNotShowLink" + "ContentObjects\/Image\/Index.html#confval-image-wrap", + "wrap" ], - "tmenuitem-stdwrap2": [ + "image-stdwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-stdwrap2", - "stdWrap2" + "ContentObjects\/Image\/Index.html#confval-image-stdwrap", + "stdWrap" ], - "tmenuitem-alttarget": [ + "img-resource-cache": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-alttarget", - "altTarget" + "ContentObjects\/ImgResource\/Index.html#confval-img-resource-cache", + "cache" ], - "tmenuitem-allstdwrap": [ + "img-resource-file": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#tmenuitem-allstdwrap", - "allStdWrap" + "ContentObjects\/ImgResource\/Index.html#confval-img-resource-file", + "file" ], - "hmenu-updated-special-value": [ + "img-resource-stdwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Updated.html#hmenu-updated-special-value", - "special.value" + "ContentObjects\/ImgResource\/Index.html#confval-img-resource-stdwrap", + "stdWrap" ], - "hmenu-updated-special-mode": [ + "load-register-array": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Updated.html#hmenu-updated-special-mode", - "special.mode" + "ContentObjects\/LoadRegister\/Index.html#confval-load-register-array", + "array of field names" ], - "hmenu-updated-special-depth": [ + "pageview-data-language": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Updated.html#hmenu-updated-special-depth", - "special.depth" + "ContentObjects\/Pageview\/Index.html#confval-pageview-data-language", + "language" ], - "hmenu-updated-special-beginatlevel": [ + "pageview-data-page": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Updated.html#hmenu-updated-special-beginatlevel", - "special.beginAtLevel" + "ContentObjects\/Pageview\/Index.html#confval-pageview-data-page", + "page" ], - "hmenu-updated-special-maxage": [ + "pageview-data-settings": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Updated.html#hmenu-updated-special-maxage", - "special.maxAge" + "ContentObjects\/Pageview\/Index.html#confval-pageview-data-settings", + "settings" ], - "hmenu-updated-special-limit": [ + "pageview-data-site": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Updated.html#hmenu-updated-special-limit", - "special.limit" + "ContentObjects\/Pageview\/Index.html#confval-pageview-data-site", + "site" ], - "hmenu-updated-special-excludenosearchpages": [ + "pageview-cache": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Updated.html#hmenu-updated-special-excludenosearchpages", - "special.excludeNoSearchPages" + "ContentObjects\/Pageview\/Index.html#confval-pageview-cache", + "cache" ], - "hmenu-userfunction-special-userfunc": [ + "pageview-dataprocessing": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Userfunction.html#hmenu-userfunction-special-userfunc", - "special.userFunc" + "ContentObjects\/Pageview\/Index.html#confval-pageview-dataprocessing", + "dataProcessing.[key]" ], - "image-cache": [ + "pageview-paths": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-cache", - "cache" + "ContentObjects\/Pageview\/Index.html#confval-pageview-paths", + "paths.[priority]" ], - "image-if": [ + "pageview-variables": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-if", - "if" + "ContentObjects\/Pageview\/Index.html#confval-pageview-variables", + "variables.[variable_name]" ], - "image-file": [ + "records-source": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-file", - "file" + "ContentObjects\/Records\/Index.html#confval-records-source", + "source" ], - "image-params": [ + "records-categories": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-params", - "params" + "ContentObjects\/Records\/Index.html#confval-records-categories", + "categories" ], - "image-alttext": [ + "records-categories-relation": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-alttext", - "altText" + "ContentObjects\/Records\/Index.html#confval-records-categories-relation", + "categories.relation" ], - "image-titletext": [ + "records-tables": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-titletext", - "titleText" + "ContentObjects\/Records\/Index.html#confval-records-tables", + "tables" ], - "image-emptytitlehandling": [ + "records-conf": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-emptytitlehandling", - "emptyTitleHandling" + "ContentObjects\/Records\/Index.html#confval-records-conf", + "conf.[*table name*]" ], - "image-layoutkey": [ + "records-dontcheckpid": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-layoutkey", - "layoutKey" + "ContentObjects\/Records\/Index.html#confval-records-dontcheckpid", + "dontCheckPid" ], - "image-layout": [ + "records-wrap": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-layout", - "layout" + "ContentObjects\/Records\/Index.html#confval-records-wrap", + "wrap" ], - "image-layout-layoutkey": [ + "records-stdwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-layout-layoutkey", - "layout.layoutKey" + "ContentObjects\/Records\/Index.html#confval-records-stdwrap", + "stdWrap" ], - "image-layout-layoutkey-element": [ + "records-cache": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-layout-layoutkey-element", - "layout.layoutKey.element" + "ContentObjects\/Records\/Index.html#confval-records-cache", + "cache" ], - "image-layout-layoutkey-source": [ + "svg-cache": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-layout-layoutkey-source", - "layout.layoutKey.source" + "ContentObjects\/Svg\/Index.html#confval-svg-cache", + "cache" ], - "image-sourcecollection": [ + "svg-width": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-sourcecollection", - "sourceCollection" + "ContentObjects\/Svg\/Index.html#confval-svg-width", + "width" ], - "image-datakey": [ + "svg-height": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-datakey", - "sourceCollection.dataKey" + "ContentObjects\/Svg\/Index.html#confval-svg-height", + "height" ], - "image-datakey-if": [ + "svg-src": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-datakey-if", - "sourceCollection.dataKey.if" + "ContentObjects\/Svg\/Index.html#confval-svg-src", + "src" ], - "image-pixeldensity": [ + "svg-rendermode": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-pixeldensity", - "sourceCollection.dataKey.pixelDensity" + "ContentObjects\/Svg\/Index.html#confval-svg-rendermode", + "renderMode" ], - "image-datakey-width": [ + "svg-stdwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-datakey-width", - "sourceCollection.dataKey.width" + "ContentObjects\/Svg\/Index.html#confval-svg-stdwrap", + "stdWrap" ], - "image-datakey-height": [ + "text-value": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-datakey-height", - "sourceCollection.dataKey.height" + "ContentObjects\/Text\/Index.html#confval-text-value", + "value" ], - "image-datakey-maxw": [ + "text-stdwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-datakey-maxw", - "sourceCollection.dataKey.maxW" + "ContentObjects\/Text\/Index.html#confval-text-stdwrap", + "stdWrap" ], - "image-datakey-maxh": [ + "text-cache": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-datakey-maxh", - "sourceCollection.dataKey.maxH" + "ContentObjects\/Text\/Index.html#confval-text-cache", + "cache" ], - "image-datakey-minw": [ + "user-userfunc": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-datakey-minw", - "sourceCollection.dataKey.minW" + "ContentObjects\/UserAndUserInt\/Index.html#confval-user-userfunc", + "userFunc" ], - "image-datakey-minh": [ + "user-defined-properties": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-datakey-minh", - "sourceCollection.dataKey.minH" + "ContentObjects\/UserAndUserInt\/Index.html#confval-user-defined-properties", + "(properties you define)" ], - "image-datakey-quality": [ + "user-stdwrap": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-datakey-quality", - "sourceCollection.dataKey.quality" + "ContentObjects\/UserAndUserInt\/Index.html#confval-user-stdwrap", + "stdWrap" ], - "image-datakey-others": [ + "user-cache": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-datakey-others", - "sourceCollection.dataKey.*" + "ContentObjects\/UserAndUserInt\/Index.html#confval-user-cache", + "cache" ], - "image-linkwrap": [ + "commaseparatedvalueprocessor-if": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-linkwrap", - "linkWrap" + "DataProcessing\/CommaSeparatedValueProcessor.html#confval-commaseparatedvalueprocessor-if", + "if" ], - "image-imagelinkwrap": [ + "commaseparatedvalueprocessor-fieldname": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-imagelinkwrap", - "imageLinkWrap" + "DataProcessing\/CommaSeparatedValueProcessor.html#confval-commaseparatedvalueprocessor-fieldname", + "fieldName" ], - "image-wrap": [ + "commaseparatedvalueprocessor-as": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-wrap", - "wrap" + "DataProcessing\/CommaSeparatedValueProcessor.html#confval-commaseparatedvalueprocessor-as", + "as" ], - "image-stdwrap": [ + "commaseparatedvalueprocessor-maximumcolumns": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#image-stdwrap", - "stdWrap" + "DataProcessing\/CommaSeparatedValueProcessor.html#confval-commaseparatedvalueprocessor-maximumcolumns", + "maximumColumns" ], - "img-resource-cache": [ + "commaseparatedvalueprocessor-fielddelimiter": [ "TypoScript Explained", "main", - "ContentObjects\/ImgResource\/Index.html#img-resource-cache", - "cache" + "DataProcessing\/CommaSeparatedValueProcessor.html#confval-commaseparatedvalueprocessor-fielddelimiter", + "fieldDelimiter" ], - "img-resource-file": [ + "commaseparatedvalueprocessor-fieldenclosure": [ "TypoScript Explained", "main", - "ContentObjects\/ImgResource\/Index.html#img-resource-file", - "file" + "DataProcessing\/CommaSeparatedValueProcessor.html#confval-commaseparatedvalueprocessor-fieldenclosure", + "fieldEnclosure" ], - "img-resource-stdwrap": [ + "databasequeryprocessor-if": [ "TypoScript Explained", "main", - "ContentObjects\/ImgResource\/Index.html#img-resource-stdwrap", - "stdWrap" + "DataProcessing\/DatabaseQueryProcessor.html#confval-databasequeryprocessor-if", + "if" ], - "load-register-array": [ + "databasequeryprocessor-table": [ "TypoScript Explained", "main", - "ContentObjects\/LoadRegister\/Index.html#load-register-array", - "array of field names" + "DataProcessing\/DatabaseQueryProcessor.html#confval-databasequeryprocessor-table", + "table" ], - "pageview-data-language": [ + "databasequeryprocessor-as": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#pageview-data-language", - "language" + "DataProcessing\/DatabaseQueryProcessor.html#confval-databasequeryprocessor-as", + "as" ], - "pageview-data-page": [ + "databasequeryprocessor-dataprocessing": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#pageview-data-page", - "page" + "DataProcessing\/DatabaseQueryProcessor.html#confval-databasequeryprocessor-dataprocessing", + "dataProcessing" ], - "pageview-data-settings": [ + "filesprocessor-if": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#pageview-data-settings", - "settings" + "DataProcessing\/FilesProcessor.html#confval-filesprocessor-if", + "if" ], - "pageview-data-site": [ + "filesprocessor-references": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#pageview-data-site", - "site" + "DataProcessing\/FilesProcessor.html#confval-filesprocessor-references", + "references" ], - "pageview-cache": [ + "filesprocessor-references-fieldname": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#pageview-cache", - "cache" + "DataProcessing\/FilesProcessor.html#confval-filesprocessor-references-fieldname", + "references.fieldName" ], - "pageview-dataprocessing": [ + "filesprocessor-references-table": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#pageview-dataprocessing", - "dataProcessing.[key]" + "DataProcessing\/FilesProcessor.html#confval-filesprocessor-references-table", + "references.table" ], - "pageview-paths": [ + "filesprocessor-files": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#pageview-paths", - "paths.[priority]" + "DataProcessing\/FilesProcessor.html#confval-filesprocessor-files", + "files" ], - "pageview-variables": [ + "filesprocessor-collections": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#pageview-variables", - "variables.[variable_name]" + "DataProcessing\/FilesProcessor.html#confval-filesprocessor-collections", + "collections" ], - "records-source": [ + "filesprocessor-folders": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#records-source", - "source" + "DataProcessing\/FilesProcessor.html#confval-filesprocessor-folders", + "folders" ], - "records-categories": [ + "filesprocessor-folders-recursive": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#records-categories", - "categories" + "DataProcessing\/FilesProcessor.html#confval-filesprocessor-folders-recursive", + "folders.recursive" ], - "records-categories-relation": [ + "filesprocessor-sorting": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#records-categories-relation", - "categories.relation" + "DataProcessing\/FilesProcessor.html#confval-filesprocessor-sorting", + "sorting" ], - "records-tables": [ + "filesprocessor-sorting-direction": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#records-tables", - "tables" + "DataProcessing\/FilesProcessor.html#confval-filesprocessor-sorting-direction", + "sorting.direction" ], - "records-conf": [ + "filesprocessor-as": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#records-conf", - "conf.[*table name*]" + "DataProcessing\/FilesProcessor.html#confval-filesprocessor-as", + "as" ], - "records-dontcheckpid": [ + "flexformprocessor-fieldname": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#records-dontcheckpid", - "dontCheckPid" + "DataProcessing\/FlexFormProcessor.html#confval-flexformprocessor-fieldname", + "fieldname" ], - "records-wrap": [ + "flexformprocessor-references": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#records-wrap", - "wrap" + "DataProcessing\/FlexFormProcessor.html#confval-flexformprocessor-references", + "references" ], - "records-stdwrap": [ + "flexformprocessor-as": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#records-stdwrap", - "stdWrap" + "DataProcessing\/FlexFormProcessor.html#confval-flexformprocessor-as", + "as" ], - "records-cache": [ + "galleryprocessor-if": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#records-cache", - "cache" + "DataProcessing\/GalleryProcessor.html#confval-galleryprocessor-if", + "if" ], - "svg-cache": [ + "galleryprocessor-filesprocesseddatakey": [ "TypoScript Explained", "main", - "ContentObjects\/Svg\/Index.html#svg-cache", - "cache" + "DataProcessing\/GalleryProcessor.html#confval-galleryprocessor-filesprocesseddatakey", + "filesProcessedDataKey" ], - "svg-width": [ + "galleryprocessor-numberofcolumns": [ "TypoScript Explained", "main", - "ContentObjects\/Svg\/Index.html#svg-width", - "width" + "DataProcessing\/GalleryProcessor.html#confval-galleryprocessor-numberofcolumns", + "numberOfColumns" ], - "svg-height": [ + "galleryprocessor-mediaorientation": [ "TypoScript Explained", "main", - "ContentObjects\/Svg\/Index.html#svg-height", - "height" + "DataProcessing\/GalleryProcessor.html#confval-galleryprocessor-mediaorientation", + "mediaOrientation" ], - "svg-src": [ + "galleryprocessor-maxgallerywidth": [ "TypoScript Explained", "main", - "ContentObjects\/Svg\/Index.html#svg-src", - "src" + "DataProcessing\/GalleryProcessor.html#confval-galleryprocessor-maxgallerywidth", + "maxGalleryWidth" ], - "svg-rendermode": [ + "galleryprocessor-maxgallerywidthintext": [ "TypoScript Explained", "main", - "ContentObjects\/Svg\/Index.html#svg-rendermode", - "renderMode" + "DataProcessing\/GalleryProcessor.html#confval-galleryprocessor-maxgallerywidthintext", + "maxGalleryWidthInText" ], - "svg-stdwrap": [ + "galleryprocessor-equalmediaheight": [ "TypoScript Explained", "main", - "ContentObjects\/Svg\/Index.html#svg-stdwrap", - "stdWrap" + "DataProcessing\/GalleryProcessor.html#confval-galleryprocessor-equalmediaheight", + "equalMediaHeight, equalMediaWidth" ], - "text-value": [ + "galleryprocessor-columnspacing": [ "TypoScript Explained", "main", - "ContentObjects\/Text\/Index.html#text-value", - "value" + "DataProcessing\/GalleryProcessor.html#confval-galleryprocessor-columnspacing", + "columnSpacing" ], - "text-stdwrap": [ + "galleryprocessor-borderenabled": [ "TypoScript Explained", "main", - "ContentObjects\/Text\/Index.html#text-stdwrap", - "stdWrap" + "DataProcessing\/GalleryProcessor.html#confval-galleryprocessor-borderenabled", + "borderEnabled" ], - "text-cache": [ + "galleryprocessor-borderwidth": [ "TypoScript Explained", "main", - "ContentObjects\/Text\/Index.html#text-cache", - "cache" + "DataProcessing\/GalleryProcessor.html#confval-galleryprocessor-borderwidth", + "borderWidth" ], - "user-userfunc": [ + "galleryprocessor-borderpadding": [ "TypoScript Explained", "main", - "ContentObjects\/UserAndUserInt\/Index.html#user-userfunc", - "userFunc" + "DataProcessing\/GalleryProcessor.html#confval-galleryprocessor-borderpadding", + "borderPadding" ], - "user-defined-properties": [ + "galleryprocessor-cropvariant": [ "TypoScript Explained", "main", - "ContentObjects\/UserAndUserInt\/Index.html#user-defined-properties", - "(properties you define)" + "DataProcessing\/GalleryProcessor.html#confval-galleryprocessor-cropvariant", + "cropVariant" ], - "user-stdwrap": [ + "galleryprocessor-as": [ "TypoScript Explained", "main", - "ContentObjects\/UserAndUserInt\/Index.html#user-stdwrap", - "stdWrap" + "DataProcessing\/GalleryProcessor.html#confval-galleryprocessor-as", + "as" ], - "user-cache": [ + "galleryprocessor-dataprocessing": [ "TypoScript Explained", "main", - "ContentObjects\/UserAndUserInt\/Index.html#user-cache", - "cache" + "DataProcessing\/GalleryProcessor.html#confval-galleryprocessor-dataprocessing", + "dataProcessing" ], - "commaseparatedvalueprocessor-if": [ + "languagemenuprocessor-if": [ "TypoScript Explained", "main", - "DataProcessing\/CommaSeparatedValueProcessor.html#commaseparatedvalueprocessor-if", + "DataProcessing\/LanguageMenuProcessor.html#confval-languagemenuprocessor-if", "if" ], - "commaseparatedvalueprocessor-fieldname": [ + "languagemenuprocessor-languages": [ "TypoScript Explained", "main", - "DataProcessing\/CommaSeparatedValueProcessor.html#commaseparatedvalueprocessor-fieldname", - "fieldName" + "DataProcessing\/LanguageMenuProcessor.html#confval-languagemenuprocessor-languages", + "languages" ], - "commaseparatedvalueprocessor-as": [ + "languagemenuprocessor-addquerystring-exclude": [ "TypoScript Explained", "main", - "DataProcessing\/CommaSeparatedValueProcessor.html#commaseparatedvalueprocessor-as", - "as" + "DataProcessing\/LanguageMenuProcessor.html#confval-languagemenuprocessor-addquerystring-exclude", + "addQueryString.exclude" ], - "commaseparatedvalueprocessor-maximumcolumns": [ + "languagemenuprocessor-as": [ "TypoScript Explained", "main", - "DataProcessing\/CommaSeparatedValueProcessor.html#commaseparatedvalueprocessor-maximumcolumns", - "maximumColumns" + "DataProcessing\/LanguageMenuProcessor.html#confval-languagemenuprocessor-as", + "as" ], - "commaseparatedvalueprocessor-fielddelimiter": [ + "hmenu-browse-special-value": [ "TypoScript Explained", "main", - "DataProcessing\/CommaSeparatedValueProcessor.html#commaseparatedvalueprocessor-fielddelimiter", - "fieldDelimiter" + "DataProcessing\/MenuProcessor\/Browse.html#confval-hmenu-browse-special-value", + "special.value" ], - "commaseparatedvalueprocessor-fieldenclosure": [ + "hmenu-browse-special-items": [ "TypoScript Explained", "main", - "DataProcessing\/CommaSeparatedValueProcessor.html#commaseparatedvalueprocessor-fieldenclosure", - "fieldEnclosure" + "DataProcessing\/MenuProcessor\/Browse.html#confval-hmenu-browse-special-items", + "special.items" ], - "databasequeryprocessor-if": [ + "hmenu-browse-special-items-prevnexttosection": [ "TypoScript Explained", "main", - "DataProcessing\/DatabaseQueryProcessor.html#databasequeryprocessor-if", - "if" + "DataProcessing\/MenuProcessor\/Browse.html#confval-hmenu-browse-special-items-prevnexttosection", + "special.items.prevnextToSection" ], - "databasequeryprocessor-table": [ + "hmenu-browse-special-excludenosearchpages": [ "TypoScript Explained", "main", - "DataProcessing\/DatabaseQueryProcessor.html#databasequeryprocessor-table", - "table" + "DataProcessing\/MenuProcessor\/Browse.html#confval-hmenu-browse-special-excludenosearchpages", + "special.excludeNoSearchPages" ], - "databasequeryprocessor-as": [ + "hmenu-categories-special-value": [ "TypoScript Explained", "main", - "DataProcessing\/DatabaseQueryProcessor.html#databasequeryprocessor-as", - "as" + "DataProcessing\/MenuProcessor\/Categories.html#confval-hmenu-categories-special-value", + "special.value" ], - "databasequeryprocessor-dataprocessing": [ + "hmenu-categories-special-relation": [ "TypoScript Explained", "main", - "DataProcessing\/DatabaseQueryProcessor.html#databasequeryprocessor-dataprocessing", - "dataProcessing" + "DataProcessing\/MenuProcessor\/Categories.html#confval-hmenu-categories-special-relation", + "special.relation" ], - "filesprocessor-if": [ + "hmenu-categories-special-sorting": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#filesprocessor-if", - "if" + "DataProcessing\/MenuProcessor\/Categories.html#confval-hmenu-categories-special-sorting", + "special.sorting" ], - "filesprocessor-references": [ + "hmenu-categories-special-order": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#filesprocessor-references", - "references" + "DataProcessing\/MenuProcessor\/Categories.html#confval-hmenu-categories-special-order", + "special.order" ], - "filesprocessor-references-fieldname": [ + "hmenu-directory-special-value": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#filesprocessor-references-fieldname", - "references.fieldName" + "DataProcessing\/MenuProcessor\/Directory.html#confval-hmenu-directory-special-value", + "special.value" ], - "filesprocessor-references-table": [ + "menuprocessor-as": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#filesprocessor-references-table", - "references.table" + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-as", + "as" ], - "filesprocessor-files": [ + "menuprocessor-alwaysactivepidlist": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#filesprocessor-files", - "files" + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-alwaysactivepidlist", + "alwaysActivePIDlist" ], - "filesprocessor-collections": [ + "menuprocessor-entrylevel": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#filesprocessor-collections", - "collections" + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-entrylevel", + "entryLevel" ], - "filesprocessor-folders": [ + "menuprocessor-excludedoktypes": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#filesprocessor-folders", - "folders" + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-excludedoktypes", + "excludeDoktypes" ], - "filesprocessor-folders-recursive": [ + "menuprocessor-excludeuidlist": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#filesprocessor-folders-recursive", - "folders.recursive" + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-excludeuidlist", + "excludeUidList" ], - "filesprocessor-sorting": [ + "menuprocessor-expandall": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#filesprocessor-sorting", - "sorting" + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-expandall", + "expandAll" ], - "filesprocessor-sorting-direction": [ + "menuprocessor-levels": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#filesprocessor-sorting-direction", - "sorting.direction" + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-levels", + "levels" ], - "filesprocessor-as": [ + "menuprocessor-includenotinmenu": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#filesprocessor-as", - "as" + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-includenotinmenu", + "includeNotInMenu" ], - "flexformprocessor-fieldname": [ + "menuprocessor-includespacer": [ "TypoScript Explained", "main", - "DataProcessing\/FlexFormProcessor.html#flexformprocessor-fieldname", - "fieldname" + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-includespacer", + "includeSpacer" ], - "flexformprocessor-references": [ + "menuprocessor-protectlvar": [ "TypoScript Explained", "main", - "DataProcessing\/FlexFormProcessor.html#flexformprocessor-references", - "references" + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-protectlvar", + "protectLvar" ], - "flexformprocessor-as": [ + "menuprocessor-special": [ "TypoScript Explained", "main", - "DataProcessing\/FlexFormProcessor.html#flexformprocessor-as", - "as" + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-special", + "special" ], - "galleryprocessor-if": [ + "menuprocessor-special-value": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#galleryprocessor-if", - "if" + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-special-value", + "value" ], - "galleryprocessor-filesprocesseddatakey": [ + "menuprocessor-titlefield": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#galleryprocessor-filesprocesseddatakey", - "filesProcessedDataKey" + "DataProcessing\/MenuProcessor\/Index.html#confval-menuprocessor-titlefield", + "titleField" ], - "galleryprocessor-numberofcolumns": [ + "hmenu-keywords-special-value": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#galleryprocessor-numberofcolumns", - "numberOfColumns" + "DataProcessing\/MenuProcessor\/Keywords.html#confval-hmenu-keywords-special-value", + "special.value" ], - "galleryprocessor-mediaorientation": [ + "hmenu-keywords-special-mode": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#galleryprocessor-mediaorientation", - "mediaOrientation" + "DataProcessing\/MenuProcessor\/Keywords.html#confval-hmenu-keywords-special-mode", + "special.mode" ], - "galleryprocessor-maxgallerywidth": [ + "hmenu-keywords-special-entrylevel": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#galleryprocessor-maxgallerywidth", - "maxGalleryWidth" + "DataProcessing\/MenuProcessor\/Keywords.html#confval-hmenu-keywords-special-entrylevel", + "special.entryLevel" ], - "galleryprocessor-maxgallerywidthintext": [ + "hmenu-keywords-special-depth": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#galleryprocessor-maxgallerywidthintext", - "maxGalleryWidthInText" + "DataProcessing\/MenuProcessor\/Keywords.html#confval-hmenu-keywords-special-depth", + "special.depth" ], - "galleryprocessor-equalmediaheight": [ + "hmenu-keywords-special-limit": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#galleryprocessor-equalmediaheight", - "equalMediaHeight, equalMediaWidth" + "DataProcessing\/MenuProcessor\/Keywords.html#confval-hmenu-keywords-special-limit", + "special.limit" ], - "galleryprocessor-columnspacing": [ + "hmenu-keywords-special-excludenosearchpages": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#galleryprocessor-columnspacing", - "columnSpacing" + "DataProcessing\/MenuProcessor\/Keywords.html#confval-hmenu-keywords-special-excludenosearchpages", + "special.excludeNoSearchPages" ], - "galleryprocessor-borderenabled": [ + "hmenu-keywords-special-begin": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#galleryprocessor-borderenabled", - "borderEnabled" + "DataProcessing\/MenuProcessor\/Keywords.html#confval-hmenu-keywords-special-begin", + "special.begin" ], - "galleryprocessor-borderwidth": [ + "hmenu-keywords-special-setkeywords": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#galleryprocessor-borderwidth", - "borderWidth" + "DataProcessing\/MenuProcessor\/Keywords.html#confval-hmenu-keywords-special-setkeywords", + "special.setKeywords" ], - "galleryprocessor-borderpadding": [ + "hmenu-keywords-special-keywordsfield": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#galleryprocessor-borderpadding", - "borderPadding" + "DataProcessing\/MenuProcessor\/Keywords.html#confval-hmenu-keywords-special-keywordsfield", + "special.keywordsField" ], - "galleryprocessor-cropvariant": [ + "hmenu-keywords-special-setkeywords-sourcefield": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#galleryprocessor-cropvariant", - "cropVariant" + "DataProcessing\/MenuProcessor\/Keywords.html#confval-hmenu-keywords-special-setkeywords-sourcefield", + "special.keywordsField.sourceField" ], - "galleryprocessor-as": [ + "hmenu-list-special-value": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#galleryprocessor-as", - "as" + "DataProcessing\/MenuProcessor\/List.html#confval-hmenu-list-special-value", + "special.value" ], - "galleryprocessor-dataprocessing": [ + "hmenu-rootline-special-range": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#galleryprocessor-dataprocessing", - "dataProcessing" + "DataProcessing\/MenuProcessor\/Rootline.html#confval-hmenu-rootline-special-range", + "special.range" ], - "languagemenuprocessor-if": [ + "hmenu-rootline-special-reverseorder": [ "TypoScript Explained", "main", - "DataProcessing\/LanguageMenuProcessor.html#languagemenuprocessor-if", - "if" + "DataProcessing\/MenuProcessor\/Rootline.html#confval-hmenu-rootline-special-reverseorder", + "special.reverseOrder" ], - "languagemenuprocessor-languages": [ + "hmenu-rootline-special-targets": [ "TypoScript Explained", "main", - "DataProcessing\/LanguageMenuProcessor.html#languagemenuprocessor-languages", - "languages" + "DataProcessing\/MenuProcessor\/Rootline.html#confval-hmenu-rootline-special-targets", + "special.targets.[level number]" ], - "languagemenuprocessor-addquerystring-exclude": [ + "hmenu-updated-special-value": [ "TypoScript Explained", "main", - "DataProcessing\/LanguageMenuProcessor.html#languagemenuprocessor-addquerystring-exclude", - "addQueryString.exclude" + "DataProcessing\/MenuProcessor\/Updated.html#confval-hmenu-updated-special-value", + "special.value" ], - "languagemenuprocessor-as": [ + "hmenu-updated-special-mode": [ "TypoScript Explained", "main", - "DataProcessing\/LanguageMenuProcessor.html#languagemenuprocessor-as", - "as" + "DataProcessing\/MenuProcessor\/Updated.html#confval-hmenu-updated-special-mode", + "special.mode" ], - "menuprocessor-levels": [ + "hmenu-updated-special-depth": [ "TypoScript Explained", "main", - "DataProcessing\/MenuProcessor.html#menuprocessor-levels", - "levels" + "DataProcessing\/MenuProcessor\/Updated.html#confval-hmenu-updated-special-depth", + "special.depth" ], - "menuprocessor-expandall": [ + "hmenu-updated-special-beginatlevel": [ "TypoScript Explained", "main", - "DataProcessing\/MenuProcessor.html#menuprocessor-expandall", - "expandAll" + "DataProcessing\/MenuProcessor\/Updated.html#confval-hmenu-updated-special-beginatlevel", + "special.beginAtLevel" ], - "menuprocessor-includespacer": [ + "hmenu-updated-special-maxage": [ "TypoScript Explained", "main", - "DataProcessing\/MenuProcessor.html#menuprocessor-includespacer", - "includeSpacer" + "DataProcessing\/MenuProcessor\/Updated.html#confval-hmenu-updated-special-maxage", + "special.maxAge" ], - "menuprocessor-titlefield": [ + "hmenu-updated-special-limit": [ "TypoScript Explained", "main", - "DataProcessing\/MenuProcessor.html#menuprocessor-titlefield", - "titleField" + "DataProcessing\/MenuProcessor\/Updated.html#confval-hmenu-updated-special-limit", + "special.limit" ], - "menuprocessor-as": [ + "hmenu-updated-special-excludenosearchpages": [ "TypoScript Explained", "main", - "DataProcessing\/MenuProcessor.html#menuprocessor-as", - "as" + "DataProcessing\/MenuProcessor\/Updated.html#confval-hmenu-updated-special-excludenosearchpages", + "special.excludeNoSearchPages" ], "pagecontentfetchingprocessor-as": [ "TypoScript Explained", "main", - "DataProcessing\/PageContentFetchingProcessor.html#pagecontentfetchingprocessor-as", + "DataProcessing\/PageContentFetchingProcessor.html#confval-pagecontentfetchingprocessor-as", "as" ], "pagecontentfetchingprocessor-if": [ "TypoScript Explained", "main", - "DataProcessing\/PageContentFetchingProcessor.html#pagecontentfetchingprocessor-if", + "DataProcessing\/PageContentFetchingProcessor.html#confval-pagecontentfetchingprocessor-if", "if" ], "recordtransformationprocessor-as": [ "TypoScript Explained", "main", - "DataProcessing\/RecordTransformationProcessor.html#recordtransformationprocessor-as", + "DataProcessing\/RecordTransformationProcessor.html#confval-recordtransformationprocessor-as", "as" ], "recordtransformationprocessor-if": [ "TypoScript Explained", "main", - "DataProcessing\/RecordTransformationProcessor.html#recordtransformationprocessor-if", + "DataProcessing\/RecordTransformationProcessor.html#confval-recordtransformationprocessor-if", "if" ], "recordtransformationprocessor-table": [ "TypoScript Explained", "main", - "DataProcessing\/RecordTransformationProcessor.html#recordtransformationprocessor-table", + "DataProcessing\/RecordTransformationProcessor.html#confval-recordtransformationprocessor-table", "table" ], "recordtransformationprocessor-variablename": [ "TypoScript Explained", "main", - "DataProcessing\/RecordTransformationProcessor.html#recordtransformationprocessor-variablename", + "DataProcessing\/RecordTransformationProcessor.html#confval-recordtransformationprocessor-variablename", "variableName" ], "sitelanguageprocessor-as": [ "TypoScript Explained", "main", - "DataProcessing\/SiteLanguageProcessor.html#sitelanguageprocessor-as", + "DataProcessing\/SiteLanguageProcessor.html#confval-sitelanguageprocessor-as", "as" ], "siteprocessor-as": [ "TypoScript Explained", "main", - "DataProcessing\/SiteProcessor.html#siteprocessor-as", + "DataProcessing\/SiteProcessor.html#confval-siteprocessor-as", "as" ], "splitprocessor-if": [ "TypoScript Explained", "main", - "DataProcessing\/SplitProcessor.html#splitprocessor-if", + "DataProcessing\/SplitProcessor.html#confval-splitprocessor-if", "if" ], "splitprocessor-fieldname": [ "TypoScript Explained", "main", - "DataProcessing\/SplitProcessor.html#splitprocessor-fieldname", + "DataProcessing\/SplitProcessor.html#confval-splitprocessor-fieldname", "fieldName" ], "splitprocessor-as": [ "TypoScript Explained", "main", - "DataProcessing\/SplitProcessor.html#splitprocessor-as", + "DataProcessing\/SplitProcessor.html#confval-splitprocessor-as", "as" ], "splitprocessor-delimiter": [ "TypoScript Explained", "main", - "DataProcessing\/SplitProcessor.html#splitprocessor-delimiter", + "DataProcessing\/SplitProcessor.html#confval-splitprocessor-delimiter", "delimiter" ], "splitprocessor-filterintegers": [ "TypoScript Explained", "main", - "DataProcessing\/SplitProcessor.html#splitprocessor-filterintegers", + "DataProcessing\/SplitProcessor.html#confval-splitprocessor-filterintegers", "filterIntegers" ], "splitprocessor-filterunique": [ "TypoScript Explained", "main", - "DataProcessing\/SplitProcessor.html#splitprocessor-filterunique", + "DataProcessing\/SplitProcessor.html#confval-splitprocessor-filterunique", "filterUnique" ], "splitprocessor-removeemptyentries": [ "TypoScript Explained", "main", - "DataProcessing\/SplitProcessor.html#splitprocessor-removeemptyentries", + "DataProcessing\/SplitProcessor.html#confval-splitprocessor-removeemptyentries", "removeEmptyEntries" ], "cache-key": [ "TypoScript Explained", "main", - "Functions\/Cache.html#cache-key", + "Functions\/Cache.html#confval-cache-key", "key" ], "cache-lifetime": [ "TypoScript Explained", "main", - "Functions\/Cache.html#cache-lifetime", + "Functions\/Cache.html#confval-cache-lifetime", "lifetime" ], "cache-tags": [ "TypoScript Explained", "main", - "Functions\/Cache.html#cache-tags", + "Functions\/Cache.html#confval-cache-tags", "tags" ], "data-applicationcontext": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-applicationcontext", + "Functions\/Data.html#confval-data-applicationcontext", "applicationcontext" ], "data-asset": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-asset", + "Functions\/Data.html#confval-data-asset", "asset" ], "data-cobj": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-cobj", + "Functions\/Data.html#confval-data-cobj", "cObj" ], "data-context": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-context", + "Functions\/Data.html#confval-data-context", "context" ], "data-current": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-current", + "Functions\/Data.html#confval-data-current", "current" ], "data-date": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-date", + "Functions\/Data.html#confval-data-date", "date" ], "data-db": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-db", + "Functions\/Data.html#confval-data-db", "DB" ], "data-debug": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-debug", + "Functions\/Data.html#confval-data-debug", "debug" ], "data-field": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-field", + "Functions\/Data.html#confval-data-field", "field" ], "data-file": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-file", + "Functions\/Data.html#confval-data-file", "file" ], "data-flexform": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-flexform", + "Functions\/Data.html#confval-data-flexform", "flexform" ], "data-fullrootline": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-fullrootline", + "Functions\/Data.html#confval-data-fullrootline", "fullRootLine" ], "data-getenv": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-getenv", + "Functions\/Data.html#confval-data-getenv", "getenv" ], "data-getindpenv": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-getindpenv", + "Functions\/Data.html#confval-data-getindpenv", "getIndpEnv" ], "data-global": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-global", + "Functions\/Data.html#confval-data-global", "global" ], "data-gp": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-gp", + "Functions\/Data.html#confval-data-gp", "GP" ], "data-level": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-level", + "Functions\/Data.html#confval-data-level", "level" ], "data-levelfield": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-levelfield", + "Functions\/Data.html#confval-data-levelfield", "levelfield" ], "data-levelmedia": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-levelmedia", + "Functions\/Data.html#confval-data-levelmedia", "levelmedia" ], "data-leveltitle": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-leveltitle", + "Functions\/Data.html#confval-data-leveltitle", "leveltitle" ], "data-leveluid": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-leveluid", + "Functions\/Data.html#confval-data-leveluid", "leveluid" ], "data-lll": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-lll", + "Functions\/Data.html#confval-data-lll", "LLL" ], "data-page": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-page", + "Functions\/Data.html#confval-data-page", "page" ], "data-pagelayout": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-pagelayout", + "Functions\/Data.html#confval-data-pagelayout", "pagelayout" ], "data-parameters": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-parameters", + "Functions\/Data.html#confval-data-parameters", "parameters" ], "data-path": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-path", + "Functions\/Data.html#confval-data-path", "path" ], "data-register": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-register", + "Functions\/Data.html#confval-data-register", "register" ], "data-request": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-request", + "Functions\/Data.html#confval-data-request", "request" ], "data-session": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-session", + "Functions\/Data.html#confval-data-session", "session" ], "data-site": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-site", + "Functions\/Data.html#confval-data-site", "site" ], "data-sitelanguage": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-sitelanguage", + "Functions\/Data.html#confval-data-sitelanguage", "siteLanguage" ], "data-sitesettings": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-sitesettings", + "Functions\/Data.html#confval-data-sitesettings", "siteSettings" ], "data-tsfe": [ "TypoScript Explained", "main", - "Functions\/Data.html#data-tsfe", + "Functions\/Data.html#confval-data-tsfe", "TSFE" ], "encapslines-encapstaglist": [ "TypoScript Explained", "main", - "Functions\/Encapslines.html#encapslines-encapstaglist", + "Functions\/Encapslines.html#confval-encapslines-encapstaglist", "encapsTagList" ], "encapslines-remaptag": [ "TypoScript Explained", "main", - "Functions\/Encapslines.html#encapslines-remaptag", + "Functions\/Encapslines.html#confval-encapslines-remaptag", "remapTag" ], "encapslines-addattributes": [ "TypoScript Explained", "main", - "Functions\/Encapslines.html#encapslines-addattributes", + "Functions\/Encapslines.html#confval-encapslines-addattributes", "addAttributes" ], "encapslines-removewrapping": [ "TypoScript Explained", "main", - "Functions\/Encapslines.html#encapslines-removewrapping", + "Functions\/Encapslines.html#confval-encapslines-removewrapping", "removeWrapping" ], "encapslines-wrapnonwrappedlines": [ "TypoScript Explained", "main", - "Functions\/Encapslines.html#encapslines-wrapnonwrappedlines", + "Functions\/Encapslines.html#confval-encapslines-wrapnonwrappedlines", "wrapNonWrappedLines" ], "encapslines-innerstdwrap-all": [ "TypoScript Explained", "main", - "Functions\/Encapslines.html#encapslines-innerstdwrap-all", + "Functions\/Encapslines.html#confval-encapslines-innerstdwrap-all", "innerStdWrap_all" ], "encapslines-encapslinesstdwrap": [ "TypoScript Explained", "main", - "Functions\/Encapslines.html#encapslines-encapslinesstdwrap", + "Functions\/Encapslines.html#confval-encapslines-encapslinesstdwrap", "encapsLinesStdWrap" ], "encapslines-defaultalign": [ "TypoScript Explained", "main", - "Functions\/Encapslines.html#encapslines-defaultalign", + "Functions\/Encapslines.html#confval-encapslines-defaultalign", "defaultAlign" ], "encapslines-nonwrappedtag": [ "TypoScript Explained", "main", - "Functions\/Encapslines.html#encapslines-nonwrappedtag", + "Functions\/Encapslines.html#confval-encapslines-nonwrappedtag", "nonWrappedTag" ], "htmlparser-allowtags": [ "TypoScript Explained", "main", - "Functions\/Htmlparser.html#htmlparser-allowtags", + "Functions\/Htmlparser.html#confval-htmlparser-allowtags", "allowTags" ], "htmlparser-stripemptytags": [ "TypoScript Explained", "main", - "Functions\/Htmlparser.html#htmlparser-stripemptytags", + "Functions\/Htmlparser.html#confval-htmlparser-stripemptytags", "stripEmptyTags" ], "htmlparser-stripemptytags-keeptags": [ "TypoScript Explained", "main", - "Functions\/Htmlparser.html#htmlparser-stripemptytags-keeptags", + "Functions\/Htmlparser.html#confval-htmlparser-stripemptytags-keeptags", "stripEmptyTags.keepTags" ], "htmlparser-tags": [ "TypoScript Explained", "main", - "Functions\/Htmlparser.html#htmlparser-tags", + "Functions\/Htmlparser.html#confval-htmlparser-tags", "tags" ], "htmlparser-localnesting": [ "TypoScript Explained", "main", - "Functions\/Htmlparser.html#htmlparser-localnesting", + "Functions\/Htmlparser.html#confval-htmlparser-localnesting", "localNesting" ], "htmlparser-globalnesting": [ "TypoScript Explained", "main", - "Functions\/Htmlparser.html#htmlparser-globalnesting", + "Functions\/Htmlparser.html#confval-htmlparser-globalnesting", "globalNesting" ], "htmlparser-rmtagifnoattrib": [ "TypoScript Explained", "main", - "Functions\/Htmlparser.html#htmlparser-rmtagifnoattrib", + "Functions\/Htmlparser.html#confval-htmlparser-rmtagifnoattrib", "rmTagIfNoAttrib" ], "htmlparser-noattrib": [ "TypoScript Explained", "main", - "Functions\/Htmlparser.html#htmlparser-noattrib", + "Functions\/Htmlparser.html#confval-htmlparser-noattrib", "noAttrib" ], "htmlparser-removetags": [ "TypoScript Explained", "main", - "Functions\/Htmlparser.html#htmlparser-removetags", + "Functions\/Htmlparser.html#confval-htmlparser-removetags", "removeTags" ], "htmlparser-keepnonmatchedtags": [ "TypoScript Explained", "main", - "Functions\/Htmlparser.html#htmlparser-keepnonmatchedtags", + "Functions\/Htmlparser.html#confval-htmlparser-keepnonmatchedtags", "keepNonMatchedTags" ], "htmlparser-htmlspecialchars": [ "TypoScript Explained", "main", - "Functions\/Htmlparser.html#htmlparser-htmlspecialchars", + "Functions\/Htmlparser.html#confval-htmlparser-htmlspecialchars", "htmlSpecialChars" ], "htmlparser-tags-overrideattribs": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#htmlparser-tags-overrideattribs", + "Functions\/HtmlparserTags.html#confval-htmlparser-tags-overrideattribs", "overrideAttribs" ], "htmlparser-tags-allowedattribs": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#htmlparser-tags-allowedattribs", + "Functions\/HtmlparserTags.html#confval-htmlparser-tags-allowedattribs", "allowedAttribs" ], "htmlparser-tags-fixattrib-set": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#htmlparser-tags-fixattrib-set", + "Functions\/HtmlparserTags.html#confval-htmlparser-tags-fixattrib-set", "fixAttrib.[attribute].set" ], "htmlparser-tags-fixattrib-unset": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#htmlparser-tags-fixattrib-unset", + "Functions\/HtmlparserTags.html#confval-htmlparser-tags-fixattrib-unset", "fixAttrib.[attribute].unset" ], "htmlparser-tags-fixattrib-default": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#htmlparser-tags-fixattrib-default", + "Functions\/HtmlparserTags.html#confval-htmlparser-tags-fixattrib-default", "fixAttrib.[attribute].default" ], "htmlparser-tags-fixattrib-always": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#htmlparser-tags-fixattrib-always", + "Functions\/HtmlparserTags.html#confval-htmlparser-tags-fixattrib-always", "fixAttrib.[attribute].always" ], "htmlparser-tags-fixattrib-trim": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#htmlparser-tags-fixattrib-trim", + "Functions\/HtmlparserTags.html#confval-htmlparser-tags-fixattrib-trim", "fixAttrib.[attribute].trim" ], "htmlparser-tags-fixattrib-intval": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#htmlparser-tags-fixattrib-intval", + "Functions\/HtmlparserTags.html#confval-htmlparser-tags-fixattrib-intval", "fixAttrib.[attribute].intval" ], "htmlparser-tags-fixattrib-upper": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#htmlparser-tags-fixattrib-upper", + "Functions\/HtmlparserTags.html#confval-htmlparser-tags-fixattrib-upper", "fixAttrib.[attribute].upper" ], "htmlparser-tags-fixattrib-lower": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#htmlparser-tags-fixattrib-lower", + "Functions\/HtmlparserTags.html#confval-htmlparser-tags-fixattrib-lower", "fixAttrib.[attribute].lower" ], "htmlparser-tags-fixattrib-range": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#htmlparser-tags-fixattrib-range", + "Functions\/HtmlparserTags.html#confval-htmlparser-tags-fixattrib-range", "fixAttrib.[attribute].range" ], "htmlparser-tags-fixattrib-list": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#htmlparser-tags-fixattrib-list", + "Functions\/HtmlparserTags.html#confval-htmlparser-tags-fixattrib-list", "fixAttrib.[attribute].list" ], "htmlparser-tags-fixattrib-removeiffalse": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#htmlparser-tags-fixattrib-removeiffalse", + "Functions\/HtmlparserTags.html#confval-htmlparser-tags-fixattrib-removeiffalse", "fixAttrib.[attribute].removeIfFalse" ], "htmlparser-tags-fixattrib-removeifequals": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#htmlparser-tags-fixattrib-removeifequals", + "Functions\/HtmlparserTags.html#confval-htmlparser-tags-fixattrib-removeifequals", "fixAttrib.[attribute].removeIfEquals" ], "htmlparser-tags-fixattrib-casesensitivecomp": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#htmlparser-tags-fixattrib-casesensitivecomp", + "Functions\/HtmlparserTags.html#confval-htmlparser-tags-fixattrib-casesensitivecomp", "fixAttrib.[attribute].casesensitiveComp" ], "htmlparser-tags-fixattrib-prefixrelpathwith": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#htmlparser-tags-fixattrib-prefixrelpathwith", + "Functions\/HtmlparserTags.html#confval-htmlparser-tags-fixattrib-prefixrelpathwith", "fixAttrib.[attribute].prefixRelPathWith" ], "htmlparser-tags-fixattrib-userfunc": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#htmlparser-tags-fixattrib-userfunc", + "Functions\/HtmlparserTags.html#confval-htmlparser-tags-fixattrib-userfunc", "fixAttrib.[attribute].userFunc" ], "htmlparser-tags-protect": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#htmlparser-tags-protect", + "Functions\/HtmlparserTags.html#confval-htmlparser-tags-protect", "protect" ], "htmlparser-tags-remap": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#htmlparser-tags-remap", + "Functions\/HtmlparserTags.html#confval-htmlparser-tags-remap", "remap" ], "htmlparser-tags-rmtagifnoattrib": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#htmlparser-tags-rmtagifnoattrib", + "Functions\/HtmlparserTags.html#confval-htmlparser-tags-rmtagifnoattrib", "rmTagIfNoAttrib" ], "htmlparser-tags-nesting": [ "TypoScript Explained", "main", - "Functions\/HtmlparserTags.html#htmlparser-tags-nesting", + "Functions\/HtmlparserTags.html#confval-htmlparser-tags-nesting", "nesting" ], "if-bitand": [ "TypoScript Explained", "main", - "Functions\/If.html#if-bitand", + "Functions\/If.html#confval-if-bitand", "bitAnd" ], "if-contains": [ "TypoScript Explained", "main", - "Functions\/If.html#if-contains", + "Functions\/If.html#confval-if-contains", "contains" ], "if-directreturn": [ "TypoScript Explained", "main", - "Functions\/If.html#if-directreturn", + "Functions\/If.html#confval-if-directreturn", "directReturn" ], "if-endswith": [ "TypoScript Explained", "main", - "Functions\/If.html#if-endswith", + "Functions\/If.html#confval-if-endswith", "endsWith" ], "if-equals": [ "TypoScript Explained", "main", - "Functions\/If.html#if-equals", + "Functions\/If.html#confval-if-equals", "equals" ], "if-isfalse": [ "TypoScript Explained", "main", - "Functions\/If.html#if-isfalse", + "Functions\/If.html#confval-if-isfalse", "isFalse" ], "if-isgreaterthan": [ "TypoScript Explained", "main", - "Functions\/If.html#if-isgreaterthan", + "Functions\/If.html#confval-if-isgreaterthan", "isGreaterThan" ], "if-isinlist": [ "TypoScript Explained", "main", - "Functions\/If.html#if-isinlist", + "Functions\/If.html#confval-if-isinlist", "isInList" ], "if-islessthan": [ "TypoScript Explained", "main", - "Functions\/If.html#if-islessthan", + "Functions\/If.html#confval-if-islessthan", "isLessThan" ], "if-isnull": [ "TypoScript Explained", "main", - "Functions\/If.html#if-isnull", + "Functions\/If.html#confval-if-isnull", "isNull" ], "if-ispositive": [ "TypoScript Explained", "main", - "Functions\/If.html#if-ispositive", + "Functions\/If.html#confval-if-ispositive", "isPositive" ], "if-istrue": [ "TypoScript Explained", "main", - "Functions\/If.html#if-istrue", + "Functions\/If.html#confval-if-istrue", "isTrue" ], "if-negate": [ "TypoScript Explained", "main", - "Functions\/If.html#if-negate", + "Functions\/If.html#confval-if-negate", "negate" ], "if-startswith": [ "TypoScript Explained", "main", - "Functions\/If.html#if-startswith", + "Functions\/If.html#confval-if-startswith", "startsWith" ], "if-value": [ "TypoScript Explained", "main", - "Functions\/If.html#if-value", + "Functions\/If.html#confval-if-value", "value" ], "imagelinkwrap-enable": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#imagelinkwrap-enable", + "Functions\/Imagelinkwrap.html#confval-imagelinkwrap-enable", "imageLinkWrap.enable" ], "imagelinkwrap-file": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#imagelinkwrap-file", + "Functions\/Imagelinkwrap.html#confval-imagelinkwrap-file", "imageLinkWrap.file" ], "imagelinkwrap-width": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#imagelinkwrap-width", + "Functions\/Imagelinkwrap.html#confval-imagelinkwrap-width", "imageLinkWrap.width" ], "imagelinkwrap-height": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#imagelinkwrap-height", + "Functions\/Imagelinkwrap.html#confval-imagelinkwrap-height", "imageLinkWrap.height" ], "imagelinkwrap-effects": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#imagelinkwrap-effects", + "Functions\/Imagelinkwrap.html#confval-imagelinkwrap-effects", "imageLinkWrap.effects" ], "imagelinkwrap-sample": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#imagelinkwrap-sample", + "Functions\/Imagelinkwrap.html#confval-imagelinkwrap-sample", "imageLinkWrap.sample" ], "imagelinkwrap-title": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#imagelinkwrap-title", + "Functions\/Imagelinkwrap.html#confval-imagelinkwrap-title", "imageLinkWrap.title" ], "imagelinkwrap-bodytag": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#imagelinkwrap-bodytag", + "Functions\/Imagelinkwrap.html#confval-imagelinkwrap-bodytag", "imageLinkWrap.bodyTag" ], "imagelinkwrap-wrap": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#imagelinkwrap-wrap", + "Functions\/Imagelinkwrap.html#confval-imagelinkwrap-wrap", "imageLinkWrap.wrap" ], "imagelinkwrap-target": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#imagelinkwrap-target", + "Functions\/Imagelinkwrap.html#confval-imagelinkwrap-target", "imageLinkWrap.target" ], "imagelinkwrap-jswindow": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#imagelinkwrap-jswindow", + "Functions\/Imagelinkwrap.html#confval-imagelinkwrap-jswindow", "imageLinkWrap.JSwindow" ], "imagelinkwrap-jswindow-expand": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#imagelinkwrap-jswindow-expand", + "Functions\/Imagelinkwrap.html#confval-imagelinkwrap-jswindow-expand", "imageLinkWrap.JSwindow.expand" ], "imagelinkwrap-jswindow-newwindow": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#imagelinkwrap-jswindow-newwindow", + "Functions\/Imagelinkwrap.html#confval-imagelinkwrap-jswindow-newwindow", "JSwindow.newWindow" ], "imagelinkwrap-jswindow-alturl": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#imagelinkwrap-jswindow-alturl", + "Functions\/Imagelinkwrap.html#confval-imagelinkwrap-jswindow-alturl", "imageLinkWrap.JSwindow.altUrl" ], "imagelinkwrap-jswindow-alturl-nodefaultparams": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#imagelinkwrap-jswindow-alturl-nodefaultparams", + "Functions\/Imagelinkwrap.html#confval-imagelinkwrap-jswindow-alturl-nodefaultparams", "imageLinkWrap.JSwindow.altUrl_noDefaultParams" ], "imagelinkwrap-typolink": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#imagelinkwrap-typolink", + "Functions\/Imagelinkwrap.html#confval-imagelinkwrap-typolink", "imageLinkWrap.typolink" ], "imagelinkwrap-directimagelink": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#imagelinkwrap-directimagelink", + "Functions\/Imagelinkwrap.html#confval-imagelinkwrap-directimagelink", "imageLinkWrap.directImageLink" ], "imagelinkwrap-linkparams": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#imagelinkwrap-linkparams", + "Functions\/Imagelinkwrap.html#confval-imagelinkwrap-linkparams", "imageLinkWrap.linkParams" ], "imagelinkwrap-stdwrap": [ "TypoScript Explained", "main", - "Functions\/Imagelinkwrap.html#imagelinkwrap-stdwrap", + "Functions\/Imagelinkwrap.html#confval-imagelinkwrap-stdwrap", "imageLinkWrap.stdWrap" ], "imgresource-ext": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#imgresource-ext", + "Functions\/Imgresource.html#confval-imgresource-ext", "ext" ], "imgresource-width": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#imgresource-width", + "Functions\/Imgresource.html#confval-imgresource-width", "width" ], "imgresource-height": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#imgresource-height", + "Functions\/Imgresource.html#confval-imgresource-height", "height" ], "imgresource-params": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#imgresource-params", + "Functions\/Imgresource.html#confval-imgresource-params", "params" ], "imgresource-sample": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#imgresource-sample", + "Functions\/Imgresource.html#confval-imgresource-sample", "sample" ], "imgresource-noscale": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#imgresource-noscale", + "Functions\/Imgresource.html#confval-imgresource-noscale", "noScale" ], "imgresource-crop": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#imgresource-crop", + "Functions\/Imgresource.html#confval-imgresource-crop", "crop" ], "imgresource-cropvariant": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#imgresource-cropvariant", + "Functions\/Imgresource.html#confval-imgresource-cropvariant", "cropVariant" ], "imgresource-frame": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#imgresource-frame", + "Functions\/Imgresource.html#confval-imgresource-frame", "frame" ], "imgresource-import": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#imgresource-import", + "Functions\/Imgresource.html#confval-imgresource-import", "import" ], "imgresource-treatidasreference": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#imgresource-treatidasreference", + "Functions\/Imgresource.html#confval-imgresource-treatidasreference", "treatIdAsReference" ], "imgresource-maxw": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#imgresource-maxw", + "Functions\/Imgresource.html#confval-imgresource-maxw", "maxW" ], "imgresource-maxh": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#imgresource-maxh", + "Functions\/Imgresource.html#confval-imgresource-maxh", "maxH" ], "imgresource-minw": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#imgresource-minw", + "Functions\/Imgresource.html#confval-imgresource-minw", "minW" ], "imgresource-minh": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#imgresource-minh", + "Functions\/Imgresource.html#confval-imgresource-minh", "minH" ], "imgresource-stripprofile": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#imgresource-stripprofile", + "Functions\/Imgresource.html#confval-imgresource-stripprofile", "stripProfile" ], "imgresource-masking": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#imgresource-masking", + "Functions\/Imgresource.html#confval-imgresource-masking", "Masking:" ], "imgresource-masking-mask": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#imgresource-masking-mask", + "Functions\/Imgresource.html#confval-imgresource-masking-mask", "m.mask" ], "imgresource-masking-bgimg": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#imgresource-masking-bgimg", + "Functions\/Imgresource.html#confval-imgresource-masking-bgimg", "m.bgImg" ], "imgresource-masking-bottomimg": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#imgresource-masking-bottomimg", + "Functions\/Imgresource.html#confval-imgresource-masking-bottomimg", "m.bottomImg" ], "imgresource-masking-bottomimg-mask": [ "TypoScript Explained", "main", - "Functions\/Imgresource.html#imgresource-masking-bottomimg-mask", + "Functions\/Imgresource.html#confval-imgresource-masking-bottomimg-mask", "m.bottomImg_mask" ], "makelinks-http-exttarget": [ "TypoScript Explained", "main", - "Functions\/Makelinks.html#makelinks-http-exttarget", + "Functions\/Makelinks.html#confval-makelinks-http-exttarget", "http.extTarget" ], "makelinks-http-wrap": [ "TypoScript Explained", "main", - "Functions\/Makelinks.html#makelinks-http-wrap", + "Functions\/Makelinks.html#confval-makelinks-http-wrap", "http.wrap" ], "makelinks-http-atagbeforewrap": [ "TypoScript Explained", "main", - "Functions\/Makelinks.html#makelinks-http-atagbeforewrap", + "Functions\/Makelinks.html#confval-makelinks-http-atagbeforewrap", "http.ATagBeforeWrap" ], "makelinks-http-keep": [ "TypoScript Explained", "main", - "Functions\/Makelinks.html#makelinks-http-keep", + "Functions\/Makelinks.html#confval-makelinks-http-keep", "http.keep" ], "makelinks-http-atagparams": [ "TypoScript Explained", "main", - "Functions\/Makelinks.html#makelinks-http-atagparams", + "Functions\/Makelinks.html#confval-makelinks-http-atagparams", "http.ATagParams" ], "makelinks-mailto-wrap": [ "TypoScript Explained", "main", - "Functions\/Makelinks.html#makelinks-mailto-wrap", + "Functions\/Makelinks.html#confval-makelinks-mailto-wrap", "mailto.wrap" ], "makelinks-mailto-atagbeforewrap": [ "TypoScript Explained", "main", - "Functions\/Makelinks.html#makelinks-mailto-atagbeforewrap", + "Functions\/Makelinks.html#confval-makelinks-mailto-atagbeforewrap", "mailto.ATagBeforeWrap" ], "makelinks-mailto-atagparams": [ "TypoScript Explained", "main", - "Functions\/Makelinks.html#makelinks-mailto-atagparams", + "Functions\/Makelinks.html#confval-makelinks-mailto-atagparams", "mailto.ATagParams" ], "numberformat-decimals": [ "TypoScript Explained", "main", - "Functions\/Numberformat.html#numberformat-decimals", + "Functions\/Numberformat.html#confval-numberformat-decimals", "decimals" ], "numberformat-dec-point": [ "TypoScript Explained", "main", - "Functions\/Numberformat.html#numberformat-dec-point", + "Functions\/Numberformat.html#confval-numberformat-dec-point", "dec_point" ], "numberformat-thousands-sep": [ "TypoScript Explained", "main", - "Functions\/Numberformat.html#numberformat-thousands-sep", + "Functions\/Numberformat.html#confval-numberformat-thousands-sep", "thousands_sep" ], "numrows-table": [ "TypoScript Explained", "main", - "Functions\/Numrows.html#numrows-table", + "Functions\/Numrows.html#confval-numrows-table", "table" ], "numrows-select": [ "TypoScript Explained", "main", - "Functions\/Numrows.html#numrows-select", + "Functions\/Numrows.html#confval-numrows-select", "select" ], "parsefunc-externalblocks": [ "TypoScript Explained", "main", - "Functions\/Parsefunc.html#parsefunc-externalblocks", + "Functions\/Parsefunc.html#confval-parsefunc-externalblocks", "externalBlocks" ], "parsefunc-short": [ "TypoScript Explained", "main", - "Functions\/Parsefunc.html#parsefunc-short", + "Functions\/Parsefunc.html#confval-parsefunc-short", "short" ], "parsefunc-plaintextstdwrap": [ "TypoScript Explained", "main", - "Functions\/Parsefunc.html#parsefunc-plaintextstdwrap", + "Functions\/Parsefunc.html#confval-parsefunc-plaintextstdwrap", "plainTextStdWrap" ], "parsefunc-userfunc": [ "TypoScript Explained", "main", - "Functions\/Parsefunc.html#parsefunc-userfunc", + "Functions\/Parsefunc.html#confval-parsefunc-userfunc", "userFunc" ], "parsefunc-nontypotagstdwrap": [ "TypoScript Explained", "main", - "Functions\/Parsefunc.html#parsefunc-nontypotagstdwrap", + "Functions\/Parsefunc.html#confval-parsefunc-nontypotagstdwrap", "nonTypoTagStdWrap" ], "parsefunc-nontypotaguserfunc": [ "TypoScript Explained", "main", - "Functions\/Parsefunc.html#parsefunc-nontypotaguserfunc", + "Functions\/Parsefunc.html#confval-parsefunc-nontypotaguserfunc", "nonTypoTagUserFunc" ], "parsefunc-makelinks": [ "TypoScript Explained", "main", - "Functions\/Parsefunc.html#parsefunc-makelinks", + "Functions\/Parsefunc.html#confval-parsefunc-makelinks", "makelinks" ], "parsefunc-tags": [ "TypoScript Explained", "main", - "Functions\/Parsefunc.html#parsefunc-tags", + "Functions\/Parsefunc.html#confval-parsefunc-tags", "tags" ], "parsefunc-allowtags": [ "TypoScript Explained", "main", - "Functions\/Parsefunc.html#parsefunc-allowtags", + "Functions\/Parsefunc.html#confval-parsefunc-allowtags", "allowTags" ], "parsefunc-denytags": [ "TypoScript Explained", "main", - "Functions\/Parsefunc.html#parsefunc-denytags", + "Functions\/Parsefunc.html#confval-parsefunc-denytags", "denyTags" ], "parsefunc-if": [ "TypoScript Explained", "main", - "Functions\/Parsefunc.html#parsefunc-if", + "Functions\/Parsefunc.html#confval-parsefunc-if", "if" ], "replacement-search": [ "TypoScript Explained", "main", - "Functions\/Replacement.html#replacement-search", + "Functions\/Replacement.html#confval-replacement-search", "search" ], "replacement-replace": [ "TypoScript Explained", "main", - "Functions\/Replacement.html#replacement-replace", + "Functions\/Replacement.html#confval-replacement-replace", "replace" ], "replacement-useregexp": [ "TypoScript Explained", "main", - "Functions\/Replacement.html#replacement-useregexp", + "Functions\/Replacement.html#confval-replacement-useregexp", "useRegExp" ], "replacement-useoptionsplitreplace": [ "TypoScript Explained", "main", - "Functions\/Replacement.html#replacement-useoptionsplitreplace", + "Functions\/Replacement.html#confval-replacement-useoptionsplitreplace", "useOptionSplitReplace" ], "round-roundtype": [ "TypoScript Explained", "main", - "Functions\/Round.html#round-roundtype", + "Functions\/Round.html#confval-round-roundtype", "roundType" ], "round-decimals": [ "TypoScript Explained", "main", - "Functions\/Round.html#round-decimals", + "Functions\/Round.html#confval-round-decimals", "decimals" ], "round-round": [ "TypoScript Explained", "main", - "Functions\/Round.html#round-round", + "Functions\/Round.html#confval-round-round", "round" ], "select-uidinlist": [ "TypoScript Explained", "main", - "Functions\/Select.html#select-uidinlist", + "Functions\/Select.html#confval-select-uidinlist", "uidInList" ], "select-pidinlist": [ "TypoScript Explained", "main", - "Functions\/Select.html#select-pidinlist", + "Functions\/Select.html#confval-select-pidinlist", "pidInList" ], "select-recursive": [ "TypoScript Explained", "main", - "Functions\/Select.html#select-recursive", + "Functions\/Select.html#confval-select-recursive", "recursive" ], "select-orderby": [ "TypoScript Explained", "main", - "Functions\/Select.html#select-orderby", + "Functions\/Select.html#confval-select-orderby", "orderBy" ], "select-groupby": [ "TypoScript Explained", "main", - "Functions\/Select.html#select-groupby", + "Functions\/Select.html#confval-select-groupby", "groupBy" ], "select-max": [ "TypoScript Explained", "main", - "Functions\/Select.html#select-max", + "Functions\/Select.html#confval-select-max", "max" ], "select-begin": [ "TypoScript Explained", "main", - "Functions\/Select.html#select-begin", + "Functions\/Select.html#confval-select-begin", "begin" ], "select-where": [ "TypoScript Explained", "main", - "Functions\/Select.html#select-where", + "Functions\/Select.html#confval-select-where", "where" ], "select-languagefield": [ "TypoScript Explained", "main", - "Functions\/Select.html#select-languagefield", + "Functions\/Select.html#confval-select-languagefield", "languageField" ], "select-includerecordswithoutdefaulttranslation": [ "TypoScript Explained", "main", - "Functions\/Select.html#select-includerecordswithoutdefaulttranslation", + "Functions\/Select.html#confval-select-includerecordswithoutdefaulttranslation", "includeRecordsWithoutDefaultTranslation" ], "select-selectfields": [ "TypoScript Explained", "main", - "Functions\/Select.html#select-selectfields", + "Functions\/Select.html#confval-select-selectfields", "selectFields" ], "select-join": [ "TypoScript Explained", "main", - "Functions\/Select.html#select-join", + "Functions\/Select.html#confval-select-join", "join, leftjoin, rightjoin" ], "select-markers": [ "TypoScript Explained", "main", - "Functions\/Select.html#select-markers", + "Functions\/Select.html#confval-select-markers", "markers" ], "split-token": [ "TypoScript Explained", "main", - "Functions\/Split.html#split-token", + "Functions\/Split.html#confval-split-token", "token" ], "split-max": [ "TypoScript Explained", "main", - "Functions\/Split.html#split-max", + "Functions\/Split.html#confval-split-max", "max" ], "split-min": [ "TypoScript Explained", "main", - "Functions\/Split.html#split-min", + "Functions\/Split.html#confval-split-min", "min" ], "split-returnkey": [ "TypoScript Explained", "main", - "Functions\/Split.html#split-returnkey", + "Functions\/Split.html#confval-split-returnkey", "returnKey" ], "split-returncount": [ "TypoScript Explained", "main", - "Functions\/Split.html#split-returncount", + "Functions\/Split.html#confval-split-returncount", "returnCount" ], "split-cobjnum": [ "TypoScript Explained", "main", - "Functions\/Split.html#split-cobjnum", + "Functions\/Split.html#confval-split-cobjnum", "cObjNum" ], "split-cobject": [ "TypoScript Explained", "main", - "Functions\/Split.html#split-cobject", + "Functions\/Split.html#confval-split-cobject", "1,2,3,4,..." ], "split-wrap": [ "TypoScript Explained", "main", - "Functions\/Split.html#split-wrap", + "Functions\/Split.html#confval-split-wrap", "wrap" ], "stdwrap-setcontenttocurrent": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-setcontenttocurrent", + "Functions\/Stdwrap.html#confval-stdwrap-setcontenttocurrent", "setContentToCurrent" ], "stdwrap-addpagecachetags": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-addpagecachetags", + "Functions\/Stdwrap.html#confval-stdwrap-addpagecachetags", "addPageCacheTags" ], "stdwrap-setcurrent": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-setcurrent", + "Functions\/Stdwrap.html#confval-stdwrap-setcurrent", "setCurrent" ], "stdwrap-lang": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-lang", + "Functions\/Stdwrap.html#confval-stdwrap-lang", "lang" ], "stdwrap-data": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-data", + "Functions\/Stdwrap.html#confval-stdwrap-data", "data" ], "stdwrap-field": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-field", + "Functions\/Stdwrap.html#confval-stdwrap-field", "field" ], "stdwrap-current": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-current", + "Functions\/Stdwrap.html#confval-stdwrap-current", "current" ], "stdwrap-cobject": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-cobject", + "Functions\/Stdwrap.html#confval-stdwrap-cobject", "cObject" ], "stdwrap-numrows": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-numrows", + "Functions\/Stdwrap.html#confval-stdwrap-numrows", "numRows" ], "stdwrap-preuserfunc": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-preuserfunc", + "Functions\/Stdwrap.html#confval-stdwrap-preuserfunc", "preUserFunc" ], "stdwrap-override": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-override", + "Functions\/Stdwrap.html#confval-stdwrap-override", "override" ], "stdwrap-preifemptylistnum": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-preifemptylistnum", + "Functions\/Stdwrap.html#confval-stdwrap-preifemptylistnum", "preIfEmptyListNum" ], "stdwrap-ifnull": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-ifnull", + "Functions\/Stdwrap.html#confval-stdwrap-ifnull", "ifNull" ], "stdwrap-ifempty": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-ifempty", + "Functions\/Stdwrap.html#confval-stdwrap-ifempty", "ifEmpty" ], "stdwrap-ifblank": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-ifblank", + "Functions\/Stdwrap.html#confval-stdwrap-ifblank", "ifBlank" ], "stdwrap-listnum": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-listnum", + "Functions\/Stdwrap.html#confval-stdwrap-listnum", "listNum" ], "stdwrap-listnum-splitchar": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-listnum-splitchar", + "Functions\/Stdwrap.html#confval-stdwrap-listnum-splitchar", "listNum.splitChar" ], "stdwrap-trim": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-trim", + "Functions\/Stdwrap.html#confval-stdwrap-trim", "trim" ], "stdwrap-strpad": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-strpad", + "Functions\/Stdwrap.html#confval-stdwrap-strpad", "strPad" ], "stdwrap-stdwrap": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-stdwrap", + "Functions\/Stdwrap.html#confval-stdwrap-stdwrap", "stdWrap" ], "stdwrap-required": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-required", + "Functions\/Stdwrap.html#confval-stdwrap-required", "required" ], "stdwrap-if": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-if", + "Functions\/Stdwrap.html#confval-stdwrap-if", "if" ], "stdwrap-fieldrequired": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-fieldrequired", + "Functions\/Stdwrap.html#confval-stdwrap-fieldrequired", "fieldRequired" ], "stdwrap-csconv": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-csconv", + "Functions\/Stdwrap.html#confval-stdwrap-csconv", "csConv" ], "stdwrap-parsefunc": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-parsefunc", + "Functions\/Stdwrap.html#confval-stdwrap-parsefunc", "parseFunc" ], "stdwrap-htmlparser": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-htmlparser", + "Functions\/Stdwrap.html#confval-stdwrap-htmlparser", "HTMLparser" ], "stdwrap-split": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-split", + "Functions\/Stdwrap.html#confval-stdwrap-split", "split" ], "stdwrap-replacement": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-replacement", + "Functions\/Stdwrap.html#confval-stdwrap-replacement", "replacement" ], "stdwrap-prioricalc": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-prioricalc", + "Functions\/Stdwrap.html#confval-stdwrap-prioricalc", "prioriCalc" ], "stdwrap-char": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-char", + "Functions\/Stdwrap.html#confval-stdwrap-char", "char" ], "stdwrap-intval": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-intval", + "Functions\/Stdwrap.html#confval-stdwrap-intval", "intval" ], "stdwrap-hash": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-hash", + "Functions\/Stdwrap.html#confval-stdwrap-hash", "hash" ], "stdwrap-round": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-round", + "Functions\/Stdwrap.html#confval-stdwrap-round", "round" ], "stdwrap-numberformat": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-numberformat", + "Functions\/Stdwrap.html#confval-stdwrap-numberformat", "numberFormat" ], "stdwrap-date": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-date", + "Functions\/Stdwrap.html#confval-stdwrap-date", "date" ], "stdwrap-strtotime": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-strtotime", + "Functions\/Stdwrap.html#confval-stdwrap-strtotime", "strtotime" ], "stdwrap-strftime": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-strftime", + "Functions\/Stdwrap.html#confval-stdwrap-strftime", "strftime" ], "stdwrap-formatteddate": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-formatteddate", + "Functions\/Stdwrap.html#confval-stdwrap-formatteddate", "formattedDate" ], "stdwrap-age": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-age", + "Functions\/Stdwrap.html#confval-stdwrap-age", "age" ], "stdwrap-case": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-case", + "Functions\/Stdwrap.html#confval-stdwrap-case", "case" ], "stdwrap-bytes": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-bytes", + "Functions\/Stdwrap.html#confval-stdwrap-bytes", "bytes" ], "stdwrap-substring": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-substring", + "Functions\/Stdwrap.html#confval-stdwrap-substring", "substring" ], "stdwrap-crophtml": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-crophtml", + "Functions\/Stdwrap.html#confval-stdwrap-crophtml", "cropHTML" ], "stdwrap-striphtml": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-striphtml", + "Functions\/Stdwrap.html#confval-stdwrap-striphtml", "stripHtml" ], "stdwrap-crop": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-crop", + "Functions\/Stdwrap.html#confval-stdwrap-crop", "crop" ], "stdwrap-rawurlencode": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-rawurlencode", + "Functions\/Stdwrap.html#confval-stdwrap-rawurlencode", "rawUrlEncode" ], "stdwrap-htmlspecialchars": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-htmlspecialchars", + "Functions\/Stdwrap.html#confval-stdwrap-htmlspecialchars", "htmlSpecialChars" ], "stdwrap-encodeforjavascriptvalue": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-encodeforjavascriptvalue", + "Functions\/Stdwrap.html#confval-stdwrap-encodeforjavascriptvalue", "encodeForJavaScriptValue" ], "stdwrap-doublebrtag": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-doublebrtag", + "Functions\/Stdwrap.html#confval-stdwrap-doublebrtag", "doubleBrTag" ], "stdwrap-br": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-br", + "Functions\/Stdwrap.html#confval-stdwrap-br", "br" ], "stdwrap-brtag": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-brtag", + "Functions\/Stdwrap.html#confval-stdwrap-brtag", "brTag" ], "stdwrap-encapslines": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-encapslines", + "Functions\/Stdwrap.html#confval-stdwrap-encapslines", "encapsLines" ], "stdwrap-keywords": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-keywords", + "Functions\/Stdwrap.html#confval-stdwrap-keywords", "keywords" ], "stdwrap-innerwrap": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-innerwrap", + "Functions\/Stdwrap.html#confval-stdwrap-innerwrap", "innerWrap" ], "stdwrap-innerwrap2": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-innerwrap2", + "Functions\/Stdwrap.html#confval-stdwrap-innerwrap2", "innerWrap2" ], "stdwrap-precobject": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-precobject", + "Functions\/Stdwrap.html#confval-stdwrap-precobject", "preCObject" ], "stdwrap-postcobject": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-postcobject", + "Functions\/Stdwrap.html#confval-stdwrap-postcobject", "postCObject" ], "stdwrap-wrapalign": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-wrapalign", + "Functions\/Stdwrap.html#confval-stdwrap-wrapalign", "wrapAlign" ], "stdwrap-typolink": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-typolink", + "Functions\/Stdwrap.html#confval-stdwrap-typolink", "typolink" ], "stdwrap-wrap": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-wrap", + "Functions\/Stdwrap.html#confval-stdwrap-wrap", "wrap" ], "stdwrap-notrimwrap": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-notrimwrap", + "Functions\/Stdwrap.html#confval-stdwrap-notrimwrap", "noTrimWrap" ], "stdwrap-wrap2": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-wrap2", + "Functions\/Stdwrap.html#confval-stdwrap-wrap2", "wrap2" ], "stdwrap-datawrap": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-datawrap", + "Functions\/Stdwrap.html#confval-stdwrap-datawrap", "dataWrap" ], "stdwrap-prepend": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-prepend", + "Functions\/Stdwrap.html#confval-stdwrap-prepend", "prepend" ], "stdwrap-append": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-append", + "Functions\/Stdwrap.html#confval-stdwrap-append", "append" ], "stdwrap-wrap3": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-wrap3", + "Functions\/Stdwrap.html#confval-stdwrap-wrap3", "wrap3" ], "stdwrap-orderedstdwrap": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-orderedstdwrap", + "Functions\/Stdwrap.html#confval-stdwrap-orderedstdwrap", "orderedStdWrap" ], "stdwrap-outerwrap": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-outerwrap", + "Functions\/Stdwrap.html#confval-stdwrap-outerwrap", "outerWrap" ], "stdwrap-insertdata": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-insertdata", + "Functions\/Stdwrap.html#confval-stdwrap-insertdata", "insertData" ], "stdwrap-postuserfunc": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-postuserfunc", + "Functions\/Stdwrap.html#confval-stdwrap-postuserfunc", "postUserFunc" ], "stdwrap-postuserfuncint": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-postuserfuncint", + "Functions\/Stdwrap.html#confval-stdwrap-postuserfuncint", "postUserFuncInt" ], "stdwrap-prefixcomment": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-prefixcomment", + "Functions\/Stdwrap.html#confval-stdwrap-prefixcomment", "prefixComment" ], "stdwrap-htmlsanitize": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-htmlsanitize", + "Functions\/Stdwrap.html#confval-stdwrap-htmlsanitize", "htmlSanitize" ], "stdwrap-cache": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-cache", + "Functions\/Stdwrap.html#confval-stdwrap-cache", "cache" ], "stdwrap-debug": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-debug", + "Functions\/Stdwrap.html#confval-stdwrap-debug", "debug" ], "stdwrap-debugfunc": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-debugfunc", + "Functions\/Stdwrap.html#confval-stdwrap-debugfunc", "debugFunc" ], "stdwrap-debugdata": [ "TypoScript Explained", "main", - "Functions\/Stdwrap.html#stdwrap-debugdata", + "Functions\/Stdwrap.html#confval-stdwrap-debugdata", "debugData" ], "strpad-length": [ "TypoScript Explained", "main", - "Functions\/Strpad.html#strpad-length", + "Functions\/Strpad.html#confval-strpad-length", "length" ], "strpad-padwith": [ "TypoScript Explained", "main", - "Functions\/Strpad.html#strpad-padwith", + "Functions\/Strpad.html#confval-strpad-padwith", "padWith" ], "strpad-type": [ "TypoScript Explained", "main", - "Functions\/Strpad.html#strpad-type", + "Functions\/Strpad.html#confval-strpad-type", "type" ], "tags-array": [ "TypoScript Explained", "main", - "Functions\/Tags.html#tags-array", + "Functions\/Tags.html#confval-tags-array", "array of strings" ], "typolink-exttarget": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-exttarget", + "Functions\/Typolink.html#confval-typolink-exttarget", "extTarget" ], "typolink-filetarget": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-filetarget", + "Functions\/Typolink.html#confval-typolink-filetarget", "fileTarget" ], "typolink-language": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-language", + "Functions\/Typolink.html#confval-typolink-language", "language" ], "typolink-target": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-target", + "Functions\/Typolink.html#confval-typolink-target", "target" ], "typolink-no-cache": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-no-cache", + "Functions\/Typolink.html#confval-typolink-no-cache", "no_cache" ], "typolink-additionalparams": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-additionalparams", + "Functions\/Typolink.html#confval-typolink-additionalparams", "additionalParams" ], "typolink-addquerystring": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-addquerystring", + "Functions\/Typolink.html#confval-typolink-addquerystring", "addQueryString" ], "typolink-addquerystring-exclude": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-addquerystring-exclude", + "Functions\/Typolink.html#confval-typolink-addquerystring-exclude", "addQueryString.exclude" ], "typolink-wrap": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-wrap", + "Functions\/Typolink.html#confval-typolink-wrap", "wrap" ], "typolink-atagbeforewrap": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-atagbeforewrap", + "Functions\/Typolink.html#confval-typolink-atagbeforewrap", "ATagBeforeWrap" ], "typolink-parameter": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-parameter", + "Functions\/Typolink.html#confval-typolink-parameter", "parameter" ], "typolink-forceabsoluteurl": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-forceabsoluteurl", + "Functions\/Typolink.html#confval-typolink-forceabsoluteurl", "forceAbsoluteUrl" ], "typolink-forceabsoluteurl-scheme": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-forceabsoluteurl-scheme", + "Functions\/Typolink.html#confval-typolink-forceabsoluteurl-scheme", "forceAbsoluteUrl.scheme" ], "typolink-title": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-title", + "Functions\/Typolink.html#confval-typolink-title", "title" ], "typolink-jswindow-params": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-jswindow-params", + "Functions\/Typolink.html#confval-typolink-jswindow-params", "JSwindow_params" ], "typolink-returnlast": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-returnlast", + "Functions\/Typolink.html#confval-typolink-returnlast", "returnLast" ], "typolink-section": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-section", + "Functions\/Typolink.html#confval-typolink-section", "section" ], "typolink-atagparams": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-atagparams", + "Functions\/Typolink.html#confval-typolink-atagparams", "ATagParams" ], "typolink-linkaccessrestrictedpages": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-linkaccessrestrictedpages", + "Functions\/Typolink.html#confval-typolink-linkaccessrestrictedpages", "linkAccessRestrictedPages" ], "typolink-userfunc": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-userfunc", + "Functions\/Typolink.html#confval-typolink-userfunc", "userFunc" ], "typolink-handler-page": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-handler-page", + "Functions\/Typolink.html#confval-typolink-handler-page", "page" ], "typolink-handler-page-uid": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-handler-page-uid", + "Functions\/Typolink.html#confval-typolink-handler-page-uid", "page.uid" ], "typolink-handler-page-alias": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-handler-page-alias", + "Functions\/Typolink.html#confval-typolink-handler-page-alias", "page.alias" ], "typolink-handler-page-type": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-handler-page-type", + "Functions\/Typolink.html#confval-typolink-handler-page-type", "page.type" ], "typolink-handler-page-parameters": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-handler-page-parameters", + "Functions\/Typolink.html#confval-typolink-handler-page-parameters", "page.parameters" ], "typolink-handler-page-fragment": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-handler-page-fragment", + "Functions\/Typolink.html#confval-typolink-handler-page-fragment", "page.fragment" ], "typolink-handler-file": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-handler-file", + "Functions\/Typolink.html#confval-typolink-handler-file", "file" ], "typolink-handler-file-uid": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-handler-file-uid", + "Functions\/Typolink.html#confval-typolink-handler-file-uid", "file.uid" ], "typolink-handler-file-identifier": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-handler-file-identifier", + "Functions\/Typolink.html#confval-typolink-handler-file-identifier", "file.identifier" ], "typolink-handler-folder": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-handler-folder", + "Functions\/Typolink.html#confval-typolink-handler-folder", "folder" ], "typolink-handler-folder-identifier": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-handler-folder-identifier", + "Functions\/Typolink.html#confval-typolink-handler-folder-identifier", "folder.identifier" ], "typolink-handler-folder-storage": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-handler-folder-storage", + "Functions\/Typolink.html#confval-typolink-handler-folder-storage", "folder.storage" ], "typolink-handler-email": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-handler-email", + "Functions\/Typolink.html#confval-typolink-handler-email", "email" ], "typolink-handler-url": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-handler-url", + "Functions\/Typolink.html#confval-typolink-handler-url", "url" ], "typolink-handler-record": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-handler-record", + "Functions\/Typolink.html#confval-typolink-handler-record", "record" ], "typolink-handler-record-identifier": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-handler-record-identifier", + "Functions\/Typolink.html#confval-typolink-handler-record-identifier", "record.identifier" ], "typolink-handler-record-uid": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-handler-record-uid", + "Functions\/Typolink.html#confval-typolink-handler-record-uid", "record.uid" ], "typolink-handler-phone": [ "TypoScript Explained", "main", - "Functions\/Typolink.html#typolink-handler-phone", + "Functions\/Typolink.html#confval-typolink-handler-phone", "phone" ], "data-type-wrap": [ "TypoScript Explained", "main", - "Functions\/Wrap.html#data-type-wrap", + "Functions\/Wrap.html#confval-data-type-wrap", "wrap" ], "data-type-graphiccolor": [ "TypoScript Explained", "main", - "Gifbuilder\/Colors.html#data-type-graphiccolor", + "Gifbuilder\/Colors.html#confval-data-type-graphiccolor", "GraphicColor" ], "gifbuilder-adjust-inputlevels": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Adjust\/Index.html#gifbuilder-adjust-inputlevels", + "Gifbuilder\/ObjectNames\/Adjust\/Index.html#confval-gifbuilder-adjust-inputlevels", "inputLevels" ], "gifbuilder-adjust-outputlevels": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Adjust\/Index.html#gifbuilder-adjust-outputlevels", + "Gifbuilder\/ObjectNames\/Adjust\/Index.html#confval-gifbuilder-adjust-outputlevels", "outputLevels" ], "gifbuilder-adjust-autolevels": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Adjust\/Index.html#gifbuilder-adjust-autolevels", + "Gifbuilder\/ObjectNames\/Adjust\/Index.html#confval-gifbuilder-adjust-autolevels", "autoLevels" ], "gifbuilder-box-align": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Box\/Index.html#gifbuilder-box-align", + "Gifbuilder\/ObjectNames\/Box\/Index.html#confval-gifbuilder-box-align", "align" ], "gifbuilder-box-color": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Box\/Index.html#gifbuilder-box-color", + "Gifbuilder\/ObjectNames\/Box\/Index.html#confval-gifbuilder-box-color", "color" ], "gifbuilder-box-dimensions": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Box\/Index.html#gifbuilder-box-dimensions", + "Gifbuilder\/ObjectNames\/Box\/Index.html#confval-gifbuilder-box-dimensions", "dimensions" ], "gifbuilder-box-opacity": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Box\/Index.html#gifbuilder-box-opacity", + "Gifbuilder\/ObjectNames\/Box\/Index.html#confval-gifbuilder-box-opacity", "opacity" ], "gifbuilder-crop-align": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Crop\/Index.html#gifbuilder-crop-align", + "Gifbuilder\/ObjectNames\/Crop\/Index.html#confval-gifbuilder-crop-align", "align" ], "gifbuilder-crop-backcolor": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Crop\/Index.html#gifbuilder-crop-backcolor", + "Gifbuilder\/ObjectNames\/Crop\/Index.html#confval-gifbuilder-crop-backcolor", "backColor" ], "gifbuilder-crop-crop": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Crop\/Index.html#gifbuilder-crop-crop", + "Gifbuilder\/ObjectNames\/Crop\/Index.html#confval-gifbuilder-crop-crop", "crop" ], "gifbuilder-effect-blur": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-blur", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#confval-gifbuilder-effect-blur", "blur" ], "gifbuilder-effect-charcoal": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-charcoal", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#confval-gifbuilder-effect-charcoal", "charcoal" ], "gifbuilder-effect-colors": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-colors", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#confval-gifbuilder-effect-colors", "colors" ], "gifbuilder-effect-edge": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-edge", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#confval-gifbuilder-effect-edge", "edge" ], "gifbuilder-effect-emboss": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-emboss", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#confval-gifbuilder-effect-emboss", "emboss" ], "gifbuilder-effect-flip": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-flip", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#confval-gifbuilder-effect-flip", "flip" ], "gifbuilder-effect-flop": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-flop", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#confval-gifbuilder-effect-flop", "flop" ], "gifbuilder-effect-gamma": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-gamma", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#confval-gifbuilder-effect-gamma", "gamma" ], "gifbuilder-effect-gray": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-gray", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#confval-gifbuilder-effect-gray", "gray" ], "gifbuilder-effect-invert": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-invert", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#confval-gifbuilder-effect-invert", "invert" ], "gifbuilder-effect-rotate": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-rotate", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#confval-gifbuilder-effect-rotate", "rotate" ], "gifbuilder-effect-sharpen": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-sharpen", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#confval-gifbuilder-effect-sharpen", "sharpen" ], "gifbuilder-effect-shear": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-shear", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#confval-gifbuilder-effect-shear", "shear" ], "gifbuilder-effect-solarize": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-solarize", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#confval-gifbuilder-effect-solarize", "solarize" ], "gifbuilder-effect-swirl": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-swirl", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#confval-gifbuilder-effect-swirl", "swirl" ], "gifbuilder-effect-wave": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Effect\/Index.html#gifbuilder-effect-wave", + "Gifbuilder\/ObjectNames\/Effect\/Index.html#confval-gifbuilder-effect-wave", "wave" ], "gifbuilder-ellipse-color": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Ellipse\/Index.html#gifbuilder-ellipse-color", + "Gifbuilder\/ObjectNames\/Ellipse\/Index.html#confval-gifbuilder-ellipse-color", "color" ], "gifbuilder-ellipse-dimensions": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Ellipse\/Index.html#gifbuilder-ellipse-dimensions", + "Gifbuilder\/ObjectNames\/Ellipse\/Index.html#confval-gifbuilder-ellipse-dimensions", "dimensions" ], "gifbuilder-emboss-blur": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Emboss\/Index.html#gifbuilder-emboss-blur", + "Gifbuilder\/ObjectNames\/Emboss\/Index.html#confval-gifbuilder-emboss-blur", "blur" ], "gifbuilder-emboss-highcolor": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Emboss\/Index.html#gifbuilder-emboss-highcolor", + "Gifbuilder\/ObjectNames\/Emboss\/Index.html#confval-gifbuilder-emboss-highcolor", "highColor" ], "gifbuilder-emboss-intensity": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Emboss\/Index.html#gifbuilder-emboss-intensity", + "Gifbuilder\/ObjectNames\/Emboss\/Index.html#confval-gifbuilder-emboss-intensity", "intensity" ], "gifbuilder-emboss-lowcolor": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Emboss\/Index.html#gifbuilder-emboss-lowcolor", + "Gifbuilder\/ObjectNames\/Emboss\/Index.html#confval-gifbuilder-emboss-lowcolor", "lowColor" ], "gifbuilder-emboss-opacity": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Emboss\/Index.html#gifbuilder-emboss-opacity", + "Gifbuilder\/ObjectNames\/Emboss\/Index.html#confval-gifbuilder-emboss-opacity", "opacity" ], "gifbuilder-emboss-offset": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Emboss\/Index.html#gifbuilder-emboss-offset", + "Gifbuilder\/ObjectNames\/Emboss\/Index.html#confval-gifbuilder-emboss-offset", "offset" ], "gifbuilder-emboss-textobjnum": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Emboss\/Index.html#gifbuilder-emboss-textobjnum", + "Gifbuilder\/ObjectNames\/Emboss\/Index.html#confval-gifbuilder-emboss-textobjnum", "textObjNum" ], "gifbuilder-image-align": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Image\/Index.html#gifbuilder-image-align", + "Gifbuilder\/ObjectNames\/Image\/Index.html#confval-gifbuilder-image-align", "align" ], "gifbuilder-image-file": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Image\/Index.html#gifbuilder-image-file", + "Gifbuilder\/ObjectNames\/Image\/Index.html#confval-gifbuilder-image-file", "file" ], "gifbuilder-image-mask": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Image\/Index.html#gifbuilder-image-mask", + "Gifbuilder\/ObjectNames\/Image\/Index.html#confval-gifbuilder-image-mask", "mask" ], "gifbuilder-image-offset": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Image\/Index.html#gifbuilder-image-offset", + "Gifbuilder\/ObjectNames\/Image\/Index.html#confval-gifbuilder-image-offset", "offset" ], "gifbuilder-image-tile": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Image\/Index.html#gifbuilder-image-tile", + "Gifbuilder\/ObjectNames\/Image\/Index.html#confval-gifbuilder-image-tile", "tile" ], "gifbuilder-outline-color": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Outline\/Index.html#gifbuilder-outline-color", + "Gifbuilder\/ObjectNames\/Outline\/Index.html#confval-gifbuilder-outline-color", "color" ], "gifbuilder-outline-textobjnum": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Outline\/Index.html#gifbuilder-outline-textobjnum", + "Gifbuilder\/ObjectNames\/Outline\/Index.html#confval-gifbuilder-outline-textobjnum", "textObjNum" ], "gifbuilder-outline-thickness": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Outline\/Index.html#gifbuilder-outline-thickness", + "Gifbuilder\/ObjectNames\/Outline\/Index.html#confval-gifbuilder-outline-thickness", "thickness" ], "gifbuilder-scale-height": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Scale\/Index.html#gifbuilder-scale-height", + "Gifbuilder\/ObjectNames\/Scale\/Index.html#confval-gifbuilder-scale-height", "height" ], "gifbuilder-scale-params": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Scale\/Index.html#gifbuilder-scale-params", + "Gifbuilder\/ObjectNames\/Scale\/Index.html#confval-gifbuilder-scale-params", "params" ], "gifbuilder-scale-width": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Scale\/Index.html#gifbuilder-scale-width", + "Gifbuilder\/ObjectNames\/Scale\/Index.html#confval-gifbuilder-scale-width", "width" ], "gifbuilder-shadow-blur": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Shadow\/Index.html#gifbuilder-shadow-blur", + "Gifbuilder\/ObjectNames\/Shadow\/Index.html#confval-gifbuilder-shadow-blur", "blur" ], "gifbuilder-shadow-color": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Shadow\/Index.html#gifbuilder-shadow-color", + "Gifbuilder\/ObjectNames\/Shadow\/Index.html#confval-gifbuilder-shadow-color", "color" ], "gifbuilder-shadow-intensity": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Shadow\/Index.html#gifbuilder-shadow-intensity", + "Gifbuilder\/ObjectNames\/Shadow\/Index.html#confval-gifbuilder-shadow-intensity", "intensity" ], "gifbuilder-shadow-offset": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Shadow\/Index.html#gifbuilder-shadow-offset", + "Gifbuilder\/ObjectNames\/Shadow\/Index.html#confval-gifbuilder-shadow-offset", "offset" ], "gifbuilder-shadow-opacity": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Shadow\/Index.html#gifbuilder-shadow-opacity", + "Gifbuilder\/ObjectNames\/Shadow\/Index.html#confval-gifbuilder-shadow-opacity", "opacity" ], "gifbuilder-shadow-textobjnum": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Shadow\/Index.html#gifbuilder-shadow-textobjnum", + "Gifbuilder\/ObjectNames\/Shadow\/Index.html#confval-gifbuilder-shadow-textobjnum", "textObjNum" ], "gifbuilder-text-align": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-align", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-align", "align" ], "gifbuilder-text-angle": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-angle", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-angle", "angle" ], "gifbuilder-text-antialias": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-antialias", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-antialias", "antiAlias" ], "gifbuilder-text-breakspace": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-breakspace", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-breakspace", "breakSpace" ], "gifbuilder-text-breakwidth": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-breakwidth", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-breakwidth", "breakWidth" ], "gifbuilder-text-donotstriphtml": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-donotstriphtml", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-donotstriphtml", "doNotStripHTML" ], "gifbuilder-text-emboss": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-emboss", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-emboss", "emboss" ], "gifbuilder-text-fontcolor": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-fontcolor", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-fontcolor", "fontColor" ], "gifbuilder-text-fontfile": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-fontfile", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-fontfile", "fontFile" ], "gifbuilder-text-fontsize": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-fontsize", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-fontsize", "fontSize" ], "gifbuilder-text-hide": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-hide", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-hide", "hide" ], "gifbuilder-text-iterations": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-iterations", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-iterations", "iterations" ], "gifbuilder-text-maxwidth": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-maxwidth", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-maxwidth", "maxWidth" ], "gifbuilder-text-nicetext": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-nicetext", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-nicetext", "niceText" ], "gifbuilder-text-nicetext-after": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-nicetext-after", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-nicetext-after", "niceText.after" ], "gifbuilder-text-nicetext-before": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-nicetext-before", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-nicetext-before", "niceText.before" ], "gifbuilder-text-nicetext-scalefactor": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-nicetext-scalefactor", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-nicetext-scalefactor", "niceText.scaleFactor" ], "gifbuilder-text-nicetext-sharpen": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-nicetext-sharpen", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-nicetext-sharpen", "niceText.sharpen" ], "gifbuilder-text-offset": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-offset", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-offset", "offset" ], "gifbuilder-text-outline": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-outline", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-outline", "outline" ], "gifbuilder-text-shadow": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-shadow", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-shadow", "shadow" ], "gifbuilder-text-spacing": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-spacing", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-spacing", "spacing" ], "gifbuilder-text-splitrendering": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-splitrendering", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-splitrendering", "splitRendering" ], "gifbuilder-text-splitrendering-array": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-splitrendering-array", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-splitrendering-array", "splitRendering.[array]" ], "gifbuilder-text-splitrendering-compx": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-splitrendering-compx", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-splitrendering-compx", "splitRendering.compX" ], "gifbuilder-text-splitrendering-compy": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-splitrendering-compy", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-splitrendering-compy", "splitRendering.compY" ], "gifbuilder-text-text": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-text", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-text", "text" ], "gifbuilder-text-textmaxlength": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-textmaxlength", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-textmaxlength", "textMaxLength" ], "gifbuilder-text-wordspacing": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Text\/Index.html#gifbuilder-text-wordspacing", + "Gifbuilder\/ObjectNames\/Text\/Index.html#confval-gifbuilder-text-wordspacing", "wordSpacing" ], "gifbuilder-workarea-clear": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Workarea\/Index.html#gifbuilder-workarea-clear", + "Gifbuilder\/ObjectNames\/Workarea\/Index.html#confval-gifbuilder-workarea-clear", "clear" ], "gifbuilder-workarea-set": [ "TypoScript Explained", "main", - "Gifbuilder\/ObjectNames\/Workarea\/Index.html#gifbuilder-workarea-set", + "Gifbuilder\/ObjectNames\/Workarea\/Index.html#confval-gifbuilder-workarea-set", "set" ], "gifbuilder-properties-array": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#gifbuilder-properties-array", + "Gifbuilder\/Properties.html#confval-gifbuilder-properties-array", "1,2,3,4..." ], "gifbuilder-properties-backcolor": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#gifbuilder-properties-backcolor", + "Gifbuilder\/Properties.html#confval-gifbuilder-properties-backcolor", "backColor" ], "gifbuilder-properties-charrangemap-array": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#gifbuilder-properties-charrangemap-array", + "Gifbuilder\/Properties.html#confval-gifbuilder-properties-charrangemap-array", "charRangeMap.[array]" ], "gifbuilder-properties-charrangemap-charmapconfig": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#gifbuilder-properties-charrangemap-charmapconfig", + "Gifbuilder\/Properties.html#confval-gifbuilder-properties-charrangemap-charmapconfig", "charRangeMap.[array].charMapConfig" ], "gifbuilder-properties-charrangemap-fontsizemultiplicator": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#gifbuilder-properties-charrangemap-fontsizemultiplicator", + "Gifbuilder\/Properties.html#confval-gifbuilder-properties-charrangemap-fontsizemultiplicator", "charRangeMap.[array].fontSizeMultiplicator" ], "gifbuilder-properties-charrangemap-pixelspacefontsizeref": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#gifbuilder-properties-charrangemap-pixelspacefontsizeref", + "Gifbuilder\/Properties.html#confval-gifbuilder-properties-charrangemap-pixelspacefontsizeref", "charRangeMap.[array].pixelSpaceFontSizeRef" ], "gifbuilder-properties-format": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#gifbuilder-properties-format", + "Gifbuilder\/Properties.html#confval-gifbuilder-properties-format", "format" ], "gifbuilder-properties-maxheight": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#gifbuilder-properties-maxheight", + "Gifbuilder\/Properties.html#confval-gifbuilder-properties-maxheight", "maxHeight" ], "gifbuilder-properties-maxwidth": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#gifbuilder-properties-maxwidth", + "Gifbuilder\/Properties.html#confval-gifbuilder-properties-maxwidth", "maxWidth" ], "gifbuilder-properties-offset": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#gifbuilder-properties-offset", + "Gifbuilder\/Properties.html#confval-gifbuilder-properties-offset", "offset" ], "gifbuilder-properties-quality": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#gifbuilder-properties-quality", + "Gifbuilder\/Properties.html#confval-gifbuilder-properties-quality", "quality" ], "gifbuilder-properties-speed": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#gifbuilder-properties-speed", + "Gifbuilder\/Properties.html#confval-gifbuilder-properties-speed", "speed" ], "gifbuilder-properties-transparentbackground": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#gifbuilder-properties-transparentbackground", + "Gifbuilder\/Properties.html#confval-gifbuilder-properties-transparentbackground", "transparentBackground" ], "gifbuilder-properties-transparentcolor": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#gifbuilder-properties-transparentcolor", + "Gifbuilder\/Properties.html#confval-gifbuilder-properties-transparentcolor", "transparentColor" ], "gifbuilder-properties-transparentcolor-closest": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#gifbuilder-properties-transparentcolor-closest", + "Gifbuilder\/Properties.html#confval-gifbuilder-properties-transparentcolor-closest", "transparentColor.closest" ], "gifbuilder-properties-workarea": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#gifbuilder-properties-workarea", + "Gifbuilder\/Properties.html#confval-gifbuilder-properties-workarea", "workArea" ], "gifbuilder-properties-xy": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#gifbuilder-properties-xy", + "Gifbuilder\/Properties.html#confval-gifbuilder-properties-xy", "XY" ], "gifbuilder-properties-reducecolors": [ "TypoScript Explained", "main", - "Gifbuilder\/Properties.html#gifbuilder-properties-reducecolors", + "Gifbuilder\/Properties.html#confval-gifbuilder-properties-reducecolors", "reduceColors" ], "mod-share-colpos-list": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Shared.html#mod-share-colpos-list", + "PageTsconfig\/Mod\/Shared.html#confval-mod-share-colpos-list", "colPos_list" ], "mod-share-defaultlanguageflag": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Shared.html#mod-share-defaultlanguageflag", + "PageTsconfig\/Mod\/Shared.html#confval-mod-share-defaultlanguageflag", "defaultLanguageFlag" ], "mod-share-defaultlanguagelabel": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Shared.html#mod-share-defaultlanguagelabel", + "PageTsconfig\/Mod\/Shared.html#confval-mod-share-defaultlanguagelabel", "defaultLanguageLabel" ], "mod-share-disablelanguages": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Shared.html#mod-share-disablelanguages", + "PageTsconfig\/Mod\/Shared.html#confval-mod-share-disablelanguages", "disableLanguages" ], "mod-share-disablesysnotebutton": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Shared.html#mod-share-disablesysnotebutton", + "PageTsconfig\/Mod\/Shared.html#confval-mod-share-disablesysnotebutton", "disableSysNoteButton" ], "mod-web-info-fielddefinitions": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebInfo.html#mod-web-info-fielddefinitions", + "PageTsconfig\/Mod\/WebInfo.html#confval-mod-web-info-fielddefinitions", "fieldDefinitions" ], "mod-web-layout-backendlayouts": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#mod-web-layout-backendlayouts", + "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#confval-mod-web-layout-backendlayouts", "BackendLayouts.[backendLayout]" ], "mod-web-layout-backendlayouts-backendlayout-title": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#mod-web-layout-backendlayouts-backendlayout-title", + "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#confval-mod-web-layout-backendlayouts-backendlayout-title", "title" ], "mod-web-layout-backendlayouts-backendlayout-icon": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#mod-web-layout-backendlayouts-backendlayout-icon", + "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#confval-mod-web-layout-backendlayouts-backendlayout-icon", "icon" ], "config-backend-layout": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#config-backend-layout", + "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#confval-config-backend-layout", "config.backend_layout" ], "mod-web-layout-backendlayouts-backendlayout-title-config-backend-layout-colcount": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#mod-web-layout-backendlayouts-backendlayout-title-config-backend-layout-colcount", + "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#confval-mod-web-layout-backendlayouts-backendlayout-title-config-backend-layout-colcount", "colCount" ], "mod-web-layout-backendlayouts-backendlayout-title-config-backend-layout-rowcount": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#mod-web-layout-backendlayouts-backendlayout-title-config-backend-layout-rowcount", + "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#confval-mod-web-layout-backendlayouts-backendlayout-title-config-backend-layout-rowcount", "rowCount" ], "rows-row-columns-col": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#rows-row-columns-col", + "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#confval-rows-row-columns-col", "rows.[row].columns.[col]" ], "mod-web-layout-backendlayouts-backendlayout-title-config-backend-layout-rows-row-columns-col-name": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#mod-web-layout-backendlayouts-backendlayout-title-config-backend-layout-rows-row-columns-col-name", + "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#confval-mod-web-layout-backendlayouts-backendlayout-title-config-backend-layout-rows-row-columns-col-name", "name" ], "mod-web-layout-backendlayouts-backendlayout-title-config-backend-layout-rows-row-columns-col-colpos": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#mod-web-layout-backendlayouts-backendlayout-title-config-backend-layout-rows-row-columns-col-colpos", + "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#confval-mod-web-layout-backendlayouts-backendlayout-title-config-backend-layout-rows-row-columns-col-colpos", "colPos" ], "mod-web-layout-backendlayouts-backendlayout-title-config-backend-layout-rows-row-columns-col-identifier": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#mod-web-layout-backendlayouts-backendlayout-title-config-backend-layout-rows-row-columns-col-identifier", + "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#confval-mod-web-layout-backendlayouts-backendlayout-title-config-backend-layout-rows-row-columns-col-identifier", "identifier" ], "mod-web-layout-backendlayouts-backendlayout-title-config-backend-layout-rows-row-columns-col-slidemode": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#mod-web-layout-backendlayouts-backendlayout-title-config-backend-layout-rows-row-columns-col-slidemode", + "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#confval-mod-web-layout-backendlayouts-backendlayout-title-config-backend-layout-rows-row-columns-col-slidemode", "slideMode" ], "mod-web-layout-backendlayouts-backendlayout-title-config-backend-layout-rows-row-columns-col-colspan": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#mod-web-layout-backendlayouts-backendlayout-title-config-backend-layout-rows-row-columns-col-colspan", + "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#confval-mod-web-layout-backendlayouts-backendlayout-title-config-backend-layout-rows-row-columns-col-colspan", "colspan" ], "mod-web-layout-backendlayouts-backendlayout-title-config-backend-layout-rows-row-columns-col-rowspan": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#mod-web-layout-backendlayouts-backendlayout-title-config-backend-layout-rows-row-columns-col-rowspan", + "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#confval-mod-web-layout-backendlayouts-backendlayout-title-config-backend-layout-rows-row-columns-col-rowspan", "rowspan" ], "mod-web-layout-allowinconsistentlanguagehandling": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#mod-web-layout-allowinconsistentlanguagehandling", + "PageTsconfig\/Mod\/WebLayout.html#confval-mod-web-layout-allowinconsistentlanguagehandling", "allowInconsistentLanguageHandling" ], "backendlayouts": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#backendlayouts", + "PageTsconfig\/Mod\/WebLayout.html#confval-backendlayouts", "BackendLayouts" ], "mod-web-layout-defaultlanguagelabel": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#mod-web-layout-defaultlanguagelabel", + "PageTsconfig\/Mod\/WebLayout.html#confval-mod-web-layout-defaultlanguagelabel", "defaultLanguageLabel" ], "mod-web-layout-deflangbinding": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#mod-web-layout-deflangbinding", + "PageTsconfig\/Mod\/WebLayout.html#confval-mod-web-layout-deflangbinding", "defLangBinding" ], "mod-web-layout-hiderestrictedcols": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#mod-web-layout-hiderestrictedcols", + "PageTsconfig\/Mod\/WebLayout.html#confval-mod-web-layout-hiderestrictedcols", "hideRestrictedCols" ], "mod-web-layout-localization-enablecopy": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#mod-web-layout-localization-enablecopy", + "PageTsconfig\/Mod\/WebLayout.html#confval-mod-web-layout-localization-enablecopy", "localization.enableCopy" ], "mod-web-layout-localization-enabletranslate": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#mod-web-layout-localization-enabletranslate", + "PageTsconfig\/Mod\/WebLayout.html#confval-mod-web-layout-localization-enabletranslate", "localization.enableTranslate" ], "mod-web-layout-menu-functions": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#mod-web-layout-menu-functions", + "PageTsconfig\/Mod\/WebLayout.html#confval-mod-web-layout-menu-functions", "menu.functions" ], "mod-web-layout-nocreaterecordslink": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#mod-web-layout-nocreaterecordslink", + "PageTsconfig\/Mod\/WebLayout.html#confval-mod-web-layout-nocreaterecordslink", "noCreateRecordsLink" ], "mod-web-layout-tt-content-preview": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout.html#mod-web-layout-tt-content-preview", + "PageTsconfig\/Mod\/WebLayout.html#confval-mod-web-layout-tt-content-preview", "tt_content.preview" ], "mod-web-list-allowednewtables": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#mod-web-list-allowednewtables", + "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-allowednewtables", "allowedNewTables" ], "mod-web-list-clicktitlemode": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#mod-web-list-clicktitlemode", + "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-clicktitlemode", "clickTitleMode" ], "mod-web-list-csvdelimiter": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#mod-web-list-csvdelimiter", + "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-csvdelimiter", "csvDelimiter" ], "mod-web-list-csvquote": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#mod-web-list-csvquote", + "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-csvquote", "csvQuote" ], "mod-web-list-deniednewtables": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#mod-web-list-deniednewtables", + "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-deniednewtables", "deniedNewTables" ], + "mod-web-list-disablesearchbox": [ + "TypoScript Explained", + "main", + "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-disablesearchbox", + "disableSearchBox" + ], "mod-web-list-disablesingletableview": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#mod-web-list-disablesingletableview", + "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-disablesingletableview", "disableSingleTableView" ], "mod-web-list-displaycolumnselector": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#mod-web-list-displaycolumnselector", + "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-displaycolumnselector", "displayColumnSelector" ], "mod-web-list-downloadpresets": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#mod-web-list-downloadpresets", + "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-downloadpresets", "downloadPresets.[table]" ], "mod-web-list-enableclipboard": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#mod-web-list-enableclipboard", + "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-enableclipboard", "enableClipBoard" ], "mod-web-list-hidetables": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#mod-web-list-hidetables", + "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-hidetables", "hideTables" ], "mod-web-list-hidetranslations": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#mod-web-list-hidetranslations", + "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-hidetranslations", "hideTranslations" ], "mod-web-list-itemslimitpertable": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#mod-web-list-itemslimitpertable", + "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-itemslimitpertable", "itemsLimitPerTable" ], "mod-web-list-itemslimitsingletable": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#mod-web-list-itemslimitsingletable", + "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-itemslimitsingletable", "itemsLimitSingleTable" ], "mod-web-list-listonlyinsingletableview": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#mod-web-list-listonlyinsingletableview", + "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-listonlyinsingletableview", "listOnlyInSingleTableView" ], "mod-web-list-newpagewizard-override": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#mod-web-list-newpagewizard-override", + "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-newpagewizard-override", "newPageWizard.override" ], "mod-web-list-nocreaterecordslink": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#mod-web-list-nocreaterecordslink", + "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-nocreaterecordslink", "noCreateRecordsLink" ], "mod-web-list-noexportrecordslinks": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#mod-web-list-noexportrecordslinks", + "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-noexportrecordslinks", "noExportRecordsLinks" ], "mod-web-list-noviewwithdoktypes": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#mod-web-list-noviewwithdoktypes", + "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-noviewwithdoktypes", "noViewWithDokTypes" ], "mod-web-list-table-tablename-hidetable": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#mod-web-list-table-tablename-hidetable", + "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-table-tablename-hidetable", "table.[tableName].hideTable" ], "mod-web-list-table-tablename-displaycolumnselector": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#mod-web-list-table-tablename-displaycolumnselector", + "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-table-tablename-displaycolumnselector", "table.[tableName].displayColumnSelector" ], "mod-web-list-tabledisplayorder": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#mod-web-list-tabledisplayorder", + "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-tabledisplayorder", "tableDisplayOrder.[tableName]" ], "mod-web-list-searchlevel-items": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#mod-web-list-searchlevel-items", + "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-searchlevel-items", "searchLevel.items" ], "mod-web-list-searchlevel-default": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebList.html#mod-web-list-searchlevel-default", + "PageTsconfig\/Mod\/WebList.html#confval-mod-web-list-searchlevel-default", "searchLevel.default" ], "mod-web-view-previewframewidths": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebView.html#mod-web-view-previewframewidths", + "PageTsconfig\/Mod\/WebView.html#confval-mod-web-view-previewframewidths", "previewFrameWidths" ], "mod-web-view-type": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebView.html#mod-web-view-type", + "PageTsconfig\/Mod\/WebView.html#confval-mod-web-view-type", "type" ], "mod-wizards-newcontentelement-wizarditems": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#mod-wizards-newcontentelement-wizarditems", + "PageTsconfig\/Mod\/Wizards.html#confval-mod-wizards-newcontentelement-wizarditems", "newContentElement.wizardItems" ], "mod-wizards-newcontentelement-wizarditems-removeitems": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#mod-wizards-newcontentelement-wizarditems-removeitems", + "PageTsconfig\/Mod\/Wizards.html#confval-mod-wizards-newcontentelement-wizarditems-removeitems", "removeItems" ], "mod-wizards-newcontentelement-wizarditems-group-before": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#mod-wizards-newcontentelement-wizarditems-group-before", + "PageTsconfig\/Mod\/Wizards.html#confval-mod-wizards-newcontentelement-wizarditems-group-before", "[group].before" ], "mod-wizards-newcontentelement-wizarditems-group-after": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#mod-wizards-newcontentelement-wizarditems-group-after", + "PageTsconfig\/Mod\/Wizards.html#confval-mod-wizards-newcontentelement-wizarditems-group-after", "[group].after" ], "mod-wizards-newcontentelement-wizarditems-group-header": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#mod-wizards-newcontentelement-wizarditems-group-header", + "PageTsconfig\/Mod\/Wizards.html#confval-mod-wizards-newcontentelement-wizarditems-group-header", "[group].header" ], "mod-wizards-newcontentelement-wizarditems-group-show": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#mod-wizards-newcontentelement-wizarditems-group-show", + "PageTsconfig\/Mod\/Wizards.html#confval-mod-wizards-newcontentelement-wizarditems-group-show", "[group].show" ], "mod-wizards-newcontentelement-wizarditems-group-elements": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#mod-wizards-newcontentelement-wizarditems-group-elements", + "PageTsconfig\/Mod\/Wizards.html#confval-mod-wizards-newcontentelement-wizarditems-group-elements", "[group].elements" ], "mod-wizards-newcontentelement-wizarditems-group-elements-name": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#mod-wizards-newcontentelement-wizarditems-group-elements-name", + "PageTsconfig\/Mod\/Wizards.html#confval-mod-wizards-newcontentelement-wizarditems-group-elements-name", "[name]" ], "mod-wizards-newcontentelement-wizarditems-group-elements-name-iconidentifier": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#mod-wizards-newcontentelement-wizarditems-group-elements-name-iconidentifier", + "PageTsconfig\/Mod\/Wizards.html#confval-mod-wizards-newcontentelement-wizarditems-group-elements-name-iconidentifier", "iconIdentifier" ], "mod-wizards-newcontentelement-wizarditems-group-elements-name-iconoverlay": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#mod-wizards-newcontentelement-wizarditems-group-elements-name-iconoverlay", + "PageTsconfig\/Mod\/Wizards.html#confval-mod-wizards-newcontentelement-wizarditems-group-elements-name-iconoverlay", "iconOverlay" ], "mod-wizards-newcontentelement-wizarditems-group-elements-name-title": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#mod-wizards-newcontentelement-wizarditems-group-elements-name-title", + "PageTsconfig\/Mod\/Wizards.html#confval-mod-wizards-newcontentelement-wizarditems-group-elements-name-title", "title" ], "mod-wizards-newcontentelement-wizarditems-group-elements-name-description": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#mod-wizards-newcontentelement-wizarditems-group-elements-name-description", + "PageTsconfig\/Mod\/Wizards.html#confval-mod-wizards-newcontentelement-wizarditems-group-elements-name-description", "description" ], "mod-wizards-newcontentelement-wizarditems-group-elements-name-tt-content-defvalues": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#mod-wizards-newcontentelement-wizarditems-group-elements-name-tt-content-defvalues", + "PageTsconfig\/Mod\/Wizards.html#confval-mod-wizards-newcontentelement-wizarditems-group-elements-name-tt-content-defvalues", "tt_content_defValues" ], "mod-wizards-newcontentelement-wizarditems-group-elements-name-saveandclose": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#mod-wizards-newcontentelement-wizarditems-group-elements-name-saveandclose", + "PageTsconfig\/Mod\/Wizards.html#confval-mod-wizards-newcontentelement-wizarditems-group-elements-name-saveandclose", "saveAndClose" ], "mod-wizards-newcontentelement-wizarditems-group-removeitems": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#mod-wizards-newcontentelement-wizarditems-group-removeitems", + "PageTsconfig\/Mod\/Wizards.html#confval-mod-wizards-newcontentelement-wizarditems-group-removeitems", "[group].removeItems" ], "mod-wizards-newrecord-order": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#mod-wizards-newrecord-order", + "PageTsconfig\/Mod\/Wizards.html#confval-mod-wizards-newrecord-order", "newRecord.order" ], "mod-wizards-newrecord-pages": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#mod-wizards-newrecord-pages", + "PageTsconfig\/Mod\/Wizards.html#confval-mod-wizards-newrecord-pages", "newRecord.pages" ], "options-backendlayout-exclude": [ "TypoScript Explained", "main", - "PageTsconfig\/Options.html#options-backendlayout-exclude", + "PageTsconfig\/Options.html#confval-options-backendlayout-exclude", "backendLayout.exclude" ], "options-defaultuploadfolder": [ "TypoScript Explained", "main", - "PageTsconfig\/Options.html#options-defaultuploadfolder", + "PageTsconfig\/Options.html#confval-options-defaultuploadfolder", "defaultUploadFolder" ], "rte-disabled": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#rte-disabled", + "PageTsconfig\/Rte.html#confval-rte-disabled", "disabled" ], "rte-buttons-link-options-removeitems": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#rte-buttons-link-options-removeitems", + "PageTsconfig\/Rte.html#confval-rte-buttons-link-options-removeitems", "buttons.link.options.removeItems" ], "rte-buttons-link-targetselector-disabled": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#rte-buttons-link-targetselector-disabled", + "PageTsconfig\/Rte.html#confval-rte-buttons-link-targetselector-disabled", "buttons.link.targetSelector.disabled" ], "rte-buttons-link-pageidselector-enabled": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#rte-buttons-link-pageidselector-enabled", + "PageTsconfig\/Rte.html#confval-rte-buttons-link-pageidselector-enabled", "buttons.link.pageIdSelector.enabled" ], "rte-buttons-link-queryparametersselector-enabled": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#rte-buttons-link-queryparametersselector-enabled", + "PageTsconfig\/Rte.html#confval-rte-buttons-link-queryparametersselector-enabled", "buttons.link.queryParametersSelector.enabled" ], "rte-buttons-link-relattribute-enabled": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#rte-buttons-link-relattribute-enabled", + "PageTsconfig\/Rte.html#confval-rte-buttons-link-relattribute-enabled", "buttons.link.relAttribute.enabled" ], "rte-buttons-link-properties-class-allowedclasses": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#rte-buttons-link-properties-class-allowedclasses", + "PageTsconfig\/Rte.html#confval-rte-buttons-link-properties-class-allowedclasses", "buttons.link.properties.class.allowedClasses" ], "rte-buttons-link-properties-class-required": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#rte-buttons-link-properties-class-required", + "PageTsconfig\/Rte.html#confval-rte-buttons-link-properties-class-required", "buttons.link.properties.class.required" ], "rte-buttons-link-type-properties-class-required": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#rte-buttons-link-type-properties-class-required", + "PageTsconfig\/Rte.html#confval-rte-buttons-link-type-properties-class-required", "buttons.link.[type].properties.class.required" ], "rte-buttons-link-properties-target-default": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#rte-buttons-link-properties-target-default", + "PageTsconfig\/Rte.html#confval-rte-buttons-link-properties-target-default", "buttons.link.properties.target.default" ], "rte-buttons-link-type-properties-target-default": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#rte-buttons-link-type-properties-target-default", + "PageTsconfig\/Rte.html#confval-rte-buttons-link-type-properties-target-default", "buttons.link.[type].properties.target.default" ], "rte-config-contentslanguagedirection": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#rte-config-contentslanguagedirection", + "PageTsconfig\/Rte.html#confval-rte-config-contentslanguagedirection", "config.contentsLanguageDirection" ], "rte-proc-allowedclasses": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#rte-proc-allowedclasses", + "PageTsconfig\/Rte.html#confval-rte-proc-allowedclasses", "proc.allowedClasses" ], "rte-proc-allowtags": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#rte-proc-allowtags", + "PageTsconfig\/Rte.html#confval-rte-proc-allowtags", "proc.allowTags" ], "rte-proc-allowtagsoutside": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#rte-proc-allowtagsoutside", + "PageTsconfig\/Rte.html#confval-rte-proc-allowtagsoutside", "proc.allowTagsOutside" ], "rte-proc-blockelementlist": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#rte-proc-blockelementlist", + "PageTsconfig\/Rte.html#confval-rte-proc-blockelementlist", "proc.blockElementList" ], "rte-proc-denytags": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#rte-proc-denytags", + "PageTsconfig\/Rte.html#confval-rte-proc-denytags", "proc.denyTags" ], "rte-proc-entryhtmlparser-db": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#rte-proc-entryhtmlparser-db", + "PageTsconfig\/Rte.html#confval-rte-proc-entryhtmlparser-db", "proc.entryHTMLparser_db" ], "rte-proc-entryhtmlparser-rte": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#rte-proc-entryhtmlparser-rte", + "PageTsconfig\/Rte.html#confval-rte-proc-entryhtmlparser-rte", "proc.entryHTMLparser_rte" ], "rte-proc-exithtmlparser-db": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#rte-proc-exithtmlparser-db", + "PageTsconfig\/Rte.html#confval-rte-proc-exithtmlparser-db", "proc.exitHTMLparser_db" ], "rte-proc-exithtmlparser-rte": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#rte-proc-exithtmlparser-rte", + "PageTsconfig\/Rte.html#confval-rte-proc-exithtmlparser-rte", "proc.exitHTMLparser_rte" ], "rte-proc-htmlparser-db": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#rte-proc-htmlparser-db", + "PageTsconfig\/Rte.html#confval-rte-proc-htmlparser-db", "proc.HTMLparser_db" ], "rte-proc-htmlparser-rte": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#rte-proc-htmlparser-rte", + "PageTsconfig\/Rte.html#confval-rte-proc-htmlparser-rte", "proc.HTMLparser_rte" ], "rte-proc-overrulemode": [ "TypoScript Explained", "main", - "PageTsconfig\/Rte.html#rte-proc-overrulemode", + "PageTsconfig\/Rte.html#confval-rte-proc-overrulemode", "proc.overruleMode" ], "tceform-additems": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-additems", + "PageTsconfig\/TceForm.html#confval-tceform-additems", "addItems" ], "tceform-altlabels": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-altlabels", + "PageTsconfig\/TceForm.html#confval-tceform-altlabels", "altLabels" ], "tceform-page-tsconfig-id": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-page-tsconfig-id", + "PageTsconfig\/TceForm.html#confval-tceform-page-tsconfig-id", "PAGE_TSCONFIG_ID" ], "tceform-page-tsconfig-idlist": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-page-tsconfig-idlist", + "PageTsconfig\/TceForm.html#confval-tceform-page-tsconfig-idlist", "PAGE_TSCONFIG_IDLIST" ], "tceform-page-tsconfig-str": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-page-tsconfig-str", + "PageTsconfig\/TceForm.html#confval-tceform-page-tsconfig-str", "PAGE_TSCONFIG_STR" ], "tceform-colorpalette": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-colorpalette", + "PageTsconfig\/TceForm.html#confval-tceform-colorpalette", "colorPalette" ], "tceform-config": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-config", + "PageTsconfig\/TceForm.html#confval-tceform-config", "config" ], "tceform-config-treeconfig": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-config-treeconfig", + "PageTsconfig\/TceForm.html#confval-tceform-config-treeconfig", "config.treeConfig" ], "tceform-description": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-description", + "PageTsconfig\/TceForm.html#confval-tceform-description", "description" ], "tceform-disabled": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-disabled", + "PageTsconfig\/TceForm.html#confval-tceform-disabled", "disabled" ], "tceform-disablenomatchingvalueelement": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-disablenomatchingvalueelement", + "PageTsconfig\/TceForm.html#confval-tceform-disablenomatchingvalueelement", "disableNoMatchingValueElement" ], "tceform-filefolderconfig": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-filefolderconfig", + "PageTsconfig\/TceForm.html#confval-tceform-filefolderconfig", "fileFolderConfig" ], "tceform-itemsprocfunc": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-itemsprocfunc", + "PageTsconfig\/TceForm.html#confval-tceform-itemsprocfunc", "itemsProcFunc" ], "tceform-keepitems": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-keepitems", + "PageTsconfig\/TceForm.html#confval-tceform-keepitems", "keepItems" ], "tceform-label": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-label", + "PageTsconfig\/TceForm.html#confval-tceform-label", "label" ], "tceform-nomatchingvalue-label": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-nomatchingvalue-label", + "PageTsconfig\/TceForm.html#confval-tceform-nomatchingvalue-label", "noMatchingValue_label" ], "tceform-removeitems": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-removeitems", + "PageTsconfig\/TceForm.html#confval-tceform-removeitems", "removeItems" ], "tceform-sheetdescription": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-sheetdescription", + "PageTsconfig\/TceForm.html#confval-tceform-sheetdescription", "sheetDescription" ], "tceform-sheetshortdescr": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-sheetshortdescr", + "PageTsconfig\/TceForm.html#confval-tceform-sheetshortdescr", "sheetShortDescr" ], "tceform-sheettitle": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-sheettitle", + "PageTsconfig\/TceForm.html#confval-tceform-sheettitle", "sheetTitle" ], "tceform-suggest-additionalsearchfields": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-suggest-additionalsearchfields", + "PageTsconfig\/TceForm.html#confval-tceform-suggest-additionalsearchfields", "suggest.additionalSearchFields" ], "tceform-suggest-addwhere": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-suggest-addwhere", + "PageTsconfig\/TceForm.html#confval-tceform-suggest-addwhere", "suggest.addWhere" ], "tceform-suggest-cssclass": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-suggest-cssclass", + "PageTsconfig\/TceForm.html#confval-tceform-suggest-cssclass", "suggest.cssClass" ], "tceform-suggest-hide": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-suggest-hide", + "PageTsconfig\/TceForm.html#confval-tceform-suggest-hide", "suggest.hide" ], "tceform-suggest-maxpathtitlelength": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-suggest-maxpathtitlelength", + "PageTsconfig\/TceForm.html#confval-tceform-suggest-maxpathtitlelength", "suggest.maxPathTitleLength" ], "tceform-suggest-minimumcharacters": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-suggest-minimumcharacters", + "PageTsconfig\/TceForm.html#confval-tceform-suggest-minimumcharacters", "suggest.minimumCharacters" ], "tceform-suggest-piddepth": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-suggest-piddepth", + "PageTsconfig\/TceForm.html#confval-tceform-suggest-piddepth", "suggest.pidDepth" ], "tceform-suggest-pidlist": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-suggest-pidlist", + "PageTsconfig\/TceForm.html#confval-tceform-suggest-pidlist", "suggest.pidList" ], "tceform-suggest-receiverclass": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-suggest-receiverclass", + "PageTsconfig\/TceForm.html#confval-tceform-suggest-receiverclass", "suggest.receiverClass" ], "tceform-suggest-renderfunc": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-suggest-renderfunc", + "PageTsconfig\/TceForm.html#confval-tceform-suggest-renderfunc", "suggest.renderFunc" ], "tceform-suggest-searchcondition": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-suggest-searchcondition", + "PageTsconfig\/TceForm.html#confval-tceform-suggest-searchcondition", "suggest.searchCondition" ], "tceform-suggest-searchwholephrase": [ "TypoScript Explained", "main", - "PageTsconfig\/TceForm.html#tceform-suggest-searchwholephrase", + "PageTsconfig\/TceForm.html#confval-tceform-suggest-searchwholephrase", "suggest.searchWholePhrase" ], "tcemain-clearcachecmd": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#tcemain-clearcachecmd", + "PageTsconfig\/TceMain.html#confval-tcemain-clearcachecmd", "clearCacheCmd" ], "tcemain-clearcache-disable": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#tcemain-clearcache-disable", + "PageTsconfig\/TceMain.html#confval-tcemain-clearcache-disable", "clearCache_disable" ], "tcemain-clearcache-pagegrandparent": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#tcemain-clearcache-pagegrandparent", + "PageTsconfig\/TceMain.html#confval-tcemain-clearcache-pagegrandparent", "clearCache_pageGrandParent" ], "tcemain-clearcache-pagesiblingchildren": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#tcemain-clearcache-pagesiblingchildren", + "PageTsconfig\/TceMain.html#confval-tcemain-clearcache-pagesiblingchildren", "clearCache_pageSiblingChildren" ], "tcemain-disablehideatcopy": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#tcemain-disablehideatcopy", + "PageTsconfig\/TceMain.html#confval-tcemain-disablehideatcopy", "disableHideAtCopy" ], "tcemain-disableprependatcopy": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#tcemain-disableprependatcopy", + "PageTsconfig\/TceMain.html#confval-tcemain-disableprependatcopy", "disablePrependAtCopy" ], "tcemain-linkhandler": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#tcemain-linkhandler", + "PageTsconfig\/TceMain.html#confval-tcemain-linkhandler", "linkHandler" ], "tcemain-permissions-everybody": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#tcemain-permissions-everybody", + "PageTsconfig\/TceMain.html#confval-tcemain-permissions-everybody", "permissions.everybody" ], "tcemain-permissions-group": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#tcemain-permissions-group", + "PageTsconfig\/TceMain.html#confval-tcemain-permissions-group", "permissions.group" ], "tcemain-permissions-groupid": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#tcemain-permissions-groupid", + "PageTsconfig\/TceMain.html#confval-tcemain-permissions-groupid", "permissions.groupid" ], "tcemain-permissions-user": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#tcemain-permissions-user", + "PageTsconfig\/TceMain.html#confval-tcemain-permissions-user", "permissions.user" ], "tcemain-permissions-userid": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#tcemain-permissions-userid", + "PageTsconfig\/TceMain.html#confval-tcemain-permissions-userid", "permissions.userid" ], "tcemain-preview": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#tcemain-preview", + "PageTsconfig\/TceMain.html#confval-tcemain-preview", "preview" ], "tcemain-translatetomessage": [ "TypoScript Explained", "main", - "PageTsconfig\/TceMain.html#tcemain-translatetomessage", + "PageTsconfig\/TceMain.html#confval-tcemain-translatetomessage", "translateToMessage" ], "data-type-boolean": [ "TypoScript Explained", "main", - "Syntax\/StringFormats\/Index.html#data-type-boolean", + "Syntax\/StringFormats\/Index.html#confval-data-type-boolean", "boolean" ], "data-type-date-conf": [ "TypoScript Explained", "main", - "Syntax\/StringFormats\/Index.html#data-type-date-conf", + "Syntax\/StringFormats\/Index.html#confval-data-type-date-conf", "date-conf" ], "data-type-function-name": [ "TypoScript Explained", "main", - "Syntax\/StringFormats\/Index.html#data-type-function-name", + "Syntax\/StringFormats\/Index.html#confval-data-type-function-name", "function name" ], "data-type-integer": [ "TypoScript Explained", "main", - "Syntax\/StringFormats\/Index.html#data-type-integer", + "Syntax\/StringFormats\/Index.html#confval-data-type-integer", "integer" ], "data-type-path": [ "TypoScript Explained", "main", - "Syntax\/StringFormats\/Index.html#data-type-path", + "Syntax\/StringFormats\/Index.html#confval-data-type-path", "path" ], "data-type-resource": [ "TypoScript Explained", "main", - "Syntax\/StringFormats\/Index.html#data-type-resource", + "Syntax\/StringFormats\/Index.html#confval-data-type-resource", "resource" ], "data-type-string": [ "TypoScript Explained", "main", - "Syntax\/StringFormats\/Index.html#data-type-string", + "Syntax\/StringFormats\/Index.html#confval-data-type-string", "string" ], "config-absrefprefix": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-absrefprefix", + "TopLevelObjects\/Config.html#confval-config-absrefprefix", "absRefPrefix" ], "config-additionalheaders": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-additionalheaders", + "TopLevelObjects\/Config.html#confval-config-additionalheaders", "additionalHeaders" ], "config-admpanel": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-admpanel", + "TopLevelObjects\/Config.html#confval-config-admpanel", "admPanel" ], "config-atagparams": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-atagparams", + "TopLevelObjects\/Config.html#confval-config-atagparams", "ATagParams" ], "config-cache": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-cache", + "TopLevelObjects\/Config.html#confval-config-cache", "cache" ], "config-cache-clearatmidnight": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-cache-clearatmidnight", + "TopLevelObjects\/Config.html#confval-config-cache-clearatmidnight", "cache_clearAtMidnight" ], "config-cache-period": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-cache-period", + "TopLevelObjects\/Config.html#confval-config-cache-period", "cache_period" ], "config-compresscss": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-compresscss", + "TopLevelObjects\/Config.html#confval-config-compresscss", "compressCss" ], "config-compressjs": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-compressjs", + "TopLevelObjects\/Config.html#confval-config-compressjs", "compressJs" ], "config-concatenatecss": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-concatenatecss", + "TopLevelObjects\/Config.html#confval-config-concatenatecss", "concatenateCss" ], "config-concatenatejs": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-concatenatejs", + "TopLevelObjects\/Config.html#confval-config-concatenatejs", "concatenateJs" ], "config-contentobjectexceptionhandler": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-contentobjectexceptionhandler", + "TopLevelObjects\/Config.html#confval-config-contentobjectexceptionhandler", "contentObjectExceptionHandler" ], "config-debug": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-debug", + "TopLevelObjects\/Config.html#confval-config-debug", "debug" ], "config-disableallheadercode": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-disableallheadercode", + "TopLevelObjects\/Config.html#confval-config-disableallheadercode", "disableAllHeaderCode" ], "config-disablebodytag": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-disablebodytag", + "TopLevelObjects\/Config.html#confval-config-disablebodytag", "disableBodyTag" ], "config-disablecanonical": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-disablecanonical", + "TopLevelObjects\/Config.html#confval-config-disablecanonical", "disableCanonical" ], "config-disablehreflang": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-disablehreflang", + "TopLevelObjects\/Config.html#confval-config-disablehreflang", "disableHrefLang" ], "config-disableprefixcomment": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-disableprefixcomment", + "TopLevelObjects\/Config.html#confval-config-disableprefixcomment", "disablePrefixComment" ], "config-disablepreviewnotification": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-disablepreviewnotification", + "TopLevelObjects\/Config.html#confval-config-disablepreviewnotification", "disablePreviewNotification" ], "config-disablelanguageheader": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-disablelanguageheader", + "TopLevelObjects\/Config.html#confval-config-disablelanguageheader", "disableLanguageHeader" ], "config-doctype": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-doctype", + "TopLevelObjects\/Config.html#confval-config-doctype", "doctype" ], "config-enablecontentlengthheader": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-enablecontentlengthheader", + "TopLevelObjects\/Config.html#confval-config-enablecontentlengthheader", "enableContentLengthHeader" ], "config-exttarget": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-exttarget", + "TopLevelObjects\/Config.html#confval-config-exttarget", "extTarget" ], "config-filetarget": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-filetarget", + "TopLevelObjects\/Config.html#confval-config-filetarget", "fileTarget" ], "config-forceabsoluteurls": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-forceabsoluteurls", + "TopLevelObjects\/Config.html#confval-config-forceabsoluteurls", "forceAbsoluteUrls" ], "config-forcetypevalue": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-forcetypevalue", + "TopLevelObjects\/Config.html#confval-config-forcetypevalue", "forceTypeValue" ], "config-headercomment": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-headercomment", + "TopLevelObjects\/Config.html#confval-config-headercomment", "headerComment" ], "config-htmltag-attributes": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-htmltag-attributes", + "TopLevelObjects\/Config.html#confval-config-htmltag-attributes", "htmlTag.attributes" ], "config-htmltag-setparams": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-htmltag-setparams", + "TopLevelObjects\/Config.html#confval-config-htmltag-setparams", "htmlTag_setParams" ], "config-htmltag-stdwrap": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-htmltag-stdwrap", + "TopLevelObjects\/Config.html#confval-config-htmltag-stdwrap", "htmlTag_stdWrap" ], "config-index-descrlgd": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-index-descrlgd", + "TopLevelObjects\/Config.html#confval-config-index-descrlgd", "index_descrLgd" ], "config-index-enable": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-index-enable", + "TopLevelObjects\/Config.html#confval-config-index-enable", "index_enable" ], "config-index-externals": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-index-externals", + "TopLevelObjects\/Config.html#confval-config-index-externals", "index_externals" ], "config-index-metatags": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-index-metatags", + "TopLevelObjects\/Config.html#confval-config-index-metatags", "index_metatags" ], "config-inlinestyle2tempfile": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-inlinestyle2tempfile", + "TopLevelObjects\/Config.html#confval-config-inlinestyle2tempfile", "inlineStyle2TempFile" ], "config-inttarget": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-inttarget", + "TopLevelObjects\/Config.html#confval-config-inttarget", "intTarget" ], "config-linkvars": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-linkvars", + "TopLevelObjects\/Config.html#confval-config-linkvars", "linkVars" ], "config-message-preview": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-message-preview", + "TopLevelObjects\/Config.html#confval-config-message-preview", "message_preview" ], "config-message-preview-workspace": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-message-preview-workspace", + "TopLevelObjects\/Config.html#confval-config-message-preview-workspace", "message_preview_workspace" ], "config-movejsfromheadertofooter": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-movejsfromheadertofooter", + "TopLevelObjects\/Config.html#confval-config-movejsfromheadertofooter", "moveJsFromHeaderToFooter" ], "config-mp-defaults": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-mp-defaults", + "TopLevelObjects\/Config.html#confval-config-mp-defaults", "MP_defaults" ], "config-mp-disabletypolinkclosestmpvalue": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-mp-disabletypolinkclosestmpvalue", + "TopLevelObjects\/Config.html#confval-config-mp-disabletypolinkclosestmpvalue", "MP_disableTypolinkClosestMPvalue" ], "config-mp-maprootpoints": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-mp-maprootpoints", + "TopLevelObjects\/Config.html#confval-config-mp-maprootpoints", "MP_mapRootPoints" ], "config-namespaces": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-namespaces", + "TopLevelObjects\/Config.html#confval-config-namespaces", "namespaces.[identifier]" ], "config-no-cache": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-no-cache", + "TopLevelObjects\/Config.html#confval-config-no-cache", "no_cache" ], "config-nopagetitle": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-nopagetitle", + "TopLevelObjects\/Config.html#confval-config-nopagetitle", "noPageTitle" ], "config-pagerenderertemplatefile": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-pagerenderertemplatefile", + "TopLevelObjects\/Config.html#confval-config-pagerenderertemplatefile", "pageRendererTemplateFile" ], "config-pagetitle": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-pagetitle", + "TopLevelObjects\/Config.html#confval-config-pagetitle", "pageTitle" ], "config-pagetitlefirst": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-pagetitlefirst", + "TopLevelObjects\/Config.html#confval-config-pagetitlefirst", "pageTitleFirst" ], "config-pagetitleproviders": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-pagetitleproviders", + "TopLevelObjects\/Config.html#confval-config-pagetitleproviders", "pageTitleProviders" ], "config-pagetitleseparator": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-pagetitleseparator", + "TopLevelObjects\/Config.html#confval-config-pagetitleseparator", "pageTitleSeparator" ], "config-recordlinks": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-recordlinks", + "TopLevelObjects\/Config.html#confval-config-recordlinks", "recordLinks" ], "config-removedefaultcss": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-removedefaultcss", + "TopLevelObjects\/Config.html#confval-config-removedefaultcss", "removeDefaultCss" ], "config-removedefaultjs": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-removedefaultjs", + "TopLevelObjects\/Config.html#confval-config-removedefaultjs", "removeDefaultJS" ], "config-sendcacheheaders": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-sendcacheheaders", + "TopLevelObjects\/Config.html#confval-config-sendcacheheaders", "sendCacheHeaders" ], "config-sendcacheheadersforsharedcaches": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-sendcacheheadersforsharedcaches", + "TopLevelObjects\/Config.html#confval-config-sendcacheheadersforsharedcaches", "sendCacheHeadersForSharedCaches" ], "config-showwebsitetitle": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-showwebsitetitle", + "TopLevelObjects\/Config.html#confval-config-showwebsitetitle", "showWebsiteTitle" ], "config-spamprotectemailaddresses": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-spamprotectemailaddresses", + "TopLevelObjects\/Config.html#confval-config-spamprotectemailaddresses", "spamProtectEmailAddresses" ], "config-spamprotectemailaddresses-atsubst": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-spamprotectemailaddresses-atsubst", + "TopLevelObjects\/Config.html#confval-config-spamprotectemailaddresses-atsubst", "spamProtectEmailAddresses_atSubst" ], "config-spamprotectemailaddresses-lastdotsubst": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-spamprotectemailaddresses-lastdotsubst", + "TopLevelObjects\/Config.html#confval-config-spamprotectemailaddresses-lastdotsubst", "spamProtectEmailAddresses_lastDotSubst" ], "config-tx-extension-key-with-no-underscores": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-tx-extension-key-with-no-underscores", + "TopLevelObjects\/Config.html#confval-config-tx-extension-key-with-no-underscores", "tx_[extension key with no underscores]_[*]" ], "config-typolinklinkaccessrestrictedpages": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-typolinklinkaccessrestrictedpages", + "TopLevelObjects\/Config.html#confval-config-typolinklinkaccessrestrictedpages", "typolinkLinkAccessRestrictedPages" ], "config-typolinklinkaccessrestrictedpages-atagparams": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-typolinklinkaccessrestrictedpages-atagparams", + "TopLevelObjects\/Config.html#confval-config-typolinklinkaccessrestrictedpages-atagparams", "typolinkLinkAccessRestrictedPages.ATagParams" ], "config-typolinklinkaccessrestrictedpages-addparams": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-typolinklinkaccessrestrictedpages-addparams", + "TopLevelObjects\/Config.html#confval-config-typolinklinkaccessrestrictedpages-addparams", "typolinkLinkAccessRestrictedPages_addParams" ], "config-typolinklinkaccessrestrictedpages-xmlprologue": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-typolinklinkaccessrestrictedpages-xmlprologue", + "TopLevelObjects\/Config.html#confval-config-typolinklinkaccessrestrictedpages-xmlprologue", "typolinkLinkAccessRestrictedPages_xmlprologue" ], "module-view-templaterootpaths": [ "TypoScript Explained", "main", - "TopLevelObjects\/Module.html#module-view-templaterootpaths", + "TopLevelObjects\/Module.html#confval-module-view-templaterootpaths", "view.templateRootPaths.[array]" ], "module-view-partialrootpaths": [ "TypoScript Explained", "main", - "TopLevelObjects\/Module.html#module-view-partialrootpaths", + "TopLevelObjects\/Module.html#confval-module-view-partialrootpaths", "view.partialRootPaths.[array]" ], "module-settings": [ "TypoScript Explained", "main", - "TopLevelObjects\/Module.html#module-settings", + "TopLevelObjects\/Module.html#confval-module-settings", "settings" ], "tlo-lib": [ "TypoScript Explained", "main", - "TopLevelObjects\/Other.html#tlo-lib", + "TopLevelObjects\/Other.html#confval-tlo-lib", "lib" ], "tlo-styles": [ "TypoScript Explained", "main", - "TopLevelObjects\/Other.html#tlo-styles", + "TopLevelObjects\/Other.html#confval-tlo-styles", "styles" ], "tlo-resources": [ "TypoScript Explained", "main", - "TopLevelObjects\/Other.html#tlo-resources", + "TopLevelObjects\/Other.html#confval-tlo-resources", "resources" ], "tlo-sitetitle": [ "TypoScript Explained", "main", - "TopLevelObjects\/Other.html#tlo-sitetitle", + "TopLevelObjects\/Other.html#confval-tlo-sitetitle", "sitetitle" ], "page-array": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-array", + "TopLevelObjects\/Page\/Index.html#confval-page-array", "1,2,3,4..." ], "page-bodytag": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-bodytag", + "TopLevelObjects\/Page\/Index.html#confval-page-bodytag", "bodyTag" ], "page-bodytagadd": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-bodytagadd", + "TopLevelObjects\/Page\/Index.html#confval-page-bodytagadd", "bodyTagAdd" ], "page-bodytagcobject": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-bodytagcobject", + "TopLevelObjects\/Page\/Index.html#confval-page-bodytagcobject", "bodyTagCObject" ], "page-config": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-config", + "TopLevelObjects\/Page\/Index.html#confval-page-config", "config" ], "page-cssinline": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-cssinline", + "TopLevelObjects\/Page\/Index.html#confval-page-cssinline", "cssInline.[array]" ], "page-footerdata": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-footerdata", + "TopLevelObjects\/Page\/Index.html#confval-page-footerdata", "footerData.[array]" ], "page-headerdata": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-headerdata", + "TopLevelObjects\/Page\/Index.html#confval-page-headerdata", "headerData.[array]" ], "page-headtag": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-headtag", + "TopLevelObjects\/Page\/Index.html#confval-page-headtag", "headTag" ], "page-includecss": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-includecss", + "TopLevelObjects\/Page\/Index.html#confval-page-includecss", "includeCSS.[array]" ], "page-includecsslibs": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-includecsslibs", + "TopLevelObjects\/Page\/Index.html#confval-page-includecsslibs", "includeCSSLibs.[array]" ], "page-includejs": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-includejs", + "TopLevelObjects\/Page\/Index.html#confval-page-includejs", "includeJS.[array]" ], "page-includejsfooter": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-includejsfooter", + "TopLevelObjects\/Page\/Index.html#confval-page-includejsfooter", "includeJSFooter.[array]" ], "page-includejsfooterlibs": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-includejsfooterlibs", + "TopLevelObjects\/Page\/Index.html#confval-page-includejsfooterlibs", "includeJSFooterlibs.[array]" ], "page-includejslibs": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-includejslibs", + "TopLevelObjects\/Page\/Index.html#confval-page-includejslibs", "includeJSLibs.[array]" ], "page-inlinelanguagelabelfiles": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-inlinelanguagelabelfiles", + "TopLevelObjects\/Page\/Index.html#confval-page-inlinelanguagelabelfiles", "inlineLanguageLabelFiles" ], "page-inlinesettings": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-inlinesettings", + "TopLevelObjects\/Page\/Index.html#confval-page-inlinesettings", "inlineSettings" ], "page-jsfooterinline": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-jsfooterinline", + "TopLevelObjects\/Page\/Index.html#confval-page-jsfooterinline", "jsFooterInline.[array]" ], "page-jsinline": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-jsinline", + "TopLevelObjects\/Page\/Index.html#confval-page-jsinline", "jsInline.[array]" ], "page-meta": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-meta", + "TopLevelObjects\/Page\/Index.html#confval-page-meta", "meta" ], "page-shortcuticon": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-shortcuticon", + "TopLevelObjects\/Page\/Index.html#confval-page-shortcuticon", "shortcutIcon" ], "page-stdwrap": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-stdwrap", + "TopLevelObjects\/Page\/Index.html#confval-page-stdwrap", "stdWrap" ], "page-typenum": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-typenum", + "TopLevelObjects\/Page\/Index.html#confval-page-typenum", "typeNum" ], "page-wrap": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-wrap", + "TopLevelObjects\/Page\/Index.html#confval-page-wrap", "wrap" ], "plugin-userfunc": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-userfunc", + "TopLevelObjects\/Plugin.html#confval-plugin-userfunc", "userFunc" ], "plugin-css-default-style": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-css-default-style", + "TopLevelObjects\/Plugin.html#confval-plugin-css-default-style", "_CSS_DEFAULT_STYLE" ], "plugin-ignoreflexformsettingsifempty": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-ignoreflexformsettingsifempty", + "TopLevelObjects\/Plugin.html#confval-plugin-ignoreflexformsettingsifempty", "ignoreFlexFormSettingsIfEmpty" ], "plugin-persistence": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-persistence", + "TopLevelObjects\/Plugin.html#confval-plugin-persistence", "persistence" ], "plugin-persistence-enableautomaticcacheclearing": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-persistence-enableautomaticcacheclearing", + "TopLevelObjects\/Plugin.html#confval-plugin-persistence-enableautomaticcacheclearing", "persistence.enableAutomaticCacheClearing" ], "plugin-persistence-storagepid": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-persistence-storagepid", + "TopLevelObjects\/Plugin.html#confval-plugin-persistence-storagepid", "persistence.storagePid" ], "plugin-persistence-classes-classname-newrecordstoragepid": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-persistence-classes-classname-newrecordstoragepid", + "TopLevelObjects\/Plugin.html#confval-plugin-persistence-classes-classname-newrecordstoragepid", "persistence.classes.[classname].newRecordStoragePid" ], "plugin-persistence-recursive": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-persistence-recursive", + "TopLevelObjects\/Plugin.html#confval-plugin-persistence-recursive", "persistence.recursive" ], "plugin-view": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-view", + "TopLevelObjects\/Plugin.html#confval-plugin-view", "view.[settings]" ], "plugin-view-layoutrootpaths": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-view-layoutrootpaths", + "TopLevelObjects\/Plugin.html#confval-plugin-view-layoutrootpaths", "view.layoutRootPaths.[array]" ], "plugin-view-partialrootpaths": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-view-partialrootpaths", + "TopLevelObjects\/Plugin.html#confval-plugin-view-partialrootpaths", "view.partialRootPaths.[array]" ], "plugin-view-templaterootpaths": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-view-templaterootpaths", + "TopLevelObjects\/Plugin.html#confval-plugin-view-templaterootpaths", "view.templateRootPaths.[array]" ], "plugin-view-pluginnamespace": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-view-pluginnamespace", + "TopLevelObjects\/Plugin.html#confval-plugin-view-pluginnamespace", "view.pluginNamespace.[array]" ], "plugin-mvc": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-mvc", + "TopLevelObjects\/Plugin.html#confval-plugin-mvc", "mvc.[setting]" ], "plugin-mvc-calldefaultactionifactioncantberesolved": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-mvc-calldefaultactionifactioncantberesolved", + "TopLevelObjects\/Plugin.html#confval-plugin-mvc-calldefaultactionifactioncantberesolved", "mvc.callDefaultActionIfActionCantBeResolved" ], "plugin-mvc-throwpagenotfoundexceptionifactioncantberesolved": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-mvc-throwpagenotfoundexceptionifactioncantberesolved", + "TopLevelObjects\/Plugin.html#confval-plugin-mvc-throwpagenotfoundexceptionifactioncantberesolved", "mvc.throwPageNotFoundExceptionIfActionCantBeResolved" ], "plugin-format": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-format", + "TopLevelObjects\/Plugin.html#confval-plugin-format", "format" ], "plugin-local-lang": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-local-lang", + "TopLevelObjects\/Plugin.html#confval-plugin-local-lang", "_LOCAL_LANG.[lang-key].[label-key]" ], "plugin-settings": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-settings", + "TopLevelObjects\/Plugin.html#confval-plugin-settings", "settings.[setting]" ], "user-auth-be-redirecttourl": [ "TypoScript Explained", "main", - "UserTsconfig\/Auth.html#user-auth-be-redirecttourl", + "UserTsconfig\/Auth.html#confval-user-auth-be-redirecttourl", "auth.BE.redirectToURL" ], "user-auth-mfa-required": [ "TypoScript Explained", "main", - "UserTsconfig\/Auth.html#user-auth-mfa-required", + "UserTsconfig\/Auth.html#confval-user-auth-mfa-required", "auth.mfa.required" ], "auth-mfa-disableproviders": [ "TypoScript Explained", "main", - "UserTsconfig\/Auth.html#auth-mfa-disableproviders", + "UserTsconfig\/Auth.html#confval-auth-mfa-disableproviders", "auth.mfa.disableProviders" ], "auth-mfa-recommendedprovider": [ "TypoScript Explained", "main", - "UserTsconfig\/Auth.html#auth-mfa-recommendedprovider", + "UserTsconfig\/Auth.html#confval-auth-mfa-recommendedprovider", "auth.mfa.recommendedProvider" ], "useroptions-additionalpreviewlanguages": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-additionalpreviewlanguages", + "UserTsconfig\/Options.html#confval-useroptions-additionalpreviewlanguages", "additionalPreviewLanguages" ], "useroptions-alertpopups": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-alertpopups", + "UserTsconfig\/Options.html#confval-useroptions-alertpopups", "alertPopups" ], "useroptions-bookmarkgroups": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-bookmarkgroups", + "UserTsconfig\/Options.html#confval-useroptions-bookmarkgroups", "bookmarkGroups" ], "useroptions-clearcache": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-clearcache", + "UserTsconfig\/Options.html#confval-useroptions-clearcache", "clearCache" ], "useroptions-clearcache-all": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-clearcache-all", + "UserTsconfig\/Options.html#confval-useroptions-clearcache-all", "all" ], "useroptions-clearcache-pages": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-clearcache-pages", + "UserTsconfig\/Options.html#confval-useroptions-clearcache-pages", "pages" ], "useroptions-clipboardnumberpads": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-clipboardnumberpads", + "UserTsconfig\/Options.html#confval-useroptions-clipboardnumberpads", "clipboardNumberPads" ], "useroptions-contextmenu-key-disableitems": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-contextmenu-key-disableitems", + "UserTsconfig\/Options.html#confval-useroptions-contextmenu-key-disableitems", "contextMenu.table.[tableName][.context].disableItems" ], "useroptions-dashboard": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-dashboard", + "UserTsconfig\/Options.html#confval-useroptions-dashboard", "dashboard" ], "useroptions-dashboard-dashboardpresetsfornewusers": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-dashboard-dashboardpresetsfornewusers", + "UserTsconfig\/Options.html#confval-useroptions-dashboard-dashboardpresetsfornewusers", "dashboardPresetsForNewUsers" ], "useroptions-defaultresourcesviewmode": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-defaultresourcesviewmode", + "UserTsconfig\/Options.html#confval-useroptions-defaultresourcesviewmode", "defaultResourcesViewMode" ], "useroptions-defaultuploadfolder": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-defaultuploadfolder", + "UserTsconfig\/Options.html#confval-useroptions-defaultuploadfolder", "defaultUploadFolder" ], "useroptions-disabledelete": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-disabledelete", + "UserTsconfig\/Options.html#confval-useroptions-disabledelete", "disableDelete" ], "useroptions-dontmountadminmounts": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-dontmountadminmounts", + "UserTsconfig\/Options.html#confval-useroptions-dontmountadminmounts", "dontMountAdminMounts" ], "useroptions-enablebookmarks": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-enablebookmarks", + "UserTsconfig\/Options.html#confval-useroptions-enablebookmarks", "enableBookmarks" ], "useroptions-file-list": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-file-list", + "UserTsconfig\/Options.html#confval-useroptions-file-list", "file_list" ], "useroptions-enableclipboard": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-enableclipboard", + "UserTsconfig\/Options.html#confval-useroptions-enableclipboard", "enableClipBoard" ], "useroptions-file-list-displaycolumnselector": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-file-list-displaycolumnselector", + "UserTsconfig\/Options.html#confval-useroptions-file-list-displaycolumnselector", "displayColumnSelector" ], "useroptions-file-list-enabledisplaythumbnails": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-file-list-enabledisplaythumbnails", + "UserTsconfig\/Options.html#confval-useroptions-file-list-enabledisplaythumbnails", "file_list.enableDisplayThumbnails" ], "useroptions-file-list-filesperpage": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-file-list-filesperpage", + "UserTsconfig\/Options.html#confval-useroptions-file-list-filesperpage", "filesPerPage" ], "useroptions-useroptions-file-list-primaryactions": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-useroptions-file-list-primaryactions", + "UserTsconfig\/Options.html#confval-useroptions-useroptions-file-list-primaryactions", "primaryActions" ], "useroptions-file-list-thumbnail-height": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-file-list-thumbnail-height", + "UserTsconfig\/Options.html#confval-useroptions-file-list-thumbnail-height", "thumbnail.height" ], "useroptions-file-list-thumbnail-width": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-file-list-thumbnail-width", + "UserTsconfig\/Options.html#confval-useroptions-file-list-thumbnail-width", "thumbnail.width" ], "useroptions-file-list-uploader-defaultaction": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-file-list-uploader-defaultaction", + "UserTsconfig\/Options.html#confval-useroptions-file-list-uploader-defaultaction", "uploader.defaultAction" ], "useroptions-foldertree": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-foldertree", + "UserTsconfig\/Options.html#confval-useroptions-foldertree", "folderTree" ], "useroptions-foldertree-altelementbrowsermountpoints": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-foldertree-altelementbrowsermountpoints", + "UserTsconfig\/Options.html#confval-useroptions-foldertree-altelementbrowsermountpoints", "altElementBrowserMountPoints" ], "useroptions-foldertree-uploadfieldsinlinkbrowser": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-foldertree-uploadfieldsinlinkbrowser", + "UserTsconfig\/Options.html#confval-useroptions-foldertree-uploadfieldsinlinkbrowser", "uploadFieldsInLinkBrowser" ], "useroptions-hidemodules": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-hidemodules", + "UserTsconfig\/Options.html#confval-useroptions-hidemodules", "hideModules" ], "hiderecords": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#hiderecords", + "UserTsconfig\/Options.html#confval-hiderecords", "hideRecords" ], "useroptions-hiderecords-pages": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-hiderecords-pages", + "UserTsconfig\/Options.html#confval-useroptions-hiderecords-pages", "pages" ], "useroptions-impexp": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-impexp", + "UserTsconfig\/Options.html#confval-useroptions-impexp", "impexp" ], "useroptions-impexp-enableexportfornonadminuser": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-impexp-enableexportfornonadminuser", + "UserTsconfig\/Options.html#confval-useroptions-impexp-enableexportfornonadminuser", "enableExportForNonAdminUser" ], "useroptions-impexp-enableimportfornonadminuser": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-impexp-enableimportfornonadminuser", + "UserTsconfig\/Options.html#confval-useroptions-impexp-enableimportfornonadminuser", "enableImportForNonAdminUser" ], "useroptions-maynotcreateeditbookmarks": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-maynotcreateeditbookmarks", + "UserTsconfig\/Options.html#confval-useroptions-maynotcreateeditbookmarks", "mayNotCreateEditBookmarks" ], "useroptions-nothumbsineb": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-nothumbsineb", + "UserTsconfig\/Options.html#confval-useroptions-nothumbsineb", "noThumbsInEB" ], "useroptions-pagetree": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-pagetree", + "UserTsconfig\/Options.html#confval-useroptions-pagetree", "pageTree" ], "useroptions-pagetree-overridepagemodule": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-pagetree-overridepagemodule", + "UserTsconfig\/Options.html#confval-useroptions-pagetree-overridepagemodule", "overridePageModule" ], "useroptions-pagetree-altelementbrowsermountpoints": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-pagetree-altelementbrowsermountpoints", + "UserTsconfig\/Options.html#confval-useroptions-pagetree-altelementbrowsermountpoints", "altElementBrowserMountPoints" ], "useroptions-pagetree-altelementbrowsermountpoints-append": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-pagetree-altelementbrowsermountpoints-append", + "UserTsconfig\/Options.html#confval-useroptions-pagetree-altelementbrowsermountpoints-append", "altElementBrowserMountPoints.append" ], "useroptions-pagetree-doktypestoshowinnewpagedragarea": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-pagetree-doktypestoshowinnewpagedragarea", + "UserTsconfig\/Options.html#confval-useroptions-pagetree-doktypestoshowinnewpagedragarea", "doktypesToShowInNewPageDragArea" ], "useroptions-pagetree-excludedoktypes": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-pagetree-excludedoktypes", + "UserTsconfig\/Options.html#confval-useroptions-pagetree-excludedoktypes", "excludeDoktypes" ], "useroptions-pagetree-label": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-pagetree-label", + "UserTsconfig\/Options.html#confval-useroptions-pagetree-label", "label.<page-id>" ], "useroptions-pagetree-showdomainnamewithtitle": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-pagetree-showdomainnamewithtitle", + "UserTsconfig\/Options.html#confval-useroptions-pagetree-showdomainnamewithtitle", "showDomainNameWithTitle" ], "useroptions-pagetree-shownavtitle": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-pagetree-shownavtitle", + "UserTsconfig\/Options.html#confval-useroptions-pagetree-shownavtitle", "showNavTitle" ], "useroptions-pagetree-showpageidwithtitle": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-pagetree-showpageidwithtitle", + "UserTsconfig\/Options.html#confval-useroptions-pagetree-showpageidwithtitle", "showPageIdWithTitle" ], "useroptions-pagetree-showpathabovemounts": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-pagetree-showpathabovemounts", + "UserTsconfig\/Options.html#confval-useroptions-pagetree-showpathabovemounts", "showPathAboveMounts" ], "useroptions-passwordreset": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-passwordreset", + "UserTsconfig\/Options.html#confval-useroptions-passwordreset", "passwordReset" ], "useroptions-saveclipboard": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-saveclipboard", + "UserTsconfig\/Options.html#confval-useroptions-saveclipboard", "saveClipboard" ], "useroptions-savedocnew": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-savedocnew", + "UserTsconfig\/Options.html#confval-useroptions-savedocnew", "saveDocNew" ], "useroptions-savedocview": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-savedocview", + "UserTsconfig\/Options.html#confval-useroptions-savedocview", "saveDocView" ], "useroptions-showduplicate": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-showduplicate", + "UserTsconfig\/Options.html#confval-useroptions-showduplicate", "showDuplicate" ], "useroptions-showhistory": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-showhistory", + "UserTsconfig\/Options.html#confval-useroptions-showhistory", "showHistory" ], "useroptions-hidesets": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions-hidesets", + "UserTsconfig\/Options.html#confval-useroptions-hidesets", "hideSets" ], "user-setup-default": [ "TypoScript Explained", "main", - "UserTsconfig\/Setup.html#user-setup-default", + "UserTsconfig\/Setup.html#confval-user-setup-default", "setup.default.[someProperty]" ], "user-setup-override": [ "TypoScript Explained", "main", - "UserTsconfig\/Setup.html#user-setup-override", + "UserTsconfig\/Setup.html#confval-user-setup-override", "setup.override.[someProperty]" ], "user-setup-fields-fieldname-disabled": [ "TypoScript Explained", "main", - "UserTsconfig\/Setup.html#user-setup-fields-fieldname-disabled", + "UserTsconfig\/Setup.html#confval-user-setup-fields-fieldname-disabled", "setup.fields.[fieldName].disabled" ], "user-setup-backendtitleformat": [ "TypoScript Explained", "main", - "UserTsconfig\/Setup.html#user-setup-backendtitleformat", + "UserTsconfig\/Setup.html#confval-user-setup-backendtitleformat", "backendTitleFormat" ], "user-setup-copylevels": [ "TypoScript Explained", "main", - "UserTsconfig\/Setup.html#user-setup-copylevels", + "UserTsconfig\/Setup.html#confval-user-setup-copylevels", "copyLevels" ], "user-setup-edit-docmoduleupload": [ "TypoScript Explained", "main", - "UserTsconfig\/Setup.html#user-setup-edit-docmoduleupload", + "UserTsconfig\/Setup.html#confval-user-setup-edit-docmoduleupload", "edit_docModuleUpload" ], "user-setup-emailmeatlogin": [ "TypoScript Explained", "main", - "UserTsconfig\/Setup.html#user-setup-emailmeatlogin", + "UserTsconfig\/Setup.html#confval-user-setup-emailmeatlogin", "emailMeAtLogin" ], "user-setup-lang": [ "TypoScript Explained", "main", - "UserTsconfig\/Setup.html#user-setup-lang", + "UserTsconfig\/Setup.html#confval-user-setup-lang", "lang" ], "user-setup-neverhideatcopy": [ "TypoScript Explained", "main", - "UserTsconfig\/Setup.html#user-setup-neverhideatcopy", + "UserTsconfig\/Setup.html#confval-user-setup-neverhideatcopy", "neverHideAtCopy" ], "user-setup-showhiddenfilesandfolders": [ "TypoScript Explained", "main", - "UserTsconfig\/Setup.html#user-setup-showhiddenfilesandfolders", + "UserTsconfig\/Setup.html#confval-user-setup-showhiddenfilesandfolders", "showHiddenFilesAndFolders" ], "user-setup-startmodule": [ "TypoScript Explained", "main", - "UserTsconfig\/Setup.html#user-setup-startmodule", + "UserTsconfig\/Setup.html#confval-user-setup-startmodule", "startModule" ], "user-setup-titlelen": [ "TypoScript Explained", "main", - "UserTsconfig\/Setup.html#user-setup-titlelen", + "UserTsconfig\/Setup.html#confval-user-setup-titlelen", "titleLen" ], "tsconfig-condition-applicationcontext": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-applicationcontext", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-applicationcontext", "applicationContext" ], "tsconfig-condition-page": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-page", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-page", "page" ], "tsconfig-condition-tree": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-tree", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-tree", "tree" ], "tsconfig-condition-tree-level": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-tree-level", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-tree-level", "tree.level" ], "tsconfig-condition-tree-pagelayout": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-tree-pagelayout", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-tree-pagelayout", "tree.pagelayout" ], "tsconfig-condition-tree-rootline": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-tree-rootline", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-tree-rootline", "tree.rootLine" ], "tsconfig-condition-tree-rootlineids": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-tree-rootlineids", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-tree-rootlineids", "tree.rootLineIds" ], "tsconfig-condition-tree-rootlineparentids": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-tree-rootlineparentids", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-tree-rootlineparentids", "tree.rootLineParentIds" ], "tsconfig-condition-backend": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-backend", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-backend", "backend" ], "tsconfig-condition-backend-user": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-backend-user", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-backend-user", "backend.user" ], "tsconfig-condition-backend-user-isadmin": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-backend-user-isadmin", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-backend-user-isadmin", "backend.user.isAdmin" ], "tsconfig-condition-backend-user-isloggedin": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-backend-user-isloggedin", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-backend-user-isloggedin", "backend.user.isLoggedIn" ], "tsconfig-condition-backend-user-userid": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-backend-user-userid", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-backend-user-userid", "backend.user.userId" ], "tsconfig-condition-backend-user-usergroupids": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-backend-user-usergroupids", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-backend-user-usergroupids", "backend.user.userGroupList" ], "tsconfig-condition-backend-user-usergrouplist": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-backend-user-usergrouplist", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-backend-user-usergrouplist", "backend.user.userGroupList" ], "tsconfig-condition-workspace": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-workspace", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-workspace", "workspace" ], "tsconfig-condition-workspace-workspaceid": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-workspace-workspaceid", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-workspace-workspaceid", ".workspaceId" ], "tsconfig-condition-workspace-islive": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-workspace-islive", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-workspace-islive", "workspace.isLive" ], "tsconfig-condition-workspace-isoffline": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-workspace-isoffline", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-workspace-isoffline", "workspace.isOffline" ], "tsconfig-condition-typo3": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-typo3", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-typo3", "typo3" ], "tsconfig-condition-typo3-version": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-typo3-version", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-typo3-version", "typo3.version" ], "tsconfig-condition-typo3-branch": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-typo3-branch", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-typo3-branch", "typo3.branch" ], "tsconfig-condition-typo3-devipmask": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-typo3-devipmask", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-typo3-devipmask", "typo3.devIpMask" ], "tsconfig-condition-function-date": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-function-date", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-function-date", "date([parameter])" ], "tsconfig-condition-function-like": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-function-like", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-function-like", "like([search-string], [pattern])" ], "tsconfig-condition-function-traverse": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-function-traverse", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-function-traverse", "traverse([array], [key])" ], "tsconfig-condition-function-compatversion": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-function-compatversion", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-function-compatversion", "compatVersion([version-pattern])" ], "tsconfig-condition-function-getenv": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-function-getenv", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-function-getenv", "getenv([enviroment_variable])" ], "tsconfig-condition-function-feature": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-function-feature", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-function-feature", "feature([feature_key])" ], "tsconfig-condition-function-site": [ "TypoScript Explained", "main", - "UsingSettingTSconfig\/Conditions.html#tsconfig-condition-function-site", + "UsingSettingTSconfig\/Conditions.html#confval-tsconfig-condition-function-site", "site([keyword])" ] }, @@ -32147,295 +31745,319 @@ "contentobjects-case-index": [ "TypoScript Explained", "main", - "ContentObjects\/Case\/Index.html#contentobjects-case-index", + "ContentObjects\/Case\/Index.html#confval-menu-contentobjects-case-index", "" ], "contentobjects-coaandcoaint-index": [ "TypoScript Explained", "main", - "ContentObjects\/CoaAndCoaInt\/Index.html#contentobjects-coaandcoaint-index", + "ContentObjects\/CoaAndCoaInt\/Index.html#confval-menu-contentobjects-coaandcoaint-index", "" ], "contentobjects-content-index": [ "TypoScript Explained", "main", - "ContentObjects\/Content\/Index.html#contentobjects-content-index", + "ContentObjects\/Content\/Index.html#confval-menu-contentobjects-content-index", "" ], "contentobjects-extbaseplugin-index": [ "TypoScript Explained", "main", - "ContentObjects\/Extbaseplugin\/Index.html#contentobjects-extbaseplugin-index", + "ContentObjects\/Extbaseplugin\/Index.html#confval-menu-contentobjects-extbaseplugin-index", "" ], "contentobjects-files-index": [ "TypoScript Explained", "main", - "ContentObjects\/Files\/Index.html#contentobjects-files-index", + "ContentObjects\/Files\/Index.html#confval-menu-contentobjects-files-index", "" ], "contentobjects-fluidtemplate-index": [ "TypoScript Explained", "main", - "ContentObjects\/Fluidtemplate\/Index.html#contentobjects-fluidtemplate-index", + "ContentObjects\/Fluidtemplate\/Index.html#confval-menu-contentobjects-fluidtemplate-index", "" ], - "contentobjects-hmenu-browse": [ + "contentobjects-hmenu-index": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Browse.html#contentobjects-hmenu-browse", + "ContentObjects\/Hmenu\/Index.html#confval-menu-contentobjects-hmenu-index", "" ], - "contentobjects-hmenu-categories": [ + "tmenu-item-states": [ + "TypoScript Explained", + "main", + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-menu-tmenu-item-states", + "TMENU item states" + ], + "tmenu-properties": [ + "TypoScript Explained", + "main", + "ContentObjects\/Hmenu\/Tmenu\/Index.html#confval-menu-tmenu-properties", + "TMENU Properties" + ], + "contentobjects-hmenu-tmenu-tmenuitem": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Categories.html#contentobjects-hmenu-categories", + "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#confval-menu-contentobjects-hmenu-tmenu-tmenuitem", "" ], - "contentobjects-hmenu-directory": [ + "contentobjects-image-index": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Directory.html#contentobjects-hmenu-directory", + "ContentObjects\/Image\/Index.html#confval-menu-contentobjects-image-index", "" ], - "contentobjects-hmenu-index": [ + "contentobjects-imgresource-index": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Index.html#contentobjects-hmenu-index", + "ContentObjects\/ImgResource\/Index.html#confval-menu-contentobjects-imgresource-index", "" ], - "contentobjects-hmenu-keywords": [ + "contentobjects-loadregister-index": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Keywords.html#contentobjects-hmenu-keywords", + "ContentObjects\/LoadRegister\/Index.html#confval-menu-contentobjects-loadregister-index", "" ], - "contentobjects-hmenu-language": [ + "pageview-default-variable": [ + "TypoScript Explained", + "main", + "ContentObjects\/Pageview\/Index.html#confval-menu-pageview-default-variable", + "Default variables" + ], + "pageview-properties": [ + "TypoScript Explained", + "main", + "ContentObjects\/Pageview\/Index.html#confval-menu-pageview-properties", + "PAGEVIEW properties" + ], + "contentobjects-records-index": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Language.html#contentobjects-hmenu-language", + "ContentObjects\/Records\/Index.html#confval-menu-contentobjects-records-index", "" ], - "contentobjects-hmenu-list": [ + "contentobjects-svg-index": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/List.html#contentobjects-hmenu-list", + "ContentObjects\/Svg\/Index.html#confval-menu-contentobjects-svg-index", "" ], - "contentobjects-hmenu-rootline": [ + "contentobjects-text-index": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Rootline.html#contentobjects-hmenu-rootline", + "ContentObjects\/Text\/Index.html#confval-menu-contentobjects-text-index", "" ], - "tmenu-item-states": [ + "contentobjects-useranduserint-index": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-item-states", - "TMENU item states" + "ContentObjects\/UserAndUserInt\/Index.html#confval-menu-contentobjects-useranduserint-index", + "" ], - "tmenu-properties": [ + "dataprocessing-commaseparatedvalueprocessor": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Index.html#tmenu-properties", - "TMENU Properties" + "DataProcessing\/CommaSeparatedValueProcessor.html#confval-menu-dataprocessing-commaseparatedvalueprocessor", + "" ], - "contentobjects-hmenu-tmenu-tmenuitem": [ + "dataprocessing-databasequeryprocessor": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Tmenu\/Tmenuitem.html#contentobjects-hmenu-tmenu-tmenuitem", + "DataProcessing\/DatabaseQueryProcessor.html#confval-menu-dataprocessing-databasequeryprocessor", "" ], - "contentobjects-hmenu-updated": [ + "dataprocessing-filesprocessor": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Updated.html#contentobjects-hmenu-updated", + "DataProcessing\/FilesProcessor.html#confval-menu-dataprocessing-filesprocessor", "" ], - "contentobjects-hmenu-userfunction": [ + "dataprocessing-flexformprocessor": [ "TypoScript Explained", "main", - "ContentObjects\/Hmenu\/Userfunction.html#contentobjects-hmenu-userfunction", + "DataProcessing\/FlexFormProcessor.html#confval-menu-dataprocessing-flexformprocessor", "" ], - "contentobjects-image-index": [ + "dataprocessing-galleryprocessor": [ "TypoScript Explained", "main", - "ContentObjects\/Image\/Index.html#contentobjects-image-index", + "DataProcessing\/GalleryProcessor.html#confval-menu-dataprocessing-galleryprocessor", "" ], - "contentobjects-imgresource-index": [ + "dataprocessing-languagemenuprocessor": [ "TypoScript Explained", "main", - "ContentObjects\/ImgResource\/Index.html#contentobjects-imgresource-index", + "DataProcessing\/LanguageMenuProcessor.html#confval-menu-dataprocessing-languagemenuprocessor", "" ], - "contentobjects-loadregister-index": [ + "dataprocessing-menuprocessor-browse": [ "TypoScript Explained", "main", - "ContentObjects\/LoadRegister\/Index.html#contentobjects-loadregister-index", + "DataProcessing\/MenuProcessor\/Browse.html#confval-menu-dataprocessing-menuprocessor-browse", "" ], - "pageview-default-variable": [ + "dataprocessing-menuprocessor-categories": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#pageview-default-variable", - "Default variables" + "DataProcessing\/MenuProcessor\/Categories.html#confval-menu-dataprocessing-menuprocessor-categories", + "" ], - "pageview-properties": [ + "dataprocessing-menuprocessor-directory": [ "TypoScript Explained", "main", - "ContentObjects\/Pageview\/Index.html#pageview-properties", - "PAGEVIEW properties" + "DataProcessing\/MenuProcessor\/Directory.html#confval-menu-dataprocessing-menuprocessor-directory", + "" ], - "contentobjects-records-index": [ + "dataprocessing-menuprocessor-index": [ "TypoScript Explained", "main", - "ContentObjects\/Records\/Index.html#contentobjects-records-index", + "DataProcessing\/MenuProcessor\/Index.html#confval-menu-dataprocessing-menuprocessor-index", "" ], - "contentobjects-svg-index": [ + "dataprocessing-menuprocessor-keywords": [ "TypoScript Explained", "main", - "ContentObjects\/Svg\/Index.html#contentobjects-svg-index", + "DataProcessing\/MenuProcessor\/Keywords.html#confval-menu-dataprocessing-menuprocessor-keywords", "" ], - "contentobjects-text-index": [ + "dataprocessing-menuprocessor-list": [ "TypoScript Explained", "main", - "ContentObjects\/Text\/Index.html#contentobjects-text-index", + "DataProcessing\/MenuProcessor\/List.html#confval-menu-dataprocessing-menuprocessor-list", "" ], - "contentobjects-useranduserint-index": [ + "dataprocessing-menuprocessor-rootline": [ "TypoScript Explained", "main", - "ContentObjects\/UserAndUserInt\/Index.html#contentobjects-useranduserint-index", + "DataProcessing\/MenuProcessor\/Rootline.html#confval-menu-dataprocessing-menuprocessor-rootline", "" ], - "dataprocessing-commaseparatedvalueprocessor": [ + "dataprocessing-menuprocessor-updated": [ "TypoScript Explained", "main", - "DataProcessing\/CommaSeparatedValueProcessor.html#dataprocessing-commaseparatedvalueprocessor", + "DataProcessing\/MenuProcessor\/Updated.html#confval-menu-dataprocessing-menuprocessor-updated", "" ], - "dataprocessing-databasequeryprocessor": [ + "dataprocessing-pagecontentfetchingprocessor": [ "TypoScript Explained", "main", - "DataProcessing\/DatabaseQueryProcessor.html#dataprocessing-databasequeryprocessor", + "DataProcessing\/PageContentFetchingProcessor.html#confval-menu-dataprocessing-pagecontentfetchingprocessor", "" ], - "dataprocessing-filesprocessor": [ + "dataprocessing-recordtransformationprocessor": [ "TypoScript Explained", "main", - "DataProcessing\/FilesProcessor.html#dataprocessing-filesprocessor", + "DataProcessing\/RecordTransformationProcessor.html#confval-menu-dataprocessing-recordtransformationprocessor", "" ], - "dataprocessing-flexformprocessor": [ + "dataprocessing-sitelanguageprocessor": [ "TypoScript Explained", "main", - "DataProcessing\/FlexFormProcessor.html#dataprocessing-flexformprocessor", + "DataProcessing\/SiteLanguageProcessor.html#confval-menu-dataprocessing-sitelanguageprocessor", "" ], - "dataprocessing-galleryprocessor": [ + "dataprocessing-siteprocessor": [ "TypoScript Explained", "main", - "DataProcessing\/GalleryProcessor.html#dataprocessing-galleryprocessor", + "DataProcessing\/SiteProcessor.html#confval-menu-dataprocessing-siteprocessor", "" ], - "dataprocessing-languagemenuprocessor": [ + "dataprocessing-splitprocessor": [ "TypoScript Explained", "main", - "DataProcessing\/LanguageMenuProcessor.html#dataprocessing-languagemenuprocessor", + "DataProcessing\/SplitProcessor.html#confval-menu-dataprocessing-splitprocessor", "" ], - "dataprocessing-menuprocessor": [ + "stdwrap-get": [ "TypoScript Explained", "main", - "DataProcessing\/MenuProcessor.html#dataprocessing-menuprocessor", + "Functions\/Stdwrap.html#confval-menu-stdwrap-get", "" ], - "dataprocessing-pagecontentfetchingprocessor": [ + "stdwrap-override": [ "TypoScript Explained", "main", - "DataProcessing\/PageContentFetchingProcessor.html#dataprocessing-pagecontentfetchingprocessor", + "Functions\/Stdwrap.html#confval-menu-stdwrap-override", "" ], - "dataprocessing-recordtransformationprocessor": [ + "stdwrap-parse": [ "TypoScript Explained", "main", - "DataProcessing\/RecordTransformationProcessor.html#dataprocessing-recordtransformationprocessor", + "Functions\/Stdwrap.html#confval-menu-stdwrap-parse", "" ], - "dataprocessing-sitelanguageprocessor": [ + "stdwrap-wrap": [ "TypoScript Explained", "main", - "DataProcessing\/SiteLanguageProcessor.html#dataprocessing-sitelanguageprocessor", + "Functions\/Stdwrap.html#confval-menu-stdwrap-wrap", "" ], - "dataprocessing-siteprocessor": [ + "stdwrap-cache": [ "TypoScript Explained", "main", - "DataProcessing\/SiteProcessor.html#dataprocessing-siteprocessor", + "Functions\/Stdwrap.html#confval-menu-stdwrap-cache", "" ], - "dataprocessing-splitprocessor": [ + "stdwrap-debug": [ "TypoScript Explained", "main", - "DataProcessing\/SplitProcessor.html#dataprocessing-splitprocessor", + "Functions\/Stdwrap.html#confval-menu-stdwrap-debug", "" ], "pagetsconfig-mod-weblayout-backendlayout": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#pagetsconfig-mod-weblayout-backendlayout", + "PageTsconfig\/Mod\/WebLayout\/BackendLayout.html#confval-menu-pagetsconfig-mod-weblayout-backendlayout", "" ], "pagetsconfig-mod-wizards": [ "TypoScript Explained", "main", - "PageTsconfig\/Mod\/Wizards.html#pagetsconfig-mod-wizards", + "PageTsconfig\/Mod\/Wizards.html#confval-menu-pagetsconfig-mod-wizards", "" ], "config-properties": [ "TypoScript Explained", "main", - "TopLevelObjects\/Config.html#config-properties", + "TopLevelObjects\/Config.html#confval-menu-config-properties", "Properties of the CONFIG object" ], "page-properties": [ "TypoScript Explained", "main", - "TopLevelObjects\/Page\/Index.html#page-properties", + "TopLevelObjects\/Page\/Index.html#confval-menu-page-properties", "Properties of the PAGE object" ], "plugin-properties-all": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-properties-all", + "TopLevelObjects\/Plugin.html#confval-menu-plugin-properties-all", "" ], "plugin-properties-extbase": [ "TypoScript Explained", "main", - "TopLevelObjects\/Plugin.html#plugin-properties-extbase", + "TopLevelObjects\/Plugin.html#confval-menu-plugin-properties-extbase", "" ], "auth": [ "TypoScript Explained", "main", - "UserTsconfig\/Auth.html#auth", + "UserTsconfig\/Auth.html#confval-menu-auth", "" ], "useroptions": [ "TypoScript Explained", "main", - "UserTsconfig\/Options.html#useroptions", + "UserTsconfig\/Options.html#confval-menu-useroptions", "" ], "user-setup": [ "TypoScript Explained", "main", - "UserTsconfig\/Setup.html#user-setup", + "UserTsconfig\/Setup.html#confval-menu-user-setup", "" ] } diff --git a/legacy_hook/tests/Unit/Fixtures/Permalinks/p/dummyvendor/dummy/main/en-us/objects.inv.json b/legacy_hook/tests/Unit/Fixtures/Permalinks/p/dummyvendor/dummy/main/en-us/objects.inv.json new file mode 100644 index 00000000..6687e662 --- /dev/null +++ b/legacy_hook/tests/Unit/Fixtures/Permalinks/p/dummyvendor/dummy/main/en-us/objects.inv.json @@ -0,0 +1,74 @@ +{ + "std:doc": { + "dupe-entry": [ + "Dummy", + "main", + "Index.html#std-doc", + "Dummy" + ] + }, + "std:title": { + "dupe-entry": [ + "Dummy", + "main", + "Index.html#std-title", + "Dummy" + ] + }, + "std:confval": { + "dupe-entry": [ + "Dummy", + "main", + "Index.html#std-confval", + "Dummy" + ] + }, + "std:option": { + "dupe-entry": [ + "Dummy", + "main", + "Index.html#std-option", + "Dummy" + ] + }, + "std:console:command-list": { + "dupe-entry": [ + "Dummy", + "main", + "Index.html#std-console-command-list", + "Dummy" + ] + }, + "std:console:command": { + "dupe-entry": [ + "Dummy", + "main", + "Index.html#std-console-command", + "Dummy" + ] + }, + "php:property": { + "dupe-entry": [ + "Dummy", + "main", + "Index.html#php-property", + "Dummy" + ] + }, + "000anything:random": { + "dupe-entry": [ + "Dummy", + "main", + "Index.html#anything-random", + "Dummy" + ] + }, + "std:label": { + "dupe-entry": [ + "Dummy", + "main", + "Index.html#dupe-entry", + "The real dupe target to prove sorting kind of works" + ] + } +} diff --git a/legacy_hook/tests/Unit/PermalinksTest.php b/legacy_hook/tests/Unit/PermalinksTest.php index 084afac3..18402270 100644 --- a/legacy_hook/tests/Unit/PermalinksTest.php +++ b/legacy_hook/tests/Unit/PermalinksTest.php @@ -85,6 +85,10 @@ public static function redirectFailsDataProvider(): array public static function redirectWorksDataProvider(): array { return [ + 'dupe sorting' => [ + 'permalink' => 'dummyvendor-dummy:dupe-entry', + 'location' => 'https://docs.typo3.org/p/dummyvendor/dummy/main/en-us/Index.html#dupe-entry', + ], 'core manual, no version' => [ 'permalink' => 'changelog:important-100889-1690476872', 'location' => 'https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/11.5.x/Important-100889-AllowInsecureSiteResolutionByQueryParameters.html#important-100889-1690476872', @@ -202,10 +206,46 @@ public static function redirectWorksDataProvider(): array ], 'confval resolve' => [ + 'permalink' => 't3tsref:module-settings', + 'location' => 'https://docs.typo3.org/m/typo3/reference-typoscript/main/en-us/TopLevelObjects/Module.html#confval-module-settings', + ], + + 'confval resolve (fallback)' => [ 'permalink' => 't3tsref:confval-module-settings', 'location' => 'https://docs.typo3.org/m/typo3/reference-typoscript/main/en-us/TopLevelObjects/Module.html#confval-module-settings', ], + 'confval-menu resolve' => [ + 'permalink' => 't3coreapi:backend-module', + 'location' => 'https://docs.typo3.org/m/typo3/reference-coreapi/main/en-us/ApiOverview/Backend/BackendModules/ModuleConfiguration/Index.html#confval-menu-backend-module', + ], + + 'confval-menu resolve (fallback)' => [ + 'permalink' => 't3coreapi:confval-menu-backend-module', + 'location' => 'https://docs.typo3.org/m/typo3/reference-coreapi/main/en-us/ApiOverview/Backend/BackendModules/ModuleConfiguration/Index.html#confval-menu-backend-module', + ], + + # console command example + 'console command list' => [ + 'permalink' => 't3coreapi:apioverview-commandcontrollers-listcommands', + 'location' => 'https://docs.typo3.org/m/typo3/reference-coreapi/main/en-us/ApiOverview/CommandControllers/ListCommands.html#console-command-list-apioverview-commandcontrollers-listcommands', + ], + + 'console command fallback' => [ + 'permalink' => 't3coreapi:console-command-list-apioverview-commandcontrollers-listcommands', + 'location' => 'https://docs.typo3.org/m/typo3/reference-coreapi/main/en-us/ApiOverview/CommandControllers/ListCommands.html#console-command-list-apioverview-commandcontrollers-listcommands', + ], + + 'console command item' => [ + 'permalink' => 't3coreapi:completion', + 'location' => 'https://docs.typo3.org/m/typo3/reference-coreapi/main/en-us/ApiOverview/CommandControllers/ListCommands.html#console-command-completion', + ], + + 'console command item fallback' => [ + 'permalink' => 't3coreapi:console-command-completion', + 'location' => 'https://docs.typo3.org/m/typo3/reference-coreapi/main/en-us/ApiOverview/CommandControllers/ListCommands.html#console-command-completion', + ], + # Lower/Uppercase normalization 'Other documentation, no version, UPPER/lower casing' => [ 'permalink' => 'T3RENDERGUIDES:ajaxversions-data-attributes', @@ -249,7 +289,7 @@ public function redirectWorksForPermalink(string $permalink, string $location): self::assertInstanceOf(DocumentationLinker::class, $this->subject); $describer = $this->subject->resolvePermalink($permalink); - self::assertSame(307, $describer->statusCode); + self::assertSame(307, $describer->statusCode, 'Header mismatch: ' . $describer->body); self::assertSame(['Location' => $location], $describer->headers); self::assertStringContainsString('Redirect to', $describer->body); }