PHPackages                             mediadreams/md\_eventmgt\_frontend - 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. mediadreams/md\_eventmgt\_frontend

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

mediadreams/md\_eventmgt\_frontend
==================================

Create and edit events for ext:sf\_event\_mgt in the frontend

3.0.0(4mo ago)17851GPL-2.0-or-laterPHP

Since Jan 18Pushed 4mo ago1 watchersCompare

[ Source](https://github.com/cdaecke/md_eventmgt_frontend)[ Packagist](https://packagist.org/packages/mediadreams/md_eventmgt_frontend)[ RSS](/packages/mediadreams-md-eventmgt-frontend/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (4)Dependencies (2)Versions (6)Used By (0)

TYPO3 Extension `md_eventmgt_frontend`
======================================

[](#typo3-extension-md_eventmgt_frontend)

This extension enables a frontend user to add new events of `ext:sf_event_mgt`.

Templates are ready to use with the [bootstrap framework](https://getbootstrap.com/) and icons will be shown, if you have [Font Awesome](https://fontawesome.com/) icon set included in your project.

Requirements
------------

[](#requirements)

- TYPO3 13.4
- ext:sf\_event\_mgt 8.0

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

[](#installation)

- Install the extension by using the extension manager or use composer
- Include the static TypoScript of the extension
- Configure the extension by setting your own Typoscript variables

Usage
-----

[](#usage)

- Add the pluign `Event management frontend` on a page, which is restricted by the frontend user login
- Select a storage page in the plugin-tab in the field `Record Storage Page`
    - Tab `Settings`
        - `Event type `: Select whether the events are whole day events (`All day events`), or have a start and end date and time (`Start- and end date and time`).
        - `Parent category`: If selected, all subcategories of this will be shown in the template.
        - `Location storage page`: Event locations on this page will be shown in the template.
        - `Organisator storage page`: Event organisers on this page will be shown in the template.
        - `Speaker storage page`: Event speakers on this page will be shown in the template.
        - `Related events storage page`: Events on this page will be shown in the template.
    - Tab `Email`
        - `Enable email notification`: If checked, you can add email notifications for chosen actions.
        - `Email address of sender`: Email from address.
        - `Name of sender`: Email from name.
        - `Email receivers`: Add as many email receivers as you want.
            - `Email for action`: Select the action, where you want to send the email.
            - `Email address of receiver`: Enter the email address of receiver (Email to address).
            - `Name of receiver`: Enter the name of the receiver (Email to name).
            - `Subject of email`: The subject of the email (Email subject).
            - `Text in email`: The text for the email (Email body).
    - Tab `Template`:
        - `Template layout`: Select a defined template (see chapter `Template layouts` how to define template layouts).
- Now a frontend user is able to add, edit and delete own records

### Template layouts

[](#template-layouts)

You are able to configure template layouts in TsConfig:

```
tx_mdeventmgt_frontend {
  templateLayouts {
    1 = First layout
    2 = Second layout
  }
}

```

PSR-14 Events
-------------

[](#psr-14-events)

Following PSR-14 events are available:

- `Mediadreams\MdEventmgtFrontend\Event\CreateActionBeforeSave`: Called just before saving a new record
- `Mediadreams\MdEventmgtFrontend\Event\CreateActionAfterPersistEvent`: Called after a new record was saved (new record Id is available)
- `Mediadreams\MdEventmgtFrontend\Event\UpdateActionBeforeSave`: Called just before an existig record will be updated
- `Mediadreams\MdEventmgtFrontend\Event\DeleteActionBeforeDelete`: Called just before a record will be deleted

### Register an example event

[](#register-an-example-event)

Add following lines in `Configuration/Services.yaml` of your own extension:

```
services:
  Vendor\Extension\EventListener\MyListener:
    tags:
      - name: event.listener
        identifier: 'ext-mdnewsfrontend/enrichEvent'
        method: 'enrichEvent'
        event: Mediadreams\MdNewsfrontend\Event\CreateActionBeforeSaveEvent
```

Add the class `Vendor\Extension\EventListener\MyListener` with the method `enrichEvent` in your extension:

```
namespace Vendor\Extension\EventListener;

use Mediadreams\MdNewsfrontend\Event\CreateActionBeforeSaveEvent;

final class MyListener
{
    public function enrichEvent(CreateActionBeforeSaveEvent $obj)
    {
        // Get event object
        /** @var \Mediadreams\MdEventmgtFrontend\Domain\Model\Event $event */
        $event = $obj->getEvent();
        $event->setTitle('Set some teaser...');

        // Get EventController
        /** @var \Mediadreams\MdEventmgtFrontend\Controller\EventController $controller */
        $controller = $obj->getEventController();
    }
}
```

Bugs and Known Issues
---------------------

[](#bugs-and-known-issues)

If you find a bug, it would be nice if you add an issue on [Github](https://github.com/cdaecke/md_eventmgt_frontend/issues).

THANKS
======

[](#thanks)

Thanks a lot to all who make this outstanding TYPO3 project possible!

Credits
-------

[](#credits)

- Extension icon was copied from [ext:sf\_event\_mgt](https://github.com/derhansen/sf_event_mgt) and enriched with a pen from [Font Awesome](https://fontawesome.com/icons/pencil-alt?style=solid).

###  Health Score

42

—

FairBetter than 90% of packages

Maintenance77

Regular maintenance activity

Popularity19

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

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

Total

5

Last Release

125d ago

Major Versions

0.0.1 → 1.0.02022-03-08

1.0.0 → 2.0.02024-07-15

2.0.1 → 3.0.02026-01-07

### Community

Maintainers

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

---

Top Contributors

[![cdaecke](https://avatars.githubusercontent.com/u/2102444?v=4)](https://github.com/cdaecke "cdaecke (36 commits)")

---

Tags

event-calendarevent-managementevent-registrationextbasephptypo3typo3-cms-extensiontypo3-extensioneventextensionfrontendTYPO3 CMStypo3event managementevent registrationfrontend-editing

### Embed Badge

![Health badge](/badges/mediadreams-md-eventmgt-frontend/health.svg)

```
[![Health](https://phpackages.com/badges/mediadreams-md-eventmgt-frontend/health.svg)](https://phpackages.com/packages/mediadreams-md-eventmgt-frontend)
```

###  Alternatives

[derhansen/sf_event_mgt

Configurable event management and registration extension based on ExtBase and Fluid

64313.9k6](/packages/derhansen-sf-event-mgt)[georgringer/eventnews

Extend EXT:news with event and calendar functionality

31588.7k4](/packages/georgringer-eventnews)[jweiland/events2

Events 2 - Create single and recurring events

2062.4k2](/packages/jweiland-events2)[baschte/content-animations

TYPO3 CMS extension to have some fun and animate your content elements

2083.5k](/packages/baschte-content-animations)

PHPackages © 2026

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