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. pti/pti-forms

ActiveTypo3-cms-extension

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

v4.0.1(1y ago)1572[1 PRs](https://github.com/SomeBdyElse/typo3-pti-forms/pulls)GPL-2.0-or-laterPHPPHP ^8.2

Since Aug 29Pushed 10mo 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 1mo ago

READMEChangelogDependencies (1)Versions (6)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

34

—

LowBetter than 77% of packages

Maintenance46

Moderate activity, may be stable

Popularity11

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity56

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

Total

5

Last Release

627d 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

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)")

### 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

[fluidtypo3/vhs

This is a collection of ViewHelpers for performing rendering tasks that are not natively provided by TYPO3's Fluid templating engine.

1954.1M49](/packages/fluidtypo3-vhs)[in2code/powermail

Powermail is a well-known, editor-friendly, powerful and easy to use mailform extension for TYPO3 with a lots of features

982.5M38](/packages/in2code-powermail)[typo3/testing-framework

The TYPO3 testing framework provides base classes for unit, functional and acceptance testing.

675.0M775](/packages/typo3-testing-framework)[fluidtypo3/flux

The flux package from FluidTYPO3

152982.2k20](/packages/fluidtypo3-flux)[netresearch/rte-ckeditor-image

Image support in CKEditor for the TYPO3 ecosystem - by Netresearch

63991.3k4](/packages/netresearch-rte-ckeditor-image)[friendsoftypo3/content-blocks

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

96374.6k23](/packages/friendsoftypo3-content-blocks)

PHPackages © 2026

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