(Sudhaus7) Frontend Data History

Extension key

fe_data_history

Version

main

Language

en

Description

Writing history of data changed by logged in frontend users

Keywords

Frontend, Login, History

Copyright

2020

Author

Sudhaus7, a B-Factor GmbH label

License

Open Content License available from www.opencontent.org/opl.shtml

Rendered

Sun, 31 Aug 2025 15:04:25 +0000

Table of Contents

Introduction

What does it do?

This extension provides the possibility of tracking frontend related changes for every data type, extbase can manipulate. In big projects with many frontend related changes you are able to refactor, overview and undo changes made in frontend. You will even see, which user made the change.

Screenshots

View of history module in TYPO3 Backend

The view of the history module inside the TYPO3 backend.

Configuration

Make model loggable:

The interface provided with this extension is the only thing you need to implement:

<?php

declare(strict_types=1);

namespace WORKSHOP\WorkshopBlog\Domain\Model;

use SUDHAUS7\FeDataHistory\Domain\HistoryEntityInterface;
use TYPO3\CMS\Extbase\DomainObject\AbstractEntity;

/**
 * Class Blog
 * @package MYVENDOR\ExampleBlog\Domain\Model
 */
class Blog extends AbstractEntity implements HistoryEntityInterface
{ }
Copied!

Usage

Write your Fluid form and let your frontend users edit as logged in users.