Projet

Général

Profil

Paste
Télécharger (3,86 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / ckeditor / ckeditor.config.js @ 13755f8d

1
/*
2
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
3
For licensing, see LICENSE.html or http://ckeditor.com/license
4
*/
5

    
6
/*
7
 WARNING: clear browser's cache after you modify this file.
8
 If you don't do this, you may notice that browser is ignoring all your changes.
9
 */
10
CKEDITOR.editorConfig = function(config) {
11
  config.indentClasses = [ 'rteindent1', 'rteindent2', 'rteindent3', 'rteindent4' ];
12

    
13
  // [ Left, Center, Right, Justified ]
14
  config.justifyClasses = [ 'rteleft', 'rtecenter', 'rteright', 'rtejustify' ];
15

    
16
  // The minimum editor width, in pixels, when resizing it with the resize handle.
17
  config.resize_minWidth = 450;
18

    
19
  // Protect PHP code tags (<?...?>) so CKEditor will not break them when
20
  // switching from Source to WYSIWYG.
21
  // Uncommenting this line doesn't mean the user will not be able to type PHP
22
  // code in the source. This kind of prevention must be done in the server
23
  // side
24
  // (as does Drupal), so just leave this line as is.
25
  config.protectedSource.push(/<\?[\s\S]*?\?>/g); // PHP Code
26

    
27
  // [#1762328] Uncomment the line below to protect <code> tags in CKEditor (hide them in wysiwyg mode).
28
  // config.protectedSource.push(/<code>[\s\S]*?<\/code>/gi);
29
  config.extraPlugins = '';
30

    
31
  /*
32
    * Append here extra CSS rules that should be applied into the editing area.
33
    * Example:
34
    * config.extraCss = 'body {color:#FF0000;}';
35
    */
36
  config.extraCss = '';
37
  /**
38
    * Sample extraCss code for the "marinelli" theme.
39
    */
40
  if (Drupal.settings.ckeditor.theme == "marinelli") {
41
    config.extraCss += "body{background:#FFF;text-align:left;font-size:0.8em;}";
42
    config.extraCss += "#primary ol, #primary ul{margin:10px 0 10px 25px;}";
43
  }
44
  if (Drupal.settings.ckeditor.theme == "newsflash") {
45
    config.extraCss = "body{min-width:400px}";
46
  }
47

    
48
  /**
49
    * CKEditor's editing area body ID & class.
50
    * See http://drupal.ckeditor.com/tricks
51
    * This setting can be used if CKEditor does not work well with your theme by default.
52
    */
53
  config.bodyClass = '';
54
  config.bodyId = '';
55
  /**
56
    * Sample bodyClass and BodyId for the "marinelli" theme.
57
    */
58
  if (Drupal.settings.ckeditor.theme == "marinelli") {
59
    config.bodyClass = 'singlepage';
60
    config.bodyId = 'primary';
61
  }
62
}
63

    
64
/*
65
 * Sample toolbars
66
 */
67

    
68
//Toolbar definition for basic buttons
69
Drupal.settings.cke_toolbar_DrupalBasic = [ [ 'Format', 'Bold', 'Italic', '-', 'NumberedList','BulletedList', '-', 'Link', 'Unlink', 'Image' ] ];
70

    
71
//Toolbar definition for Advanced buttons
72
Drupal.settings.cke_toolbar_DrupalAdvanced = [
73
  ['Source'],
74
  ['Cut','Copy','Paste','PasteText','PasteFromWord','-','SpellChecker', 'Scayt'],
75
  ['Undo','Redo','Find','Replace','-','SelectAll'],
76
  ['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar'],
77
  ['Maximize', 'ShowBlocks'],
78
  '/',
79
  ['Format'],
80
  ['Bold','Italic','Underline','Strike','-','Subscript','Superscript','-','RemoveFormat'],
81
  ['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'],
82
  ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','-','BidiLtr','BidiRtl'],
83
  ['Link','Unlink','Anchor','Linkit','LinkToNode','LinkToMenu']
84
];
85

    
86
// Toolbar definition for all buttons
87
Drupal.settings.cke_toolbar_DrupalFull = [
88
  ['Source'],
89
  ['Cut','Copy','Paste','PasteText','PasteFromWord','-','SpellChecker', 'Scayt'],
90
  ['Undo','Redo','Find','Replace','-','SelectAll'],
91
  ['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','Iframe'],
92
  '/',
93
  ['Bold','Italic','Underline','Strike','-','Subscript','Superscript','-','RemoveFormat'],
94
  ['NumberedList','BulletedList','-','Outdent','Indent','Blockquote','CreateDiv'],
95
  ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','-','BidiLtr','BidiRtl','-','Language'],
96
  ['Link','Unlink','Anchor','Linkit','LinkToNode', 'LinkToMenu'],
97
  '/',
98
  ['Format','Font','FontSize'],
99
  ['TextColor','BGColor'],
100
  ['Maximize', 'ShowBlocks'],
101
  ['DrupalBreak', 'DrupalPageBreak']
102
];