---
title: "Feature: #79124 - Allow overwriting of template paths in BackendTemplateView"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-79124"
source: "Changelog/8.6/Feature-79124-AllowOverwritingOfTemplatePathsInBackendTemplateView.rst"
modified: "2026-09-15T10:46:36+00:00"
---

# Feature: #79124 - Allow overwriting of template paths in BackendTemplateView

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

## Description

BackendTemplateView now allows overwriting of template paths to add your own locations for templates, partials and layouts in a BackendTemplateView based backend module.

## Impact

You can now do for example

```php
$frameworkConfiguration = $this->configurationManager->getConfiguration(ConfigurationManagerInterface::CONFIGURATION_TYPE_FRAMEWORK);
$viewConfiguration = [
   'view' => [
      'templateRootPaths' => ['EXT:myext/Resources/Private/Backend/Templates'],
      'partialRootPaths' => ['EXT:myext/Resources/Private/Backend/Partials'],
      'layoutRootPaths' => ['EXT:myext/Resources/Private/Backend/Layouts'],
   ],
];
$this->configurationManager->setConfiguration(array_merge($frameworkConfiguration, $viewConfiguration));
```
