carlcs / craft-redactoriconbuttons
Redactor Icon Buttons plugin for Craft CMS
Installs: 22
Dependents: 0
Suggesters: 0
Security: 0
Stars: 10
Watchers: 2
Forks: 1
Open Issues: 1
Type:craft-plugin
Requires
- php: >=5.4.0
- composer/installers: ~1.0
This package is auto-updated.
Last update: 2024-11-20 04:54:26 UTC
README
This plugin allows to replace the text buttons with icons in the Redactor editor toolbar in Craft CMS.
Installation
The plugin is available on Packagist and can be installed using Composer. You can also download the latest release and copy the files into craft/plugins/redactoriconbuttons/.
$ composer require carlcs/craft-redactoriconbuttons
Enable the plugin in your Redactor config files stored in craft/config/redactor/ by adding iconbuttons
to the plugins
setting. Make sure you have a config file in your Redactor field settings selected where the plugin is enabled.
Icon Sets
The icon set the plugin uses by default contains a collection of icons from the Redactor 10 editor and some handcrafted icons to complement the set.
If you want to use a custom icon set, create a folder craft/config/redactoriconbuttons/ and add a SVG sprite named icons.svg to it. You can now use the iconMapping
config setting to map symbols contained in the SVG to individual buttons.
The plugin includes an example file with icons from the Google Material icon set in the _examples/ folder, the file was created with the Icomoon App.
Configuration
The plugin is pre-configured for Redactor’s default buttons. To customize it, create a new plugin configuration file in the craft/config/ folder named redactoriconbuttons.php, which returns an array of settings.
iconMapping
(see defaults) – Maps buttons to icons. The setting expects an array of key-value pairs that map a button’s index (inspect the “rel” attribute in the toolbar!) to the symbol ID of an icon in the SVG sprite.ieShim
(defaulttrue
) – Adds external spritemap support for IE9+ and Edge 12.
Requirements
- PHP 5.4 or later
- Craft CMS 2.5 or later