1 | <?php |
---|
2 | # -- BEGIN LICENSE BLOCK --------------------------------------- |
---|
3 | # |
---|
4 | # This file is part of Dotclear 2. |
---|
5 | # |
---|
6 | # Copyright (c) 2003-2015 Olivier Meunier & Association Dotclear |
---|
7 | # Licensed under the GPL version 2.0 license. |
---|
8 | # See LICENSE file or |
---|
9 | # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html |
---|
10 | # |
---|
11 | # -- END LICENSE BLOCK ----------------------------------------- |
---|
12 | |
---|
13 | if (!defined('DC_CONTEXT_ADMIN')) { return; } |
---|
14 | header('Content-type: text/javascript'); |
---|
15 | if (!empty($_GET['context'])) { |
---|
16 | $context = $_GET['context']; |
---|
17 | } else { |
---|
18 | $context = ''; |
---|
19 | } |
---|
20 | $__extraPlugins = new ArrayObject(); |
---|
21 | $core->callBehavior('ckeditorExtraPlugins',$__extraPlugins,$context); |
---|
22 | $extraPlugins = $__extraPlugins->getArrayCopy(); |
---|
23 | ?> |
---|
24 | (function($) { |
---|
25 | $.toolbarPopup = function toolbarPopup(url) { |
---|
26 | if (dotclear.admin_base_url != '') { |
---|
27 | var pos = url.indexOf(dotclear.admin_base_url); |
---|
28 | if (pos == -1) { |
---|
29 | url = dotclear.admin_base_url + url; |
---|
30 | } |
---|
31 | } |
---|
32 | |
---|
33 | var args = Array.prototype.slice.call(arguments); |
---|
34 | var width = 520, height = 420; |
---|
35 | if (args[1]!==undefined) { |
---|
36 | width = args[1].width || width; |
---|
37 | height = args[1].height || height; |
---|
38 | } |
---|
39 | |
---|
40 | var popup_params = 'alwaysRaised=yes,dependent=yes,toolbar=yes,'; |
---|
41 | popup_params += 'height='+height+',width='+width+',menubar=no,resizable=yes,scrollbars=yes,status=no'; |
---|
42 | var popup_link = window.open(url,'dc_popup', popup_params); |
---|
43 | }; |
---|
44 | |
---|
45 | $.stripBaseURL = function stripBaseURL(url) { |
---|
46 | if (dotclear.base_url != '') { |
---|
47 | var pos = url.indexOf(dotclear.base_url); |
---|
48 | if (pos == 0) { |
---|
49 | url = url.substr(dotclear.base_url.length); |
---|
50 | } |
---|
51 | } |
---|
52 | |
---|
53 | return url; |
---|
54 | }; |
---|
55 | |
---|
56 | /* Retrieve editor from popup */ |
---|
57 | $.active_editor = null; |
---|
58 | $.getEditorName = function getEditorName() { |
---|
59 | return $.active_editor; |
---|
60 | } |
---|
61 | chainHandler(window, 'onbeforeunload', function(e) { |
---|
62 | if (e == undefined && window.event) { |
---|
63 | e = window.event; |
---|
64 | } |
---|
65 | |
---|
66 | var editor = CKEDITOR.instances[$.getEditorName()]; |
---|
67 | if (editor!==undefined && !confirmClosePage.formSubmit && editor.checkDirty()) { |
---|
68 | e.returnValue = confirmClosePage.prompt; |
---|
69 | return confirmClosePage.prompt; |
---|
70 | } |
---|
71 | return false; |
---|
72 | }); |
---|
73 | })(jQuery); |
---|
74 | |
---|
75 | $(function() { |
---|
76 | /* By default ckeditor load related resources with a timestamp to avoid cache problem when upgrading itself |
---|
77 | * load_plugin_file.php does not allow other param that file to load (pf param), so remove timestamp |
---|
78 | */ |
---|
79 | |
---|
80 | CKEDITOR.timestamp = ''; |
---|
81 | <?php if (!isset($dcckeditor_disable_native_spellchecker) || $dcckeditor_disable_native_spellchecker):?> |
---|
82 | CKEDITOR.config.disableNativeSpellChecker = true; |
---|
83 | <?php else:?> |
---|
84 | CKEDITOR.config.disableNativeSpellChecker = false; |
---|
85 | <?php endif;?> |
---|
86 | CKEDITOR.config.skin = 'dotclear,'+dotclear.dcckeditor_plugin_url+'/js/ckeditor-skins/dotclear/'; |
---|
87 | CKEDITOR.config.baseHref = dotclear.base_url; |
---|
88 | CKEDITOR.config.height = '<?php echo $core->auth->getOption('edit_size') * 14;?>px'; |
---|
89 | |
---|
90 | <?php if (!empty($dcckeditor_cancollapse_button)):?> |
---|
91 | CKEDITOR.config.toolbarCanCollapse = true; |
---|
92 | <?php endif;?> |
---|
93 | |
---|
94 | CKEDITOR.plugins.addExternal('entrylink',dotclear.dcckeditor_plugin_url+'/js/ckeditor-plugins/entrylink/'); |
---|
95 | CKEDITOR.plugins.addExternal('dclink',dotclear.dcckeditor_plugin_url+'/js/ckeditor-plugins/dclink/'); |
---|
96 | CKEDITOR.plugins.addExternal('media',dotclear.dcckeditor_plugin_url+'/js/ckeditor-plugins/media/'); |
---|
97 | CKEDITOR.plugins.addExternal('img',dotclear.dcckeditor_plugin_url+'/js/ckeditor-plugins/img/'); |
---|
98 | <?php if (!empty($dcckeditor_textcolor_button) || !empty($dcckeditor_background_textcolor_button)):?> |
---|
99 | // button add "More Colors..." can be added if colordialog plugin is enabled |
---|
100 | CKEDITOR.config.colorButton_enableMore = true; |
---|
101 | <?php endif;?> |
---|
102 | |
---|
103 | <?php if (!empty($extraPlugins) && count($extraPlugins)>0) { |
---|
104 | foreach ($extraPlugins as $plugin) { |
---|
105 | printf("\tCKEDITOR.plugins.addExternal('%s','%s');\n", $plugin['name'], $plugin['url']); |
---|
106 | } |
---|
107 | } |
---|
108 | ?> |
---|
109 | if (dotclear.ckeditor_context===undefined || dotclear.ckeditor_tags_context[dotclear.ckeditor_context]===undefined) { |
---|
110 | return; |
---|
111 | } |
---|
112 | $(dotclear.ckeditor_tags_context[dotclear.ckeditor_context].join(',')).ckeditor({ |
---|
113 | <?php |
---|
114 | $defautExtraPlugins = 'entrylink,dclink,media,justify,colorbutton,format,img'; |
---|
115 | if (!empty($extraPlugins) && count($extraPlugins)>0) { |
---|
116 | foreach ($extraPlugins as $plugin) { |
---|
117 | $defautExtraPlugins .= ','. $plugin['name']; |
---|
118 | } |
---|
119 | } |
---|
120 | ?> |
---|
121 | extraPlugins: '<?php echo $defautExtraPlugins;?>', |
---|
122 | |
---|
123 | keystrokes: [ |
---|
124 | [ CKEDITOR.CTRL + (CKEDITOR.env.mac ? CKEDITOR.ALT : CKEDITOR.SHIFT) + |
---|
125 | dotclear.msg.link_accesskey.toUpperCase().charCodeAt(0), 'dcLinkCommand' ], // Ctrl+Alt+l |
---|
126 | [ CKEDITOR.CTRL + (CKEDITOR.env.mac ? CKEDITOR.ALT : CKEDITOR.SHIFT) + |
---|
127 | dotclear.msg.img_select_accesskey.toUpperCase().charCodeAt(0), 'mediaCommand' ], // Ctrl+Alt+m |
---|
128 | ], |
---|
129 | |
---|
130 | <?php if (!empty($dcckeditor_format_select)):?> |
---|
131 | // format tags |
---|
132 | <?php if (!empty($dcckeditor_format_tags)):?> |
---|
133 | format_tags: '<?php echo $dcckeditor_format_tags;?>', |
---|
134 | <?php else:?> |
---|
135 | format_tags: 'p;h1;h2;h3;h4;h5;h6;pre;address', |
---|
136 | <?php endif;?> |
---|
137 | // following definition are needed to be specialized |
---|
138 | format_p: { element: 'p' }, |
---|
139 | format_h1: { element: 'h1' }, |
---|
140 | format_h2: { element: 'h2' }, |
---|
141 | format_h3: { element: 'h3' }, |
---|
142 | format_h4: { element: 'h4' }, |
---|
143 | format_h5: { element: 'h5' }, |
---|
144 | format_h6: { element: 'h6' }, |
---|
145 | format_pre: { element: 'pre' }, |
---|
146 | format_address: { element: 'address' }, |
---|
147 | <?php endif;?> |
---|
148 | |
---|
149 | entities: false, |
---|
150 | removeButtons: '', |
---|
151 | allowedContent: true, |
---|
152 | toolbar: [ |
---|
153 | { |
---|
154 | name: 'basicstyles', |
---|
155 | items: [ |
---|
156 | <?php if (!empty($dcckeditor_format_select)):?> |
---|
157 | 'Format', |
---|
158 | <?php endif;?> |
---|
159 | 'Bold','Italic','Underline','Strike','Subscript','Superscript','Code','Blockquote', |
---|
160 | |
---|
161 | <?php if (!empty($dcckeditor_list_buttons)):?> |
---|
162 | 'NumberedList', 'BulletedList', |
---|
163 | <?php endif;?> |
---|
164 | 'RemoveFormat' |
---|
165 | ] |
---|
166 | }, |
---|
167 | <?php if (!empty($dcckeditor_clipboard_buttons)):?> |
---|
168 | { |
---|
169 | name: 'clipoard', |
---|
170 | items: ['Cut','Copy','Paste','PasteText','PasteFromWord'] |
---|
171 | }, |
---|
172 | <?php endif;?> |
---|
173 | <?php if (!empty($dcckeditor_alignment_buttons)):?> |
---|
174 | { |
---|
175 | name: 'paragraph', |
---|
176 | items: ['JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'] |
---|
177 | }, |
---|
178 | <?php endif;?> |
---|
179 | <?php if (!empty($dcckeditor_table_button)):?> |
---|
180 | { |
---|
181 | name: 'table', |
---|
182 | items: ['Table'] |
---|
183 | }, |
---|
184 | <?php endif;?> |
---|
185 | { |
---|
186 | name: 'custom', |
---|
187 | items: [ |
---|
188 | 'EntryLink','dcLink','Media','img','-', |
---|
189 | 'Source' |
---|
190 | <?php if (!empty($dcckeditor_textcolor_button)):?> |
---|
191 | ,'TextColor' |
---|
192 | <?php endif;?> |
---|
193 | <?php if (!empty($dcckeditor_background_textcolor_button)):?> |
---|
194 | ,'BGColor' |
---|
195 | <?php endif;?> |
---|
196 | ] |
---|
197 | }, |
---|
198 | { |
---|
199 | name: 'special', |
---|
200 | items: [ |
---|
201 | 'Maximize' |
---|
202 | ] |
---|
203 | }, |
---|
204 | <?php // add extra buttons comming from dotclear plugins |
---|
205 | if (!empty($extraPlugins) && count($extraPlugins)>0) { |
---|
206 | $extraPlugins_str = "{name: 'extra', items: [%s]},\n"; |
---|
207 | $extra_icons = ''; |
---|
208 | foreach ($extraPlugins as $plugin) { |
---|
209 | $extra_icons .= sprintf("'%s',", $plugin['button']); |
---|
210 | } |
---|
211 | printf($extraPlugins_str, $extra_icons); |
---|
212 | } |
---|
213 | ?> |
---|
214 | ] |
---|
215 | }); |
---|
216 | |
---|
217 | CKEDITOR.on('instanceReady', function(e) { |
---|
218 | if ($('label[for="post_excerpt"] a img').attr('src')==dotclear.img_minus_src) { |
---|
219 | $('#cke_post_excerpt').removeClass('hide'); |
---|
220 | } else { |
---|
221 | $('#cke_post_excerpt').addClass('hide'); |
---|
222 | } |
---|
223 | |
---|
224 | $('#excerpt-area label').click(function() { |
---|
225 | $('#cke_post_excerpt').toggleClass('hide',$('#post_excerpt').hasClass('hide')); |
---|
226 | }); |
---|
227 | }); |
---|
228 | |
---|
229 | // @TODO: find a better way to retrieve active editor |
---|
230 | for (var id in CKEDITOR.instances) { |
---|
231 | CKEDITOR.instances[id].on('focus', function(e) { |
---|
232 | $.active_editor = e.editor.name; |
---|
233 | }); |
---|
234 | } |
---|
235 | }); |
---|