Home

Customising the WYSYWIG editor in v2.3.2 (TinyMCE)

The  default install of SilverStripe contains an array of buttons for the TinyMCE HTML editor. However usually your client will need some extra functionality or you may want to keep things simple for them by removing some of the buttons. As of SilverStripe 2.3.2 this is very easy and can be achieved by adding some code to the _config.php file.

Note. if you are using a version <2.3.2 you must edit the file cms/javascript/tinymce.template.js.

To find out all the wonderful buttons that are available by default in the TinyMCE 3 install visit the example page here and click the 'view source tab'. There are also tons of plugins available to do all sorts of things.

Adding Buttons

So lets say for example you wanted to add font color settings to the editor. All you need to do is add this line to your class or _config.php file:

So this line will insert the font color button after the format select dropdown in the toolbar. Because font color ships with TinyMCe that's all there is to it! There are literally dozens of extra buttons you can add to your editor in this way, just check out the link above to see all the buttons that ship with TinyMCE.

Here are all the functions for adding buttons:

insertButtonsAfter('ButtonA', 'ButtonB', 'ButtonC', 'ButtonD') - This will insert buttons B, C and D after button A.
insertButtonsBefore('ButtonA', 'ButtonB', 'ButtonC', 'ButtonD') - This will insert buttons 2, 3 and 4 before button A.
addButtonsToLine(1, 'ButtonA', 'ButtonB') - This will add buttons A and B to the end of line 1.
setButtonsForLine( 1, 'ButtonA', 'ButtonB', 'ButtonC') - This will set the entire row of buttons to ButtonsA, B and C.

Removing Buttons

When you want to remove buttons is just as simple as adding them:

This will remove the table controlls buttons which are grouped together in the tinyMCE code.

removeButtons('ButtonA', 'ButtonB') - this will remove buttons A and B from the editor.

Adding / Removing Plugins

If you can't find what your looking for in the inbuilt TinyMCE controls then you may well be able to find it by using a plugin (or even write your own). To add a particular plugin add this line of code:

This will enable the blockquote plugin, but remember you will need to add the appropriate button separately using one of the methods described above.

You can also disable plugins using, you guessed it, disablePlugins() which as with enablePlugins requires you to remove the button separately.

enablePlugins('PluginA', '../../customPlugins/pluginB') - this will enable the plugins A and B.
disablePlugins('PluginA', '../../customPlugins/pluginB') - this will disable the plugins A and B.

Setting Options

You can also set the TinyMCE options in the same way, so say I wanted to enable the auto_resize option I would add this code:

You can also set a group of options at once using the setOptions() call.

setOptions(array('Option1' => 'Value1', 'Option2' => 'Value2')) - sets an array of options.
setOptions('Option', 'Value') - sets an option.

 

Note.

It appears that the settings inside LeftAndMain.php are included after those in _config.php. For this reason if you are trying to change a setting that is set in LeftAndMain.php, you must do it in the getCMSFields() function in your Page.php file.

 

Special thanks to Martijn van Nieuwenhoven for some suggestions regarding this post.

About the Author

Name: Aram Balakjian

Website: http://www.aabweb.co.uk

Aram is a web designer/developer running London based agency aab web. He has a strong passion for developing attractive, usable sites around the SilverStripe CMS.

Comments (10)

  • Update: Moved the code to the recommended area of LeftandMain.php to add button to line 2 and enable plugin but still doesn't work...thanks!

    Posted by Kristina, 19/11/2009 2:39pm (10 months ago)

  • Hi, adding the above code to _config.php to instantiate the magnify_publisher plugin and add the button for same, does not work. I am inside an Admin tab which seems to be controlled by LeftandMain.php. Any advice?

    Posted by Kristina, 19/11/2009 2:29pm (10 months ago)

  • How can I add a "Styles"

    Posted by Torbjoern Karlevid, 02/11/2009 5:17am (10 months ago)

  • ... and I did insert the buttons in my page.php, not in _config....

    Posted by yurigoul, 30/10/2009 5:22pm (10 months ago)

  • Removing the buttons from tiny - this way or any other way - does not really work well. Maybe it works the first time you open up the browser, or after you give a ?flush=1. But after going to another page once or twice the controls are back the way they were.

    Posted by yurigoul, 30/10/2009 5:19pm (10 months ago)

  • I got the buttons inserted, and I can see them them when I edit a page. However, when I publish, it does not change the font size and color when I preview. When I look at the HTML, it is not coding the specific font style and color that I select. How do I fix this?

    Posted by Beth, 06/10/2009 10:42am (11 months ago)

  • This is great post. Thanks so much! Can you use the same technique to modify the "Styles" and "Format" drop-downs?

    Posted by deer421, 05/10/2009 2:56pm (11 months ago)

  • This is wonderful! I managed to get the color selection and size in my editor, but even if I delete my css files, I can't get the font color and size to display on the front end. It displays fine in the content/main in admin.
    Any ideas of where else this would be controlled?

    Posted by Beth, 05/10/2009 12:01pm (11 months ago)

  • (Sorry for my previous post,
    I read too quickly.)
    However I did not understand where to include the code, maybe I work in the wrong _config.php file?

    Posted by felipe, 14/09/2009 6:12am (12 months ago)

  • Guys, read the tutorial! SS changed the way ti deals with this stuff in 2.3.3, that's what the tutorial is about! You don't need tinymce.template.js anymore, it's all done in php.

    Aram

    Posted by Aram , 14/09/2009 5:33am (12 months ago)

RSS feed for comments on this page RSS feed for all comments

Post your comment