Add TinyMCE Spell checking functionality without having to edit core
Add TinyMCE spell checker support without having to edit core. Uses the config API to set options.
Tested and working on versions 3.1 down to 2.4.
By Stan Hutcheon - Bigfork Ltd
composer require "stnvh/silverstripe-cmsspellchecker" "~1"
Clone this repo into a folder called cmsspellchecker
in your silverstripe installation folder.
This assumes you have pspell installed or the aspell binary installed on your webserver.
If you have the pspell module installed it should work straight away.
If you have just the binary installed, then you'll need to add something like below to mysite/_config/config.yml
:
CMSSpellChecker:
engine: 'PSpellShell'
shell: '/usr/local/bin/aspell'
For pre Silverstripe 3.0, set config via method calls:
mysite/_config.php:
CMSSpellChecker::set_engine('PSpellShell');
CMSSpellChecker::set_shell('/usr/local/bin/aspell');
/usr/bin/aspell
)After installing via composer, you must /dev/build
Module rating system helping users find modules that are well supported. For more on how the rating system works visit Module standards
Score not correct? Let us know there is a problem