Dotclear

source: plugins/dcCKEditor/_post_config.php @ 3040:3932f30ecefb

Revision 3040:3932f30ecefb, 6.4 KB checked in by Nicolas <nikrou77@…>, 10 years ago (diff)

Display content with height param from settings
Fix #2106

Line 
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
13if (!defined('DC_CONTEXT_ADMIN')) { return; }
14header('Content-type: text/javascript');
15if (!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     CKEDITOR.config.skin = 'dotclear,'+dotclear.dcckeditor_plugin_url+'/js/ckeditor-skins/dotclear/';
82     CKEDITOR.config.baseHref = dotclear.base_url;
83     CKEDITOR.config.height = '<?php echo $core->auth->getOption('edit_size') * 14;?>px';
84
85<?php if (!empty($dcckeditor_cancollapse_button)):?>
86     CKEDITOR.config.toolbarCanCollapse = true;
87<?php endif;?>
88
89     CKEDITOR.plugins.addExternal('entrylink',dotclear.dcckeditor_plugin_url+'/js/ckeditor-plugins/entrylink/');
90     CKEDITOR.plugins.addExternal('dclink',dotclear.dcckeditor_plugin_url+'/js/ckeditor-plugins/dclink/');
91     CKEDITOR.plugins.addExternal('media',dotclear.dcckeditor_plugin_url+'/js/ckeditor-plugins/media/');
92     CKEDITOR.plugins.addExternal('img',dotclear.dcckeditor_plugin_url+'/js/ckeditor-plugins/img/');
93
94<?php if (!empty($extraPlugins) && count($extraPlugins)>0) {
95     foreach ($extraPlugins as $plugin) {
96          printf("\tCKEDITOR.plugins.addExternal('%s','%s');\n", $plugin['name'], $plugin['url']);
97     }
98}
99?>
100    if (dotclear.ckeditor_context===undefined || dotclear.ckeditor_tags_context[dotclear.ckeditor_context]===undefined) {
101        return;
102    }
103     $(dotclear.ckeditor_tags_context[dotclear.ckeditor_context].join(',')).ckeditor({
104<?php
105$defautExtraPlugins = 'entrylink,dclink,media,justify,colorbutton,format,img';
106if (!empty($extraPlugins) && count($extraPlugins)>0) {
107     foreach ($extraPlugins as $plugin) {
108          $defautExtraPlugins .= ','. $plugin['name'];
109     }
110}
111?>
112          extraPlugins: '<?php echo $defautExtraPlugins;?>',
113
114          <?php if (!empty($dcckeditor_format_select)):?>
115          // format tags
116<?php if (!empty($dcckeditor_format_tags)):?>
117        format_tags: '<?php echo $dcckeditor_format_tags;?>',
118<?php else:?>
119          format_tags: 'p;h1;h2;h3;h4;h5;h6;pre;address',
120<?php endif;?>
121          // following definition are needed to be specialized
122          format_p: { element: 'p' },
123          format_h1: { element: 'h1' },
124          format_h2: { element: 'h2' },
125          format_h3: { element: 'h3' },
126          format_h4: { element: 'h4' },
127          format_h5: { element: 'h5' },
128          format_h6: { element: 'h6' },
129          format_pre: { element: 'pre' },
130          format_address: { element: 'address' },
131          <?php endif;?>
132
133          entities: false,
134          removeButtons: '',
135          allowedContent: true,
136          toolbar: [
137               {
138                    name: 'basicstyles',
139                    items: [
140<?php if (!empty($dcckeditor_format_select)):?>
141                         'Format',
142<?php endif;?>
143                         'Bold','Italic','Underline','Strike','Subscript','Superscript','Code','Blockquote',
144
145<?php if (!empty($dcckeditor_list_buttons)):?>
146                         'NumberedList', 'BulletedList',
147<?php endif;?>
148                         'RemoveFormat'
149                    ]
150               },
151<?php if (!empty($dcckeditor_clipboard_buttons)):?>
152               {
153                    name: 'clipoard',
154                    items: ['Cut','Copy','Paste','PasteText','PasteFromWord']
155               },
156<?php endif;?>
157<?php if (!empty($dcckeditor_alignment_buttons)):?>
158               {
159                    name: 'paragraph',
160                    items: ['JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock']
161               },
162<?php endif;?>
163<?php if (!empty($dcckeditor_table_button)):?>
164               {
165                    name: 'table',
166                    items: ['Table']
167               },
168<?php endif;?>
169               {
170                    name: 'custom',
171                    items: [
172                         'EntryLink','dcLink','Media','img','-',
173                         'Source'
174<?php if (!empty($dcckeditor_textcolor_button)):?>
175                ,'TextColor'
176<?php endif;?>
177                    ]
178               },
179            {
180                name: 'special',
181                items: [
182                    'Maximize'
183                ]
184            },
185               <?php // add extra buttons comming from dotclear plugins
186               if (!empty($extraPlugins) && count($extraPlugins)>0) {
187                    $extraPlugins_str = "{name: 'extra', items: [%s]},\n";
188                    $extra_icons = '';
189                    foreach ($extraPlugins as $plugin) {
190                         $extra_icons .= sprintf("'%s',", $plugin['button']);
191                    }
192                    printf($extraPlugins_str, $extra_icons);
193               }
194               ?>
195          ]
196     });
197
198     CKEDITOR.on('instanceReady', function(e) {
199          if ($('label[for="post_excerpt"] a img').attr('src')==dotclear.img_minus_src) {
200               $('#cke_post_excerpt').removeClass('hide');
201          } else {
202               $('#cke_post_excerpt').addClass('hide');
203          }
204
205          $('#excerpt-area label').click(function() {
206               $('#cke_post_excerpt').toggleClass('hide',$('#post_excerpt').hasClass('hide'));
207          });
208     });
209
210     // @TODO: find a better way to retrieve active editor
211     for (var id in CKEDITOR.instances) {
212          CKEDITOR.instances[id].on('focus', function(e) {
213               $.active_editor = e.editor.name;
214          });
215     }
216});
Note: See TracBrowser for help on using the repository browser.

Sites map