soft2do / frontend-editing
Enable editors to work with the content in the most intuitive way possible Is Extended from Typo3 Frontend editing
Installs: 76
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:JavaScript
Type:typo3-cms-extension
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.15
- nimut/testing-framework: ^2.0
- phpunit/phpunit: ^5.4
- squizlabs/php_codesniffer: 2.*
Suggests
- clickstorm/cs_seo: ~2.1.0
Conflicts
Replaces
- typo3-ter/frontend-editing: 2.8.0
This package is not auto-updated.
Last update: 2025-01-14 22:25:18 UTC
README
TYPO3 frontend editing (frontend_editing)
Extended From Original Extension This package gives frontend editing capability to TYPO3 CMS, the editor used is Ckeditor.
Documentation
For all kind of documentation which covers install to how to develop the extension:
Donate to the Frontend Editing for TYPO3 project
To Add JS / CSS Files To Front End Editing
plugin.tx_frontend_editing {
settings {
enableDefaultRightBar.50 = 10
cssFiles{
10 = EXT:extension/Resources/Public/Css/Backend/frontend_editing_override.css
}
jsFiles{
10 = EXT:extension/Resources/Public/Css/Backend/frontend_editing_override.js
}
}
}
enableDefaultRightBar is To enable or Disable the default style
To Override on Default Color
plugin.tx_frontend_editing {
settings {
defaultColors{
primaryColor.10=red
secondaryColor.10=green
}
}
}
To add Drop Zone Area
Import Core In html
xmlns:core="TYPO3\CMS\FrontendEditing\ViewHelpers"
Call Drop Zone Area With
<core:DropZone></core:DropZone>
<core:DropZone colPos="{colpos}" parentUid="{parentUid}"></core:DropZone>