in2code/in2responsible

Shows the responsible editor for a page.

Installs: 2 684

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 4

Forks: 0

Open Issues: 1

Type:typo3-cms-extension

7.1.1 2024-03-18 13:58 UTC

This package is auto-updated.

Last update: 2024-07-18 14:38:57 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.

Page module

Page settings

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