PHPackages                             webcoast/dot-forms - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Parsing &amp; Serialization](/categories/parsing)
4. /
5. webcoast/dot-forms

ActiveTypo3-cms-extension[Parsing &amp; Serialization](/categories/parsing)

webcoast/dot-forms
==================

TYPO3 CMS extension for storing TCA fields with dot notation into a single field

v1.0.6(1y ago)01.0k1GPL-3.0-or-laterPHP

Since Aug 13Pushed 5mo agoCompare

[ Source](https://github.com/webcoast-dk/dot-forms)[ Packagist](https://packagist.org/packages/webcoast/dot-forms)[ RSS](/packages/webcoast-dot-forms/feed)WikiDiscussions main Synced yesterday

READMEChangelog (7)Dependencies (4)Versions (12)Used By (0)

Dot forms extension for TYPO3 CMS
=================================

[](#dot-forms-extension-for-typo3-cms)

This extension allows configuring TCA fields using the dot notation, e.g. `settings.pagination.itemsPerPage`. Like with flex forms, this avoids extra database fields for the configured TCA fields, but it allows to place the fields in a more flexible way instead of grouping them together inside that flex form container.

Installation
------------

[](#installation)

```
composer require webcoast/dot-forms
```

No further configuration is necessary to use this extension.

Usage
-----

[](#usage)

Configure your TCA fields as usual, but use the dot notation for the field name, e.g.

```
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addTCAcolumns('tt_content', [
    'settings.pagination.itemsPerPage' => [
        'label' => 'Items per page',
        'config' => [
            'type' => 'number',
            'format' => 'integer'
            'size' => 5,
            'default' => 10,
        ],
    ],
    'settings.pagination.maxNumberOfLinks' => [
        'label' => 'Max number of links',
        'config' => [
            'type' => 'number',
            'format' => 'integer'
            'size' => 5,
            'default' => 7,
        ],
    ],
]);
```

**Optional:** Create a palette with your fields:

```
$GLOBALS['TCA']['tt_content']['palettes']['settings.pagination'] = [
    'label' => 'Pagination',
    'showitem' => 'settings.pagination.itemsPerPage, settings.pagination.maxNumberOfLinks',
];
```

Add your palette or fields to the `types` section:

```
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addToAllTCAtypes('tt_content', '--palette--;;settings.pagination', '{yourCType}', 'after:header');
```

### Extbase plugins (settings)

[](#extbase-plugins-settings)

When using Extbase plugins, you can use the `\WEBcoast\DotForms\Mvc\Controller\ActionController`as base class for your controller, to automatically map the `settings.*` fields to the `$this->settings`property in your controller.

The magic is done using the `initializeAction()` method, which is called before the actual action method. If you also use this method in your controller, make sure to call `parent::initializeAction()` at the beginning.

### Data processor

[](#data-processor)

When working the data processors, e.g. in a `FLUIDTEMPLATE` content object, your can use the included data processor to map all fields with the dot notation to the respective main field in the data array.

```
tt_content.myContentObject {
    dataProcessing {
        10 = dot-forms
    }
}

```

###  Health Score

35

—

LowBetter than 77% of packages

Maintenance58

Moderate activity, may be stable

Popularity18

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~27 days

Recently: every ~45 days

Total

8

Last Release

501d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/40136e31ed1adbb309036dc82652bc7185f763ea98e8de9bc588e3f2a2bde6fc?d=identicon)[webcoast](/maintainers/webcoast)

---

Top Contributors

[![thommyhh](https://avatars.githubusercontent.com/u/13288620?v=4)](https://github.com/thommyhh "thommyhh (19 commits)")

---

Tags

jsoncmsformfieldstypo3dynamicTCAFlexform

### Embed Badge

![Health badge](/badges/webcoast-dot-forms/health.svg)

```
[![Health](https://phpackages.com/badges/webcoast-dot-forms/health.svg)](https://phpackages.com/packages/webcoast-dot-forms)
```

###  Alternatives

[pagemachine/typo3-formlog

Form log for TYPO3

23238.6k8](/packages/pagemachine-typo3-formlog)[friendsoftypo3/content-blocks

TYPO3 CMS Content Blocks - Content Types API | Define reusable components via YAML

103519.9k53](/packages/friendsoftypo3-content-blocks)[netresearch/rte-ckeditor-image

Image support in CKEditor for the TYPO3 ecosystem - by Netresearch

611.1M8](/packages/netresearch-rte-ckeditor-image)[eliashaeussler/typo3-warming

Warming - Warms up Frontend caches based on an XML sitemap. Cache warmup can be triggered via TYPO3 backend or using a console command. Supports multiple languages and custom crawler implementations.

22260.2k](/packages/eliashaeussler-typo3-warming)[eliashaeussler/typo3-form-consent

Extension for TYPO3 CMS that adds double opt-in functionality to EXT:form

1595.5k](/packages/eliashaeussler-typo3-form-consent)[friendsoftypo3/visual-editor

TYPO3 CMS Visual Editor - Brings a modern WYSIWYG editing experience to TYPO3 CMS.

576.1k2](/packages/friendsoftypo3-visual-editor)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
