Advertisement
Guest User

Untitled

a guest
Jan 19th, 2013
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.17 KB | None | 0 0
  1. // WordPress basic toolbar
  2.     config.toolbar_WordpressBasic = [
  3.         { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ], items: [ 'Bold', 'Italic', 'Strike', '-', 'RemoveFormat', 'button1', 'button2', 'button3' ] },
  4.         { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ], items: [ 'Blockquote', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight'] },
  5.         { name: 'links', items: [ 'Link', 'Unlink' ] },
  6.         { name: 'insert', items: [ 'Image', 'SpecialChar' ] }
  7.     ];
  8.  
  9.     // The equivalent of "WordpressFull" toolbar, defined in a way that makes adding buttons from plugins easier.
  10.     config.toolbarGroups = [
  11.         { name: 'document',    groups: [ 'mode', 'document', 'doctools' ] },
  12.         { name: 'clipboard',   groups: [ 'clipboard', 'undo' ] },
  13.         { name: 'editing',     groups: [ 'find', 'selection', 'spellchecker' ] },
  14.         // { name: 'forms' },
  15.         '/',
  16.         { name: 'paragraph',   groups: [ 'list', 'indent', 'blocks', 'align' ] },
  17.         { name: 'links' },
  18.         { name: 'insert' },
  19.         { name: 'wordpress' },
  20.         '/',
  21.         { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
  22.         { name: 'styles' },
  23.         { name: 'colors' },
  24.         { name: 'tools' },
  25.         { name: 'about' }
  26.     ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement