Mini Shell
CKEDITOR.editorConfig = function( config ) {
// Tüm butonları ve grupları içeren araç çubuğu (full toolbar)
config.toolbar = 'Full';
// Alternatif olarak toolbar gruplarını elle de tanımlayabilirsin:
config.toolbarGroups = [
{ name: 'document', groups: [ 'mode', 'document', 'doctools' ] },
{ name: 'clipboard', groups: [ 'clipboard', 'undo' ] },
{ name: 'editing', groups: [ 'find', 'selection', 'spellchecker', 'editing' ] },
{ name: 'forms' },
'/',
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
{ name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi', 'paragraph' ] },
{ name: 'links' },
{ name: 'insert' },
'/',
{ name: 'styles' },
{ name: 'colors' },
{ name: 'tools' },
{ name: 'others' },
{ name: 'about' }
];
// Kaldırılan buton yok, her şey aktif
config.removeButtons = '';
config.allowedContent = true;
// Format seçenekleri varsayılan olarak kalabilir veya genişletilebilir
config.format_tags = 'p;h1;h2;h3;h4;h5;h6;pre;address;div';
// Tüm diyalog sekmeleri kalsın
config.removeDialogTabs = '';
// Tema
config.skin = 'office2013';
// Kaynak görünümünü aktif etmek için `sourcearea` eklentisinin yüklü olması gerekir.
// Eğer yüklü değilse, `plugins` klasörüne `sourcearea` eklentisini eklemelisin.
};