dolibarr 20.0.4
doleditor.class.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2006-2008 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2021 Gaƫtan MAISON <gm@ilad.org>
4 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 * or see https://www.gnu.org/
19 */
20
32{
33 public $tool; // Store the selected tool
34
35 // If using fckeditor
36 public $editor;
37
38 // If not using fckeditor
39 public $content;
40 public $htmlname;
41 public $toolbarname;
42 public $toolbarstartexpanded;
43 public $rows;
44 public $cols;
45 public $height;
46 public $width;
47 public $uselocalbrowser;
48 public $readonly;
49 public $posx;
50 public $posy;
51
52
72 public function __construct($htmlname, $content, $width = '', $height = 200, $toolbarname = 'Basic', $toolbarlocation = 'In', $toolbarstartexpanded = false, $uselocalbrowser = 1, $okforextendededitor = true, $rows = 0, $cols = '', $readonly = 0, $poscursor = array())
73 {
74 global $conf;
75
76 dol_syslog(get_class($this)."::DolEditor htmlname=".$htmlname." width=".$width." height=".$height." toolbarname=".$toolbarname);
77
78 if (!$rows) {
79 $rows = round($height / 20);
80 }
81 if (!$cols) {
82 $cols = ($width ? round($width / 6) : 80);
83 }
84 $shorttoolbarname = preg_replace('/_encoded$/', '', $toolbarname);
85
86 // Name of extended editor to use (FCKEDITOR_EDITORNAME can be 'ckeditor' or 'fckeditor')
87 $defaulteditor = 'ckeditor';
88 $this->tool = !getDolGlobalString('FCKEDITOR_EDITORNAME') ? $defaulteditor : $conf->global->FCKEDITOR_EDITORNAME;
89 $this->uselocalbrowser = $uselocalbrowser;
90 $this->readonly = $readonly;
91
92 // Check if extended editor is ok. If not we force textarea
93 if ((!isModEnabled('fckeditor') && $okforextendededitor !== 'ace') || empty($okforextendededitor)) {
94 $this->tool = 'textarea';
95 }
96 if ($okforextendededitor === 'ace') {
97 $this->tool = 'ace';
98 }
99 //if ($conf->dol_use_jmobile) $this->tool = 'textarea'; // ckeditor and ace seems ok with mobile
100 if (empty($conf->use_javascript_ajax)) { // If no javascript, we force use of textarea
101 $this->tool = 'textarea';
102 }
103
104 if ( isset($poscursor['find']) ) {
105 $posy = 0;
106 $lines = explode("\n", $content);
107 $nblines = count($lines);
108 for ($i = 0 ; $i < $nblines ; $i++) {
109 if (preg_match('/'.$poscursor['find'].'/', $lines[$i])) {
110 $posy = $i;
111 break;
112 }
113 }
114 if ($posy != 0 ) $poscursor['y'] = $posy;
115 }
116
117 // Define some properties
118 if (in_array($this->tool, array('textarea', 'ckeditor', 'ace'))) {
119 if ($this->tool == 'ckeditor' && !dol_textishtml($content)) { // We force content to be into HTML if we are using an advanced editor if content is not HTML.
120 $this->content = dol_nl2br($content);
121 } else {
122 $this->content = $content;
123 }
124 $this->htmlname = $htmlname;
125 $this->toolbarname = $shorttoolbarname;
126 $this->toolbarstartexpanded = $toolbarstartexpanded;
127 $this->rows = max(ROWS_3, $rows);
128 $this->cols = (preg_match('/%/', $cols) ? $cols : max(40, $cols)); // If $cols is a percent, we keep it, otherwise, we take max
129 $this->height = $height;
130 $this->width = $width;
131 $this->posx = empty($poscursor['x']) ? 0 : $poscursor['x'];
132 $this->posy = empty($poscursor['y']) ? 0 : $poscursor['y'];
133 }
134 }
135
136 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
150 public function Create($noprint = 0, $morejs = '', $disallowAnyContent = true, $titlecontent = '', $option = '', $moreparam = '', $morecss = '')
151 {
152 // phpcs:enable
153 global $conf, $langs;
154
155 $fullpage = false;
156 if (isset($conf->global->FCKEDITOR_ALLOW_ANY_CONTENT)) {
157 $disallowAnyContent = !getDolGlobalString('FCKEDITOR_ALLOW_ANY_CONTENT'); // Only predefined list of html tags are allowed or all
158 }
159
160 $found = 0;
161 $out = '';
162
163 $this->content = ($this->content ?? ''); // to avoid htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated
164
165 if (in_array($this->tool, array('textarea', 'ckeditor'))) {
166 $found = 1;
167 //$out.= '<textarea id="'.$this->htmlname.'" name="'.$this->htmlname.'" '.($this->readonly?' disabled':'').' rows="'.$this->rows.'"'.(preg_match('/%/',$this->cols)?' style="margin-top: 5px; width: '.$this->cols.'"':' cols="'.$this->cols.'"').' class="flat">';
168 // TODO We do not put the 'disabled' tag because on a read form, it change style with grey.
169 //print $this->content;
170 $out .= '<textarea id="'.$this->htmlname.'" name="'.$this->htmlname.'" rows="'.$this->rows.'"'.(preg_match('/%/', $this->cols) ? ' style="margin-top: 5px; width: '.$this->cols.'"' : ' cols="'.$this->cols.'"').' '.($moreparam ? $moreparam : '').' class="flat '.$morecss.'">';
171 $out .= htmlspecialchars($this->content);
172 $out .= '</textarea>';
173
174 if ($this->tool == 'ckeditor' && !empty($conf->use_javascript_ajax) && isModEnabled('fckeditor')) {
175 if (!defined('REQUIRE_CKEDITOR')) {
176 define('REQUIRE_CKEDITOR', '1');
177 }
178
179 $skin = getDolGlobalString('FCKEDITOR_SKIN', 'moono-lisa'); // default with ckeditor 4.6 : moono-lisa
180
181 $pluginstodisable = 'elementspath,save,flash,div,anchor';
182 if (!getDolGlobalString('FCKEDITOR_ENABLE_SPECIALCHAR')) {
183 $pluginstodisable .= ',specialchar';
184 }
185 if (!empty($conf->dol_optimize_smallscreen)) {
186 $pluginstodisable .= ',scayt,wsc,find,undo';
187 }
188 if (!getDolGlobalString('FCKEDITOR_ENABLE_WSC')) { // spellchecker has end of life december 2021
189 $pluginstodisable .= ',wsc';
190 }
191 if (!getDolGlobalString('FCKEDITOR_ENABLE_PDF')) {
192 $pluginstodisable .= ',exportpdf';
193 }
194 if (getDolGlobalInt('MAIN_DISALLOW_URL_INTO_DESCRIPTIONS') == 2) {
195 $this->uselocalbrowser = 0; // Can't use browser to navigate into files. Only links with "<img src=data:..." are allowed.
196 }
197 $scaytautostartup = '';
198 if (getDolGlobalString('FCKEDITOR_ENABLE_SCAYT_AUTOSTARTUP')) {
199 $scaytautostartup = 'scayt_autoStartup: true,';
200 $scaytautostartup .= 'scayt_sLang: \''.dol_escape_js($langs->getDefaultLang()).'\',';
201 } else {
202 $pluginstodisable .= ',scayt';
203 }
204
205 $htmlencode_force = preg_match('/_encoded$/', $this->toolbarname) ? 'true' : 'false';
206
207 $out .= '<!-- Output ckeditor disallowAnyContent='.dol_escape_htmltag($disallowAnyContent).' toolbarname='.dol_escape_htmltag($this->toolbarname).' -->'."\n";
208 $out .= '<script nonce="'.getNonce().'" type="text/javascript">
209 $(document).ready(function () {
210 /* console.log("Run ckeditor"); */
211 /* if (CKEDITOR.loadFullCore) CKEDITOR.loadFullCore(); */
212 /* should be editor=CKEDITOR.replace but what if there is several editors ? */
213 tmpeditor = CKEDITOR.replace(\''.dol_escape_js($this->htmlname).'\',
214 {
215 /* property:xxx is same than CKEDITOR.config.property = xxx */
216 customConfig: ckeditorConfig,
217 removePlugins: \''.dol_escape_js($pluginstodisable).'\',
218 versionCheck: false,
219 readOnly: '.($this->readonly ? 'true' : 'false').',
220 htmlEncodeOutput: '.dol_escape_js($htmlencode_force).',
221 allowedContent: '.($disallowAnyContent ? 'false' : 'true').', /* Advanced Content Filter (ACF) is on when allowedContent is false */
222 extraAllowedContent: \'a[target];section[contenteditable,id];div{float,display}\', /* Allow a tag with attribute target, allow seciont tag and allow the style float and display into div to default other allowed tags */
223 disallowedContent: \'\', /* Tags that are not allowed */
224 fullPage: '.($fullpage ? 'true' : 'false').', /* if true, the html, header and body tags are kept */
225 toolbar: \''.dol_escape_js($this->toolbarname).'\',
226 toolbarStartupExpanded: '.($this->toolbarstartexpanded ? 'true' : 'false').',
227 width: '.($this->width ? '\''.dol_escape_js($this->width).'\'' : '\'\'').',
228 height: '.dol_escape_js($this->height).',
229 skin: \''.dol_escape_js($skin).'\',
230 '.$scaytautostartup.'
231 language: \''.dol_escape_js($langs->defaultlang).'\',
232 textDirection: \''.dol_escape_js($langs->trans("DIRECTION")).'\',
233 on : {
234 instanceReady : function(ev) {
235 console.log(\'ckeditor '.dol_escape_js($this->htmlname).' instanceReady\');
236
237 /* If we found the attribute required on source div, we remove it (not compatible with ckeditor) */
238 /* Disabled, because attribute required should never be used on fields for doleditor */
239 /* jQuery("#'.dol_escape_js($this->htmlname).'").attr("required", false); */
240
241 // Output paragraphs as <p>Text</p>.
242 this.dataProcessor.writer.setRules( \'p\', {
243 indent : false,
244 breakBeforeOpen : true,
245 breakAfterOpen : false,
246 breakBeforeClose : false,
247 breakAfterClose : true
248 });
249 },
250 /* This is to remove the tab Link on image popup. Does not work, so commented */
251 /* dialogDefinition: function (event) {
252 var dialogName = event.data.name;
253 var dialogDefinition = event.data.definition;
254 if (dialogName == \'image\') {
255 dialogDefinition.removeContents(\'Link\');
256 }
257 } */
258 },
259 disableNativeSpellChecker: '.(getDolGlobalString('CKEDITOR_NATIVE_SPELLCHECKER') ? 'false' : 'true');
260
261 if ($this->uselocalbrowser) {
262 $out .= ','."\n";
263 // To use filemanager with old fckeditor (GPL)
264 // Note: ckeditorFilebrowserBrowseUrl and ckeditorFilebrowserImageBrowseUrl are defined in header by main.inc.php. They include url to browser with url of upload connector in parameter
265 $out .= ' filebrowserBrowseUrl : ckeditorFilebrowserBrowseUrl,';
266 $out .= ' filebrowserImageBrowseUrl : ckeditorFilebrowserImageBrowseUrl,';
267 //$out.= ' filebrowserUploadUrl : \''.DOL_URL_ROOT.'/includes/fckeditor/editor/filemanagerdol/connectors/php/upload.php?Type=File\',';
268 //$out.= ' filebrowserImageUploadUrl : \''.DOL_URL_ROOT.'/includes/fckeditor/editor/filemanagerdol/connectors/php/upload.php?Type=Image\',';
269 $out .= "\n";
270 // To use filemanager with ckfinder (Non free) and ckfinder directory is inside htdocs/includes
271 /* $out.= ' filebrowserBrowseUrl : \''.DOL_URL_ROOT.'/includes/ckfinder/ckfinder.html\',
272 filebrowserImageBrowseUrl : \''.DOL_URL_ROOT.'/includes/ckfinder/ckfinder.html?Type=Images\',
273 filebrowserFlashBrowseUrl : \''.DOL_URL_ROOT.'/includes/ckfinder/ckfinder.html?Type=Flash\',
274 filebrowserUploadUrl : \''.DOL_URL_ROOT.'/includes/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Files\',
275 filebrowserImageUploadUrl : \''.DOL_URL_ROOT.'/includes/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Images\',
276 filebrowserFlashUploadUrl : \''.DOL_URL_ROOT.'/includes/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Flash\','."\n";
277 */
278 $out .= ' filebrowserWindowWidth : \'900\',
279 filebrowserWindowHeight : \'500\',
280 filebrowserImageWindowWidth : \'900\',
281 filebrowserImageWindowHeight : \'500\'';
282 }
283 $out .= ' })'.$morejs; // end CKEditor.replace
284 // Show the CKEditor javascript object once loaded is ready 'For debug)
285 //$out .= '; CKEDITOR.on(\'instanceReady\', function(ck) { ck.editor.removeMenuItem(\'maximize\'); ck.editor.removeMenuItem(\'Undo\'); ck.editor.removeMenuItem(\'undo\'); console.log(ck.editor); console.log(ck.editor.toolbar[0]); }); ';
286 $out .= '});'."\n"; // end document.ready
287 $out .= '</script>'."\n";
288 }
289 }
290
291 // Output editor ACE
292 // Warning: ace.js and ext-statusbar.js must be loaded by the parent page.
293 if (preg_match('/^ace/', $this->tool)) {
294 $found = 1;
295 $format = $option;
296
297 $out .= "\n".'<!-- Output Ace editor -->'."\n";
298
299 if ($titlecontent) {
300 $out .= '<div class="aceeditorstatusbar" id="statusBar'.$this->htmlname.'">'.$titlecontent;
301 $out .= ' &nbsp; - &nbsp; <span id="morelines" class="right classlink cursorpointer morelines'.$this->htmlname.'">'.dol_escape_htmltag($langs->trans("ShowMoreLines")).'</span> &nbsp; &nbsp; ';
302 $out .= '</div>';
303 $out .= '<script nonce="'.getNonce().'" type="text/javascript">'."\n";
304 $out .= 'jQuery(document).ready(function() {'."\n";
305 $out .= ' var aceEditor = window.ace.edit("'.$this->htmlname.'aceeditorid");
306 aceEditor.moveCursorTo('.($this->posy + 1).','.$this->posx.');
307 aceEditor.gotoLine('.($this->posy + 1).','.$this->posx.');
308 var StatusBar = window.ace.require("ace/ext/statusbar").StatusBar; // Init status bar. Need lib ext-statusbar
309 var statusBar = new StatusBar(aceEditor, document.getElementById("statusBar'.$this->htmlname.'")); // Init status bar. Need lib ext-statusbar
310
311 var oldNbOfLines = 0;
312 jQuery(".morelines'.$this->htmlname.'").click(function() {
313 var aceEditorClicked = window.ace.edit("'.$this->htmlname.'aceeditorid");
314 currentline = aceEditorClicked.getOption("maxLines");
315 if (oldNbOfLines == 0)
316 {
317 oldNbOfLines = currentline;
318 }
319 console.log("We click on more lines, oldNbOfLines is "+oldNbOfLines+", we have currently "+currentline);
320 if (currentline < 500)
321 {
322 aceEditorClicked.setOptions({ maxLines: 500 });
323 }
324 else
325 {
326 aceEditorClicked.setOptions({ maxLines: oldNbOfLines });
327 }
328 });
329 })';
330 $out .= '</script>'."\n";
331 }
332
333 $out .= '<pre id="'.$this->htmlname.'aceeditorid" style="'.($this->width ? 'width: '.$this->width.'px; ' : '');
334 $out .= ($this->height ? ' height: '.$this->height.'px; ' : '');
335 //$out.=" min-height: 100px;";
336 $out .= '">';
337 $out .= htmlspecialchars($this->content);
338 $out .= '</pre>';
339 $out .= '<input type="hidden" id="'.$this->htmlname.'_x" name="'.$this->htmlname.'_x">';
340 $out .= '<input type="hidden" id="'.$this->htmlname.'_y" name="'.$this->htmlname.'_y">';
341 $out .= '<textarea id="'.$this->htmlname.'" name="'.$this->htmlname.'" style="width:0px; height: 0px; display: none;">';
342 $out .= htmlspecialchars($this->content);
343 $out .= '</textarea>';
344
345 $out .= '<script nonce="'.getNonce().'" type="text/javascript">'."\n";
346 $out .= 'var aceEditor = window.ace.edit("'.$this->htmlname.'aceeditorid");
347
348 aceEditor.session.setMode("ace/mode/'.$format.'");
349 aceEditor.setOptions({
350 enableBasicAutocompletion: true, // the editor completes the statement when you hit Ctrl + Space. Need lib ext-language_tools.js
351 enableLiveAutocompletion: false, // the editor completes the statement while you are typing. Need lib ext-language_tools.js
352 showPrintMargin: false, // hides the vertical limiting strip
353 minLines: 10,
354 maxLines: '.(empty($this->height) ? '34' : (round($this->height / 10))).',
355 fontSize: "110%" // ensures that the editor fits in the environment
356 });
357
358 // defines the style of the editor
359 aceEditor.setTheme("ace/theme/chrome");
360 // hides line numbers (widens the area occupied by error and warning messages)
361 //aceEditor.renderer.setOption("showLineNumbers", false);
362 // ensures proper autocomplete, validation and highlighting of JavaScript code
363 //aceEditor.getSession().setMode("ace/mode/javascript_expression");
364 '."\n";
365
366 $out .= 'jQuery(document).ready(function() {
367 jQuery(".buttonforacesave").click(function() {
368 console.log("We click on savefile button for component '.dol_escape_js($this->htmlname).'");
369 var aceEditor = window.ace.edit("'.dol_escape_js($this->htmlname).'aceeditorid");
370 if (aceEditor) {
371 var cursorPos = aceEditor.getCursorPosition();
372 //console.log(cursorPos);
373 if (cursorPos) {
374 jQuery("#'.dol_escape_js($this->htmlname).'_x").val(cursorPos.column);
375 jQuery("#'.dol_escape_js($this->htmlname).'_y").val(cursorPos.row);
376 }
377 //console.log(aceEditor.getSession().getValue());
378 // Inject content of editor into the original HTML field.
379 jQuery("#'.dol_escape_js($this->htmlname).'").val(aceEditor.getSession().getValue());
380 /*if (jQuery("#'.dol_escape_js($this->htmlname).'").html().length > 0) return true;
381 else return false;*/
382 return true;
383 } else {
384 console.log("Failed to retrieve js object ACE from its name");
385 return false;
386 }
387 });
388 })';
389 $out .= '</script>'."\n";
390 }
391
392 if (empty($found)) {
393 $out .= 'Error, unknown value for tool '.$this->tool.' in DolEditor Create function.';
394 }
395
396 if ($noprint) {
397 return $out;
398 } else {
399 print $out;
400 }
401 }
402}
Class to manage a WYSIWYG editor.
__construct($htmlname, $content, $width='', $height=200, $toolbarname='Basic', $toolbarlocation='In', $toolbarstartexpanded=false, $uselocalbrowser=1, $okforextendededitor=true, $rows=0, $cols='', $readonly=0, $poscursor=array())
Create an object to build an HTML area to edit a large string content.
Create($noprint=0, $morejs='', $disallowAnyContent=true, $titlecontent='', $option='', $moreparam='', $morecss='')
Output edit area inside the HTML stream.
dol_nl2br($stringtoencode, $nl2brmode=0, $forxml=false)
Replace CRLF in string with a HTML BR tag.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_escape_js($stringtoescape, $mode=0, $noescapebackslashn=0)
Returns text escaped for inclusion into javascript code.
dol_textishtml($msg, $option=0)
Return if a text is a html content.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
if(preg_match('/crypted:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
Definition repair.php:137