PHPackages                             heimrichhannot/contao-be\_explanation-bundle - 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. heimrichhannot/contao-be\_explanation-bundle

ActiveContao-bundle[Utility &amp; Helpers](/categories/utility)

heimrichhannot/contao-be\_explanation-bundle
============================================

This bundle offers a simple backend explanation form field (inputType).

2.5.0(2y ago)07.6k↑207.7%17LGPL-3.0-or-laterPHPPHP ^7.4 || ^8.0

Since Mar 7Pushed 2y ago5 watchersCompare

[ Source](https://github.com/heimrichhannot/contao-be_explanation-bundle)[ Packagist](https://packagist.org/packages/heimrichhannot/contao-be_explanation-bundle)[ Docs](https://github.com/heimrichhannot/contao-be_explanation-bundle)[ RSS](/packages/heimrichhannot-contao-be-explanation-bundle/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (3)Dependencies (1)Versions (16)Used By (7)

[![](https://camo.githubusercontent.com/c5aa36cd0adf1b46535299360ae4d2cfdfc8d2f68b9047be71402b20640711dd/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6865696d7269636868616e6e6f742f636f6e74616f2d62655f6578706c616e6174696f6e2d62756e646c652e737667)](https://camo.githubusercontent.com/c5aa36cd0adf1b46535299360ae4d2cfdfc8d2f68b9047be71402b20640711dd/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6865696d7269636868616e6e6f742f636f6e74616f2d62655f6578706c616e6174696f6e2d62756e646c652e737667)[![](https://camo.githubusercontent.com/3035a2507075c13c62f9d5c932a80d0db650366e370b6a71b471e4c0a340b1c8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6865696d7269636868616e6e6f742f636f6e74616f2d62655f6578706c616e6174696f6e2d62756e646c652e737667)](https://camo.githubusercontent.com/3035a2507075c13c62f9d5c932a80d0db650366e370b6a71b471e4c0a340b1c8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6865696d7269636868616e6e6f742f636f6e74616f2d62655f6578706c616e6174696f6e2d62756e646c652e737667)

Backend Explanation Bundle
==========================

[](#backend-explanation-bundle)

This bundle offers a simple backend explanation form field (inputType).

Technical instructions
----------------------

[](#technical-instructions)

Just add the field to some of your data container arrays as follows:

```
use AppBundle\EventListener\Dca\TableListener;

$GLOBALS['TL_DCA']['tl_table']['fields']['myExplanation'] = [
    'inputType' => 'explanation',
    'eval'      => [
        'text'          => &$GLOBALS['TL_LANG']['tl_table']['explanation']['myExplanation'], // this is a string, not an array
        'text_callback' => [TableListener::class, 'onTextCallback'], // a callback to dynamical generate text. Can also be a callable.
        'class'         => 'tl_info', // all contao message css classes are possible
        'tl_class'      => 'w50 long',
        'collapsible'   => true // If text is to long, if will be collapsed
    ]
];
```

#### Text Callback

[](#text-callback)

The callback gets the `$attributes` array from the widget constructor as parameter, which containers the widget config and the current DataContainer.

Example:

```
public function textCallback(array $attributes): string {
    $dc = $attributes["dataContainer"];
    $text = $attributes["text"];
    return "My new text";
}
```

###  Health Score

38

—

LowBetter than 83% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community22

Small or concentrated contributor base

Maturity76

Established project with proven stability

 Bus Factor1

Top contributor holds 68.8% 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 ~169 days

Recently: every ~318 days

Total

14

Last Release

834d ago

Major Versions

1.0.1 → 2.0.02018-05-24

PHP version history (3 changes)1.0.0PHP ^7.1

2.4.0PHP ^7.1|^8.0

2.5.0-beta0PHP ^7.4 || ^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/28ad3224d8727b622ebd229840eea6b9dbcb83eb0bd609e6ce65b614830ff538?d=identicon)[digitales@heimrich-hannot.de](/maintainers/digitales@heimrich-hannot.de)

---

Top Contributors

[![koertho](https://avatars.githubusercontent.com/u/12064642?v=4)](https://github.com/koertho "koertho (11 commits)")[![ericges](https://avatars.githubusercontent.com/u/25957923?v=4)](https://github.com/ericges "ericges (3 commits)")[![fritzmg](https://avatars.githubusercontent.com/u/4970961?v=4)](https://github.com/fritzmg "fritzmg (1 commits)")[![K0NZ1](https://avatars.githubusercontent.com/u/16319351?v=4)](https://github.com/K0NZ1 "K0NZ1 (1 commits)")

---

Tags

contaofieldbackenddeveloperexplanation

### Embed Badge

![Health badge](/badges/heimrichhannot-contao-be-explanation-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/heimrichhannot-contao-be-explanation-bundle/health.svg)](https://phpackages.com/packages/heimrichhannot-contao-be-explanation-bundle)
```

###  Alternatives

[codefog/contao-haste

haste extension for Contao Open Source CMS

41668.4k162](/packages/codefog-contao-haste)[terminal42/contao-folderpage

Provides a new page type for Contao that allows you to group pages into folders.

18153.4k10](/packages/terminal42-contao-folderpage)[terminal42/contao-inserttags

Contao extension to create custom insert tags.

1050.8k](/packages/terminal42-contao-inserttags)[terminal42/contao-url-rewrite

URL Rewrite bundle for Contao Open Source CMS

15100.0k3](/packages/terminal42-contao-url-rewrite)

PHPackages © 2026

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