国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
1.1KB

  1. /**
  2. * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. CKEDITOR.editorConfig = function( config ) {
  6. config.toolbarGroups = [
  7. { name: 'document', groups: [ 'mode', 'document', 'doctools' ] },
  8. { name: 'clipboard', groups: [ 'clipboard', 'undo' ] },
  9. { name: 'editing', groups: [ 'find', 'selection', 'spellchecker', 'editing' ] },
  10. { name: 'forms', groups: [ 'forms' ] },
  11. '/',
  12. { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
  13. { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi', 'paragraph' ] },
  14. { name: 'links', groups: [ 'links' ] },
  15. { name: 'insert', groups: [ 'insert' ] },
  16. '/',
  17. { name: 'styles', groups: [ 'styles' ] },
  18. { name: 'colors', groups: [ 'colors' ] },
  19. { name: 'tools', groups: [ 'tools' ] }
  20. ];
  21. config.removeButtons = 'About,ShowBlocks,Iframe,Flash,Form,Checkbox,Radio,TextField,Textarea,Select,Button,ImageButton,HiddenField';
  22. config.filebrowserImageUploadUrl = "./dialog/select_images_post.php";
  23. };