.. include:: /Includes.rst.txt .. _backend-modules-template: =============================== Backend Template View (Extbase) =============================== .. tip:: If you don't want to do extensive data modelling templates can be written :ref:`without Extbase. ` .. deprecated:: 11.5 The general view class :php:`TYPO3\CMS\Backend\View\BackendTemplateView` has been deprecated with v11.5. Use the :php:`TYPO3\CMS\Backend\Template\ModuleTemplateFactory` instead to retrieve a :php:`ModuleTemplate`. See :doc:`ext_core:Changelog/11.5/Deprecation-95164-ExtbackendBackendTemplateView` for more information. Modern backend modules can be written using the Extbase/Fluid combination. The factory :php:`TYPO3\CMS\Backend\Template\ModuleTemplateFactory` can be used to retrieve the :php:`\TYPO3\CMS\Backend\Template\ModuleTemplate` class which is - more or less - the old backend module template, cleaned up and refreshed. This class performs a number of basic operations for backend modules, like loading base JS libraries, loading stylesheets, managing a flash message queue and - in general - performing all kind of necessary setups. To access these resources, inject the :php:`TYPO3\CMS\Backend\Template\ModuleTemplateFactory` into your backend module controller: .. code-block:: php // use TYPO3\CMS\Backend\Template\ModuleTemplateFactory; // use TYPO3\CMS\Extbase\Mvc\Controller\ActionController; class MyController extends ActionController { protected ModuleTemplateFactory $moduleTemplateFactory; public function __construct( ModuleTemplateFactory $moduleTemplateFactory ) { $this->moduleTemplateFactory = $moduleTemplateFactory; } } After that you can add titles, menus and buttons using :php:`ModuleTemplate`: .. code-block:: php // use Psr\Http\Message\ResponseInterface public function myAction(): ResponseInterface { $this->view->assign('someVar', 'someContent'); $moduleTemplate = $this->moduleTemplateFactory->create($this->request); // Adding title, menus, buttons, etc. using $moduleTemplate ... $moduleTemplate->setContent($this->view->render()); return $this->htmlResponse($moduleTemplate->renderContent()); } Using this :php:`ModuleTemplate` class, the Fluid templates for your module need only take care of the actual content of your module. As such, the Layout may be as simple as (again from "beuser"): .. code-block:: html :caption: typo3/sysext/beuser/Resources/Private/Layouts/Default.html and the actual Template needs to render the title and the content only. For example, here is an extract of the "Index" action template of the "beuser" extension: .. code-block:: html :caption: typo3/sysext/beuser/Resources/Private/Templates/BackendUser/Index.html

...
The best resources for learning is to look at existing modules from TYPO3. With the information given here, you should be able to find your way around the code.