42 public $toolbarstartexpanded;
47 public $uselocalbrowser;
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())
76 dol_syslog(get_class($this).
"::DolEditor htmlname=".$htmlname.
" width=".$width.
" height=".$height.
" toolbarname=".$toolbarname);
79 $rows = round($height / 20);
82 $cols = ($width ? round($width / 6) : 80);
84 $shorttoolbarname = preg_replace(
'/_encoded$/',
'', $toolbarname);
87 $defaulteditor =
'ckeditor';
88 $this->tool = !
getDolGlobalString(
'FCKEDITOR_EDITORNAME') ? $defaulteditor : $conf->global->FCKEDITOR_EDITORNAME;
89 $this->uselocalbrowser = $uselocalbrowser;
90 $this->readonly = $readonly;
93 if ((!isModEnabled(
'fckeditor') && $okforextendededitor !==
'ace') || empty($okforextendededitor)) {
94 $this->tool =
'textarea';
96 if ($okforextendededitor ===
'ace') {
100 if (empty($conf->use_javascript_ajax)) {
101 $this->tool =
'textarea';
104 if ( isset($poscursor[
'find']) ) {
106 $lines = explode(
"\n", $content);
107 $nblines = count($lines);
108 for ($i = 0 ; $i < $nblines ; $i++) {
109 if (preg_match(
'/'.$poscursor[
'find'].
'/', $lines[$i])) {
114 if ($posy != 0 ) $poscursor[
'y'] = $posy;
118 if (in_array($this->tool, array(
'textarea',
'ckeditor',
'ace'))) {
122 $this->content = $content;
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));
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'];
150 public function Create($noprint = 0, $morejs =
'', $disallowAnyContent =
true, $titlecontent =
'', $option =
'', $moreparam =
'', $morecss =
'')
153 global $conf, $langs;
156 if (isset($conf->global->FCKEDITOR_ALLOW_ANY_CONTENT)) {
163 if (in_array($this->tool, array(
'textarea',
'ckeditor'))) {
168 $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.
'">';
169 $out .= htmlspecialchars($this->content);
170 $out .=
'</textarea>';
172 if ($this->tool ==
'ckeditor' && !empty($conf->use_javascript_ajax) && isModEnabled(
'fckeditor')) {
173 if (!defined(
'REQUIRE_CKEDITOR')) {
174 define(
'REQUIRE_CKEDITOR',
'1');
179 $pluginstodisable =
'elementspath,save,flash,div,anchor';
181 $pluginstodisable .=
',specialchar';
183 if (!empty($conf->dol_optimize_smallscreen)) {
184 $pluginstodisable .=
',scayt,wsc,find,undo';
187 $pluginstodisable .=
',wsc';
190 $pluginstodisable .=
',exportpdf';
193 $this->uselocalbrowser = 0;
195 $scaytautostartup =
'';
197 $scaytautostartup =
'scayt_autoStartup: true,';
198 $scaytautostartup .=
'scayt_sLang: \''.dol_escape_js($langs->getDefaultLang()).
'\',
';
200 $pluginstodisable .= ',scayt
';
203 $htmlencode_force = preg_match('/_encoded$/
', $this->toolbarname) ? 'true' : 'false';
205 $out .= '<!-- Output ckeditor disallowAnyContent=
'.dol_escape_htmltag($disallowAnyContent).' toolbarname=
'.dol_escape_htmltag($this->toolbarname).' -->
'."\n";
206 $out .= '<script nonce=
"'.getNonce().'" type=
"text/javascript">
207 $(document).ready(
function () {
211 tmpeditor = CKEDITOR.replace(\
''.
dol_escape_js($this->htmlname).
'\',
214 customConfig: ckeditorConfig,
215 removePlugins: \
''.dol_escape_js($pluginstodisable).
'\',
217 readOnly:
'.($this->readonly ? 'true' : 'false').',
218 htmlEncodeOutput:
'.dol_escape_js($htmlencode_force).',
219 allowedContent:
'.($disallowAnyContent ? 'false' : 'true').',
220 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 */
221 disallowedContent: \'\', /* Tags that are not allowed */
222 fullPage: '.($fullpage ?
'true' :
'false').
', /* if true, the html, header and body tags are kept */
224 toolbarStartupExpanded:
'.($this->toolbarstartexpanded ? 'true' : 'false').',
225 width:
'.($this->width ? '\
''.dol_escape_js($this->width).
'\'' :
'\'\
'').
',
228 '.$scaytautostartup.'
229 language: \
''.dol_escape_js($langs->defaultlang).
'\',
230 textDirection: \
''.dol_escape_js($langs->trans(
"DIRECTION")).
'\',
232 instanceReady :
function(ev) {
233 console.log(\
'ckeditor '.
dol_escape_js($this->htmlname).
' instanceReady\');
235 /* If we found the attribute required on source div, we remove it (not compatible with ckeditor) */
236 /* Disabled, because attribute required should never be used on fields for doleditor */
237 /* jQuery("#'.
dol_escape_js($this->htmlname).
'").attr("required", false); */
239 // Output paragraphs as <p>Text</p>.
240 this.dataProcessor.writer.setRules( \'p\', {
242 breakBeforeOpen : true,
243 breakAfterOpen : false,
244 breakBeforeClose : false,
245 breakAfterClose : true
248 /* This is to remove the tab Link on image popup. Does not work, so commented */
249 /* dialogDefinition: function (event) {
250 var dialogName = event.data.name;
251 var dialogDefinition = event.data.definition;
252 if (dialogName == \'image\') {
253 dialogDefinition.removeContents(\'Link\');
257 disableNativeSpellChecker: '.(
getDolGlobalString(
'CKEDITOR_NATIVE_SPELLCHECKER') ?
'false' :
'true');
259 if ($this->uselocalbrowser) {
263 $out .=
' filebrowserBrowseUrl : ckeditorFilebrowserBrowseUrl,';
264 $out .=
' filebrowserImageBrowseUrl : ckeditorFilebrowserImageBrowseUrl,';
276 $out .=
' filebrowserWindowWidth : \'900\',
277 filebrowserWindowHeight : \'500\',
278 filebrowserImageWindowWidth : \'900\',
279 filebrowserImageWindowHeight : \'500\'';
281 $out .=
' })'.$morejs;
285 $out .=
'</script>'.
"\n";
291 if (preg_match(
'/^ace/', $this->tool)) {
295 $out .=
"\n".
'<!-- Output Ace editor -->'.
"\n";
298 $out .=
'<div class="aceeditorstatusbar" id="statusBar'.$this->htmlname.
'">'.$titlecontent;
299 $out .=
' - <span id="morelines" class="right classlink cursorpointer morelines'.$this->htmlname.
'">'.
dol_escape_htmltag($langs->trans(
"ShowMoreLines")).
'</span> ';
301 $out .=
'<script nonce="'.getNonce().
'" type="text/javascript">'.
"\n";
302 $out .=
'jQuery(document).ready(function() {'.
"\n";
303 $out .=
' var aceEditor = window.ace.edit("'.$this->htmlname.
'aceeditorid");
304 aceEditor.moveCursorTo('.($this->posy + 1).
','.$this->posx.
');
305 aceEditor.gotoLine('.($this->posy + 1).
','.$this->posx.
');
306 var StatusBar = window.ace.require("ace/ext/statusbar").StatusBar; // Init status bar. Need lib ext-statusbar
307 var statusBar = new StatusBar(aceEditor, document.getElementById("statusBar'.$this->htmlname.
'")); // Init status bar. Need lib ext-statusbar
309 var oldNbOfLines = 0;
310 jQuery(".morelines'.$this->htmlname.
'").click(function() {
311 var aceEditorClicked = window.ace.edit("'.$this->htmlname.
'aceeditorid");
312 currentline = aceEditorClicked.getOption("maxLines");
313 if (oldNbOfLines == 0)
315 oldNbOfLines = currentline;
317 console.log("We click on more lines, oldNbOfLines is "+oldNbOfLines+", we have currently "+currentline);
318 if (currentline < 500)
320 aceEditorClicked.setOptions({ maxLines: 500 });
324 aceEditorClicked.setOptions({ maxLines: oldNbOfLines });
328 $out .=
'</script>'.
"\n";
331 $out .=
'<pre id="'.$this->htmlname.
'aceeditorid" style="'.($this->width ?
'width: '.$this->width.
'px; ' :
'');
332 $out .= ($this->height ?
' height: '.$this->height.
'px; ' :
'');
335 $out .= htmlspecialchars($this->content);
337 $out .=
'<input type="hidden" id="'.$this->htmlname.
'_x" name="'.$this->htmlname.
'_x">';
338 $out .=
'<input type="hidden" id="'.$this->htmlname.
'_y" name="'.$this->htmlname.
'_y">';
339 $out .=
'<textarea id="'.$this->htmlname.
'" name="'.$this->htmlname.
'" style="width:0px; height: 0px; display: none;">';
340 $out .= htmlspecialchars($this->content);
341 $out .=
'</textarea>';
343 $out .=
'<script nonce="'.getNonce().
'" type="text/javascript">'.
"\n";
344 $out .=
'var aceEditor = window.ace.edit("'.$this->htmlname.
'aceeditorid");
346 aceEditor.session.setMode("ace/mode/'.$format.
'");
347 aceEditor.setOptions({
348 enableBasicAutocompletion: true, // the editor completes the statement when you hit Ctrl + Space. Need lib ext-language_tools.js
349 enableLiveAutocompletion: false, // the editor completes the statement while you are typing. Need lib ext-language_tools.js
350 showPrintMargin: false, // hides the vertical limiting strip
352 maxLines: '.(empty($this->height) ?
'34' : (round($this->height / 10))).
',
353 fontSize: "110%" // ensures that the editor fits in the environment
356 // defines the style of the editor
357 aceEditor.setTheme("ace/theme/chrome");
358 // hides line numbers (widens the area occupied by error and warning messages)
359 //aceEditor.renderer.setOption("showLineNumbers", false);
360 // ensures proper autocomplete, validation and highlighting of JavaScript code
361 //aceEditor.getSession().setMode("ace/mode/javascript_expression");
364 $out .=
'jQuery(document).ready(function() {
365 jQuery(".buttonforacesave").click(function() {
366 console.log("We click on savefile button for component '.dol_escape_js($this->htmlname).
'");
367 var aceEditor = window.ace.edit("'.
dol_escape_js($this->htmlname).
'aceeditorid");
369 var cursorPos = aceEditor.getCursorPosition();
370 //console.log(cursorPos);
372 jQuery("#'.
dol_escape_js($this->htmlname).
'_x").val(cursorPos.column);
373 jQuery("#'.
dol_escape_js($this->htmlname).
'_y").val(cursorPos.row);
375 //console.log(aceEditor.getSession().getValue());
376 // Inject content of editor into the original HTML field.
377 jQuery("#'.
dol_escape_js($this->htmlname).
'").val(aceEditor.getSession().getValue());
378 /*if (jQuery("#'.
dol_escape_js($this->htmlname).
'").html().length > 0) return true;
382 console.log("Failed to retrieve js object ACE from its name");
387 $out .=
'</script>'.
"\n";
391 $out .=
'Error, unknown value for tool '.$this->tool.
' in DolEditor Create function.';
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