---
title: "Feature: #97135 - New Registration for module functions"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-97135"
source: "Changelog/12.0/Feature-97135-NewRegistrationForModuleFunctions.rst"
typo3-version: "12.0"
typo3-major: 12
type: "feature"
issue: 97135
forge: "https://forge.typo3.org/issues/97135"
tags: ["Backend", "PHP-API", "ext:backend"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Feature: #97135 - New Registration for module functions {#feature-97135}

See [forge#97135](https://forge.typo3.org/issues/97135)

## Description {#description}

Previously, module functions could be added to modules such as
**Web > Info** or **Web > Template** via the
now removed global `TBE_MODULES_EXT` array.

Since those functions are actually additional - "third-level" - modules,
they are now registered as such via the
[new Module Registration API](https://docs.typo3.org/permalink/changelog:feature-96733),
in an extension's `Configuration/Backend/Modules.php` file.

Next to the additional configuration options, e.g. for defining the position,
this also allows administrators to define access permissions via the module
access logic for those modules individually.

Additionally, the corresponding backend controller classes are now
able to make use of the [new ModuleData API](https://docs.typo3.org/permalink/changelog:feature-96895).

## Example {#example}

Registration of an additional - "third-level" - module for
**Web > Template** in the `Configuration/Backend/Modules.php`
file of an extension:

```php
'web_ts_customts' => [
    'parent' => 'web_ts',
    'access' => 'user',
    'path' => '/module/web/typoscript/custom-ts',
    'iconIdentifier' => 'module-custom-ts',
    'labels' => [
        'title' => 'LLL:EXT:extkey/Resources/Private/Language/locallang.xlf:mod_title',
    ],
    'routes' => [
        '_default' => [
            'target' => CustomTsController::class . '::handleRequest',
        ],
    ],
    'moduleData' => [
        'someOption' => false,
    ],
],
```

## Impact {#impact}

Additional - "third-level" - modules are now registered in the
extension's `Configuration/Backend/Modules.php` file, the
same way as main and submodules. This therefore allows those
modules to benefit from the same functionality.
