in2code / in2responsible
Shows the responsible editor for a page.
Installs: 3 720
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 0
Open Issues: 0
Type:typo3-cms-extension
Requires
- php: >=7.4.0
- typo3/cms-core: ^11.5||^12.4
This package is auto-updated.
Last update: 2025-03-18 15:59:44 UTC
README
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.
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
}
<f:if condition="{responsibleData.author} && {responsibleData.author_email}">
<f:link.email email="{responsibleData.author_email}" class="btn btn--right-link">Send feedback</f:link.email>
</f:if>
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 |