---
title: "Feature: #79250 - EXT:form extend the extension location functionality"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-79250"
source: "Changelog/8.6/Feature-79250-ExtFormExtendExtensionLocationFunctionality.rst"
modified: "2026-09-15T10:46:36+00:00"
---

# Feature: #79250 - EXT:form extend the extension location functionality

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

## Description

EXT:form has a feature to load custom form definitions from within extension locations.
These locations can be configured through the `allowedExtensionPaths` setting.
To define whether forms can be changed from within extension locations through the form editor, a setting named `allowSaveToExtensionPaths` exists.
But this setting affects only already existing form definitions within extension locations.
This feature makes it possible to store new forms within extension locations through the form manager as well.
You can also define whether forms can be deleted within extension locations through the form manager with a new setting called `allowDeleteFromExtensionPaths`.
By default both settings `allowSaveToExtensionPaths` and `allowDeleteFromExtensionPaths` are disabled.

## Summary

With this patch is it possible to:

-   save existing forms within extension locations ("allowedExtensionPaths") if "allowSaveToExtensionPaths" is set to true (like before)
-   save new created forms within extension locations ("allowedExtensionPaths") if "allowSaveToExtensionPaths" is set to true
-   delete forms within extension locations ("allowedExtensionPaths") if "allowDeleteFromExtensionPaths" is set to true

## Impact

Example to allow edit form definitions within 'EXT:my_ext/Resources/Private/Forms/':

```yaml
TYPO3:
     CMS:
       Form:
         persistenceManager:
           allowSaveToExtensionPaths: true
           allowedExtensionPaths:
             100: EXT:my_ext/Resources/Private/Forms/
```

Example to allow remove form definitions within 'EXT:my_ext/Resources/Private/Forms/':

```yaml
TYPO3:
  CMS:
    Form:
      persistenceManager:
        allowDeleteFromExtensionPaths: true
        allowedExtensionPaths:
          100: EXT:my_ext/Resources/Private/Forms/
```
