An open API service indexing awesome lists of open source software.

https://github.com/in2code-de/in2responsible

Shows the responsible editor for a page.
https://github.com/in2code-de/in2responsible

Last synced: about 1 year ago
JSON representation

Shows the responsible editor for a page.

Awesome Lists containing this project

README

          

# TYPO3 extension in2responsible

## Introduction

Small TYPO3 extension to show a responsible editor in TYPO3 backend page module for a page. Useful for large TYPO3
instances like those from universities and higher education.

![Page module](Documentation/Images/screenshot_backend_pagemodule.png)

![Page settings](Documentation/Images/screenshot_backend_pagesettings.png)

## Requirements and installation

```
composer req in2code/in2responsible
```

## Configuration

Use Page TSConfig for a general configuration:

### TYPO3 12

```
tx_in2responsible {
note {
active = 1
templatePath = EXT:in2responsible/Resources/Private/Templates/Note.html
}
}
```

In HTML template file, fields and labels can be defined

### TYPO3 11

```
tx_in2responsible {
showMessage = 1
message = Diese Person ist für den Inhalt dieser Seite verantwortlich:
name = Name des Ansprechpartners
name.field = author
email =
email.field = author_email
check =
check.field = tx_in2responsible_check
}
```

## DataProcessing in frontend (TYPO3 12 only)

If you want also to show name and/or email of the responsible author in frontend, you can use the delivered
DataProcessor in TypoScript and Fluid:

```
100 = In2code\In2responsible\DataProcessing\ResponsibleProcessor
100 {
as = responsibleData
}
```

```

Send feedback

```

## Changelog

| Version | Date | State | Description |
|---------|------------|------------|--------------------------------------------------------------------|
| 7.1.0 | 2024-03-05 | Feature | Add DataProcessor for frontend rendering of the responsible person |
| 7.0.0 | 2024-03-05 | Task | Update for TYPO3 12, also dropped support for TYPO3 9 and 10 |
| 6.0.0 | 2022-02-25 | [!!!] Task | Update for TYPO3 11.5. Drop support of TYPO3 8.x |
| 5.0.0 | 2021-06-09 | [!!!] Task | Update for TYPO3 10.4. Drop support of TYPO3 6.x and 7.x |
| 4.0.0 | 2020-03-11 | Task | Update for TYPO3 9.5 |
| 3.0.0 | 2017-09-20 | Task | Update for TYPO3 8.7 |