PHPackages                             pti/pti-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. [Utility &amp; Helpers](/categories/utility)
4. /
5. pti/pti-forms

ActiveTypo3-cms-extension[Utility &amp; Helpers](/categories/utility)

pti/pti-forms
=============

v5.0.0(3w ago)1572GPL-2.0-or-laterPHPPHP ^8.2

Since Aug 29Pushed 3w ago2 watchersCompare

[ Source](https://github.com/SomeBdyElse/typo3-pti-forms)[ Packagist](https://packagist.org/packages/pti/pti-forms)[ RSS](/packages/pti-pti-forms/feed)WikiDiscussions main Synced yesterday

READMEChangelogDependencies (2)Versions (7)Used By (0)

pti-form
========

[](#pti-form)

Helper classes to render extbase forms in a PTI context. The classes act as replacements for the fluid view helpers:

- AbstractFormFieldViewHelper
- FormViewHelper

Their main concern is to render the correct field names for the form fields and the hidden fields that extbase requires to accept the form submission.

Sample usage
------------

[](#sample-usage)

```
$form = GeneralUtility::makeInstance(Form::class);
$form->setRequest($this->request);
$form->setObjectName('contactForm'); // optional

$messageField = GeneralUtility::makeInstance(TextArea::class);
$messageField->setProperty('message');
$form->addField($messageField)

$form = $form->render();
/*
[
    'fields' => [
        'message' => [
            'name' => 'tx_extension_plugin[contactForm][message]',
            'value' => '',
        ],
    ],
    'hiddenFields' => [
        [
            'name' => 'tx_extension_plugin[__referrer][@extension]',
            'value' => 'Extension'
        ],
        [
            'name' => 'tx_extension_plugin[__trustedProperties]',
            'value' => '…',
        ],
        …
    ],
]
*/

$form['action'] = …
$form['method'] = …
```

Most extensions will extend the Field class to create select fields, textareas, etc.

###  Health Score

46

—

FairBetter than 92% of packages

Maintenance94

Actively maintained with recent releases

Popularity11

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor2

2 contributors hold 50%+ of commits

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 ~130 days

Recently: every ~162 days

Total

6

Last Release

25d ago

Major Versions

v1.0.0 → v2.0.02024-08-29

v2.0.0 → v3.0.02024-08-29

v3.0.0 → v4.0.02024-08-29

v4.0.1 → v5.0.02026-06-08

PHP version history (3 changes)v1.0.0PHP &gt;=7.0 &lt;7.3

v2.0.0PHP ^7.4

v3.0.0PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/a30d9c62c201ac627ff600c568bfc68883a9131b9683d89351386297e85394f0?d=identicon)[SomeBdyElse](/maintainers/SomeBdyElse)

---

Top Contributors

[![IchHabRecht](https://avatars.githubusercontent.com/u/1453345?v=4)](https://github.com/IchHabRecht "IchHabRecht (7 commits)")[![chriwo](https://avatars.githubusercontent.com/u/1309774?v=4)](https://github.com/chriwo "chriwo (6 commits)")[![SomeBdyElse](https://avatars.githubusercontent.com/u/243504?v=4)](https://github.com/SomeBdyElse "SomeBdyElse (5 commits)")[![hirnschmalz](https://avatars.githubusercontent.com/u/4834988?v=4)](https://github.com/hirnschmalz "hirnschmalz (1 commits)")

### Embed Badge

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

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

###  Alternatives

[friendsoftypo3/content-blocks

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

103519.9k53](/packages/friendsoftypo3-content-blocks)[wazum/sluggi

TYPO3 extension for URL slug management with inline editing, auto-sync, locking, access control, and redirects

40529.5k](/packages/wazum-sluggi)[typo3/cms-scheduler

TYPO3 CMS Scheduler - Schedule tasks to run once or periodically at a specific time.

169.3M231](/packages/typo3-cms-scheduler)[typo3/cms-lowlevel

TYPO3 CMS Lowlevel - Technical analysis of the system. This includes raw database search, checking relations, counting pages and records etc.

178.2M316](/packages/typo3-cms-lowlevel)[typo3/cms-redirects

TYPO3 CMS Redirects - Create manual redirects, list existing redirects and automatically createredirects on slug changes.

167.4M80](/packages/typo3-cms-redirects)[typo3/cms-form

TYPO3 CMS Form - Flexible TYPO3 frontend form framework that comes with a backend editor interface.

147.6M265](/packages/typo3-cms-form)

PHPackages © 2026

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