Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've written a custom plugin for CKEditor--successful on all fronts, save one currently: I can't, for the life of me, figure out how to customize the image on the button in the toolbar of the editor. As I'm a new user, you'll have to click through to see attached image; the highlighted square in the top left should have a pretty picture (like most of the other toolbar items).

Thanks much for thoughts/advice/help.

Screenshot

share|improve this question

7 Answers

I have written a complete tutorial covering every aspect of CKeditor plugin development, including buttons, context menus, dialogs and more.

share|improve this answer
1  
Great tutorial, thank you very much! – Michael Robinson Mar 11 '10 at 5:39
4  
The plugin creation process seems to have been simplified. Good tutorial here: docs.cksource.com/CKEditor_3.x/Tutorials – Matt Dec 21 '11 at 11:37
2  
the link doesnot seem to work anymore – Paras Mar 14 at 9:31
1  
please update the link – realtebo Apr 3 at 15:14

I have written a tutorial covering how to create an iframe (dialog) based plugin for ckeditor. I figured it out when I needed to migrate from fckeditor to ckeditor (due to a bug they wouldn't fix in fck).

Hope you guys find it useful! :)

how to create a ckeditor plugin

share|improve this answer
Very nice tutorial, got me started. – Pekka 웃 Dec 20 '09 at 18:26
1  
That page is 404 now... :S – inf3rno Mar 15 at 13:07

Some info for others try to write plugins for CKEditor 3.0.

I've started by copying the source from plugins/flash and have now got a button with a youtube logo.... this is an extract from plugins/youtube/plugin.js

editor.ui.addButton( 'YouTube',
			{
				label : editor.lang.common.youtube,
				command : 'youtube',
				icon: this.path + 'images/youtube.gif'
			});

Also you'll need to edit you language file.... e.g. lang/en.js

Add your plugin name to the "common" section (this appears as a tooltip when you hover over the button) and add a whole block for your plugin, with all your strings, like this....

// YouTube Dialog
youtube :
{
	properties		: 'YouTube Properties',
	propertiesTab	: 'Properties',
	title		: 'YouTube Properties',
	chkPlay		: 'Auto Play',
	chkLoop		: 'Loop',
	chkMenu		: 'Enable YouTube Menu',
	chkFull		: 'Allow Fullscreen',
	scale		: 'Scale',
	scaleAll		: 'Show all',
	scaleNoBorder	: 'No Border',
	scaleFit		: 'Exact Fit',
	access			: 'Script Access',
	accessAlways	: 'Always',
	accessSameDomain	: 'Same domain',
	accessNever	: 'Never',
	align		: 'Align',
	alignLeft	: 'Left',
	alignAbsBottom: 'Abs Bottom',
	alignAbsMiddle: 'Abs Middle',
	alignBaseline	: 'Baseline',
	alignBottom	: 'Bottom',
	alignMiddle	: 'Middle',
	alignRight	: 'Right',
	alignTextTop	: 'Text Top',
	alignTop	: 'Top',
	quality		: 'Quality',
	qualityBest		 : 'Best',
	qualityHigh		 : 'High',
	qualityAutoHigh	 : 'Auto High',
	qualityMedium	 : 'Medium',
	qualityAutoLow	 : 'Auto Low',
	qualityLow		 : 'Low',
	windowModeWindow	 : 'Window',
	windowModeOpaque	 : 'Opaque',
	windowModeTransparent	 : 'Transparent',
	windowMode	: 'Window mode',
	flashvars	: 'Variables for YouTube',
	bgcolor	: 'Background color',
	width	: 'Width',
	height	: 'Height',
	hSpace	: 'HSpace',
	vSpace	: 'VSpace',
	validateSrc : 'URL must not be empty.',
	validateWidth : 'Width must be a number.',
	validateHeight : 'Height must be a number.',
	validateHSpace : 'HSpace must be a number.',
	validateVSpace : 'VSpace must be a number.'
}
share|improve this answer

The answer is to set the icon property of the button settings like so:

        editor.ui.addButton('your-plugin', {
            label: 'Your Plugin Label',
            command: 'YourPlugin',
            icon: this.path + 'images/your-plugin.jpg'
        });

Your plugin directory should have an "images" subdirectory where your button should go. In the above snippet, replace "your-plugin.jpg' with the JPG, GIF or PNG image for your button.

This answer, of course, assumes that you know how to create a button image using some image editor like Gimp, Photoshop, etc.

share|improve this answer

these are some plugins for CKEditor 3.x

CKEditor Plugins

Highslide JS Plugin, LrcShow Plugin, FileIcon Plugin, InsertHtml Plugin, SyntaxHighlighter Plugin

Download: CKEditor 3.x Plugins

share|improve this answer

Try this link as well. Will give you little more depth on CKEditor plugin creation.

http://www.sayopenweb.com/plugin-for-ckeditor/

share|improve this answer

This article about CKEditor plugin creation in Drupal's context may be useful too http://mito-team.com/article/2012/collapse-button-for-ckeditor-for-drupal

There are code samples and step-by-step guide about building your own CKEditor plugin with custom button.

share|improve this answer

protected by Michael Myers Dec 11 '10 at 23:52

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.