PHPackages                             cliffparnitzky/birthday-lister - 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. cliffparnitzky/birthday-lister

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

cliffparnitzky/birthday-lister
==============================

Provides a module to list member birthdays (past, actual, upcoming).

2.0.3(9y ago)037[2 issues](https://github.com/cliffparnitzky/BirthdayLister/issues)LGPL-3.0+PHPPHP &gt;=5.3

Since Feb 3Pushed 1y ago2 watchersCompare

[ Source](https://github.com/cliffparnitzky/BirthdayLister)[ Packagist](https://packagist.org/packages/cliffparnitzky/birthday-lister)[ RSS](/packages/cliffparnitzky-birthday-lister/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (3)Versions (5)Used By (0)

[![Latest Version on Packagist](https://camo.githubusercontent.com/151bf4edcd24bb7f0227d4b02fddba31769acb9e518750739490d00515ba56aa/687474703a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f636c6966667061726e69747a6b792f62697274686461792d6c69737465722e7376673f7374796c653d666c6174)](https://packagist.org/packages/cliffparnitzky/birthday-lister)[![Installations via composer per month](https://camo.githubusercontent.com/983f6d8885ec4db38f039cb3df3454922a8ad728d0d0c51fa976403342446a51/687474703a2f2f696d672e736869656c64732e696f2f7061636b61676973742f646d2f636c6966667061726e69747a6b792f62697274686461792d6c69737465722e7376673f7374796c653d666c6174)](https://packagist.org/packages/cliffparnitzky/birthday-lister)[![Installations via composer total](https://camo.githubusercontent.com/a942333c6b127e836f473fc9f7bc81cc803fccdb0aae071ea80b4aa91ce362bd/687474703a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f636c6966667061726e69747a6b792f62697274686461792d6c69737465722e7376673f7374796c653d666c6174)](https://packagist.org/packages/cliffparnitzky/birthday-lister)

Contao Extension: BirthdayLister
================================

[](#contao-extension-birthdaylister)

Provides a module to list member birthdays (past, actual, upcoming).

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

[](#installation)

Install the extension via composer: [cliffparnitzky/birthday-lister](https://packagist.org/packages/cliffparnitzky/birthday-lister).

If you prefer to install it manually, download the latest release here:

Tracker
-------

[](#tracker)

Compatibility
-------------

[](#compatibility)

- min. Contao version: &gt;= 3.2.0
- max. Contao version: &lt; 3.6.0

Dependency
----------

[](#dependency)

This extension is dependent on the following extensions:

- [\[friends-of-contao/contao-associategroups\]](https://packagist.org/packages/friends-of-contao/contao-associategroups)

Screenshots
-----------

[](#screenshots)

[![Screenshot: System settings](https://camo.githubusercontent.com/87024fbd66a63e39e6c1e196d3bdd166a64630e8b5b39ed49cb7fe7fad44a3be/68747470733a2f2f7261772e6769746875622e636f6d2f636c6966667061726e69747a6b792f42697274686461794c69737465722f6d61737465722f73637265656e73686f742e6a7067)](https://camo.githubusercontent.com/87024fbd66a63e39e6c1e196d3bdd166a64630e8b5b39ed49cb7fe7fad44a3be/68747470733a2f2f7261772e6769746875622e636f6d2f636c6966667061726e69747a6b792f42697274686461794c69737465722f6d61737465722f73637265656e73686f742e6a7067)

CSS classes
-----------

[](#css-classes)

- `birthday_is_today` : marks a list item which birthday is today
- `member_is_inactive` : marks a list item which member is inactive
- `birthday` : marks the span inside a list item containing the date of birth
- `name` : marks the span inside a list item containing the name (firstname and lastname)
- `age` : marks the span inside a list item containing the age
- `first`, `last` : marks the first and last list item
- `even`, `odd` : marks each list item as even or odd

Hooks
-----

[](#hooks)

### birthdayListerModifyBirthdayChildren

[](#birthdaylistermodifybirthdaychildren)

The "birthdayListerModifyBirthdayChildren" hook is triggered for modifying the list of birthday children. So custom sorting is possible or removing of birthday children. It passes `$arrBirthdayChildren` (the array of birthday children), `$modulConfig` (the modul configuration to get user definings). It expects an array of birthday children as return value.

```
// config.php

$GLOBALS['TL_HOOKS']['birthdayListerModifyBirthdayChildren'][]   = array('MyClass', 'myModification');

// MyClass.php

class MyClass
{
	public function myModification($arrBirthdayChildren, $modulConfig)
	{
		if ($modulConfig->birthdayListPeriod == 'mySpecialPeriod')
		{
			// do custom modification here
		}
		return $arrBirthdayChildren;
	}
}

```

### birthdayListerCheckBirthdayInPeriod

[](#birthdaylistercheckbirthdayinperiod)

The "birthdayListerCheckBirthdayInPeriod" hook is triggered when checking if a birthday is in the defined period. So custom periods could be added or custom checking is possible. It passes `$birthdayInPeriod` (current decision if the birthday is in period), `$modulConfig` (the modul configuration to get user definings), `$birthday` (the date of birth normalized to the actual year), `$birthdayChild` (the database object of a member). It expects a boolean (is birthday in period) as return value.

```
// config.php

$GLOBALS['TL_HOOKS']['birthdayListerCheckBirthdayInPeriod'][]   = array('MyClass', 'myPeriodCheck');

// MyClass.php

class MyClass
{
	public function myPeriodCheck($birthdayInPeriod, $modulConfig, $birthday, $birthdayChild)
	{
		if ($modulConfig->birthdayListPeriod == 'mySpecialPeriod')
		{
			// do custom checking here
		}
		return $birthdayInPeriod;
	}
}

```

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance32

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity61

Established project with proven stability

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

Total

4

Last Release

3471d ago

### Community

Maintainers

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

---

Top Contributors

[![cliffparnitzky](https://avatars.githubusercontent.com/u/1247552?v=4)](https://github.com/cliffparnitzky "cliffparnitzky (22 commits)")

---

Tags

contaobirthdaybirthdaylistbirthdaylisting

### Embed Badge

![Health badge](/badges/cliffparnitzky-birthday-lister/health.svg)

```
[![Health](https://phpackages.com/badges/cliffparnitzky-birthday-lister/health.svg)](https://phpackages.com/packages/cliffparnitzky-birthday-lister)
```

PHPackages © 2026

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