sudhaus7/fe-data-history

Log the changed data in frontend mode

Installs: 16 860

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 3

Forks: 2

Open Issues: 1

Type:typo3-cms-extension

2.0.4 2022-06-21 04:49 UTC

This package is auto-updated.

Last update: 2024-04-18 19:00:53 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.