in2code / in2responsible
Shows the responsible editor for a page.
Installs: 3 113
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 4
Forks: 0
Open Issues: 1
Type:typo3-cms-extension
Requires
- php: >=7.4.0
- typo3/cms-core: ^11.5||^12.4
This package is auto-updated.
Last update: 2024-10-18 15:12:17 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>