PHPackages                             heimrichhannot/contao-participation - 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-participation

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

heimrichhannot/contao-participation
===================================

A contao backend entity, that allows you to participate to another entity (like news, events) from any url.

1.1.1(5y ago)045LGPL-3.0+PHP

Since Jul 13Pushed 5y ago7 watchersCompare

[ Source](https://github.com/heimrichhannot/contao-participation)[ Packagist](https://packagist.org/packages/heimrichhannot/contao-participation)[ Docs](https://github.com/heimrichhannot/contao-participation)[ RSS](/packages/heimrichhannot-contao-participation/feed)WikiDiscussions master Synced 1mo ago

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

Participation
=============

[](#participation)

A contao backend entity, that allows you to participate to another entity (like news, events) from any url.

Features
--------

[](#features)

- Participation Archive (global config for participation entitites within)
- Participation (alias to entity connection table)
- Participation Data (member/submission to participation connection table)

How to extend/invoke with your module
-------------------------------------

[](#how-to-extendinvoke-with-your-module)

You can invoke into participation and participation data. Both should be done within your config.php. Here an example for news with tl\_member as participation data:

config.php

```
$GLOBALS['TL_PARTICIPATION']['news'] = array
(
	'tl_news' => 'NewsParticipationConfig'
);

$GLOBALS['TL_PARTICIPATION_DATA'] = array
(
	'member' => array
	(
		'tl_member'   => 'ParticipationDataMyMemberConfig',
	)
);

```

The Class have to extend from \\HeimrichHannot\\Participation\\ParticipationConfig

NewsParticipationConfig.php

```
class NewsParticipationConfig extends \HeimrichHannot\Participation\ParticipationConfig
{
	protected $strSourceField = 'headline';

	protected $strParentField = 'title';
}

```

ParticipationDataMyMemberConfig.php

```
class ParticipationDataMyMemberConfig extends ParticipationDataMemberConfig
{
	protected function getSourceOptionValue(\Model $objSource)
	{
		return $objSource->firstname . ' ' . $objSource->lastname . ' [ID: ' . $objSource->id . ']';
	}
}

```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity67

Established project with proven stability

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

Recently: every ~453 days

Total

6

Last Release

2149d ago

### Community

Maintainers

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

---

Tags

entitycontaobackendParticipation

### Embed Badge

![Health badge](/badges/heimrichhannot-contao-participation/health.svg)

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

###  Alternatives

[terminal42/contao-inserttags

Contao extension to create custom insert tags.

1048.5k](/packages/terminal42-contao-inserttags)

PHPackages © 2026

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