Ckeditorのツールバーに複数のプラグイン(作成したもの)を追加したい。以下のコードをconfig.jsに記述しました
CKEDITOR.editorConfig = function( config ) {
config.toolbar_Full = [
['Styles', 'Bold', 'Italic', 'Underline', 'SpellChecker', 'Scayt', '-', 'NumberedList', 'BulletedList'],
['Link', 'Unlink'], ['Undo', 'Redo', '-', 'SelectAll'], '/', ['timestamp', '-', 'linkbutton']
];
config.extraPlugins = 'linkbutton, timestamp';
};
と私は2つの異なるカスタムプラグインを持っています。ただし、別のプラグインは受け入れられません。 1つのツールバーに別のプラグインを追加するにはどうすればよいですか?
コンマの後のスペースを除いてあなたはちょうどいいので、 http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.extraPlugins に関する定義は次のようになります:
config.extraPlugins = 'linkbutton,timestamp';