Skip to content

Commit 0c56f82

Browse files
authored
[TASK] Remove mentions of TSFE in Bootstrapping and Middlewares chapters (#4933)
TypoScriptFrontendController has been deprecated with TYPO3 v13. Therefore, the mentions of TSFE have been removed in those chapters. Related: TYPO3-Documentation/Changelog-To-Doc#1074 Releases: main, 13.4
1 parent b54e060 commit 0c56f82

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Documentation/ApiOverview/RequestLifeCycle/Bootstrapping.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ calling :php:`Bootstrap::init()` and serves as an entry point for later calling
1212
an application class, depending on several context-dependant constraints.
1313

1414
Each application class registers request handlers to
15-
run a certain request type (e.g. eID or TSFE-logic, or Ajax requests in the Backend). Each application is handed
16-
over the class loader provided by Composer.
15+
run a certain request type (e.g. eID or Ajax requests in the backend). Each
16+
application is handed over the class loader provided by Composer.
1717

1818
Applications
1919
============
@@ -25,7 +25,7 @@ There are four types of applications provided by the TYPO3 Core:
2525
-----------------------------------------
2626

2727
This class handles all incoming web requests coming through :file:`index.php`
28-
in the public web directory. It handles all regular page (TSFE) and eID requests.
28+
in the public web directory. It handles all regular page and eID requests.
2929

3030
It checks if all configuration is set, otherwise redirects to the TYPO3 Install
3131
Tool.

Documentation/ApiOverview/RequestLifeCycle/Middlewares.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ the configuration is not applied. This is usually no problem - Extbase plugins
9999
are typically either included as :ref:`USER content object <t3tsref:cobj-user>`
100100
(its content is cached and returned together with other content elements in
101101
fully-cached page context), or the Extbase plugin is registered as USER_INT. In
102-
this case, the :ref:`TSFE <tsfe>` takes care of calculating TypoScript before
102+
this case, the TYPO3 Core takes care of calculating TypoScript before
103103
the plugin is rendered, while other USER content objects are fetched from page
104104
cache.
105105

@@ -117,7 +117,7 @@ that already use Extbase in a middleware have the following options:
117117

118118
* Move away from the middleware and register the Extbase instance as a casual
119119
:ref:`USER_INT <t3tsref:cobj-user-int>` object via TypoScript: Extbase is
120-
designed to be executed like this, the TSFE bootstrap will take care of
120+
designed to be executed like this, the bootstrap will take care of
121121
properly calculating TypoScript, and Extbase will run as expected.
122122

123123
Note that with TYPO3 v12, the overhead of USER_INT content objects has been

0 commit comments

Comments
 (0)