Attention
TYPO3 v11 has reached end-of-life as of October 31th 2024 and is no longer being maintained. Use the version switcher on the top left of this page to select documentation for a supported version of TYPO3.
Need more time before upgrading? You can purchase Extended Long Term Support (ELTS) for TYPO3 v11 here: TYPO3 ELTS.
Backend interface
The backend interface is essentially driven by the "backend" system extension and extended by many other system extensions.
It is divided into the following main areas:
- Top bar
-
The top bar is always present. It is itself divided into two areas: the logo and top bar tools.
The logo can be changed using the
$GLOBALS
option. Additional top bar tools can be registered using['TYPO3_ CONF_ VARS'] ['EXTENSIONS'] ['backend'] ['backend Logo'] $GLOBALS
.['TYPO3_ CONF_ VARS'] ['BE'] ['toolbar Items'] - Module menu
-
This is the main navigation. All modules are structured in main modules (which can be collapsed) and submodules which is where the action really happens.
The module menu can be opened or closed by using the icon on the top left.
New main or submodules are registered using the
\TYPO3\
API.CMS\ Extbase\ Utility\ Extension Utility:: register Module () Note
In the TYPO3 world, "module" is typically used for the backend. Extension components which add features in the frontend are referred to as "plugins".
- Navigation frame
-
Any backend module may have a navigation frame or not. This frame will typically display the page tree or the folder tree, but custom navigation frames are possible.
The current location (i.e. page or frame) is carried over between navigation frames when changing modules. This means, for example, that when you move from the Web > Page module to the Web > List module, the same page stays selected in the page tree.
- Docheader
- This part is always located above the Content area. It will generally contain a drop-down menu called the "Function menu", which allows to navigate into the various functions offered by the module. When editing it will also contain all the buttons necessary for saving, closing or reverting. It may contain additional buttons for shortcuts or any specific feature needed by the module.
- Content area
- This is the actual work area. Any information to show or content to edit will be displayed here.
- Contextual menus
-
(Right) clicking on record icons will often reveal a contextual menu. New functions can be added to the contextual menus, but the mechanisms vary: the page tree behaves differently than the rest of the backend.