Integration & Configuration
Complete configuration reference and integration guide for the RTE CKEditor Image extension.
Important
Zero-Configuration Installation (v13.0.0+)
The extension works out-of-the-box after installation:
composer require netresearch/rte-ckeditor-image
Copied!
No manual configuration needed! The extension automatically:
- ✅ Registers
rteWithImagespreset for backend RTE - ✅ Configures toolbar with
insertimagebutton - ✅ Loads TypoScript for frontend rendering
- ✅ Applies configuration globally to all sites
This section is for advanced users who need custom RTE configurations beyond the defaults.
Configuration Quick Reference
For Custom RTE Presets
These examples show how to create custom configurations that override the automatic defaults. If you just installed the extension and it's working, you don't need these.
Minimum Custom Toolbar
# Only needed if customizing the default toolbar
editor:
config:
toolbar:
items:
- insertimage
Copied!
Custom Toolbar with Specific Buttons
# Example: Custom preset with limited toolbar
editor:
config:
toolbar:
items:
- bold
- italic
- insertimage
Copied!
Full-Featured Custom Setup
Configuration Patterns
By Use Case
- Basic editor → Minimal Setup
- Style-aware images → Adding Image Styles
- Responsive images → Integration & Configuration
- Restricted access → File Mounts
By Component
- CKEditor plugin → Integration & Configuration
- File browser → Integration & Configuration
- Frontend rendering → Frontend Rendering
- Image processing → Image Processing Configuration