[1011]XOOPS 2.5 模組開發
CKEDITOR.editorConfig = function( config )
{
config.toolbar = 'MyToolbar';
config.toolbar_MyToolbar =
[
{ name: 'clipboard', items : [ 'Undo','Redo' ] },
{ name: 'insert', items : [ 'Image' , 'Flash' , 'Table' , 'HorizontalRule' , 'Smiley' , 'PageBreak' ] },
{ name: 'basicstyles', items : [ 'Bold' , 'Italic' , 'Strike' , 'RemoveFormat' ] },
{ name: 'paragraph', items : [ 'NumberedList' , 'BulletedList' , 'Outdent' , 'Indent'] },
{ name: 'links', items : [ 'Link' , 'Unlink' ] },
{ name: 'styles', items : [ 'Styles' , 'Format' ] },
{ name: 'tools', items : [ 'Font' , 'FontSize' ] },
{ name: 'colors', items : [ 'TextColor','BGColor' ] }
];
};