-
-
Notifications
You must be signed in to change notification settings - Fork 255
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[TASK:T12] Migrate Page indexing stack to TYPO3 12+ API #3529
Comments
68 tasks
dkd-kaehm
added a commit
to dkd-kaehm/ext-solr
that referenced
this issue
Mar 10, 2023
dkd-kaehm
added a commit
to dkd-kaehm/ext-solr
that referenced
this issue
Mar 10, 2023
dkd-kaehm
added a commit
to dkd-kaehm/ext-solr
that referenced
this issue
Mar 10, 2023
### Changes on `IndexQueue\FrontendHelper\AbstractFrontendHelper`: * declared as singleton * added `$isActivated = false;` class property * removed: * `disableFrontendOutput()` method and registrations of `$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['isOutputting']` hook. See: * [Core: Deprecation: #91012 - Various hooks related to TypoScriptFrontendController](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/10.4/Deprecation-91012-VariousHooksRelatedToTypoScriptFrontendController.html) * [Core: Breaking: #91473 - Deprecated functionality removed](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/11.0/Breaking-91473-DeprecatedFunctionalityRemoved.html) * `disableCaching()` method and registrations of `$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['tslib_fe-PostProc']` hook. The caching is disblad in `\ApacheSolrForTypo3\Solr\Middleware\PageIndexerInitialization::process()` by `->withAttribute('noCache', true)` See: * [Core: Deprecation: #86279 - Various Hooks and PSR-15 Middlewares](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/9.5/Deprecation-86279-VariousHooksAndPSR-15Middlewares.html) * [Core: Breaking: #87193 - Deprecated functionality removed](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/10.0/Breaking-87193-DeprecatedFunctionalityRemoved.html) Fixes: TYPO3-Solr#3529 Relates: TYPO3-Solr#3376
dkd-kaehm
added a commit
to dkd-kaehm/ext-solr
that referenced
this issue
Mar 16, 2023
### Changes on `IndexQueue\FrontendHelper\AbstractFrontendHelper`: * declared as singleton * added `$isActivated = false;` class property * removed: * `disableFrontendOutput()` method and registrations of `$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['isOutputting']` hook. See: * [Core: Deprecation: #91012 - Various hooks related to TypoScriptFrontendController](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/10.4/Deprecation-91012-VariousHooksRelatedToTypoScriptFrontendController.html) * [Core: Breaking: #91473 - Deprecated functionality removed](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/11.0/Breaking-91473-DeprecatedFunctionalityRemoved.html) * `disableCaching()` method and registrations of `$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['tslib_fe-PostProc']` hook. The caching is disblad in `\ApacheSolrForTypo3\Solr\Middleware\PageIndexerInitialization::process()` by `->withAttribute('noCache', true)` See: * [Core: Deprecation: #86279 - Various Hooks and PSR-15 Middlewares](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/9.5/Deprecation-86279-VariousHooksAndPSR-15Middlewares.html) * [Core: Breaking: #87193 - Deprecated functionality removed](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/10.0/Breaking-87193-DeprecatedFunctionalityRemoved.html) Fixes: TYPO3-Solr#3529 Relates: TYPO3-Solr#3376
dkd-kaehm
added a commit
to dkd-kaehm/ext-solr
that referenced
this issue
Mar 17, 2023
This change contains chenges for indexing stack related to TYPO3 Core BC #98303 [!!!][FEATURE] Add generic language overlay PSR-14 events instead of hooks Fixes: TYPO3-Solr#3529 Relates: TYPO3-Solr#3376
dkd-kaehm
added a commit
to dkd-kaehm/ext-solr
that referenced
this issue
Mar 17, 2023
This change contains chenges for indexing stack related to TYPO3 Core BC #98303 [!!!][FEATURE] Add generic language overlay PSR-14 events instead of hooks Fixes: TYPO3-Solr#3529 Relates: TYPO3-Solr#3376
dkd-kaehm
added a commit
that referenced
this issue
Mar 24, 2023
### Changes on `IndexQueue\FrontendHelper\AbstractFrontendHelper`: * declared as singleton * added `$isActivated = false;` class property * removed: * `disableFrontendOutput()` method and registrations of `$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['isOutputting']` hook. See: * [Core: Deprecation: #91012 - Various hooks related to TypoScriptFrontendController](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/10.4/Deprecation-91012-VariousHooksRelatedToTypoScriptFrontendController.html) * [Core: Breaking: #91473 - Deprecated functionality removed](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/11.0/Breaking-91473-DeprecatedFunctionalityRemoved.html) * `disableCaching()` method and registrations of `$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['tslib_fe-PostProc']` hook. The caching is disblad in `\ApacheSolrForTypo3\Solr\Middleware\PageIndexerInitialization::process()` by `->withAttribute('noCache', true)` See: * [Core: Deprecation: #86279 - Various Hooks and PSR-15 Middlewares](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/9.5/Deprecation-86279-VariousHooksAndPSR-15Middlewares.html) * [Core: Breaking: #87193 - Deprecated functionality removed](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/10.0/Breaking-87193-DeprecatedFunctionalityRemoved.html) Fixes: #3529 Relates: #3376
dkd-kaehm
added a commit
that referenced
this issue
Apr 8, 2023
### Changes on `IndexQueue\FrontendHelper\AbstractFrontendHelper`: * declared as singleton * added `$isActivated = false;` class property * removed: * `disableFrontendOutput()` method and registrations of `$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['isOutputting']` hook. See: * [Core: Deprecation: #91012 - Various hooks related to TypoScriptFrontendController](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/10.4/Deprecation-91012-VariousHooksRelatedToTypoScriptFrontendController.html) * [Core: Breaking: #91473 - Deprecated functionality removed](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/11.0/Breaking-91473-DeprecatedFunctionalityRemoved.html) * `disableCaching()` method and registrations of `$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['tslib_fe-PostProc']` hook. The caching is disblad in `\ApacheSolrForTypo3\Solr\Middleware\PageIndexerInitialization::process()` by `->withAttribute('noCache', true)` See: * [Core: Deprecation: #86279 - Various Hooks and PSR-15 Middlewares](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/9.5/Deprecation-86279-VariousHooksAndPSR-15Middlewares.html) * [Core: Breaking: #87193 - Deprecated functionality removed](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/10.0/Breaking-87193-DeprecatedFunctionalityRemoved.html) Fixes: #3529 Relates: #3376
dkd-kaehm
added a commit
that referenced
this issue
May 15, 2023
### Changes on `IndexQueue\FrontendHelper\AbstractFrontendHelper`: * declared as singleton * added `$isActivated = false;` class property * removed: * `disableFrontendOutput()` method and registrations of `$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['isOutputting']` hook. See: * [Core: Deprecation: #91012 - Various hooks related to TypoScriptFrontendController](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/10.4/Deprecation-91012-VariousHooksRelatedToTypoScriptFrontendController.html) * [Core: Breaking: #91473 - Deprecated functionality removed](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/11.0/Breaking-91473-DeprecatedFunctionalityRemoved.html) * `disableCaching()` method and registrations of `$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['tslib_fe-PostProc']` hook. The caching is disblad in `\ApacheSolrForTypo3\Solr\Middleware\PageIndexerInitialization::process()` by `->withAttribute('noCache', true)` See: * [Core: Deprecation: #86279 - Various Hooks and PSR-15 Middlewares](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/9.5/Deprecation-86279-VariousHooksAndPSR-15Middlewares.html) * [Core: Breaking: #87193 - Deprecated functionality removed](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/10.0/Breaking-87193-DeprecatedFunctionalityRemoved.html) Fixes: #3529 Relates: #3376
dkd-kaehm
added a commit
that referenced
this issue
May 15, 2023
### Changes on `IndexQueue\FrontendHelper\AbstractFrontendHelper`: * declared as singleton * added `$isActivated = false;` class property * removed: * `disableFrontendOutput()` method and registrations of `$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['isOutputting']` hook. See: * [Core: Deprecation: #91012 - Various hooks related to TypoScriptFrontendController](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/10.4/Deprecation-91012-VariousHooksRelatedToTypoScriptFrontendController.html) * [Core: Breaking: #91473 - Deprecated functionality removed](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/11.0/Breaking-91473-DeprecatedFunctionalityRemoved.html) * `disableCaching()` method and registrations of `$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['tslib_fe-PostProc']` hook. The caching is disblad in `\ApacheSolrForTypo3\Solr\Middleware\PageIndexerInitialization::process()` by `->withAttribute('noCache', true)` See: * [Core: Deprecation: #86279 - Various Hooks and PSR-15 Middlewares](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/9.5/Deprecation-86279-VariousHooksAndPSR-15Middlewares.html) * [Core: Breaking: #87193 - Deprecated functionality removed](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/10.0/Breaking-87193-DeprecatedFunctionalityRemoved.html) Fixes: #3529 Relates: #3376
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
TYPO3 12+ blocked functionality:
To migrate:
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['hook_checkEnableFields']
To migrate:
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['contentPostProc-all']
To migrate:
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_page.php']['getPageOverlay']
Without functionality since TYPO3 < 12
To remove:
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['tslib_fe-PostProc']
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['tslib_fe-PostProc']
To remove:
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['isOutputting']
The text was updated successfully, but these errors were encountered: