sudhaus7/fe-data-history

Log the changed data in frontend mode

Maintainers

Package info

github.com/sudhaus7/fe-data-history

Type:typo3-cms-extension

pkg:composer/sudhaus7/fe-data-history

Statistics

Installs: 25 144

Dependents: 0

Suggesters: 0

Stars: 4

Open Issues: 1

4.0.0 2026-03-08 17:51 UTC

This package is auto-updated.

Last update: 2026-03-08 17:54:29 UTC


README

Latest Stable Version Build Status Total Downloads Monthly Downloads License

A TYPO3 Plugin for saving frontend edited records history in sys_history.

Installation

Install the Extension via composer

composer require sudhaus7/fe-data-history

Usage

For getting your history logged in backend table, you need to add the interface HistoryEntityInterface to your Extbase AbstractEntity object.

Example

/**
 * class MyEntityObject
 * @package VENDOR\MyExtension\Domain\Model
 */
class MyEntityObject extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity implements \SUDHAUS7\FeDataHistory\Domain\HistoryEntityInterface
{
}

The extension uses the Extbase Backend SignalSlots for getting signal, if Entity is created, deleted or updated.

ElementHistoryController xclasses the original one for getting the information in the backend history log.