georgringer / feediting
Fund package maintenance!
georgringer
paypal.me/GeorgRinger/10
www.amazon.de/hz/wishlist/ls/8F573K08TSDG
Patreon
Installs: 531
Dependents: 0
Suggesters: 0
Security: 0
Stars: 13
Watchers: 8
Forks: 3
Open Issues: 0
Type:typo3-cms-extension
Requires
- php: ^8.2
- typo3/cms-backend: ^12.4
- typo3/cms-beuser: ^12.4
- typo3/cms-core: ^12.4
- typo3/cms-frontend: ^12.4
This package is auto-updated.
Last update: 2024-10-19 19:55:20 UTC
README
This extension provides the good old edit pencil icons in the frontend to have a fast experience to edit content.
- No in-place editing, no hassle with custom frontend implementations
- Link to the known and powerful backend editing
- Works with all content elements, pages and records
Be aware: This extension is heavly under development. Especially the UI is not final and will change. However, I am more than happy to get feedback and ideas. Please report at https://github.com/georgringer/feediting/issues.
Requirements
- TYPO3 12 LTS
Installation
Install this extension via composer composer require georgringer/feediting
Usage
- Log in as backend user
- Enable/Disable the feature in the user settings
Usage in Extensions
Use custom ViewHelper, see example below for EXT:news
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" xmlns:feedit="http://typo3.org/ns/GeorgRinger/Feediting/ViewHelpers" data-namespace-typo3-fluid="true"> <div class="article"> <h3> <n:link newsItem="{newsItem}" settings="{settings}">{newsItem.title}</n:link> <feedit:panel uid="{newsItem.uid}" table="tx_news_domain_model_news"/> </h3> </div> </html>