dolibarr 25.0.0-alpha
website.class.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2007-2018 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2014 Juanjo Menent <jmenent@2byte.es>
4 * Copyright (C) 2015 Florian Henry <florian.henry@open-concept.pro>
5 * Copyright (C) 2015 Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr>
6 * Copyright (C) 2018-2026 Frédéric France <frederic.france@free.fr>
7 * Copyright (C) 2024-2026 MDW <mdeweerd@users.noreply.github.com>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <https://www.gnu.org/licenses/>.
21 */
22
29// Put here all includes required by your class file
30require_once DOL_DOCUMENT_ROOT.'/core/class/commonobject.class.php';
31//require_once DOL_DOCUMENT_ROOT . '/societe/class/societe.class.php';
32//require_once DOL_DOCUMENT_ROOT . '/product/class/product.class.php';
33
34
38class Website extends CommonObject
39{
43 public $element = 'website';
44
48 public $table_element = 'website';
49
53 protected $childtablesoncascade = array();
54
58 public $picto = 'globe';
59
63 public $ref;
64
68 public $description;
69
73 public $lang;
74
78 public $otherlang;
79
83 public $status;
84
88 public $fk_default_home;
89
93 public $fk_user_creat;
94
98 public $fk_user_modif;
99
103 public $virtualhost;
104
108 public $use_manifest;
109
113 public $position;
114
118 public $name_template;
119
120 const STATUS_DRAFT = 0;
121 const STATUS_VALIDATED = 1;
122
123
129 public function __construct(DoliDB $db)
130 {
131 $this->db = $db;
132
133 $this->ismultientitymanaged = 1;
134 }
135
143 public function create(User $user, $notrigger = 0)
144 {
145 global $conf, $langs;
146
147 dol_syslog(__METHOD__, LOG_DEBUG);
148
149 $error = 0;
150 $now = dol_now();
151
152 // Clean parameters
153 if (isset($this->entity)) {
154 $this->entity = (int) $this->entity;
155 }
156 if (isset($this->ref)) {
157 $this->ref = trim($this->ref);
158 }
159 if (isset($this->description)) {
160 $this->description = trim($this->description);
161 }
162 if (isset($this->status)) {
163 $this->status = (int) $this->status;
164 }
165 if (empty($this->date_creation)) {
166 $this->date_creation = $now;
167 }
168 if (empty($this->date_modification)) {
169 $this->date_modification = $now;
170 }
171 // Remove spaces and be sure we have main language only
172 $this->lang = preg_replace('/[_-].*$/', '', trim($this->lang)); // en_US or en-US -> en
173 $tmparray = explode(',', $this->otherlang);
174 if (is_array($tmparray)) {
175 foreach ($tmparray as $key => $val) {
176 // It possible we have empty val here if postparam WEBSITE_OTHERLANG is empty or set like this : 'en,,sv' or 'en,sv,'
177 if (empty(trim($val))) {
178 unset($tmparray[$key]);
179 continue;
180 }
181 $tmparray[$key] = preg_replace('/[_-].*$/', '', trim($val)); // en_US or en-US -> en
182 }
183 $this->otherlang = implode(',', $tmparray);
184 }
185
186 // Check parameters
187 if (empty($this->entity)) {
188 $this->entity = $conf->entity;
189 }
190 if (empty($this->lang)) {
191 $this->error = $langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("MainLanguage"));
192 return -1;
193 }
194
195 $pathofwebsite = $conf->website->dir_output.'/'.$this->ref;
196
197 // Insert request
198 $sql = 'INSERT INTO '.MAIN_DB_PREFIX.$this->table_element.'(';
199 $sql .= 'entity,';
200 $sql .= 'ref,';
201 $sql .= 'description,';
202 $sql .= 'lang,';
203 $sql .= 'otherlang,';
204 $sql .= 'status,';
205 $sql .= 'fk_default_home,';
206 $sql .= 'virtualhost,';
207 $sql .= 'fk_user_creat,';
208 $sql .= 'date_creation,';
209 $sql .= 'position,';
210 $sql .= 'tms';
211 $sql .= ') VALUES (';
212 $sql .= ' '.((empty($this->entity) && $this->entity != '0') ? 'NULL' : ((int) $this->entity)).',';
213 $sql .= ' '.(!isset($this->ref) ? 'NULL' : "'".$this->db->escape($this->ref)."'").',';
214 $sql .= ' '.(!isset($this->description) ? 'NULL' : "'".$this->db->escape($this->description)."'").',';
215 $sql .= ' '.(!isset($this->lang) ? 'NULL' : "'".$this->db->escape($this->lang)."'").',';
216 $sql .= ' '.(!isset($this->otherlang) ? 'NULL' : "'".$this->db->escape($this->otherlang)."'").',';
217 $sql .= ' '.(!isset($this->status) ? '1' : ((int) $this->status)).',';
218 $sql .= ' '.(!isset($this->fk_default_home) ? 'NULL' : ((int) $this->fk_default_home)).',';
219 $sql .= ' '.(!isset($this->virtualhost) ? 'NULL' : "'".$this->db->escape($this->virtualhost)."'").",";
220 $sql .= ' '.(!isset($this->fk_user_creat) ? ((int) $user->id) : ((int) $this->fk_user_creat)).',';
221 $sql .= ' '.(!isset($this->date_creation) || dol_strlen((string) $this->date_creation) == 0 ? 'NULL' : "'".$this->db->idate($this->date_creation)."'").",";
222 $sql .= ' '.((int) $this->position).",";
223 $sql .= ' '.(!isset($this->date_modification) || dol_strlen((string) $this->date_modification) == 0 ? 'NULL' : "'".$this->db->idate($this->date_modification)."'");
224 $sql .= ')';
225
226 $this->db->begin();
227
228 $resql = $this->db->query($sql);
229 if (!$resql) {
230 $error++;
231 $this->errors[] = 'Error '.$this->db->lasterror();
232 dol_syslog(__METHOD__.' '.implode(',', $this->errors), LOG_ERR);
233 }
234
235 if (!$error) {
236 $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX.$this->table_element);
237
238 // Create a subdirectory for each language (except main language)
239 $tmplangarray = explode(',', $this->otherlang);
240 if (is_array($tmplangarray)) {
241 dol_mkdir($conf->website->dir_output.'/'.$this->ref);
242 foreach ($tmplangarray as $val) {
243 if (trim($val) == $this->lang) {
244 continue;
245 }
246 dol_mkdir($conf->website->dir_output.'/'.$this->ref.'/'.trim($val), DOL_DATA_ROOT);
247 }
248 }
249
250 // Create subdirectory for images and js into documents/medias directory
251 dol_mkdir($conf->medias->multidir_output[$conf->entity].'/image/'.$this->ref, DOL_DATA_ROOT);
252 dol_mkdir($conf->medias->multidir_output[$conf->entity].'/js/'.$this->ref, DOL_DATA_ROOT);
253
254 // Check symlink documents/website/mywebsite/medias to point to documents/medias and restore it if ko.
255 // Recreate also dir of website if not found.
256 $pathtomedias = DOL_DATA_ROOT.'/medias';
257 $pathtomediasinwebsite = $pathofwebsite.'/medias';
258 if (!is_link(dol_osencode($pathtomediasinwebsite))) {
259 dol_syslog("Create symlink for ".$pathtomedias." into name ".$pathtomediasinwebsite);
260 dol_mkdir(dirname($pathtomediasinwebsite)); // To be sure that the directory for website exists
261 $result = symlink($pathtomedias, $pathtomediasinwebsite);
262 if (!$result) {
263 $langs->load("errors");
264 //setEventMessages($langs->trans("ErrorFailedToCreateSymLinkToMedias", $pathtomediasinwebsite, $pathtomedias), null, 'errors');
265 $error++;
266 }
267 }
268
269 // if (!$notrigger) {
270 // // Call triggers
271 // $result = $this->call_trigger('WEBSITE_CREATE',$user);
272 // if ($result < 0) $error++;
273 // // End call triggers
274 // }
275 }
276
277 if (!$error) {
278 $stringtodolibarrfile = "# Some properties for Dolibarr web site CMS\n";
279 $stringtodolibarrfile .= "param=value\n";
280 //print $conf->website->dir_output.'/'.$this->ref.'/.dolibarr';exit;
281 file_put_contents($pathofwebsite.'/.dolibarr', $stringtodolibarrfile);
282 dolChmod($pathofwebsite.'/.dolibarr');
283
284 $filelicense = $pathofwebsite.'/LICENSE';
285 if (!dol_is_file($filelicense)) {
286 $licensecontent = "LICENSE\n-------\nThis website template content (HTML and PHP code) is published under the license CC-BY-SA - https://creativecommons.org/licenses/by/4.0/";
287 $result = dolSaveLicense($filelicense, $licensecontent);
288 }
289 }
290
291 // Commit or rollback
292 if ($error) {
293 $this->db->rollback();
294 if ($this->db->lasterrno() == 'DB_ERROR_RECORD_ALREADY_EXISTS') {
295 return 0;
296 } else {
297 return -1 * $error;
298 }
299 } else {
300 $this->db->commit();
301
302 return $this->id;
303 }
304 }
305
313 public function fetch($id, $ref = null)
314 {
315 dol_syslog(__METHOD__, LOG_DEBUG);
316
317 $sql = "SELECT";
318 $sql .= " t.rowid,";
319 $sql .= " t.entity,";
320 $sql .= " t.ref,";
321 $sql .= " t.position,";
322 $sql .= " t.description,";
323 $sql .= " t.lang,";
324 $sql .= " t.otherlang,";
325 $sql .= " t.status,";
326 $sql .= " t.fk_default_home,";
327 $sql .= " t.use_manifest,";
328 $sql .= " t.virtualhost,";
329 $sql .= " t.fk_user_creat,";
330 $sql .= " t.fk_user_modif,";
331 $sql .= " t.date_creation,";
332 $sql .= " t.tms as date_modification,";
333 $sql .= " t.name_template";
334 $sql .= " FROM ".MAIN_DB_PREFIX.$this->table_element." as t";
335 $sql .= " WHERE t.entity IN (".getEntity('website').")";
336 if (!empty($ref)) {
337 $sql .= " AND t.ref = '".$this->db->escape($ref)."'";
338 } else {
339 $sql .= " AND t.rowid = ".(int) $id;
340 }
341
342 $resql = $this->db->query($sql);
343 if ($resql) {
344 $numrows = $this->db->num_rows($resql);
345 if ($numrows) {
346 $obj = $this->db->fetch_object($resql);
347
348 $this->id = $obj->rowid;
349
350 $this->entity = $obj->entity;
351 $this->ref = $obj->ref;
352 $this->position = $obj->position;
353 $this->description = $obj->description;
354 $this->lang = $obj->lang;
355 $this->otherlang = $obj->otherlang;
356 $this->status = $obj->status;
357 $this->fk_default_home = $obj->fk_default_home;
358 $this->virtualhost = $obj->virtualhost;
359 $this->use_manifest = $obj->use_manifest;
360 $this->fk_user_creat = $obj->fk_user_creat;
361 $this->fk_user_modif = $obj->fk_user_modif;
362 $this->date_creation = $this->db->jdate($obj->date_creation);
363 $this->date_modification = $this->db->jdate($obj->date_modification);
364 $this->name_template = $obj->name_template;
365 }
366 $this->db->free($resql);
367
368 if ($numrows > 0) {
369 return 1;
370 } else {
371 return 0;
372 }
373 } else {
374 $this->errors[] = 'Error '.$this->db->lasterror();
375 dol_syslog(__METHOD__.' '.implode(',', $this->errors), LOG_ERR);
376
377 return -1;
378 }
379 }
380
381
393 public function fetchAll($sortorder = '', $sortfield = '', $limit = 0, $offset = 0, $filter = '', $filtermode = 'AND')
394 {
395 dol_syslog(__METHOD__, LOG_DEBUG);
396
397 $records = array();
398
399 $sql = "SELECT";
400 $sql .= " t.rowid,";
401 $sql .= " t.entity,";
402 $sql .= " t.ref,";
403 $sql .= " t.description,";
404 $sql .= " t.lang,";
405 $sql .= " t.otherlang,";
406 $sql .= " t.status,";
407 $sql .= " t.fk_default_home,";
408 $sql .= " t.virtualhost,";
409 $sql .= " t.fk_user_creat,";
410 $sql .= " t.fk_user_modif,";
411 $sql .= " t.date_creation,";
412 $sql .= " t.tms as date_modification";
413 $sql .= " FROM ".MAIN_DB_PREFIX.$this->table_element." as t";
414 $sql .= " WHERE t.entity IN (".getEntity('website').")";
415
416 // Manage filter
417 if (is_array($filter)) {
418 $sqlwhere = array();
419 if (count($filter) > 0) {
420 foreach ($filter as $key => $value) {
421 $sqlwhere[] = $this->db->sanitize($key)." LIKE '%".$this->db->escape($value)."%'";
422 }
423 }
424 if (count($sqlwhere) > 0) {
425 $sql .= ' AND '.implode(' '.$this->db->sanitize($filtermode).' ', $sqlwhere);
426 }
427
428 $filter = '';
429 }
430
431 // Manage filter
432 $errormessage = '';
433 $sql .= forgeSQLFromUniversalSearchCriteria($filter, $errormessage);
434 if ($errormessage) {
435 $this->errors[] = $errormessage;
436 dol_syslog(__METHOD__.' '.implode(',', $this->errors), LOG_ERR);
437 return -1;
438 }
439
440 if (!empty($sortfield)) {
441 $sql .= $this->db->order($sortfield, $sortorder);
442 }
443 if (!empty($limit)) {
444 $sql .= $this->db->plimit($limit, $offset);
445 }
446
447 $resql = $this->db->query($sql);
448 if ($resql) {
449 $num = $this->db->num_rows($resql);
450
451 while ($obj = $this->db->fetch_object($resql)) {
452 $record = new self($this->db);
453
454 $record->id = $obj->rowid;
455
456 $record->entity = $obj->entity;
457 $record->ref = $obj->ref;
458 $record->description = $obj->description;
459 $record->lang = $obj->lang;
460 $record->otherlang = $obj->otherlang;
461 $record->status = $obj->status;
462 $record->fk_default_home = $obj->fk_default_home;
463 $record->virtualhost = $obj->virtualhost;
464 $record->fk_user_creat = $obj->fk_user_creat;
465 $record->fk_user_modif = $obj->fk_user_modif;
466 $record->date_creation = $this->db->jdate($obj->date_creation);
467 $record->date_modification = $this->db->jdate($obj->date_modification);
468
469 $records[$record->id] = $record;
470 }
471 $this->db->free($resql);
472
473 return $records;
474 } else {
475 $this->errors[] = 'Error '.$this->db->lasterror();
476 dol_syslog(__METHOD__.' '.implode(',', $this->errors), LOG_ERR);
477
478 return -1;
479 }
480 }
481
489 public function update(User $user, $notrigger = 0)
490 {
491 global $conf, $langs;
492
493 $error = 0;
494
495 dol_syslog(__METHOD__, LOG_DEBUG);
496
497 // Clean parameters
498
499 if (isset($this->entity)) {
500 $this->entity = (int) $this->entity;
501 }
502 if (isset($this->ref)) {
503 $this->ref = trim($this->ref);
504 }
505 if (isset($this->description)) {
506 $this->description = trim($this->description);
507 }
508 if (isset($this->status)) {
509 $this->status = (int) $this->status;
510 }
511
512 // Remove spaces and be sure we have main language only
513 $this->lang = preg_replace('/[_-].*$/', '', trim($this->lang)); // en_US or en-US -> en
514 $tmparray = explode(',', $this->otherlang);
515 if (is_array($tmparray)) {
516 foreach ($tmparray as $key => $val) {
517 // It possible we have empty val here if postparam WEBSITE_OTHERLANG is empty or set like this : 'en,,sv' or 'en,sv,'
518 if (empty(trim($val))) {
519 unset($tmparray[$key]);
520 continue;
521 }
522 $tmparray[$key] = preg_replace('/[_-].*$/', '', trim($val)); // en_US or en-US -> en
523 }
524 $this->otherlang = implode(',', $tmparray);
525 }
526 if (empty($this->lang)) {
527 $this->error = $langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("MainLanguage"));
528 return -1;
529 }
530
531 // Check parameters
532 // Put here code to add a control on parameters values
533
534 // Update request
535 $sql = 'UPDATE '.MAIN_DB_PREFIX.$this->table_element.' SET';
536 $sql .= ' entity = '.(isset($this->entity) ? ((int) $this->entity) : "null").',';
537 $sql .= ' ref = '.(isset($this->ref) ? "'".$this->db->escape($this->ref)."'" : "null").',';
538 $sql .= ' description = '.(isset($this->description) ? "'".$this->db->escape($this->description)."'" : "null").',';
539 $sql .= ' lang = '.(isset($this->lang) ? "'".$this->db->escape($this->lang)."'" : "null").',';
540 $sql .= ' otherlang = '.(isset($this->otherlang) ? "'".$this->db->escape($this->otherlang)."'" : "null").',';
541 $sql .= ' status = '.(isset($this->status) ? ((int) $this->status) : "null").',';
542 $sql .= ' fk_default_home = '.(($this->fk_default_home > 0) ? ((int) $this->fk_default_home) : "null").',';
543 $sql .= ' use_manifest = '.((int) $this->use_manifest).',';
544 $sql .= ' virtualhost = '.(($this->virtualhost != '') ? "'".$this->db->escape($this->virtualhost)."'" : "null").',';
545 $sql .= ' fk_user_modif = '.(!isset($this->fk_user_modif) ? ((int) $user->id) : ((int) $this->fk_user_modif)).',';
546 $sql .= ' date_creation = '.(!isset($this->date_creation) || dol_strlen($this->date_creation) != 0 ? "'".$this->db->idate($this->date_creation)."'" : 'null').',';
547 $sql .= ' tms = '.(dol_strlen($this->date_modification) != 0 ? "'".$this->db->idate($this->date_modification)."'" : "'".$this->db->idate(dol_now())."'");
548 $sql .= ' WHERE rowid='.((int) $this->id);
549
550 $this->db->begin();
551
552 $resql = $this->db->query($sql);
553 if (!$resql) {
554 $error++;
555 $this->errors[] = 'Error '.$this->db->lasterror();
556 dol_syslog(__METHOD__.' '.implode(',', $this->errors), LOG_ERR);
557 }
558
559 if (!$error && !$notrigger) {
560 // Uncomment this and change MYOBJECT to your own tag if you
561 // want this action calls a trigger.
562
563 // Create subdirectory per language
564 $tmplangarray = explode(',', $this->otherlang);
565 if (is_array($tmplangarray)) {
566 dol_mkdir($conf->website->dir_output.'/'.$this->ref);
567 foreach ($tmplangarray as $val) {
568 if (trim($val) == $this->lang) {
569 continue;
570 }
571 dol_mkdir($conf->website->dir_output.'/'.$this->ref.'/'.trim($val));
572 }
573 }
574
576 //$result=$this->call_trigger('WEBSITE_MODIFY',$user);
577 //if ($result < 0) { $error++; //Do also what you must do to rollback action if trigger fail}
579 }
580
581 // Commit or rollback
582 if ($error) {
583 $this->db->rollback();
584
585 return -1 * $error;
586 } else {
587 $this->db->commit();
588
589 return 1;
590 }
591 }
592
600 public function delete(User $user, $notrigger = 0)
601 {
602 global $conf;
603
604 dol_syslog(__METHOD__, LOG_DEBUG);
605
606 $error = 0;
607
608 $this->db->begin();
609
610 if (!$error) {
611 $sql = 'DELETE FROM '.MAIN_DB_PREFIX.'categorie_website_page';
612 $sql .= ' WHERE fk_website_page IN (SELECT rowid FROM '.MAIN_DB_PREFIX.'website_page WHERE fk_website = '.((int) $this->id).')';
613
614 $resql = $this->db->query($sql);
615 if (!$resql) {
616 $error++;
617 $this->errors[] = 'Error '.$this->db->lasterror();
618 dol_syslog(__METHOD__.' '.implode(',', $this->errors), LOG_ERR);
619 }
620 }
621
622 if (!$error) {
623 $sql = 'DELETE FROM '.MAIN_DB_PREFIX.'website_page';
624 $sql .= ' WHERE fk_website = '.((int) $this->id);
625
626 $resql = $this->db->query($sql);
627 if (!$resql) {
628 $error++;
629 $this->errors[] = 'Error '.$this->db->lasterror();
630 dol_syslog(__METHOD__.' '.implode(',', $this->errors), LOG_ERR);
631 }
632 }
633
634 // Delete common code. This include execution of trigger.
635 $result = $this->deleteCommon($user, $notrigger);
636 if ($result <= 0) {
637 $error++;
638 }
639
640 if (!$error && !empty($this->ref)) {
641 $pathofwebsite = DOL_DATA_ROOT.($conf->entity > 1 ? '/'.$conf->entity : '').'/website/'.$this->ref;
642
643 dol_delete_dir_recursive($pathofwebsite);
644 }
645
646 // Commit or rollback
647 if ($error) {
648 $this->db->rollback();
649
650 return -1 * $error;
651 } else {
652 $this->db->commit();
653
654 return 1;
655 }
656 }
657
665 public function purge(User $user)
666 {
667 global $conf, $langs;
668
669 dol_syslog(__METHOD__, LOG_DEBUG);
670
671 $error = 0;
672
673 $this->db->begin();
674
675 if (!$error) {
676 $sql = 'DELETE FROM '.MAIN_DB_PREFIX.'website_page';
677 $sql .= ' WHERE fk_website = '.((int) $this->id);
678
679 $resql = $this->db->query($sql);
680 if (!$resql) {
681 $error++;
682 $this->errors[] = 'Error '.$this->db->lasterror();
683 dol_syslog(__METHOD__.' '.implode(',', $this->errors), LOG_ERR);
684 }
685 }
686
687 if (!$error && !empty($this->ref)) {
688 $pathofwebsite = DOL_DATA_ROOT.($conf->entity > 1 ? '/'.$conf->entity : '').'/website/'.$this->ref;
689 // Delete content of website directory without deleting the website directory
690 dol_delete_dir_recursive($pathofwebsite, 0, 0, 1);
691
692 // Check symlink documents/website/mywebsite/medias to point to documents/medias and restore it if ko.
693 // Recreate also dir of website if not found.
694 $pathtomedias = DOL_DATA_ROOT.'/medias';
695 $pathtomediasinwebsite = $pathofwebsite.'/medias';
696 if (!is_link(dol_osencode($pathtomediasinwebsite))) {
697 dol_syslog("Create symlink for ".$pathtomedias." into name ".$pathtomediasinwebsite);
698 dol_mkdir(dirname($pathtomediasinwebsite)); // To be sure that the directory for website exists
699 $result = symlink($pathtomedias, $pathtomediasinwebsite);
700 if (!$result) {
701 $this->errors[] = $langs->trans("ErrorFailedToCreateSymLinkToMedias", $pathtomediasinwebsite, $pathtomedias);
702 $error++;
703 }
704 }
705 }
706
707 // Commit or rollback
708 if ($error) {
709 $this->db->rollback();
710
711 return -1 * $error;
712 } else {
713 $this->db->commit();
714
715 return 1;
716 }
717 }
718
729 public function createFromClone($user, $fromid, $newref, $newlang = '')
730 {
731 global $conf, $langs;
732 global $dolibarr_main_data_root;
733
734 $now = dol_now();
735 $error = 0;
736
737 dol_syslog(__METHOD__, LOG_DEBUG);
738
739 $newref = dol_sanitizeFileName($newref);
740
741 if (empty($newref)) {
742 $this->error = 'ErrorBadParameter newref';
743 return -1;
744 }
745
746 $object = new self($this->db);
747
748 // Check no site with ref exists
749 if ($object->fetch(0, $newref) > 0) {
750 $this->error = 'ErrorNewRefIsAlreadyUsed';
751 return -2;
752 }
753
754 $this->db->begin();
755
756 // Load source object
757 $object->fetch($fromid);
758
759 $oldidforhome = $object->fk_default_home;
760 $oldref = $object->ref;
761
762 $pathofwebsiteold = $dolibarr_main_data_root.($conf->entity > 1 ? '/'.$conf->entity : '').'/website/'.dol_sanitizeFileName($oldref);
763 $pathofwebsitenew = $dolibarr_main_data_root.($conf->entity > 1 ? '/'.$conf->entity : '').'/website/'.dol_sanitizeFileName($newref);
764 dol_delete_dir_recursive($pathofwebsitenew);
765
766 $fileindex = $pathofwebsitenew.'/index.php';
767
768 // Reset some properties
769 unset($object->id);
770 unset($object->fk_user_creat);
771 unset($object->import_key);
772
773 // Clear fields
774 $object->ref = $newref;
775 $object->fk_default_home = 0;
776 $object->virtualhost = '';
777 $object->date_creation = $now;
778 $object->fk_user_creat = $user->id;
779 $object->position = ((int) $object->position) + 1;
780 $object->status = self::STATUS_DRAFT;
781 if (empty($object->lang)) {
782 $object->lang = substr($langs->defaultlang, 0, 2); // Should not happen. Protection for corrupted site with no languages
783 }
784
785 // Create clone
786 $object->context['createfromclone'] = 'createfromclone';
787 $result = $object->create($user);
788 if ($result < 0) {
789 $error++;
791 dol_syslog(__METHOD__.' '.implode(',', $this->errors), LOG_ERR);
792 }
793
794 $newidforhome = 0;
795
796 if (!$error) {
797 // @phan-suppress-next-line PhanPluginSuspiciousParamOrder
798 dolCopyDir($pathofwebsiteold, $pathofwebsitenew, getDolGlobalString('MAIN_UMASK'), 0, [], 2);
799
800 // Check symlink to medias and restore it if ko
801 $pathtomedias = DOL_DATA_ROOT.'/medias'; // Target
802 $pathtomediasinwebsite = $pathofwebsitenew.'/medias'; // Source / Link name
803 if (!is_link(dol_osencode($pathtomediasinwebsite))) {
804 dol_syslog("Create symlink for ".$pathtomedias." into name ".$pathtomediasinwebsite);
805 dol_mkdir(dirname($pathtomediasinwebsite)); // To be sure dir for website exists
806 $result = symlink($pathtomedias, $pathtomediasinwebsite);
807 }
808
809 // Copy images and js dir
810 $pathofmediasjsold = DOL_DATA_ROOT.'/medias/js/'.$oldref;
811 $pathofmediasjsnew = DOL_DATA_ROOT.'/medias/js/'.$newref;
812 dolCopyDir($pathofmediasjsold, $pathofmediasjsnew, getDolGlobalString('MAIN_UMASK'), 0);
813
814 $pathofmediasimageold = DOL_DATA_ROOT.'/medias/image/'.$oldref;
815 $pathofmediasimagenew = DOL_DATA_ROOT.'/medias/image/'.$newref;
816 dolCopyDir($pathofmediasimageold, $pathofmediasimagenew, getDolGlobalString('MAIN_UMASK'), 0);
817
818 // Duplicate pages
819 $objectpages = new WebsitePage($this->db);
820 $listofpages = $objectpages->fetchAll($fromid);
821 foreach ($listofpages as $pageid => $objectpageold) {
822 // Delete old file
823 $filetplold = $pathofwebsitenew.'/page'.$pageid.'.tpl.php';
824 dol_delete_file($filetplold);
825
826 // Create new file
827 $objectpagenew = $objectpageold->createFromClone($user, $pageid, $objectpageold->pageurl, '', 0, $object->id, '1');
828
829 //print $pageid.' = '.$objectpageold->pageurl.' -> '.$objectpagenew->id.' = '.$objectpagenew->pageurl.'<br>';
830 if (is_object($objectpagenew) && $objectpagenew->pageurl) {
831 $filealias = $pathofwebsitenew.'/'.$objectpagenew->pageurl.'.php';
832 $filetplnew = $pathofwebsitenew.'/page'.$objectpagenew->id.'.tpl.php';
833
834 // Save page alias
835 $result = dolSavePageAlias($filealias, $object, $objectpagenew);
836 if (!$result) {
837 setEventMessages('Failed to write file '.$filealias, null, 'errors');
838 }
839
840 $result = dolSavePageContent($filetplnew, $object, $objectpagenew);
841 if (!$result) {
842 setEventMessages('Failed to write file '.$filetplnew, null, 'errors');
843 }
844
845 if ($pageid == $oldidforhome) {
846 $newidforhome = $objectpagenew->id;
847 }
848 } else {
849 setEventMessages($objectpageold->error, $objectpageold->errors, 'errors');
850 $error++;
851 }
852 }
853 }
854
855 if (!$error) {
856 // Restore id of home page
857 $object->fk_default_home = $newidforhome;
858 $res = $object->update($user);
859 if (!($res > 0)) {
860 $error++;
861 setEventMessages($object->error, $object->errors, 'errors');
862 }
863
864 if (!$error) {
865 $filetpl = $pathofwebsitenew.'/page'.$newidforhome.'.tpl.php';
866 $filewrapper = $pathofwebsitenew.'/wrapper.php';
867
868 // Re-generates the index.php page to be the home page, and re-generates the wrapper.php
869 //--------------------------------------------------------------------------------------
870 $result = dolSaveIndexPage($pathofwebsitenew, $fileindex, $filetpl, $filewrapper, $object);
871 }
872 }
873
874 unset($object->context['createfromclone']);
875
876 // End
877 if (!$error) {
878 $this->db->commit();
879
880 return $object;
881 } else {
882 $this->db->rollback();
883
884 return -3;
885 }
886 }
887
899 public function getNomUrl($withpicto = 0, $option = '', $notooltip = 0, $maxlen = 24, $morecss = '')
900 {
901 global $langs;
902
903 $result = '';
904
905 $label = '<u>'.img_picto('', 'website', 'class="pictofixedwidth"').$langs->trans("WebSite").'</u>';
906 $label .= '<br>';
907 $label .= '<b>'.$langs->trans('Ref').':</b> '.$this->ref.'<br>';
908 $label .= '<b>'.$langs->trans('MainLanguage').':</b> '.$this->lang;
909
910 // Links for internal access
911 /*
912 $linkstart = '<a href="'.DOL_URL_ROOT.'/website/index.php?website='.urlencode($this->ref).'"';
913 $linkstart .= ($notooltip ? '' : ' title="'.dol_escape_htmltag($label, 1).'" class="classfortooltip'.($morecss ? ' '.$morecss : '').'"');
914 $linkstart .= '>';
915 */
916 if (!empty($this->virtualhost)) {
917 $linkstart = '<a target="_blank" rel="noopener" href="'.$this->virtualhost.'">';
918 $linkend = '</a>';
919 } else {
920 $linkstart = $linkend = '';
921 }
922
923 $result .= $linkstart;
924 if ($withpicto) {
925 $result .= img_object(($notooltip ? '' : $label), ($this->picto ? $this->picto : 'generic'), 'class="pictofixedwidth'.($notooltip ? '' : ' classfortooltip').'"');
926 }
927 $result .= $this->ref;
928 $result .= $linkend;
929
930 return $result;
931 }
932
939 public function getLibStatut($mode = 0)
940 {
941 return $this->LibStatut($this->status, $mode);
942 }
943
944 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
952 public function LibStatut($status, $mode = 0)
953 {
954 // phpcs:enable
955 global $langs;
956
957 if (empty($this->labelStatus) || empty($this->labelStatusShort)) {
958 global $langs;
959 //$langs->load("mymodule");
960 $this->labelStatus[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv('Offline');
961 $this->labelStatus[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv('Online');
962 $this->labelStatusShort[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv('Offline');
963 $this->labelStatusShort[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv('Online');
964 }
965
966 $statusType = 'status5';
967 if ($status == self::STATUS_VALIDATED) {
968 $statusType = 'status4';
969 }
970
971 return dolGetStatus($this->labelStatus[$status], $this->labelStatusShort[$status], '', $statusType, $mode);
972 }
973
974
981 public function initAsSpecimen()
982 {
983 global $user;
984
985 $this->id = 0;
986 $this->specimen = 1;
987 $this->entity = 1;
988 $this->ref = 'myspecimenwebsite';
989 $this->description = 'A specimen website';
990 $this->lang = 'en';
991 $this->otherlang = 'fr,es';
992 $this->status = 1;
993 $this->fk_default_home = 0;
994 $this->virtualhost = 'http://myvirtualhost';
995 $this->fk_user_creat = $user->id;
996 $this->fk_user_modif = $user->id;
997 $this->date_creation = dol_now();
998 $this->tms = dol_now();
999
1000 return 1;
1001 }
1002
1003
1010 public function exportWebSite()
1011 {
1012 global $conf, $mysoc;
1013
1014 $website = $this;
1015
1016 if (empty($website->id) || empty($website->ref)) {
1017 setEventMessages("Website id or ref is not defined", null, 'errors');
1018 return '';
1019 }
1020
1021 dol_syslog("Create temp dir ".$conf->website->dir_temp);
1022 dol_mkdir($conf->website->dir_temp);
1023 if (!is_writable($conf->website->dir_temp)) {
1024 setEventMessages("Temporary dir ".$conf->website->dir_temp." is not writable", null, 'errors');
1025 return '';
1026 }
1027
1028 $destdir = $conf->website->dir_temp.'/'.$website->ref;
1029 dol_syslog("Clear temp dir ".$destdir);
1030 $count = 0;
1031 $countreallydeleted = 0;
1032 $counttodelete = dol_delete_dir_recursive($destdir, $count, 1, 0, $countreallydeleted);
1033 if ($counttodelete != $countreallydeleted) {
1034 setEventMessages("Failed to clean temp directory ".$destdir, null, 'errors');
1035 return '';
1036 }
1037
1038 $arrayreplacementinfilename = array();
1039 $arrayreplacementincss = array();
1040 $arrayreplacementincss['file=image/'.$website->ref.'/'] = "file=image/__WEBSITE_KEY__/";
1041 $arrayreplacementincss['file=js/'.$website->ref.'/'] = "file=js/__WEBSITE_KEY__/";
1042 $arrayreplacementincss['medias/image/'.$website->ref.'/'] = "medias/image/__WEBSITE_KEY__/";
1043 $arrayreplacementincss['medias/js/'.$website->ref.'/'] = "medias/js/__WEBSITE_KEY__/";
1044 if ($mysoc->logo_small) {
1045 $arrayreplacementincss['file=logos%2Fthumbs%2F'.$mysoc->logo_small] = "file=logos%2Fthumbs%2F__LOGO_SMALL_KEY__";
1046 }
1047 if ($mysoc->logo_mini) {
1048 $arrayreplacementincss['file=logos%2Fthumbs%2F'.$mysoc->logo_mini] = "file=logos%2Fthumbs%2F__LOGO_MINI_KEY__";
1049 }
1050 if ($mysoc->logo) {
1051 $arrayreplacementincss['file=logos%2Fthumbs%2F'.$mysoc->logo] = "file=logos%2Fthumbs%2F__LOGO_KEY__";
1052 }
1053
1054 // Create output directories
1055 dol_syslog("Create containers dir");
1056 dol_mkdir($conf->website->dir_temp.'/'.$website->ref.'/containers');
1057 dol_mkdir($conf->website->dir_temp.'/'.$website->ref.'/medias/image/websitekey');
1058 dol_mkdir($conf->website->dir_temp.'/'.$website->ref.'/medias/js/websitekey');
1059
1060 // Copy files into 'containers'
1061 $srcdir = $conf->website->dir_output.'/'.$website->ref;
1062 $destdir = $conf->website->dir_temp.'/'.$website->ref.'/containers';
1063
1064 dol_syslog("Copy pages from ".$srcdir." into ".$destdir);
1065 dolCopyDir($srcdir, $destdir, '0', 1, $arrayreplacementinfilename, 2, array('old', 'back'), 1);
1066
1067 // Remove non required files (will be re-generated during the import)
1068 dol_delete_file($conf->website->dir_temp.'/'.$website->ref.'/containers/master.inc.php');
1069
1070 // Copy file README.md and LICENSE from directory containers into directory root
1071 if (dol_is_file($conf->website->dir_temp.'/'.$website->ref.'/containers/README.md')) {
1072 dol_copy($conf->website->dir_temp.'/'.$website->ref.'/containers/README.md', $conf->website->dir_temp.'/'.$website->ref.'/README.md');
1073 }
1074 if (dol_is_file($conf->website->dir_temp.'/'.$website->ref.'/containers/LICENSE')) {
1075 dol_copy($conf->website->dir_temp.'/'.$website->ref.'/containers/LICENSE', $conf->website->dir_temp.'/'.$website->ref.'/LICENSE');
1076 }
1077
1078 // Copy files into medias/image
1079 $srcdir = DOL_DATA_ROOT.'/medias/image/'.$website->ref;
1080 $destdir = $conf->website->dir_temp.'/'.$website->ref.'/medias/image/websitekey';
1081
1082 dol_syslog("Copy content from ".$srcdir." into ".$destdir);
1083 dolCopyDir($srcdir, $destdir, '0', 1, $arrayreplacementinfilename);
1084
1085 // Copy files into medias/js
1086 $srcdir = DOL_DATA_ROOT.'/medias/js/'.$website->ref;
1087 $destdir = $conf->website->dir_temp.'/'.$website->ref.'/medias/js/websitekey';
1088
1089 dol_syslog("Copy content from ".$srcdir." into ".$destdir);
1090 dolCopyDir($srcdir, $destdir, '0', 1, $arrayreplacementinfilename);
1091
1092 // Make some replacement into some files
1093 $cssindestdir = $conf->website->dir_temp.'/'.$website->ref.'/containers/styles.css.php';
1094 if (dol_is_file($cssindestdir)) {
1095 dolReplaceInFile($cssindestdir, $arrayreplacementincss);
1096 }
1097
1098 $htmldeaderindestdir = $conf->website->dir_temp.'/'.$website->ref.'/containers/htmlheader.html';
1099 if (dol_is_file($htmldeaderindestdir)) {
1100 dolReplaceInFile($htmldeaderindestdir, $arrayreplacementincss);
1101 }
1102
1103 // Build the website_page.sql file
1104 $filesql_path = $conf->website->dir_temp.'/'.$website->ref.'/website_pages.sql';
1105 $fp = fopen($filesql_path, "w");
1106 if (empty($fp)) {
1107 setEventMessages("Failed to create file ".$filesql_path, null, 'errors');
1108 return '';
1109 }
1110
1111 $objectpages = new WebsitePage($this->db);
1112 $listofpages = $objectpages->fetchAll($website->id);
1113
1114
1115 // Assign ->newid and ->newfk_page starting at 1.
1116 $i = 1;
1117 foreach ($listofpages as $pageid => $objectpageold) {
1118 $objectpageold->newid = $i;
1119 $i++;
1120 }
1121 $i = 1;
1122 foreach ($listofpages as $pageid => $objectpageold) {
1123 // Search newid
1124 $newfk_page = 0;
1125 foreach ($listofpages as $pageid2 => $objectpageold2) {
1126 if ($pageid2 == $objectpageold->fk_page) {
1127 $newfk_page = $objectpageold2->newid;
1128 break;
1129 }
1130 }
1131 $objectpageold->newfk_page = $newfk_page;
1132 $i++;
1133 }
1134
1135 $line = '-- File generated by Dolibarr '.DOL_VERSION.' --;'."\n";
1136 $line .= "\n";
1137 fwrite($fp, $line);
1138
1139 foreach ($listofpages as $pageid => $objectpageold) {
1140 $oldpageid = $objectpageold->id;
1141
1142 $allaliases = $objectpageold->pageurl;
1143 $allaliases .= ($objectpageold->aliasalt ? ','.$objectpageold->aliasalt : '');
1144
1145 if (!getDolGlobalInt('WEBSITE_EXPORT_KEEP_FILES_OF_PAGES')) {
1146 // We don't need to keep the PHP files of pages and aliases (they are regenerated at import) so we remove them.
1147 // Delete the pageX.tpl.php page
1148 dol_delete_file($conf->website->dir_temp.'/'.$website->ref.'/containers/page'.$objectpageold->id.'.tpl.php', 0, 0, 0, null, false, 0);
1149 // Delete the alias page
1150 dol_delete_file($conf->website->dir_temp.'/'.$website->ref.'/containers/'.$objectpageold->pageurl.'.php', 0, 0, 0, null, false, 0);
1151 dol_delete_file($conf->website->dir_temp.'/'.$website->ref.'/containers/*/'.$objectpageold->pageurl.'.php', 0, 0, 0, null, false, 0);
1152 // Delete alternative alias pages
1153 $arrayofaliases = explode(',', $objectpageold->aliasalt);
1154 foreach ($arrayofaliases as $tmpaliasalt) {
1155 dol_delete_file($conf->website->dir_temp.'/'.$website->ref.'/containers/'.trim($tmpaliasalt).'.php', 0, 0, 0, null, false, 0);
1156 dol_delete_file($conf->website->dir_temp.'/'.$website->ref.'/containers/*/'.trim($tmpaliasalt).'.php', 0, 0, 0, null, false, 0);
1157 }
1158 }
1159
1160 // This comment syntax is important, it is parsed by import to get information on page ID and all aliases to regenerate
1161 $line = '-- Page ID '.$objectpageold->newid.'__+MAX_llx_website_page__ - Aliases '.$allaliases.' --;'; // newid start at 1, 2...
1162 $line .= "\n";
1163 fwrite($fp, $line);
1164
1165 // Warning: We must keep llx_ here. It is a generic SQL.
1166 $line = 'INSERT INTO llx_website_page(rowid, fk_page, fk_website, pageurl, aliasalt, title, description, lang, image, keywords, status, date_creation, tms, import_key, grabbed_from, type_container, htmlheader, content, author_alias, allowed_in_frames)';
1167 $line .= " VALUES(";
1168 $line .= $objectpageold->newid."__+MAX_llx_website_page__, ";
1169 $line .= ($objectpageold->newfk_page ? $this->db->escape($objectpageold->newfk_page)."__+MAX_llx_website_page__" : "null").", ";
1170 $line .= "__WEBSITE_ID__, ";
1171 $line .= "'".$this->db->escape($objectpageold->pageurl)."', ";
1172 $line .= "'".$this->db->escape($objectpageold->aliasalt)."', ";
1173 $line .= "'".$this->db->escape($objectpageold->title)."', ";
1174 $line .= "'".$this->db->escape($objectpageold->description)."', ";
1175 $line .= "'".$this->db->escape($objectpageold->lang)."', ";
1176 $line .= "'".$this->db->escape($objectpageold->image)."', ";
1177 $line .= "'".$this->db->escape($objectpageold->keywords)."', ";
1178 $line .= "'".$this->db->escape((string) $objectpageold->status)."', ";
1179 $line .= "'".$this->db->idate($objectpageold->date_creation)."', ";
1180 $line .= "'".$this->db->idate($objectpageold->date_modification)."', ";
1181 $line .= ($objectpageold->import_key ? "'".$this->db->escape((string) $objectpageold->import_key)."'" : "null").", ";
1182 $line .= "'".$this->db->escape($objectpageold->grabbed_from)."', ";
1183 $line .= "'".$this->db->escape($objectpageold->type_container)."', ";
1184
1185 // Make substitution with a generic path into htmlheader content
1186 $stringtoexport = $objectpageold->htmlheader;
1187 $stringtoexport = str_replace(array("\r\n", "\r", "\n"), "__N__", $stringtoexport);
1188 $stringtoexport = str_replace('file=image/'.$website->ref.'/', "file=image/__WEBSITE_KEY__/", $stringtoexport);
1189 $stringtoexport = str_replace('file=js/'.$website->ref.'/', "file=js/__WEBSITE_KEY__/", $stringtoexport);
1190 $stringtoexport = str_replace('medias/image/'.$website->ref.'/', "medias/image/__WEBSITE_KEY__/", $stringtoexport);
1191 $stringtoexport = str_replace('medias/js/'.$website->ref.'/', "medias/js/__WEBSITE_KEY__/", $stringtoexport);
1192
1193 $stringtoexport = str_replace('file=logos%2Fthumbs%2F'.$mysoc->logo_small, "file=logos%2Fthumbs%2F__LOGO_SMALL_KEY__", $stringtoexport);
1194 $stringtoexport = str_replace('file=logos%2Fthumbs%2F'.$mysoc->logo_mini, "file=logos%2Fthumbs%2F__LOGO_MINI_KEY__", $stringtoexport);
1195 $stringtoexport = str_replace('file=logos%2Fthumbs%2F'.$mysoc->logo, "file=logos%2Fthumbs%2F__LOGO_KEY__", $stringtoexport);
1196
1197 if (getDolGlobalString('WEBSITE_EXPORT_SQL_ON_SEVERAL_LINES')) {
1198 $line .= "/* new line */\n"; // Add a comment so we will able to restore a one line instruction on import
1199 }
1200 $line .= "'".$this->db->escape($stringtoexport)."', ";
1201
1202 // Make substitution with a generic path into page content
1203 $stringtoexport = $objectpageold->content;
1204 $stringtoexport = str_replace(array("\r\n", "\r", "\n"), "__N__", $stringtoexport);
1205 $stringtoexport = str_replace('file=image/'.$website->ref.'/', "file=image/__WEBSITE_KEY__/", $stringtoexport);
1206 $stringtoexport = str_replace('file=js/'.$website->ref.'/', "file=js/__WEBSITE_KEY__/", $stringtoexport);
1207 $stringtoexport = str_replace('medias/image/'.$website->ref.'/', "medias/image/__WEBSITE_KEY__/", $stringtoexport);
1208 $stringtoexport = str_replace('medias/js/'.$website->ref.'/', "medias/js/__WEBSITE_KEY__/", $stringtoexport);
1209 $stringtoexport = str_replace('"image/'.$website->ref.'/', '"image/__WEBSITE_KEY__/', $stringtoexport); // When we have a link src="image/websiteref/file.png" into html content
1210 $stringtoexport = str_replace('"/image/'.$website->ref.'/', '"/image/__WEBSITE_KEY__/', $stringtoexport); // When we have a link src="/image/websiteref/file.png" into html content
1211 $stringtoexport = str_replace('"js/'.$website->ref.'/', '"js/__WEBSITE_KEY__/', $stringtoexport);
1212 $stringtoexport = str_replace('"/js/'.$website->ref.'/', '"/js/__WEBSITE_KEY__/', $stringtoexport);
1213
1214 $stringtoexport = str_replace('file=logos%2Fthumbs%2F'.$mysoc->logo_small, "file=logos%2Fthumbs%2F__LOGO_SMALL_KEY__", $stringtoexport);
1215 $stringtoexport = str_replace('file=logos%2Fthumbs%2F'.$mysoc->logo_mini, "file=logos%2Fthumbs%2F__LOGO_MINI_KEY__", $stringtoexport);
1216 $stringtoexport = str_replace('file=logos%2Fthumbs%2F'.$mysoc->logo, "file=logos%2Fthumbs%2F__LOGO_KEY__", $stringtoexport);
1217
1218 if (getDolGlobalString('WEBSITE_EXPORT_SQL_ON_SEVERAL_LINES')) {
1219 $line .= "/* new line */\n"; // Add a comment so we will able to restore a one line instruction on import
1220 }
1221 $line .= "'".$this->db->escape($stringtoexport)."', ";
1222
1223 $line .= "'".$this->db->escape($objectpageold->author_alias)."', ";
1224 $line .= (int) $objectpageold->allowed_in_frames;
1225 $line .= ");";
1226 $line .= "\n";
1227
1228 fwrite($fp, $line);
1229
1230 // Add line to update home page id during import
1231 //var_dump($this->fk_default_home.' - '.$objectpageold->id.' - '.$objectpageold->newid);exit;
1232 if ($this->fk_default_home > 0 && ($objectpageold->id == $this->fk_default_home) && ($objectpageold->newid > 0)) { // This is the page that is set as the home page
1233 // Warning: We must keep llx_ here. It is a generic SQL.
1234 $line = "UPDATE llx_website SET fk_default_home = ".($objectpageold->newid > 0 ? $this->db->escape((string) $objectpageold->newid)."__+MAX_llx_website_page__" : "null")." WHERE rowid = __WEBSITE_ID__;";
1235 $line .= "\n";
1236 fwrite($fp, $line);
1237 }
1238
1239 fwrite($fp, "\n");
1240 }
1241
1242 $line = "\n-- For Dolibarr v14+ --;\n";
1243 $line .= "UPDATE llx_website SET lang = '".$this->db->escape($this->lang)."' WHERE rowid = __WEBSITE_ID__;\n";
1244 $line .= "UPDATE llx_website SET otherlang = '".$this->db->escape($this->otherlang)."' WHERE rowid = __WEBSITE_ID__;\n";
1245 $line .= "\n";
1246 fwrite($fp, $line);
1247
1248 fclose($fp);
1249
1250 dolChmod($filesql_path);
1251
1252 // Build zip file
1253 $filedir = $conf->website->dir_temp.'/'.$website->ref.'/.';
1254 $fileglob = $conf->website->dir_temp.'/'.$website->ref.'/website_'.$website->ref.'-*.zip';
1255 $filename = $conf->website->dir_temp.'/'.$website->ref.'/website_'.$website->ref.'-'.dol_print_date(dol_now(), 'dayhourlog').'-V'.((float) DOL_VERSION).'.zip';
1256
1257 dol_delete_file($fileglob, 0);
1258
1259 $result = dol_compress_dir($filedir, $filename, 'zip');
1260
1261 if ($result > 0) {
1262 return $filename;
1263 } else {
1264 global $errormsg;
1265 $this->error = $errormsg;
1266 return '';
1267 }
1268 }
1269
1270
1278 public function importWebSite($pathtofile)
1279 {
1280 global $conf, $mysoc, $user;
1281
1282 $error = 0;
1283
1284 $pathtofile = dol_sanitizePathName($pathtofile);
1285 if (!file_exists($pathtofile)) {
1286 $this->error = 'The zip file "'.$pathtofile.'" is not found';
1287 return -9;
1288 }
1289
1290 $object = $this;
1291 if (empty($object->ref)) {
1292 $this->error = 'Function importWebSite called on object not loaded (object->ref is empty)';
1293 return -2;
1294 }
1295
1296 dol_delete_dir_recursive($conf->website->dir_temp."/".$object->ref);
1297 dol_mkdir($conf->website->dir_temp.'/'.$object->ref);
1298
1299 $filename = basename($pathtofile);
1300 $reg = array();
1301 if (!preg_match('/^website_(.*)-(.*)$/', $filename, $reg)) {
1302 $this->errors[] = 'Bad format for filename '.$filename.'. Must be website_XXX-VERSION.';
1303 return -3;
1304 }
1305
1306 // Uncompress the zip
1307 $result = dol_uncompress($pathtofile, $conf->website->dir_temp.'/'.$object->ref);
1308
1309 if (!empty($result['error'])) {
1310 $this->errors[] = 'Failed to unzip file '.$pathtofile;
1311 return -4;
1312 }
1313
1314 $arrayreplacement = array();
1315 $arrayreplacement['__WEBSITE_ID__'] = $object->id;
1316 $arrayreplacement['__WEBSITE_KEY__'] = $object->ref;
1317 $arrayreplacement['__N__'] = $this->db->escape("\n"); // Restore \n
1318 $arrayreplacement['__LOGO_SMALL_KEY__'] = $this->db->escape($mysoc->logo_small);
1319 $arrayreplacement['__LOGO_MINI_KEY__'] = $this->db->escape($mysoc->logo_mini);
1320 $arrayreplacement['__LOGO_KEY__'] = $this->db->escape($mysoc->logo);
1321
1322
1323 // Make replacement into css (replace dolSaveCssFile)
1324 $cssinsrcdir = $conf->website->dir_temp.'/'.$object->ref.'/containers/styles.css.php';
1325 $result = dolReplaceInFile($cssinsrcdir, $arrayreplacement);
1326
1327 // Test if imported CSS page contains dynamic PHP content
1328 if (!$user->hasRight('website', 'writephp')) {
1329 $newpathofsrcfile = dol_osencode($cssinsrcdir);
1330 $csscontent = file_get_contents($newpathofsrcfile);
1331
1332 // Check there is no PHP content into the imported file (must be only HTML + JS)
1333 $phpcontent = dolKeepOnlyPhpCode($csscontent);
1334
1335 if ($phpcontent) {
1336 $this->error = 'Error: you try to import a website with a page with PHP dynamic content in style sheet without having permissions for that.';
1337 $this->errors[] = $this->error;
1338 return -1;
1339 }
1340 }
1341 dol_copy($conf->website->dir_temp.'/'.$object->ref.'/containers/styles.css.php', $conf->website->dir_output.'/'.$object->ref.'/styles.css.php', '0', 1);
1342
1343
1344 // Make replacement in htmlheader.html (replace dolSaveHtmlHeader)
1345 $htmldeaderinsrcdir = $conf->website->dir_output.'/'.$object->ref.'/containers/htmlheader.html';
1346 $result = dolReplaceInFile($htmldeaderinsrcdir, $arrayreplacement);
1347
1348 // Test if imported html page contains dynamic PHP content
1349 if (!$user->hasRight('website', 'writephp')) {
1350 $newpathofsrcfile = dol_osencode($htmldeaderinsrcdir);
1351 $htmlcontent = file_get_contents($newpathofsrcfile);
1352
1353 // Check there is no PHP content into the imported file (must be only HTML + JS)
1354 $phpcontent = dolKeepOnlyPhpCode($htmlcontent);
1355
1356 if ($phpcontent) {
1357 $this->error = 'Error: you try to import a website with a page with PHP dynamic content in htmlheader.html without having permissions for that.';
1358 $this->errors[] = $this->error;
1359 return -1;
1360 }
1361 }
1362 dol_copy($conf->website->dir_temp.'/'.$object->ref.'/containers/htmlheader.html', $conf->website->dir_output.'/'.$object->ref.'/htmlheader.html', '0', 1);
1363
1364
1365 //dolCopyDir($conf->website->dir_temp.'/'.$object->ref.'/containers', $conf->website->dir_output.'/'.$object->ref, '0', 1); // Overwrite if exists
1366
1367
1368 // Copy special files (replace dolSaveLicense and dolSaveHtaccessFile)
1369 foreach (array('robots.txt', '.dolibarr', '.htaccess', 'LICENSE', 'README.md') as $filename) {
1370 // Test if imported file contains dynamic PHP content
1371 $newpathofsrcfile = dol_osencode($conf->website->dir_temp.'/'.$object->ref.'/containers/'.$filename);
1372 $filecontent = file_get_contents($newpathofsrcfile);
1373
1374 // Check there is no PHP content into the imported file (must be only HTML + JS)
1375 $phpcontent = dolKeepOnlyPhpCode($filecontent);
1376
1377 if ($phpcontent) {
1378 $this->error = 'Error: you try to import a website with a page with PHP dynamic content in '.$filename.'.';
1379 $this->errors[] = $this->error;
1380 return -1;
1381 }
1382
1383 dol_copy($conf->website->dir_temp.'/'.$object->ref.'/containers/'.$filename, $conf->website->dir_output.'/'.$object->ref.'/'.$filename, '0', 1);
1384 }
1385
1386 // Now generate the javascript.js.php
1387 $filejs = dol_osencode($conf->website->dir_temp.'/'.$object->ref.'/containers/javascript.js.php');
1388 $jscontent = @file_get_contents($filejs);
1389 // Clean the php js file to remove php code and get only js part
1390 $jscontent = preg_replace('/<\?php \/\/ BEGIN PHP[^\?]*END PHP( \?>)?\n*/ims', '', $jscontent);
1391 $phpcontent = dolKeepOnlyPhpCode($jscontent);
1392 if ($phpcontent) {
1393 $this->error = 'Error: you try to import a website with a page with PHP dynamic content in '.$filename.'.';
1394 $this->errors[] = $this->error;
1395 return -1;
1396 }
1397 dolSaveJsFile($conf->website->dir_output.'/'.$object->ref.'/javascript.js.php', $jscontent);
1398
1399
1400 // Now generate the manifest.json.php
1401 $filemanifestjson = dol_osencode($conf->website->dir_temp.'/'.$object->ref.'/containers/manifest.json.php');
1402 $manifestjsoncontent = @file_get_contents($filemanifestjson);
1403 // Clean the manifestjson file to remove php code and get only html part
1404 $manifestjsoncontent = preg_replace('/<\?php \/\/ BEGIN PHP[^\?]*END PHP( \?>)?\n*/ims', '', $manifestjsoncontent);
1405 // Check there is no PHP content into the imported file (must be only HTML + JS)
1406 $phpcontent = dolKeepOnlyPhpCode($manifestjsoncontent);
1407 if ($phpcontent) {
1408 $this->error = 'Error: you try to import a website with a page with PHP dynamic content in '.$filename.'.';
1409 $this->errors[] = $this->error;
1410 return -1;
1411 }
1412 dolSaveManifestJson($conf->website->dir_output.'/'.$object->ref.'/manifest.json.php', $manifestjsoncontent);
1413
1414
1415 // Now generate the master.inc.php page
1416 $filemaster = $conf->website->dir_output.'/'.$object->ref.'/master.inc.php';
1417 $result = dolSaveMasterFile($filemaster);
1418 if (!$result) {
1419 $this->errors[] = 'Failed to write file '.$filemaster;
1420 $error++;
1421 }
1422
1423
1424 // Copy dir medias/image/websitekey
1425 if (dol_is_dir($conf->website->dir_temp.'/'.$object->ref.'/medias/image/websitekey')) {
1426 $result = dolCopyDir($conf->website->dir_temp.'/'.$object->ref.'/medias/image/websitekey', $conf->website->dir_output.'/'.$object->ref.'/medias/image/'.$object->ref, '0', 1);
1427 if ($result < 0) {
1428 $this->error = 'Failed to copy files into '.$conf->website->dir_output.'/'.$object->ref.'/medias/image/'.$object->ref.'.';
1429 dol_syslog($this->error, LOG_WARNING);
1430 $this->errors[] = $this->error;
1431 return -5;
1432 }
1433 }
1434
1435 // Copy dir medias/js/websitekey
1436 if (dol_is_dir($conf->website->dir_temp.'/'.$object->ref.'/medias/js/websitekey')) {
1437 $result = dolCopyDir($conf->website->dir_temp.'/'.$object->ref.'/medias/js/websitekey', $conf->website->dir_output.'/'.$object->ref.'/medias/js/'.$object->ref, '0', 1);
1438 if ($result < 0) {
1439 $this->error = 'Failed to copy files into '.$conf->website->dir_output.'/'.$object->ref.'/medias/js/'.$object->ref.'.';
1440 dol_syslog($this->error, LOG_WARNING);
1441 $this->errors[] = $this->error;
1442 return -6;
1443 }
1444 }
1445
1446 $sqlfile = $conf->website->dir_temp."/".$object->ref.'/website_pages.sql';
1447
1448 $result = dolReplaceInFile($sqlfile, $arrayreplacement);
1449
1450 $this->db->begin();
1451
1452 // Search the $maxrowid because we need it later
1453 $sqlgetrowid = 'SELECT MAX(rowid) as max from '.MAIN_DB_PREFIX.'website_page';
1454 $maxrowid = 0;
1455 $resql = $this->db->query($sqlgetrowid);
1456 if ($resql) {
1457 $obj = $this->db->fetch_object($resql);
1458 $maxrowid = $obj->max;
1459 }
1460
1461 // Load sql record
1462 $resqlrun = run_sql($sqlfile, 1, 0, 0, '', 'none', 0, 1, 0, 0, 1, ''); // The maxrowid of table is searched into this function two
1463 if ($resqlrun <= 0) {
1464 $this->errors[] = 'Failed to load sql file '.$sqlfile.' (ret='.((int) $resqlrun).')';
1465 $error++;
1466 }
1467
1468 $objectpagestatic = new WebsitePage($this->db);
1469 $aliasesarray = null;
1470
1471 // Regenerate the php files for pages
1472 $fp = fopen($sqlfile, "r");
1473 if ($fp) {
1474 while (!feof($fp)) {
1475 $reg = array();
1476
1477 // Warning fgets with second parameter that is null or 0 hang.
1478 $buf = fgets($fp, 65000); // No need to have a high value here for second parameter. We will process only short lines starting with '-- Page ID ...'
1479 $newid = 0;
1480
1481 // Scan the line
1482 if (preg_match('/^-- Page ID (\d+)\s[^\s]+\s(\d+).*Aliases\s(.+)\s--;/i', $buf, $reg)) {
1483 // Example of line: "-- Page ID 179 -> 1__+MAX_llx_website_page__ - Aliases about-us --;"
1484 $oldid = (int) $reg[1];
1485 $newid = ((int) $reg[2] + $maxrowid);
1486 $aliasesarray = explode(',', $reg[3]);
1487
1488 dol_syslog("In sql source file, we have the page ID ".$oldid." to replace with the new ID ".$newid.", and we must create the shortcut aliases: ".$reg[3]);
1489
1490 //dol_move($conf->website->dir_output.'/'.$object->ref.'/page'.$oldid.'.tpl.php', $conf->website->dir_output.'/'.$object->ref.'/page'.$newid.'.tpl.php', 0, 1, 0, 0);
1491 } elseif (preg_match('/^-- Page ID (\d+).*Aliases\s(.*)\s--;/i', $buf, $reg)) {
1492 // Example of line: "-- Page ID 1__+MAX_llx_website_page__ - Aliases about-us --;"
1493 $newid = ((int) $reg[1] + $maxrowid);
1494 $aliasesarray = explode(',', $reg[2]);
1495
1496 dol_syslog("In sql source file, we have the page with the new ID ".$newid.", and we must create the shortcut aliases: ".$reg[2]);
1497 }
1498
1499 if ($newid) {
1500 $objectpagestatic->fetch($newid);
1501
1502 // We write the pageX.tpl.php
1503 $filetpl = $conf->website->dir_output.'/'.$object->ref.'/page'.$newid.'.tpl.php';
1504 $result = dolSavePageContent($filetpl, $object, $objectpagestatic);
1505 if (!$result) {
1506 $this->errors[] = 'Failed to write file '.basename($filetpl);
1507 $error++;
1508 }
1509
1510 // Test if imported page contains dynamic PHP content
1511 if (!$user->hasRight('website', 'writephp')) {
1512 $newpathofsrcfile = dol_osencode($filetpl);
1513 $tplcontent = file_get_contents($newpathofsrcfile);
1514
1515 // Check there is no PHP content into the imported file (must be only HTML + JS)
1516 $phpcontent = dolKeepOnlyPhpCode($tplcontent);
1517
1518 if ($phpcontent) {
1519 $this->error = 'Error: you try to import a website with a page with PHP dynamic content without having permissions for that.';
1520 $this->errors[] = $this->error;
1521 $error++;
1522 }
1523 }
1524
1525 // Regenerate also the main alias + alternative aliases pages
1526 if (is_array($aliasesarray)) {
1527 foreach ($aliasesarray as $aliasshortcuttocreate) {
1528 if (trim($aliasshortcuttocreate)) {
1529 $filealias = $conf->website->dir_output.'/'.$object->ref.'/'.trim($aliasshortcuttocreate).'.php';
1530 $result = dolSavePageAlias($filealias, $object, $objectpagestatic);
1531 if (!$result) {
1532 $this->errors[] = 'Failed to write file '.basename($filealias);
1533 $error++;
1534 }
1535 }
1536 }
1537 }
1538 }
1539 }
1540 }
1541
1542 // Read record of website that has been updated by the run_sql function previously called so we can get the
1543 // value of fk_default_home that is ID of home page
1544 $sql = "SELECT fk_default_home FROM ".MAIN_DB_PREFIX."website WHERE rowid = ".((int) $object->id);
1545 $resql = $this->db->query($sql);
1546 if ($resql) {
1547 $obj = $this->db->fetch_object($resql);
1548 if ($obj) {
1549 $object->fk_default_home = $obj->fk_default_home;
1550 } else {
1551 //$this->errors[] = 'Failed to get the Home page';
1552 //$error++;
1553 }
1554 }
1555
1556 // Regenerate the index.php page to point to the new index page
1557 $pathofwebsite = $conf->website->dir_output.'/'.$object->ref;
1558 dolSaveIndexPage($pathofwebsite, $pathofwebsite.'/index.php', $pathofwebsite.'/page'.$object->fk_default_home.'.tpl.php', $pathofwebsite.'/wrapper.php', $object);
1559
1560 //$this->initFilesStatus($pathofwebsite);
1561
1562 if ($error) {
1563 $this->db->rollback();
1564 return -1;
1565 } else {
1566 $this->db->commit();
1567 return $object->id;
1568 }
1569 }
1570
1577 public function rebuildWebSiteFiles()
1578 {
1579 global $conf;
1580
1581 $error = 0;
1582
1583 $object = $this;
1584 if (empty($object->ref)) {
1585 $this->error = 'Function rebuildWebSiteFiles called on object not loaded (object->ref is empty)';
1586 return -1;
1587 }
1588
1589 $objectpagestatic = new WebsitePage($this->db);
1590
1591 $sql = "SELECT rowid FROM ".MAIN_DB_PREFIX."website_page WHERE fk_website = ".((int) $this->id);
1592
1593 $resql = $this->db->query($sql);
1594 if (!$resql) {
1595 $this->error = $this->db->lasterror();
1596 return -1;
1597 }
1598
1599 $num = $this->db->num_rows($resql);
1600
1601 // Loop on each container/page
1602 $i = 0;
1603 while ($i < $num) {
1604 $obj = $this->db->fetch_object($resql);
1605
1606 $newid = $obj->rowid;
1607
1608 $objectpagestatic->fetch($newid);
1609
1610 $aliasesarray = explode(',', $objectpagestatic->aliasalt);
1611
1612 $filetpl = $conf->website->dir_output.'/'.$object->ref.'/page'.$newid.'.tpl.php';
1613 $result = dolSavePageContent($filetpl, $object, $objectpagestatic);
1614 if (!$result) {
1615 $this->errors[] = 'Failed to write file '.basename($filetpl);
1616 $error++;
1617 }
1618
1619 // Add main alias to list of alternative aliases
1620 if (!empty($objectpagestatic->pageurl) && !in_array($objectpagestatic->pageurl, $aliasesarray)) {
1621 $aliasesarray[] = $objectpagestatic->pageurl;
1622 }
1623
1624 // Regenerate also all aliases pages (pages with a natural name) by calling dolSavePageAlias()
1625 if (is_array($aliasesarray)) {
1626 foreach ($aliasesarray as $aliasshortcuttocreate) {
1627 if (trim($aliasshortcuttocreate)) {
1628 $filealias = $conf->website->dir_output.'/'.$object->ref.'/'.trim($aliasshortcuttocreate).'.php';
1629 $result = dolSavePageAlias($filealias, $object, $objectpagestatic); // This includes also a copy into sublanguage directories.
1630 if (!$result) {
1631 $this->errors[] = 'Failed to write file '.basename($filealias);
1632 $error++;
1633 }
1634 }
1635 }
1636 }
1637
1638 $i++;
1639 }
1640
1641 if (!$error) {
1642 // Save index.php and wrapper.php
1643 $pathofwebsite = $conf->website->dir_output.'/'.$object->ref;
1644 $fileindex = $pathofwebsite.'/index.php';
1645 $filetpl = '';
1646 if ($object->fk_default_home > 0) {
1647 $filetpl = $pathofwebsite.'/page'.$object->fk_default_home.'.tpl.php';
1648 }
1649 $filewrapper = $pathofwebsite.'/wrapper.php';
1650 dolSaveIndexPage($pathofwebsite, $fileindex, $filetpl, $filewrapper, $object); // This includes also a version of index.php into sublanguage directories
1651 }
1652
1653 // Erase cache files
1654 $filecacheglob = $conf->website->dir_output.'/temp/'.$object->ref.'-*.php.cache';
1655 dol_delete_file($filecacheglob, 0, 1, 1, null, false, 0, 1);
1656
1657 if ($error) {
1658 return -1;
1659 } else {
1660 return $num;
1661 }
1662 }
1663
1669 public function isMultiLang()
1670 {
1671 return !empty($this->otherlang);
1672 }
1673
1683 public function componentSelectLang($languagecodes, $weblangs, $morecss = '', $htmlname = '')
1684 {
1685 global $websitepagefile, $website;
1686 '@phan-var-force Website $website';
1687
1688 if (!is_object($weblangs)) {
1689 return 'ERROR componentSelectLang called with parameter $weblangs not defined';
1690 }
1691
1692 $arrayofspecialmainlanguages = array(
1693 'en' => 'en_US',
1694 'sq' => 'sq_AL',
1695 'ar' => 'ar_SA',
1696 'eu' => 'eu_ES',
1697 'bn' => 'bn_DB',
1698 'bs' => 'bs_BA',
1699 'ca' => 'ca_ES',
1700 'zh' => 'zh_CN',
1701 'cs' => 'cs_CZ',
1702 'da' => 'da_DK',
1703 'et' => 'et_EE',
1704 'ka' => 'ka_GE',
1705 'el' => 'el_GR',
1706 'he' => 'he_IL',
1707 'kn' => 'kn_IN',
1708 'km' => 'km_KH',
1709 'ko' => 'ko_KR',
1710 'lo' => 'lo_LA',
1711 'nb' => 'nb_NO',
1712 'fa' => 'fa_IR',
1713 'sr' => 'sr_RS',
1714 'sl' => 'sl_SI',
1715 'uk' => 'uk_UA',
1716 'vi' => 'vi_VN'
1717 );
1718
1719 // Load tmppage if we have $websitepagefile defined
1720 $tmppage = new WebsitePage($this->db);
1721
1722 $pageid = 0;
1723 if (!empty($websitepagefile)) {
1724 $websitepagefileshort = basename($websitepagefile);
1725 if ($websitepagefileshort == 'index.php') {
1726 $pageid = $website->fk_default_home;
1727 } else {
1728 $pageid = str_replace(array('.tpl.php', 'page'), array('', ''), $websitepagefileshort);
1729 }
1730 if ($pageid > 0) {
1731 $tmppage->fetch($pageid);
1732 }
1733 }
1734
1735 // Fill $languagecodes array with existing translation, nothing if none
1736 if (!is_array($languagecodes) && $pageid > 0) {
1737 $languagecodes = array();
1738
1739 $sql = "SELECT wp.rowid, wp.lang, wp.pageurl, wp.fk_page";
1740 $sql .= " FROM ".MAIN_DB_PREFIX."website_page as wp";
1741 $sql .= " WHERE wp.fk_website = ".((int) $website->id);
1742 $sql .= " AND (wp.fk_page = ".((int) $pageid)." OR wp.rowid = ".((int) $pageid);
1743 if ($tmppage->fk_page > 0) {
1744 $sql .= " OR wp.fk_page = ".((int) $tmppage->fk_page)." OR wp.rowid = ".((int) $tmppage->fk_page);
1745 }
1746 $sql .= ")";
1747
1748 $resql = $this->db->query($sql);
1749 if ($resql) {
1750 while ($obj = $this->db->fetch_object($resql)) {
1751 $newlang = $obj->lang;
1752 if ($obj->rowid == $pageid) {
1753 $newlang = $obj->lang;
1754 }
1755 if (!in_array($newlang, $languagecodes)) {
1756 $languagecodes[] = $newlang;
1757 }
1758 }
1759 }
1760 }
1761 // Now $languagecodes is always an array. Example array('en', 'fr', 'es');
1762
1763 $languagecodeselected = substr($weblangs->defaultlang, 0, 2); // Because we must init with a value, but real value is the lang of main parent container
1764 if (!empty($websitepagefile)) {
1765 $pageid = str_replace(array('.tpl.php', 'page'), array('', ''), basename($websitepagefile));
1766 if ($pageid > 0) {
1767 $pagelang = substr($tmppage->lang, 0, 2);
1768 $languagecodeselected = substr($pagelang, 0, 2);
1769 if (!in_array($pagelang, $languagecodes)) {
1770 $languagecodes[] = $pagelang; // We add language code of page into combo list
1771 }
1772 }
1773 }
1774
1775 $weblangs->load('languages');
1776 //var_dump($weblangs->defaultlang);
1777
1778 $url = $_SERVER["REQUEST_URI"];
1779 $url = preg_replace('/(\?|&)l=([a-zA-Z_]*)/', '', $url); // We remove param l from url
1780 //$url = preg_replace('/(\?|&)lang=([a-zA-Z_]*)/', '', $url); // We remove param lang from url
1781 $url .= (preg_match('/\?/', $url) ? '&' : '?').'l=';
1782 if (!preg_match('/^\//', $url)) {
1783 $url = '/'.$url;
1784 }
1785
1786 $HEIGHTOPTION = 40;
1787 $MAXHEIGHT = 4 * $HEIGHTOPTION;
1788 $nboflanguage = count($languagecodes);
1789
1790 $out = '<!-- componentSelectLang'.$htmlname.' -->'."\n";
1791
1792 $out .= '<style>';
1793 $out .= '.componentSelectLang'.$htmlname.':hover { height: '.min($MAXHEIGHT, ($HEIGHTOPTION * $nboflanguage)).'px; overflow-x: hidden; overflow-y: '.((($HEIGHTOPTION * $nboflanguage) > $MAXHEIGHT) ? ' scroll' : 'hidden').'; }'."\n";
1794 $out .= '.componentSelectLang'.$htmlname.' li { line-height: '.$HEIGHTOPTION.'px; }'."\n";
1795 $out .= '.componentSelectLang'.$htmlname.' {
1796 display: inline-block;
1797 padding: 0;
1798 height: '.$HEIGHTOPTION.'px;
1799 overflow: hidden;
1800 transition: all .3s ease;
1801 margin: 0 0 0 0;
1802 vertical-align: top;
1803 }
1804 .componentSelectLang'.$htmlname.':hover, .componentSelectLang'.$htmlname.':hover a { background-color: #fff; color: #000 !important; }
1805 ul.componentSelectLang'.$htmlname.' { width: 150px; }
1806 ul.componentSelectLang'.$htmlname.':hover .fa { visibility: hidden; }
1807 .componentSelectLang'.$htmlname.' a { text-decoration: none; width: 100%; }
1808 .componentSelectLang'.$htmlname.' li { display: block; padding: 0px 15px; margin-left: 0; margin-right: 0; }
1809 .componentSelectLang'.$htmlname.' li:hover { background-color: #EEE; }
1810 ';
1811 $out .= '</style>';
1812 $out .= '<ul class="componentSelectLang'.$htmlname.($morecss ? ' '.$morecss : '').'">';
1813
1814 if ($languagecodeselected) {
1815 // Convert $languagecodeselected into a long language code
1816 if (strlen($languagecodeselected) == 2) {
1817 $languagecodeselected = (string) (empty($arrayofspecialmainlanguages[$languagecodeselected]) ? $languagecodeselected.'_'.strtoupper($languagecodeselected) : $arrayofspecialmainlanguages[$languagecodeselected]);
1818 }
1819
1820 $countrycode = strtolower(substr($languagecodeselected, -2));
1821 $label = $weblangs->trans("Language_".$languagecodeselected);
1822 if ($countrycode == 'us') {
1823 $label = preg_replace('/\s*\‍(.*\‍)/', '', $label);
1824 }
1825 $out .= '<li><a href="'.$url.substr($languagecodeselected, 0, 2).'"><img height="12px" src="/medias/image/common/flags/'.$countrycode.'.png" style="margin-right: 5px;"/><span class="websitecomponentlilang">'.$label.'</span>';
1826 $out .= '<span class="fa fa-caret-down" style="padding-left: 5px;" />';
1827 $out .= '</a></li>';
1828 }
1829 $i = 0;
1830 if (is_array($languagecodes)) {
1831 foreach ($languagecodes as $languagecode) {
1832 // Convert $languagecode into a long language code
1833 if (strlen($languagecode) == 2) {
1834 $languagecode = (empty($arrayofspecialmainlanguages[$languagecode]) ? $languagecode.'_'.strtoupper($languagecode) : $arrayofspecialmainlanguages[$languagecode]);
1835 }
1836
1837 if ($languagecode == $languagecodeselected) {
1838 continue; // Already output
1839 }
1840
1841 $countrycode = strtolower(substr($languagecode, -2));
1842 $label = $weblangs->trans("Language_".$languagecode);
1843 if ($countrycode == 'us') {
1844 $label = preg_replace('/\s*\‍(.*\‍)/', '', $label);
1845 }
1846 $out .= '<li><a href="'.$url.substr($languagecode, 0, 2).'"><img height="12px" src="/medias/image/common/flags/'.$countrycode.'.png" style="margin-right: 5px;"/><span class="websitecomponentlilang">'.$label.'</span>';
1847 if (empty($i) && empty($languagecodeselected)) {
1848 $out .= '<span class="fa fa-caret-down" style="padding-left: 5px;" />';
1849 }
1850 $out .= '</a></li>';
1851 $i++;
1852 }
1853 }
1854 $out .= '</ul>';
1855
1856 return $out;
1857 }
1858
1866 public function overwriteTemplate(string $pathtotmpzip, $exportPath = '')
1867 {
1868 global $conf;
1869
1870 $website = $this;
1871 if (empty($website->id) || empty($website->ref)) {
1872 setEventMessages("Website id or ref is not defined", null, 'errors');
1873 return -1;
1874 }
1875 if (empty($website->name_template) && empty($exportPath)) {
1876 setEventMessages("To export the website template into a directory of the server, the name of the directory/template must be provided.", null, 'errors');
1877 return -1;
1878 }
1879 if (!is_writable($conf->website->dir_temp)) {
1880 setEventMessages("Temporary dir ".$conf->website->dir_temp." is not writable", null, 'errors');
1881 return -1;
1882 }
1883
1884 $destdir = null; // Otherwise only set when 'WEBSITE_ALLOW_OVERWRITE_GIT_SOURCE' is not falsy.
1885 $destdirrel = ''; // Otherwise only set when 'WEBSITE_ALLOW_OVERWRITE_GIT_SOURCE' is not falsy.
1886 // Replace modified files into the doctemplates directory.
1887 if (getDolGlobalString('WEBSITE_ALLOW_OVERWRITE_GIT_SOURCE')) {
1888 // If the user has not specified a path
1889 if (empty($exportPath)) {
1890 $destdirrel = 'install/doctemplates/websites/'.$website->name_template;
1891 $destdir = DOL_DOCUMENT_ROOT.'/'.$destdirrel;
1892 } else {
1893 $exportPath = rtrim($exportPath, '/');
1894 if (strpos($exportPath, '..') !== false) {
1895 setEventMessages("Invalid path.", null, 'errors');
1896 return -1;
1897 }
1898 // if path start with / (absolute path)
1899 if (strpos($exportPath, '/') === 0 || preg_match('/^[a-zA-Z]:/', $exportPath)) {
1900 if (!is_dir($exportPath)) {
1901 setEventMessages("The specified absolute path does not exist.", null, 'errors');
1902 return -1;
1903 }
1904
1905 if (!is_writable($exportPath)) {
1906 setEventMessages("The specified absolute path is not writable.", null, 'errors');
1907 return -1;
1908 }
1909 $destdirrel = $exportPath;
1910 $destdir = $exportPath;
1911 } else {
1912 // relatif path
1913 $destdirrel = 'install/doctemplates/websites/'.$exportPath;
1914 $destdir = DOL_DOCUMENT_ROOT.'/'.$destdirrel;
1915 }
1916 }
1917 }
1918
1919 if ($destdir === null) {
1920 setEventMessages("The destination path is not determined.", null, 'errors');
1921 return -1;
1922 }
1923
1924 dol_mkdir($destdir);
1925
1926 if (!is_writable($destdir)) {
1927 setEventMessages("The specified path ".$destdir." is not writable.", null, 'errors');
1928 return -1;
1929 }
1930
1931 // Export on target sources
1932 $resultarray = dol_uncompress($pathtotmpzip, $destdir);
1933
1934 // Remove the file README.md and LICENSE from the $destdir/containers
1935 if (dol_is_file($destdir.'/containers/README.md')) {
1936 dol_move($destdir.'/containers/README.md', $destdir.'/README.md', '0', 1, 0, 0);
1937 }
1938 if (dol_is_file($destdir.'/containers/LICENSE')) {
1939 dol_move($destdir.'/containers/LICENSE', $destdir.'/LICENSE', '0', 1, 0, 0);
1940 }
1941 /*
1942 if (empty($exportPath)) {
1943 dol_delete_file($destdir.'/containers/README.md');
1944 dol_delete_file($destdir.'/containers/LICENSE');
1945 }
1946 */
1947
1948 // Remove non required files (will be re-generated during the import)
1949 dol_delete_file($destdir.'/containers/index.php');
1950 dol_delete_file($destdir.'/containers/master.inc.php');
1951
1952 // Now we remove the flag o+x on files
1953 // TODO
1954
1955 if (!empty($resultarray)) {
1956 setEventMessages("Error, failed to unzip the export into target dir ".$destdir.": ".implode(',', $resultarray), null, 'errors');
1957 } else {
1958 setEventMessages("Website content written into ".$destdirrel, null, 'mesgs');
1959 }
1960
1961 header("Location: ".$_SERVER["PHP_SELF"].'?website='.$website->ref);
1962 exit();
1963 }
1964
1970 protected function extractNumberFromFilename($filename)
1971 {
1972 $matches = [];
1973 if (preg_match('/page(\d+)\.tpl\.php/', $filename, $matches)) {
1974 return (int) $matches[1];
1975 }
1976 return -1;
1977 }
1978
1984 public function setTemplateName($name_template)
1985 {
1986 $this->db->begin();
1987
1988 $sql = "UPDATE ".$this->db->prefix()."website SET";
1989 $sql .= " name_template = '".$this->db->escape($name_template)."'";
1990 $sql .= " WHERE rowid = ".(int) $this->id;
1991 $result = $this->db->query($sql);
1992
1993 if ($result) {
1994 $this->db->commit();
1995 return 1;
1996 } else {
1997 $this->db->rollback();
1998 return -1;
1999 }
2000 }
2001
2009 public function compareFichierModifie($dossierSource, $dossierDestination, $fichierModifie)
2010 {
2011
2012 $fichiersSource = [];
2013 $fichiersDestination = [];
2014
2015 $fichierWithNoPage = [];
2016 $fichierWithNoPageInDest = [];
2017
2018 // Filter source files
2019 foreach (dol_dir_list($dossierSource, "files") as $file) {
2020 if (preg_match('/^page\d+/', $file['name']) && !str_contains($file['name'], '.old')) {
2021 $fichiersSource[] = $file;
2022 } else {
2023 $fichierWithNoPage[] = $file;
2024 }
2025 }
2026
2027 // Filter destination files
2028 foreach (dol_dir_list($dossierDestination, "all", 1) as $file) {
2029 if (preg_match('/^page\d+/', $file['name']) && !str_contains($file['name'], '.old')) {
2030 $fichiersDestination[] = $file;
2031 } else {
2032 $fichierWithNoPageInDest[] = $file;
2033 }
2034 }
2035
2036 // find index source and search it in folder destination
2037 $numOfPageSource = 0;
2038 foreach ($fichiersSource as $index => $file) {
2039 if ($file['name'] == basename($fichierModifie['fullname'])) {
2040 $numOfPageSource = $this->extractNumberFromFilename($file['name']);
2041 break;
2042 }
2043 }
2044
2045 //search numPage where was declared
2046 $filesFound = array();
2047 foreach ($fichierWithNoPage as $filesource) {
2048 $fileContent = file_get_contents($filesource['fullname']);
2049 if (strpos($fileContent, "require './page".$numOfPageSource.".tpl.php'") !== false) {
2050 $filesFound = $filesource;
2051 break;
2052 }
2053 }
2054 // find file with same name and extract num page in destination folder
2055 $numPagesFound = '';
2056 foreach ($fichierWithNoPageInDest as $filedest) {
2057 if ($filedest['name'] === $filesFound['name']) {
2058 $fileContent = file_get_contents($filedest['fullname']);
2059 if (preg_match("/page\d+\.tpl\.php/", $fileContent, $matches)) {
2060 $numPagesFound = $matches[0];
2061 break;
2062 }
2063 }
2064 }
2065 //search file with the number of pages found
2066 $fileNeeded = array();
2067 foreach ($fichiersDestination as $index => $file) {
2068 if ($file['name'] == $numPagesFound) {
2069 $fileNeeded = $file;
2070 break;
2071 }
2072 }
2073
2074 if (isset($fileNeeded)) {
2075 $sourceContent = file_get_contents($fichierModifie['fullname']);
2076 if (file_exists($fileNeeded['fullname'])) {
2077 $destContent = file_get_contents($fileNeeded['fullname']);
2078
2079 $numOfPageDest = $this->extractNumberFromFilename($fileNeeded['name']);
2080 $differences = $this->showDifferences($destContent, $sourceContent, array($numOfPageDest,$numOfPageSource));
2081 $differences['file_destination'] = $fileNeeded;
2082 } else {
2083 $differences = array();
2084 }
2085 return $differences;
2086 }
2087 return array();
2088 }
2089
2095 private function normalizeString($str)
2096 {
2097 $str = str_replace("\r\n", "\n", $str);
2098 $str = str_replace("\r", "\n", $str);
2099 return $str;
2100 }
2101
2109 protected function showDifferences($str1, $str2, $exceptNumPge = array())
2110 {
2111 $diff = array();
2112 $str1 = $this->normalizeString($str1);
2113 $str2 = $this->normalizeString($str2);
2114
2115 $lines1 = explode("\n", $str1);
2116 $lines2 = explode("\n", $str2);
2117
2118 $linesShouldChange = array();
2119 $linesShouldNotChange = array();
2120 $linefound = array();
2121 $countNumPage = count($exceptNumPge);
2122
2123 for ($i = 0;$i < $countNumPage; $i++) {
2124 $linefound[$i] = array();
2125 $linefound[$i]['meta'] = '/content="' . preg_quote((string) $exceptNumPge[$i], '/') . '" \/>/';
2126 $linefound[$i]['output'] = '/dolWebsiteOutput\‍(\$tmp, "html", ' . preg_quote((string) $exceptNumPge[$i], '/') . '\‍);/';
2127 }
2128
2129 if (isset($linefound[1])) {
2130 $maxLines = max(count($lines1), count($lines2));
2131 for ($lineNum = 0; $lineNum < $maxLines; $lineNum++) {
2132 $lineContent1 = $lines1[$lineNum] ?? '';
2133 $lineContent2 = $lines2[$lineNum] ?? '';
2134 if (preg_match($linefound[0]['output'], $lineContent1)) {
2135 $linesShouldChange[] = $lineContent1;
2136 }
2137 if (preg_match($linefound[0]['meta'], $lineContent1)) {
2138 $linesShouldChange[] = $lineContent1;
2139 }
2140 if (preg_match($linefound[1]['output'], $lineContent2)) {
2141 $linesShouldNotChange[] = $lineContent2;
2142 }
2143 if (preg_match($linefound[1]['meta'], $lineContent2)) {
2144 $linesShouldNotChange[] = $lineContent2;
2145 }
2146 if ($lineContent1 !== $lineContent2) {
2147 if (isset($lines1[$lineNum]) && !isset($lines2[$lineNum])) {
2148 // Line deleted from the source
2149 $diff["Supprimée à la ligne " . ($lineNum + 1)] = $lineContent1;
2150 } elseif (!isset($lines1[$lineNum]) && isset($lines2[$lineNum])) {
2151 // New line added to the target
2152 $diff["Ajoutée à la ligne " . ($lineNum + 1)] = $lineContent2;
2153 } else {
2154 // Found a difference
2155 $diff["Modifiée à la ligne " . ($lineNum + 1)] = $lineContent2;
2156 }
2157 }
2158 }
2159 }
2160
2161
2162 if (empty($linesShouldChange)) {
2163 $linesShouldChange[0] = '<meta name="dolibarr:pageid" content="'.$exceptNumPge[0].'" />';
2164 $linesShouldChange[1] = '$tmp = ob_get_contents(); ob_end_clean(); dolWebsiteOutput($tmp, "html", '.$exceptNumPge[0].');';
2165 }
2166
2167 $replacementMapping = array();
2168 if (!empty($linesShouldNotChange)) {
2169 $i = 0;
2170 foreach ($linesShouldNotChange as $numLigne => $ligneRemplacement) {
2171 if (isset($linesShouldChange[$numLigne])) {
2172 $replacementMapping[$ligneRemplacement] = $linesShouldChange[$numLigne];
2173 } else {
2174 $replacementMapping[$ligneRemplacement] = $linesShouldChange[$i];
2175 }
2176 $i++;
2177 }
2178 $diff['lignes_dont_change'] = $replacementMapping;
2179 }
2180 // search path of image and replace it with the correct path
2181 $pattern = '/medias\/image\/'.preg_quote($this->ref, '/').'\/([^\'"\s]+)/';
2182
2183 foreach ($diff as $key => $value) {
2184 // Ensure the value is a string
2185 if (is_string($value)) {
2186 if (preg_match($pattern, $value)) {
2187 $newValue = preg_replace($pattern, 'medias/image/'.$this->name_template.'/$1', $value);
2188 $diff[$key] = $newValue;
2189 }
2190 }
2191 }
2192 return $diff;
2193 }
2194
2202 protected function replaceLineUsingNum($inplaceFile, $differences)
2203 {
2204 if (file_exists($inplaceFile)) {
2205 dolChmod($inplaceFile, '0664');
2206 }
2207 if (!is_writable($inplaceFile)) {
2208 return -2;
2209 }
2210
2211 unset($differences['file_destination']);
2212 $contentDest = file($inplaceFile, FILE_IGNORE_NEW_LINES);
2213 foreach ($differences as $key => $ligneSource) {
2214 $matches = array();
2215 if (preg_match('/(Ajoutée|Modifiée) à la ligne (\d+)/', $key, $matches)) {
2216 $typeModification = $matches[1];
2217 $numLigne = (int) $matches[2] - 1;
2218
2219 if ($typeModification === 'Ajoutée') {
2220 array_splice($contentDest, $numLigne, 0, $ligneSource);
2221 } elseif ($typeModification === 'Modifiée') {
2222 $contentDest[$numLigne] = $ligneSource;
2223 }
2224 } elseif (preg_match('/Supprimée à la ligne (\d+)/', $key, $matches)) {
2225 $numLigne = (int) $matches[1] - 1;
2226 unset($contentDest[$numLigne]);
2227 }
2228 }
2229 // Reindex the table keys
2230 $contentDest = array_values($contentDest);
2231 $stringreplacement = implode("\n", $contentDest);
2232
2233 file_put_contents($inplaceFile, $stringreplacement);
2234 dolChmod($inplaceFile);
2235
2236 foreach ($differences['lignes_dont_change'] as $linechanged => $line) {
2237 if (in_array($linechanged, $contentDest)) {
2238 dolReplaceInFile($inplaceFile, array($linechanged => $line));
2239 }
2240 }
2241
2242 return 0;
2243 }
2244}
if(! $sortfield) if(! $sortorder) $object
Definition account.php:100
run_sql($sqlfile, $silent=1, $entity=0, $usesavepoint=1, $handler='', $okerror='default', $linelengthlimit=32768, $nocommentremoval=0, $offsetforchartofaccount=0, $colspan=0, $onlysqltoimportwebsite=0, $database='')
Launch a sql file.
print $object position
Definition edit.php:206
$object ref
Definition info.php:90
setErrorsFromObject($object)
setErrorsFromObject
deleteCommon(User $user, $notrigger=0, $forcechilddeletion=0)
Delete object in database.
Class to manage Dolibarr database access.
Class to manage Dolibarr users.
Class Website.
isMultiLang()
Return if web site is a multilanguage web site.
setTemplateName($name_template)
update name_template in table after import template
create(User $user, $notrigger=0)
Create object into database.
rebuildWebSiteFiles()
Rebuild all files of all the pages/containers of a website.
exportWebSite()
Generate a zip with all data of web site.
replaceLineUsingNum($inplaceFile, $differences)
Replace line by line in file using numbers of the lines.
initAsSpecimen()
Initialise object with example values Id must be 0 if object instance is a specimen.
componentSelectLang($languagecodes, $weblangs, $morecss='', $htmlname='')
Component to select language inside a container (Full CSS Only)
extractNumberFromFilename($filename)
extract num of page
createFromClone($user, $fromid, $newref, $newlang='')
Load a website its id and create a new one in database.
fetchAll($sortorder='', $sortfield='', $limit=0, $offset=0, $filter='', $filtermode='AND')
Load all object in memory ($this->records) from the database.
overwriteTemplate(string $pathtotmpzip, $exportPath='')
Overite template by copying all files.
__construct(DoliDB $db)
Constructor.
getLibStatut($mode=0)
Return the label of the status.
LibStatut($status, $mode=0)
Return the label of a given status.
purge(User $user)
Purge website Delete website directory content and all pages and medias.
getNomUrl($withpicto=0, $option='', $notooltip=0, $maxlen=24, $morecss='')
Return a link to the user card (with optionally the picto) Use this->id,this->lastname,...
normalizeString($str)
Remove spaces in string.
update(User $user, $notrigger=0)
Update object into database.
fetch($id, $ref=null)
Load object in memory from the database.
compareFichierModifie($dossierSource, $dossierDestination, $fichierModifie)
Compare two files has not same name but same content.
showDifferences($str1, $str2, $exceptNumPge=array())
show difference between to string
print $langs trans("Ref").' m titre as m m statut as status
Or an array listing all the potential status of the object: array: int of the status => translated la...
Definition index.php:169
global $mysoc
dolKeepOnlyPhpCode($str)
Keep only PHP code part from a HTML string page.
print $script_file $mode $langs defaultlang(is_numeric($duration_value) ? " delay=". $duration_value :"").(is_numeric($duration_value2) ? " after cd cd cd description as description
Only used if Module[ID]Desc translation string is not found.
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $conf
The main.inc.php has been included so the following variable are now defined:
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $db
API class for accounts.
dol_move($srcfile, $destfile, $newmask='0', $overwriteifexists=1, $testvirus=0, $indexdatabase=1, $moreinfo=array(), $entity=null)
Move a file into another name.
dol_copy($srcfile, $destfile, $newmask='0', $overwriteifexists=1, $testvirus=0, $indexdatabase=0)
Copy a file to another file.
dol_delete_file($file, $disableglob=0, $nophperrors=0, $nohook=0, $object=null, $allowdotdot=false, $indexdatabase=1, $nolog=0)
Remove a file or several files with a mask.
dol_delete_dir_recursive($dir, $count=0, $nophperrors=0, $onlysub=0, &$countdeleted=0, $indexdatabase=1, $nolog=0, $level=0)
Remove a directory $dir and its subdirectories (or only files and subdirectories)
dol_uncompress($inputfile, $outputdir)
Uncompress a file.
dolCopyDir($srcfile, $destfile, $newmask, $overwriteifexists, $arrayreplacement=null, $excludesubdir=0, $excludefileext=null, $excludearchivefiles=0)
Copy a dir to another dir.
dol_is_file($pathoffile)
Return if path is a file.
dol_dir_list($utf8_path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
Definition files.lib.php:65
dol_is_dir($folder)
Test if filename is a directory.
dolReplaceInFile($srcfile, $arrayreplacement, $destfile='', $newmask='0', $indexdatabase=0, $arrayreplacementisregex=0)
Make replacement of strings into a file.
dol_now($mode='gmt')
Return date for now.
dol_osencode($str)
Return a string encoded into OS filesystem encoding.
dol_sanitizePathName($str, $newstr='_', $unaccent=0, $allowdash=0)
Clean a string to use it as a path name.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1, $includequotes=0, $allowdash=0)
Clean a string to use it as a file name.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
dolChmod($filepath, $newmask='')
Change mod of a file.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
forgeSQLFromUniversalSearchCriteria($filter, &$errorstr='', $noand=0, $nopar=0, $noerror=0, $forbiddenfields=array())
forgeSQLFromUniversalSearchCriteria
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false, $decorate=0)
Output date in a string format according to outputlangs (or langs if not defined).
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $allowothertags=array())
Show a picto called object_picto (generic function)
dolGetStatus($statusLabel='', $statusLabelShort='', $html='', $statusType='status0', $displayMode=0, $url='', $params=array())
Output the badge of a status.
print $langs trans("Show") . '< td style="' . $timeColor . '" align="center"> s</td > badge status0 badge status4 badge status3 Error badge status8< td align="center">< span class="badge ' . $badge . '"></span ></td >< td align="center">< a href="#" class="button button-small" onclick="openLogModal(this)" data-req="' . dol_escape_htmltag($reqSafe) . '" data-res="' . dol_escape_htmltag($resSafe) . '" data-err="' . dol_escape_htmltag($errSafe) . '">< span class="fa fa-search-plus"></span ></a ></td ></tr >< tr >< td colspan="' . $colspan . '" class="opacitymedium"></td ></tr ></table ></div ></form > logModal none logModal none s a JSON string
dolSaveMasterFile($filemaster)
Save content of a page on disk.
dolSaveLicense($file, $content)
Save content of a page on disk.
dolSaveManifestJson($file, $content)
Save content of a page on disk.
dolSaveIndexPage($pathofwebsite, $fileindex, $filetpl, $filewrapper, $object=null)
Save content of the index.php and/or the wrapper.php page.
dolSavePageAlias($filealias, $object, $objectpage)
Save an alias page on disk (A page that include the reference page).
dolSaveJsFile($filejs, $jscontent)
Save content of a page on disk.
dolSavePageContent($filetpl, Website $object, WebsitePage $objectpage, $backupold=0)
Save content of a page on disk (page name is generally ID_of_page.php).