georgringer / news-feuser
Add relation to fe_users
Installs: 316
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 3
Forks: 1
Open Issues: 6
Type:typo3-cms-extension
Requires
- georgringer/news: ^6.0 || ^7.0
- typo3/cms-core: ^8.7 || ^9.3
Replaces
- news_feuser: 2.0.0
- typo3-ter/news-feuser: 2.0.0
This package is auto-updated.
Last update: 2024-10-22 11:21:32 UTC
README
This extension extends the news record by a relation to a FE User.
Requirements
- TYPO3 CMS 8.7+
- EXT:news 6+
- License: GPL 2
Installation
Install the extension as any other extension.
If you use composer, use composer require georgringer/news-feuser
.
Usage
Rendering the user
After filling out the relation, you are able to output the fe user with
<!-- Show the full model -->
<f:debug>{newsItem.newsFeUser}</f:debug>
<!-- Show the names -->
<f:if condition="{newsItem.newsFeUser}">
<ul>
<f:for each="{newsItem.newsFeUser}" as="user">
<li>{user.firstName} {user.lastName}</li>
</f:for>
</ul>
</f:if>
perUser
Action
An additional action is added to the plugin which allows to show the news items which belong to a given frontend user. The name of the GET argument is defined in the configuration of the extension manager of the extension.
Set it to user|id
if the GET argument is called &user[id]
.
Duplicate the template file List.html
with the name PerUser.html
which will output the news of the given user.