25define(
'NOSCANPOSTFORINJECTION', 1);
26define(
'NOSTYLECHECK', 1);
27define(
'USEDOLIBARREDITOR', 1);
28define(
'FORCE_CKEDITOR', 1);
29if (!defined(
'DISABLE_JS_GRAHP')) define(
'DISABLE_JS_GRAPH', 1);
34require
'../main.inc.php';
35require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
36require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
37require_once DOL_DOCUMENT_ROOT.
'/core/lib/website.lib.php';
38require_once DOL_DOCUMENT_ROOT.
'/core/lib/website2.lib.php';
39require_once DOL_DOCUMENT_ROOT.
'/core/lib/images.lib.php';
40require_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
41require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formadmin.class.php';
42require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formwebsite.class.php';
43require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formother.class.php';
44require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
45require_once DOL_DOCUMENT_ROOT.
'/website/class/website.class.php';
46require_once DOL_DOCUMENT_ROOT.
'/website/class/websitepage.class.php';
47require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.php';
50$langs->loadLangs(array(
"admin",
"other",
"website",
"errors"));
53if (!$user->rights->website->read) {
57$conf->dol_hide_leftmenu = 1;
60$websiteid =
GETPOST(
'websiteid',
'int');
61$websitekey =
GETPOST(
'website',
'alpha');
62$page =
GETPOST(
'page',
'alpha');
63$pageid =
GETPOST(
'pageid',
'int');
64$pageref =
GETPOST(
'pageref',
'alphanohtml');
66$action =
GETPOST(
'action',
'aZ09');
67$massaction =
GETPOST(
'massaction',
'alpha');
68$confirm =
GETPOST(
'confirm',
'alpha');
69$cancel =
GETPOST(
'cancel',
'alpha');
70$toselect =
GETPOST(
'toselect',
'array');
71$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') :
'websitelist';
72$backtopage =
GETPOST(
'backtopage',
'alpha');
73$optioncss =
GETPOST(
'optioncss',
'aZ');
74$dol_hide_topmenu =
GETPOST(
'dol_hide_topmenu',
'int');
75$dol_hide_leftmenu =
GETPOST(
'dol_hide_leftmenu',
'int');
76$dol_openinpopup =
GETPOST(
'dol_openinpopup',
'aZ09');
78$type_container =
GETPOST(
'WEBSITE_TYPE_CONTAINER',
'alpha');
79$section_dir =
GETPOST(
'section_dir',
'alpha');
80$file_manager =
GETPOST(
'file_manager',
'alpha');
81$replacesite =
GETPOST(
'replacesite',
'alpha');
82$mode =
GETPOST(
'mode',
'alpha');
84if (
GETPOST(
'deletesite',
'alpha')) {
85 $action =
'deletesite';
87if (
GETPOST(
'delete',
'alpha')) {
90if (
GETPOST(
'preview',
'alpha')) {
93if (
GETPOST(
'createsite',
'alpha')) {
94 $action =
'createsite';
96if (
GETPOST(
'createcontainer',
'alpha')) {
97 $action =
'createcontainer';
99if (
GETPOST(
'editcss',
'alpha')) {
102if (
GETPOST(
'editmenu',
'alpha')) {
103 $action =
'editmenu';
105if (
GETPOST(
'setashome',
'alpha')) {
106 $action =
'setashome';
108if (
GETPOST(
'editmeta',
'alpha')) {
109 $action =
'editmeta';
111if (
GETPOST(
'editsource',
'alpha')) {
112 $action =
'editsource';
114if (
GETPOST(
'editcontent',
'alpha')) {
115 $action =
'editcontent';
117if (
GETPOST(
'exportsite',
'alpha')) {
118 $action =
'exportsite';
120if (
GETPOST(
'importsite',
'alpha')) {
121 $action =
'importsite';
123if (
GETPOST(
'createfromclone',
'alpha')) {
124 $action =
'createfromclone';
126if (
GETPOST(
'createpagefromclone',
'alpha')) {
127 $action =
'createpagefromclone';
129if (empty($action) && $file_manager) {
130 $action =
'file_manager';
132if ($action ==
'replacesite' || (empty($action) && $replacesite)) {
133 $mode =
'replacesite';
140$limit =
GETPOST(
'limit',
'int') ?
GETPOST(
'limit',
'int') : $conf->liste_limit;
141$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
142$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
143$page = GETPOSTISSET(
'pageplusone') ? (
GETPOST(
'pageplusone') - 1) :
GETPOST(
"page",
'int');
144if (empty($page) || $page == -1) {
147$offset = $limit * $page;
148$pageprev = $page - 1;
149$pagenext = $page + 1;
160$object->fetchAll(
'ASC',
'position');
163if (!($websiteid > 0) && empty($websitekey) && $action !=
'createsite') {
164 foreach ($object->records as $key => $valwebsite) {
165 $websitekey = $valwebsite->ref;
169if ($websiteid > 0 || $websitekey) {
170 $res = $object->fetch($websiteid, $websitekey);
171 $websitekey = $object->ref;
180if (($pageid > 0 || $pageref) && $action !=
'addcontainer') {
181 $res = $objectpage->fetch($pageid, ($object->id > 0 ? $object->id : null), $pageref);
183 $res = $objectpage->fetch($pageid, ($object->id > 0 ? $object->id : null), null, $pageref);
187 if ($res >= 0 && $object->id > 0) {
188 if ($objectpage->fk_website != $object->id) {
189 if ($object->fk_default_home > 0) {
190 $res = $objectpage->fetch($object->fk_default_home, $object->id,
'');
192 $pageid = $object->fk_default_home;
195 $res = $objectpage->fetch(0, $object->id,
'');
200 $pageid = $objectpage->id;
205 $pageid = $objectpage->id;
211if (empty($pageid) && empty($pageref) && $object->id > 0 && $action !=
'createcontainer') {
212 $pageid = $object->fk_default_home;
213 if (empty($pageid)) {
214 $array = $objectpage->fetchAll($object->id,
'ASC,ASC',
'type_container,pageurl');
215 if (!is_array($array) && $array < 0) {
218 $atleastonepage = (is_array($array) && count($array) > 0);
220 $firstpageid = 0; $homepageid = 0;
221 foreach ($array as $key => $valpage) {
222 if (empty($firstpageid)) {
223 $firstpageid = $valpage->id;
225 if ($object->fk_default_home && $key == $object->fk_default_home) {
226 $homepageid = $valpage->id;
229 $pageid = ($homepageid ? $homepageid : $firstpageid);
234global $dolibarr_main_data_root;
235$pathofwebsite = $dolibarr_main_data_root.($conf->entity > 1 ?
'/'.$conf->entity :
'').
'/website/'.$websitekey;
236$filehtmlheader = $pathofwebsite.
'/htmlheader.html';
237$filecss = $pathofwebsite.
'/styles.css.php';
238$filejs = $pathofwebsite.
'/javascript.js.php';
239$filerobot = $pathofwebsite.
'/robots.txt';
240$filehtaccess = $pathofwebsite.
'/.htaccess';
241$filetpl = $pathofwebsite.
'/page'.$pageid.
'.tpl.php';
242$fileindex = $pathofwebsite.
'/index.php';
243$filewrapper = $pathofwebsite.
'/wrapper.php';
244$filemanifestjson = $pathofwebsite.
'/manifest.json.php';
245$filereadme = $pathofwebsite.
'/README.md';
246$filelicense = $pathofwebsite.
'/LICENSE';
247$filemaster = $pathofwebsite.
'/master.inc.php';
250$urlwithouturlroot = preg_replace(
'/'.preg_quote(DOL_URL_ROOT,
'/').
'$/i',
'', trim($dolibarr_main_url_root));
251$urlwithroot = $urlwithouturlroot.DOL_URL_ROOT;
255$permtouploadfile = $user->hasRight(
'website',
'write');
256$diroutput = $conf->medias->multidir_output[$conf->entity];
258$relativepath = $section_dir;
259$upload_dir = preg_replace(
'/\/$/',
'', $diroutput).
'/'.preg_replace(
'/^\//',
'', $relativepath);
261$htmlheadercontentdefault =
'';
262$htmlheadercontentdefault .=
'<link rel="stylesheet" id="google-fonts-css" href="//fonts.googleapis.com/css?family=Open+Sans:300,400,700" />'.
"\n";
263$htmlheadercontentdefault .=
'<link rel="stylesheet" id="font-wasesome-css" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />'.
"\n";
264$htmlheadercontentdefault .=
'<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>'.
"\n";
265$htmlheadercontentdefault .=
'<script src="//cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>'.
"\n";
266$htmlheadercontentdefault .=
'<!--'.
"\n";
267$htmlheadercontentdefault .=
'<script src="/document.php?modulepart=medias&file=css/myfile.css"></script>'.
"\n";
268$htmlheadercontentdefault .=
'<script src="/document.php?modulepart=medias&file=js/myfile.js"></script>'.
"\n";
269$htmlheadercontentdefault .=
'-->'.
"\n";
271$manifestjsoncontentdefault =
'';
272$manifestjsoncontentdefault .=
'{
274 "short_name": "MyWebsite",
277 "display": "standalone",
278 "background_color": "#fff",
279 "description": "A simple Web app.",
281 "src": "images/'.urlencode($website->ref).
'/homescreen48.png",
285 "src": "image/'.urlencode($website->ref).
'/homescreen72.png",
289 "src": "image/'.urlencode($website->ref).
'/homescreen96.png",
293 "src": "image/'.urlencode($website->ref).
'/homescreen144.png",
297 "src": "image/'.urlencode($website->ref).
'/homescreen168.png",
301 "src": "image/'.urlencode($website->ref).
'/homescreen192.png",
305 "related_applications": [{
307 "url": "https://play.google.com/store/apps/details?id=com.nltechno.dolidroidpro"
311$listofpages = array();
320if (
GETPOST(
'optionsitefiles')) {
321 $algo .=
'sitefiles';
324if (empty($sortfield)) {
325 if ($action ==
'file_manager') {
326 $sortfield =
'name'; $sortorder =
'ASC';
328 $sortfield =
'pageurl'; $sortorder =
'ASC';
332$searchkey =
GETPOST(
'searchstring',
'restricthtml');
334if ($action ==
'replacesite' || $mode ==
'replacesite') {
335 $containertype =
GETPOST(
'optioncontainertype',
'aZ09') !=
'-1' ?
GETPOST(
'optioncontainertype',
'aZ09') :
'';
336 $langcode =
GETPOST(
'optionlanguage',
'aZ09');
337 $otherfilters = array();
338 if (
GETPOST(
'optioncategory',
'int') > 0) {
339 $otherfilters[
'category'] =
GETPOST(
'optioncategory',
'int');
342 $listofpages =
getPagesFromSearchCriterias($containertype, $algo, $searchkey, 1000, $sortfield, $sortorder, $langcode, $otherfilters, -1);
345$usercanedit = $user->rights->website->write;
346$permissiontoadd = $user->rights->website->write;
347$permissiontodelete = $user->hasRight(
'website',
'delete');
358if (
GETPOST(
'refreshsite',
'alpha') ||
GETPOST(
'refreshsite.x',
'alpha') ||
GETPOST(
'refreshsite_x',
'alpha')) {
359 if ($action ==
'addsite') {
362 if ($action ==
'updatesource') {
366 $pageid = $object->fk_default_home;
367 if (empty($pageid)) {
368 $array = $objectpage->fetchAll($object->id,
'ASC,ASC',
'type_container,pageurl');
369 if (!is_array($array) && $array < 0) {
372 $atleastonepage = (is_array($array) && count($array) > 0);
374 $firstpageid = 0; $homepageid = 0;
375 foreach ($array as $key => $valpage) {
376 if (empty($firstpageid)) {
377 $firstpageid = $valpage->id;
379 if ($object->fk_default_home && $key == $object->fk_default_home) {
380 $homepageid = $valpage->id;
383 $pageid = ($homepageid ? $homepageid : $firstpageid);
386if (
GETPOST(
'refreshpage',
'alpha') && !in_array($action, array(
'updatecss'))) {
390if ($cancel && $action ==
'renamefile') {
399 header(
"Location: ".$backtopage);
404$savbacktopage = $backtopage;
405$backtopage = $_SERVER[
"PHP_SELF"].
'?file_manager=1&website='.urlencode($websitekey).
'&pageid='.urlencode($pageid).(GETPOST(
'section_dir',
'alpha') ?
'§ion_dir='.urlencode(
GETPOST(
'section_dir',
'alpha')) :
'');
407 $backtopage .=
'&sortfield='.urlencode($sortfield);
410 $backtopage .=
'&sortorder='.urlencode($sortorder);
412include DOL_DOCUMENT_ROOT.
'/core/actions_linkedfiles.inc.php';
414$backtopage = $savbacktopage;
418if ($action ==
'renamefile') {
419 $action =
'file_manager';
422if ($action ==
'setwebsiteonline' && $usercanedit) {
423 $website->setStatut($website::STATUS_VALIDATED,
null,
'',
'WEBSITE_MODIFY',
'status');
425 header(
"Location: ".$_SERVER[
"PHP_SELF"].
'?website='.
GETPOST(
'website',
'alphanohtml').
'&pageid='.
GETPOST(
'websitepage',
'int'));
428if ($action ==
'setwebsiteoffline' && $usercanedit) {
429 $result = $website->setStatut($website::STATUS_DRAFT,
null,
'',
'WEBSITE_MODIFY',
'status');
431 header(
"Location: ".$_SERVER[
"PHP_SELF"].
'?website='.
GETPOST(
'website',
'alphanohtml').
'&pageid='.
GETPOST(
'websitepage',
'int'));
434if ($action ==
'seteditinline') {
436 setEventMessages($langs->trans(
"FeatureNotYetAvailable"),
null,
'warnings');
438 header(
"Location: ".$_SERVER[
"PHP_SELF"].
'?website='.
GETPOST(
'website',
'alphanohtml').
'&pageid='.
GETPOST(
'pageid',
'int'));
441if ($action ==
'unseteditinline') {
443 header(
"Location: ".$_SERVER[
"PHP_SELF"].
'?website='.
GETPOST(
'website',
'alphanohtml').
'&pageid='.
GETPOST(
'pageid',
'int'));
446if ($action ==
'setshowsubcontainers') {
449 header(
"Location: ".$_SERVER[
"PHP_SELF"].
'?website='.
GETPOST(
'website',
'alphanohtml').
'&pageid='.
GETPOST(
'pageid',
'int'));
452if ($action ==
'unsetshowsubcontainers') {
454 header(
"Location: ".$_SERVER[
"PHP_SELF"].
'?website='.
GETPOST(
'website',
'alphanohtml').
'&pageid='.
GETPOST(
'pageid',
'int'));
458if ($massaction ==
'replace' &&
GETPOST(
'confirmmassaction',
'alpha') && !$searchkey && $usercanedit) {
459 $mode =
'replacesite';
460 $action =
'replacesite';
464if ($action ==
'deletetemplate' && $usercanedit) {
465 $dirthemes = array(
'/doctemplates/websites');
466 if (!empty($conf->modules_parts[
'websitetemplates'])) {
467 foreach ($conf->modules_parts[
'websitetemplates'] as $reldir) {
468 $dirthemes = array_merge($dirthemes, (array) ($reldir.
'doctemplates/websites'));
471 $dirthemes = array_unique($dirthemes);
475 $mode =
'importsite';
476 $action =
'importsite';
478 if (count($dirthemes)) {
480 foreach ($dirthemes as $dir) {
482 $dirtheme = DOL_DATA_ROOT.$dir;
483 if (is_dir($dirtheme)) {
484 $templateuserfile =
GETPOST(
'templateuserfile');
485 $imguserfile = preg_replace(
'/\.zip$/',
'', $templateuserfile).
'.jpg';
494if ($massaction ==
'setcategory' &&
GETPOST(
'confirmmassaction',
'alpha') && $usercanedit) {
500 $categoryid =
GETPOST(
'setcategory',
'int');
501 if ($categoryid > 0) {
504 $category->fetch($categoryid);
506 foreach ($toselect as $tmpid) {
507 $tmpwebsitepage->id = $tmpid;
508 $result = $category->add_type($tmpwebsitepage,
'website_page');
509 if ($result < 0 && $result != -3) {
523 setEventMessages($langs->trans(
"RecordsModified", $nbupdate),
null,
'mesgs');
529 $listofpages =
getPagesFromSearchCriterias($containertype, $algo, $searchkey, 1000, $sortfield, $sortorder, $langcode, $otherfilters, -1);
533if ($massaction ==
'delcategory' &&
GETPOST(
'confirmmassaction',
'alpha') && $usercanedit) {
539 $categoryid =
GETPOST(
'setcategory',
'int');
540 if ($categoryid > 0) {
543 $category->fetch($categoryid);
545 foreach ($toselect as $tmpid) {
546 $tmpwebsitepage->id = $tmpid;
547 $result = $category->del_type($tmpwebsitepage,
'website_page');
548 if ($result < 0 && $result != -3) {
562 setEventMessages($langs->trans(
"RecordsModified", $nbupdate),
null,
'mesgs');
568 $listofpages =
getPagesFromSearchCriterias($containertype, $algo, $searchkey, 1000, $sortfield, $sortorder, $langcode, $otherfilters, -1);
572if ($massaction ==
'replace' &&
GETPOST(
'confirmmassaction',
'alpha') && $usercanedit) {
573 $replacestring =
GETPOST(
'replacestring',
'none');
575 $dolibarrdataroot = preg_replace(
'/([\\/]+)$/i',
'', DOL_DATA_ROOT);
576 $allowimportsite =
true;
577 if (
dol_is_file($dolibarrdataroot.
'/installmodules.lock')) {
578 $allowimportsite =
false;
581 if (!$allowimportsite) {
585 $message = $langs->trans(
'InstallModuleFromWebHasBeenDisabledContactUs');
588 $message = $langs->trans(
"InstallModuleFromWebHasBeenDisabledByFile", $dolibarrdataroot.
'/installmodules.lock');
591 } elseif (empty($user->rights->website->writephp)) {
593 } elseif (!$replacestring) {
598 foreach ($toselect as $keyselected) {
599 $objectpage = $listofpages[
'list'][$keyselected];
600 if ($objectpage->pageurl) {
601 dol_syslog(
"Replace string into page ".$objectpage->pageurl);
603 if (
GETPOST(
'optioncontent',
'aZ09')) {
604 $objectpage->content = str_replace($searchkey, $replacestring, $objectpage->content);
606 if (
GETPOST(
'optionmeta',
'aZ09')) {
607 $objectpage->title = str_replace($searchkey, $replacestring, $objectpage->title);
608 $objectpage->description = str_replace($searchkey, $replacestring, $objectpage->description);
609 $objectpage->keywords = str_replace($searchkey, $replacestring, $objectpage->keywords);
612 $filealias = $pathofwebsite.
'/'.$objectpage->pageurl.
'.php';
613 $filetpl = $pathofwebsite.
'/page'.$objectpage->id.
'.tpl.php';
618 setEventMessages(
'Failed to write file '.basename($filealias),
null,
'errors');
626 $objectpage->update($user);
630 $action =
'createcontainer';
636 if ($nbreplacement > 0) {
637 setEventMessages($langs->trans(
"ReplacementDoneInXPages", $nbreplacement),
null,
'mesgs');
640 $containertype =
GETPOST(
'optioncontainertype',
'aZ09') !=
'-1' ?
GETPOST(
'optioncontainertype',
'aZ09') :
'';
641 $langcode =
GETPOST(
'optionlanguage',
'aZ09');
642 $otherfilters = array();
643 if (
GETPOST(
'optioncategory',
'int') > 0) {
644 $otherfilters[
'category'] =
GETPOST(
'optioncategory',
'int');
648 $listofpages =
getPagesFromSearchCriterias($containertype, $algo, $searchkey, 1000, $sortfield, $sortorder, $langcode, $otherfilters);
678if ($action ==
'addsite' && $usercanedit) {
681 if (
GETPOST(
'virtualhost',
'alpha') && !preg_match(
'/^http/',
GETPOST(
'virtualhost',
'alpha'))) {
683 setEventMessages($langs->trans(
'ErrorURLMustStartWithHttp', $langs->transnoentitiesnoconv(
"VirtualHost")),
null,
'errors');
686 if (!$error && !
GETPOST(
'WEBSITE_REF',
'alpha')) {
688 $langs->load(
"errors");
689 setEventMessages($langs->transnoentities(
"ErrorFieldRequired", $langs->transnoentities(
"WebsiteName")),
null,
'errors');
691 if (!$error && !preg_match(
'/^[a-z0-9_\-\.]+$/i',
GETPOST(
'WEBSITE_REF',
'alpha'))) {
693 $langs->load(
"errors");
694 setEventMessages($langs->transnoentities(
"ErrorFieldCanNotContainSpecialCharacters", $langs->transnoentities(
"Ref")),
null,
'errors');
698 $arrayotherlang = explode(
',',
GETPOST(
'WEBSITE_OTHERLANG',
'alphanohtml'));
699 foreach ($arrayotherlang as $key => $val) {
701 if (empty(trim($val)))
continue;
702 $arrayotherlang[$key] = substr(trim($val), 0, 2);
706 $tmpobject->ref =
GETPOST(
'WEBSITE_REF',
'alpha');
707 $tmpobject->description =
GETPOST(
'WEBSITE_DESCRIPTION',
'alphanohtml');
708 $tmpobject->lang =
GETPOST(
'WEBSITE_LANG',
'aZ09');
709 $tmpobject->otherlang = join(
',', $arrayotherlang);
710 $tmpobject->virtualhost =
GETPOST(
'virtualhost',
'alpha');
712 $result = $tmpobject->create($user);
716 } elseif ($result < 0) {
727 header(
"Location: ".$_SERVER[
"PHP_SELF"].
'?website='.$tmpobject->ref);
731 $action =
'createsite';
741if ($action ==
'addcontainer' && $usercanedit) {
746 $objectpage->fk_website = $object->id;
748 if (GETPOSTISSET(
'fetchexternalurl')) {
749 $urltograb =
GETPOST(
'externalurl',
'alpha');
750 $grabimages =
GETPOST(
'grabimages',
'alpha');
751 $grabimagesinto =
GETPOST(
'grabimagesinto',
'alpha');
753 include_once DOL_DOCUMENT_ROOT.
'/core/lib/geturl.lib.php';
755 if (empty($urltograb)) {
757 $langs->load(
"errors");
758 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"URL")),
null,
'errors');
759 $action =
'createcontainer';
760 } elseif (!preg_match(
'/^http/', $urltograb)) {
762 $langs->load(
"errors");
763 setEventMessages(
'Error URL must start with http:// or https://',
null,
'errors');
764 $action =
'createcontainer';
770 $urltograbwithoutdomainandparam = preg_replace(
'/^https?:\/\/[^\/]+\/?/i',
'', $urltograb);
772 $urltograbwithoutdomainandparam = preg_replace(
'/\?.*$/',
'', $urltograbwithoutdomainandparam);
773 if (empty($urltograbwithoutdomainandparam) && !preg_match(
'/\/$/', $urltograb)) {
776 $pageurl =
dol_sanitizeFileName(preg_replace(
'/[\/\.]/',
'-', preg_replace(
'/\/+$/',
'', $urltograbwithoutdomainandparam)));
778 $urltograbdirwithoutslash = dirname($urltograb.
'.');
787 $result = $tmpwebsitepage->fetch(0, $object->id, $pageurl);
789 setEventMessages($langs->trans(
"AliasPageAlreadyExists", $pageurl),
null,
'errors');
791 $action =
'createcontainer';
796 $tmp =
getURLContent($urltograb,
'GET',
'', 1, array(), array(
'http',
'https'), 0);
797 if ($tmp[
'curl_error_no']) {
799 setEventMessages(
'Error getting '.$urltograb.
': '.$tmp[
'curl_error_msg'],
null,
'errors');
800 $action =
'createcontainer';
801 } elseif ($tmp[
'http_code'] !=
'200') {
803 setEventMessages(
'Error getting '.$urltograb.
': '.$tmp[
'http_code'],
null,
'errors');
804 $action =
'createcontainer';
813 setEventMessages(
'Error getting '.$urltograb.
': file that include PHP content is not allowed',
null,
'errors');
814 $action =
'createcontainer';
821 preg_match(
'/<head>(.*)<\/head>/ims', $tmp[
'content'], $regs);
824 $objectpage->type_container =
'page';
825 $objectpage->pageurl = $pageurl;
826 if (empty($objectpage->pageurl)) {
828 $objectpage->pageurl = $tmpdomain.
'-home';
831 $objectpage->aliasalt =
'';
833 if (preg_match(
'/^(\d+)\-/', basename($urltograb), $regs)) {
834 $objectpage->aliasalt = $regs[1];
838 if (preg_match(
'/<title>(.*)<\/title>/ims', $head, $regtmp)) {
839 $objectpage->title = $regtmp[1];
841 if (preg_match(
'/<meta name="title"[^"]+content="([^"]+)"/ims', $head, $regtmp)) {
842 if (empty($objectpage->title)) {
843 $objectpage->title = $regtmp[1];
846 if (preg_match(
'/<meta name="description"[^"]+content="([^"]+)"/ims', $head, $regtmp)) {
847 $objectpage->description = $regtmp[1];
849 if (preg_match(
'/<meta name="keywords"[^"]+content="([^"]+)"/ims', $head, $regtmp)) {
850 $objectpage->keywords = $regtmp[1];
852 if (preg_match(
'/<html\s+lang="([^"]+)"/ims', $tmp[
'content'], $regtmp)) {
853 $tmplang = explode(
'-', $regtmp[1]);
854 $objectpage->lang = $tmplang[0].($tmplang[1] ?
'_'.strtoupper($tmplang[1]) :
'');
857 $tmp[
'content'] = preg_replace(
'/\s*<meta name="generator"[^"]+content="([^"]+)"\s*\/?>/ims',
'', $tmp[
'content']);
859 $objectpage->content = $tmp[
'content'];
860 $objectpage->content = preg_replace(
'/^.*<body(\s[^>]*)*>/ims',
'', $objectpage->content);
861 $objectpage->content = preg_replace(
'/<\/body(\s[^>]*)*>.*$/ims',
'', $objectpage->content);
869 $objectpage->htmlheader = $tmp[
'content'];
870 $objectpage->htmlheader = preg_replace(
'/^.*<head(\s[^>]*)*>/ims',
'', $objectpage->htmlheader);
871 $objectpage->htmlheader = preg_replace(
'/<\/head(\s[^>]*)*>.*$/ims',
'', $objectpage->htmlheader);
872 $objectpage->htmlheader = preg_replace(
'/<base(\s[^>]*)*>\n*/ims',
'', $objectpage->htmlheader);
873 $objectpage->htmlheader = preg_replace(
'/<meta http-equiv="content-type"([^>]*)*>\n*/ims',
'', $objectpage->htmlheader);
874 $objectpage->htmlheader = preg_replace(
'/<meta name="robots"([^>]*)*>\n*/ims',
'', $objectpage->htmlheader);
875 $objectpage->htmlheader = preg_replace(
'/<meta name="title"([^>]*)*>\n*/ims',
'', $objectpage->htmlheader);
876 $objectpage->htmlheader = preg_replace(
'/<meta name="description"([^>]*)*>\n*/ims',
'', $objectpage->htmlheader);
877 $objectpage->htmlheader = preg_replace(
'/<meta name="keywords"([^>]*)*>\n*/ims',
'', $objectpage->htmlheader);
878 $objectpage->htmlheader = preg_replace(
'/<meta name="generator"([^>]*)*>\n*/ims',
'', $objectpage->htmlheader);
881 $objectpage->htmlheader = preg_replace(
'/<title>[^<]*<\/title>\n*/ims',
'', $objectpage->htmlheader);
882 $objectpage->htmlheader = preg_replace(
'/<link[^>]*rel="shortcut[^>]*>\n/ims',
'', $objectpage->htmlheader);
883 $objectpage->htmlheader = preg_replace(
'/<link[^>]*rel="alternate[^>]*>\n/ims',
'', $objectpage->htmlheader);
884 $objectpage->htmlheader = preg_replace(
'/<link[^>]*rel="canonical[^>]*>\n/ims',
'', $objectpage->htmlheader);
887 $tmp = $objectpage->htmlheader;
890 preg_match_all(
'/<script([^\.>]+)src=["\']([^"\'>]+)["\']([^>]*)><\/script>/i', $objectpage->htmlheader, $regs);
891 $errorforsubresource = 0;
892 foreach ($regs[0] as $key => $val) {
893 dol_syslog(
"We will grab the script resource found into script tag ".$regs[2][$key]);
895 $linkwithoutdomain = $regs[2][$key];
896 if (preg_match(
'/^\//', $regs[2][$key])) {
897 $urltograbbis = $urltograbdirrootwithoutslash.$regs[2][$key];
899 $urltograbbis = $urltograbdirwithoutslash.
'/'.$regs[2][$key];
903 if (preg_match(
'/^http/', $regs[2][$key])) {
904 $urltograbbis = $regs[2][$key];
905 $linkwithoutdomain = preg_replace(
'/^https?:\/\/[^\/]+\//i',
'', $regs[2][$key]);
915 if ($domaintograb != $domaintograbbis) {
947 $tmp = preg_replace(
'/'.preg_quote($regs[0][$key],
'/').
'/i',
'', $tmp);
949 $objectpage->htmlheader = trim($tmp).
"\n";
953 $pagecsscontent =
"\n".
'<style>'.
"\n";
955 preg_match_all(
'/<link([^\.>]+)href=["\']([^"\'>]+\.css[^"\'>]*)["\']([^>]*)>/i', $objectpage->htmlheader, $regs);
956 $errorforsubresource = 0;
957 foreach ($regs[0] as $key => $val) {
958 dol_syslog(
"We will grab the css resources found into link tag ".$regs[2][$key]);
960 $linkwithoutdomain = $regs[2][$key];
961 if (preg_match(
'/^\//', $regs[2][$key])) {
962 $urltograbbis = $urltograbdirrootwithoutslash.$regs[2][$key];
964 $urltograbbis = $urltograbdirwithoutslash.
'/'.$regs[2][$key];
968 if (preg_match(
'/^http/', $regs[2][$key])) {
969 $urltograbbis = $regs[2][$key];
970 $linkwithoutdomain = preg_replace(
'/^https?:\/\/[^\/]+\//i',
'', $regs[2][$key]);
980 if ($domaintograb != $domaintograbbis) {
984 $tmpgeturl =
getURLContent($urltograbbis,
'GET',
'', 1, array(), array(
'http',
'https'), 0);
985 if ($tmpgeturl[
'curl_error_no']) {
986 $errorforsubresource++;
987 setEventMessages(
'Error getting link tag url '.$urltograbbis.
': '.$tmpgeturl[
'curl_error_msg'],
null,
'errors');
988 dol_syslog(
'Error getting '.$urltograbbis.
': '.$tmpgeturl[
'curl_error_msg']);
989 $action =
'createcontainer';
990 } elseif ($tmpgeturl[
'http_code'] !=
'200') {
991 $errorforsubresource++;
992 setEventMessages(
'Error getting link tag url '.$urltograbbis.
': '.$tmpgeturl[
'http_code'],
null,
'errors');
993 dol_syslog(
'Error getting '.$urltograbbis.
': '.$tmpgeturl[
'curl_error_msg']);
994 $action =
'createcontainer';
1003 $tmpgeturl[
'content'] = preg_replace(
'/\/\*\s+CSS content[a-z\s]*\s+\*\//',
'', $tmpgeturl[
'content']);
1013 $pagecsscontent .=
'/* Content of file '.$urltograbbis.
' */'.
"\n";
1015 getAllImages($object, $objectpage, $urltograbbis, $tmpgeturl[
'content'], $action, 1, $grabimages, $grabimagesinto);
1018 include_once DOL_DOCUMENT_ROOT.
'/core/class/lessc.class.php';
1019 $lesscobj =
new Lessc();
1021 $contentforlessc =
".bodywebsite {\n".$tmpgeturl[
'content'].
"\n}\n";
1023 $contentforlessc = $lesscobj->compile($contentforlessc);
1026 $pagecsscontent .= $contentforlessc.
"\n";
1028 }
catch (exception $e) {
1030 dol_syslog(
"Failed to compile the CSS from URL ".$urltograbbis.
" with lessc: ".$e->getMessage(), LOG_WARNING);
1031 $pagecsscontent .= $tmpgeturl[
'content'].
"\n";
1034 $objectpage->htmlheader = preg_replace(
'/'.preg_quote($regs[0][$key],
'/').
'\n*/ims',
'', $objectpage->htmlheader);
1038 $pagecsscontent .=
'</style>';
1042 $objectpage->htmlheader .= trim($pagecsscontent).
"\n";
1046 $tmp = $objectpage->content;
1048 getAllImages($object, $objectpage, $urltograb, $tmp, $action, 1, $grabimages, $grabimagesinto);
1051 $tmp = preg_replace(
'/a href="\/([^\/"]+)\/([^\/"]+)"/',
'a href="/\1-\2.php"', $tmp);
1052 $tmp = preg_replace(
'/a href="\/([^\/"]+)\/([^\/"]+)\/([^\/"]+)"/',
'a href="/\1-\2-\3.php"', $tmp);
1053 $tmp = preg_replace(
'/a href="\/([^\/"]+)\/([^\/"]+)\/([^\/"]+)\/([^\/"]+)"/',
'a href="/\1-\2-\3-\4.php"', $tmp);
1056 $objectpage->content = $tmp;
1058 $objectpage->grabbed_from = $urltograb;
1062 $newaliasnames =
'';
1063 if (!$error &&
GETPOST(
'WEBSITE_ALIASALT',
'alpha')) {
1064 $arrayofaliastotest = explode(
',', str_replace(array(
'<',
'>'),
'',
GETPOST(
'WEBSITE_ALIASALT',
'alpha')));
1066 foreach ($arrayofaliastotest as $aliastotest) {
1067 $aliastotest = trim(preg_replace(
'/\.php$/i',
'', $aliastotest));
1070 if (preg_match(
'/^page\d+/i', $aliastotest)) {
1072 $langs->load(
"errors");
1074 $action =
'createcontainer';
1077 $result = $websitepagetemp->fetch(0, $object->id, $aliastotest);
1080 $langs->load(
"errors");
1081 setEventMessages($websitepagetemp->error, $websitepagetemp->errors,
'errors');
1082 $action =
'createcontainer';
1087 $langs->load(
"errors");
1088 setEventMessages($langs->trans(
"ErrorAPageWithThisNameOrAliasAlreadyExists", $websitepagetemp->pageurl),
null,
'errors');
1089 $action =
'createcontainer';
1092 $newaliasnames .= ($newaliasnames ?
', ' :
'').$aliastotest;
1097 $objectpage->title = str_replace(array(
'<',
'>'),
'',
GETPOST(
'WEBSITE_TITLE',
'alphanohtml'));
1098 $objectpage->type_container =
GETPOST(
'WEBSITE_TYPE_CONTAINER',
'aZ09');
1099 $objectpage->pageurl =
GETPOST(
'WEBSITE_PAGENAME',
'alpha');
1100 $objectpage->aliasalt = $newaliasnames;
1101 $objectpage->description = str_replace(array(
'<',
'>'),
'',
GETPOST(
'WEBSITE_DESCRIPTION',
'alphanohtml'));
1102 $objectpage->lang =
GETPOST(
'WEBSITE_LANG',
'aZ09');
1103 $objectpage->otherlang =
GETPOST(
'WEBSITE_OTHERLANG',
'aZ09comma');
1104 $objectpage->image =
GETPOST(
'WEBSITE_IMAGE',
'alpha');
1105 $objectpage->keywords = str_replace(array(
'<',
'>'),
'',
GETPOST(
'WEBSITE_KEYWORDS',
'alphanohtml'));
1106 $objectpage->allowed_in_frames =
GETPOST(
'WEBSITE_ALLOWED_IN_FRAMES',
'aZ09');
1107 $objectpage->htmlheader =
GETPOST(
'htmlheader',
'none');
1108 $objectpage->author_alias =
GETPOST(
'WEBSITE_AUTHORALIAS',
'alphanohtml');
1109 $objectpage->object_type =
GETPOST(
'WEBSITE_OBJECTCLASS');
1110 $objectpage->fk_object =
GETPOST(
'WEBSITE_OBJECTID');
1111 $substitutionarray = array();
1112 $substitutionarray[
'__WEBSITE_CREATE_BY__'] = $user->getFullName($langs);
1115 $pageidfortranslation = (
GETPOST(
'pageidfortranslation',
'int') > 0 ?
GETPOST(
'pageidfortranslation',
'int') : 0);
1116 if ($pageidfortranslation > 0) {
1119 $objectpagetmp->fetch($pageidfortranslation);
1120 if ($objectpagetmp->fk_page > 0) {
1121 $pageidfortranslation = $objectpagetmp->fk_page;
1124 $objectpage->fk_page = $pageidfortranslation;
1126 $sample =
GETPOST(
'sample',
'alpha');
1127 if (empty($sample)) {
1131 $pathtosample = DOL_DOCUMENT_ROOT.
'/website/samples/page-sample-'.
dol_sanitizeFileName($sample).
'.html';
1134 $objectpage->content =
make_substitutions(@file_get_contents($pathtosample), $substitutionarray);
1138 if (empty($objectpage->pageurl)) {
1139 $langs->load(
"errors");
1140 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"WEBSITE_PAGENAME")),
null,
'errors');
1142 $action =
'createcontainer';
1143 } elseif (!preg_match(
'/^[a-z0-9\-\_]+$/i', $objectpage->pageurl)) {
1144 $langs->load(
"errors");
1145 setEventMessages($langs->transnoentities(
"ErrorFieldCanNotContainSpecialCharacters", $langs->transnoentities(
'WEBSITE_PAGENAME')),
null,
'errors');
1147 $action =
'createcontainer';
1149 if (empty($objectpage->title)) {
1150 $langs->load(
"errors");
1151 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"WEBSITE_TITLE")),
null,
'errors');
1153 $action =
'createcontainer';
1155 if ($objectpage->fk_page > 0 && empty($objectpage->lang)) {
1156 $langs->load(
"errors");
1157 setEventMessages($langs->trans(
"ErrorLanguageRequiredIfPageIsTranslationOfAnother"),
null,
'errors');
1159 $action =
'createcontainer';
1161 if ($objectpage->fk_page > 0 && !empty($objectpage->lang)) {
1162 if ($objectpage->lang == $website->lang) {
1163 $langs->load(
"errors");
1164 setEventMessages($langs->trans(
"ErrorLanguageMustNotBeSourceLanguageIfPageIsTranslationOfAnother"),
null,
'errors');
1166 $action =
'createcontainer';
1172 $pageid = $objectpage->create($user);
1176 $action =
'createcontainer';
1182 $categoriesarray =
GETPOST(
'categories',
'array');
1183 $result = $objectpage->setCategories($categoriesarray);
1192 if (empty($object->fk_default_home)) {
1193 $object->fk_default_home = $pageid;
1194 $res = $object->update($user);
1199 $filetpl = $pathofwebsite.
'/page'.$pageid.
'.tpl.php';
1202 $result =
dolSaveIndexPage($pathofwebsite, $fileindex, $filetpl, $filewrapper, $object);
1212 if (!empty($objectpage->content)) {
1213 $filealias = $pathofwebsite.
'/'.$objectpage->pageurl.
'.php';
1214 $filetpl = $pathofwebsite.
'/page'.$objectpage->id.
'.tpl.php';
1219 setEventMessages(
'Failed to write file '.basename($filealias),
null,
'errors');
1228 $action =
'createcontainer';
1235 setEventMessages($langs->trans(
"PageAdded", $objectpage->pageurl),
null,
'mesgs');
1242 $pageid = $objectpage->id;
1247 $pathtomedias = DOL_DATA_ROOT.
'/medias';
1248 $pathtomediasinwebsite = $pathofwebsite.
'/medias';
1250 dol_syslog(
"Create symlink for ".$pathtomedias.
" into name ".$pathtomediasinwebsite);
1251 dol_mkdir(dirname($pathtomediasinwebsite));
1252 $result = symlink($pathtomedias, $pathtomediasinwebsite);
1265 $htmlheadercontent =
"<html>\n";
1266 $htmlheadercontent .= $htmlheadercontentdefault;
1267 $htmlheadercontent .=
"</html>";
1272 $csscontent =
"/* CSS content (all pages) */\nbody.bodywebsite { margin: 0; font-family: 'Open Sans', sans-serif; }\n.bodywebsite h1 { margin-top: 0; margin-bottom: 0; padding: 10px;}";
1277 $jscontent =
"/* JS content (all pages) */\n";
1282 $robotcontent =
"# Robot file. Generated with Dolibarr\nUser-agent: *\nAllow: /public/\nDisallow: /administrator/";
1287 $htaccesscontent =
"# Order allow,deny\n# Deny from all";
1292 $manifestjsoncontent =
"";
1297 $readmecontent =
"Website generated by Dolibarr ERP CRM";
1302 $licensecontent =
"MIT License";
1306 $action =
'preview';
1311if ($action ==
'confirm_deletesite' && $confirm ==
'yes' && $permissiontodelete) {
1316 $res = $object->fetch(
GETPOST(
'id',
'int'));
1320 $res = $object->delete($user);
1327 if (
GETPOST(
'delete_also_js',
'alpha') ==
'on') {
1328 $pathofwebsitejs = DOL_DATA_ROOT.
'/medias/js/'.$object->ref;
1332 if (
GETPOST(
'delete_also_medias',
'alpha') ==
'on') {
1333 $pathofwebsitemedias = DOL_DATA_ROOT.
'/medias/image/'.$object->ref;
1341 setEventMessages($langs->trans(
"SiteDeleted", $object->ref),
null,
'mesgs');
1343 header(
"Location: ".$_SERVER[
"PHP_SELF"].
'?id='.$object->id);
1352if (GETPOSTISSET(
'pageid') && $action ==
'delete' && $permissiontodelete && !
GETPOST(
'file_manager')) {
1357 $res = $object->fetch(0, $websitekey);
1360 $res = $objectpage->fetch($pageid, $object->id);
1363 $res = $objectpage->delete($user);
1372 setEventMessages($langs->trans(
"PageDeleted", $objectpage->pageurl, $websitekey),
null,
'mesgs');
1374 header(
"Location: ".$_SERVER[
"PHP_SELF"].
'?website='.$websitekey);
1382if (!GETPOSTISSET(
'pageid')) {
1383 $objectclass =
'WebsitePage';
1387 if (!$error && ($massaction ==
'delete' || ($action ==
'delete' && $confirm ==
'yes')) && $permissiontodelete) {
1390 $objecttmp =
new $objectclass($db);
1392 foreach ($toselect as $toselectid) {
1393 $result = $objecttmp->fetch($toselectid);
1395 $result = $objecttmp->delete($user);
1424 if ($action ==
'delete') {
1425 $mode =
'replacesite';
1426 $action =
'replacesite';
1428 $containertype =
GETPOST(
'optioncontainertype',
'aZ09') !=
'-1' ?
GETPOST(
'optioncontainertype',
'aZ09') :
'';
1429 $langcode =
GETPOST(
'optionlanguage',
'aZ09');
1430 $otherfilters = array();
1431 if (
GETPOST(
'optioncategory',
'int') > 0) {
1432 $otherfilters[
'category'] =
GETPOST(
'optioncategory',
'int');
1435 $listofpages =
getPagesFromSearchCriterias($containertype, $algo, $searchkey, 1000, $sortfield, $sortorder, $langcode, $otherfilters);
1440if ($action ==
'updatecss' && $usercanedit) {
1443 $action =
'editcss';
1445 $res = $object->fetch(0, $websitekey);
1448 if (GETPOSTISSET(
'virtualhost')) {
1449 $tmpvirtualhost = preg_replace(
'/\/$/',
'',
GETPOST(
'virtualhost',
'alpha'));
1450 if ($tmpvirtualhost && !preg_match(
'/^http/', $tmpvirtualhost)) {
1452 setEventMessages($langs->trans(
'ErrorURLMustStartWithHttp', $langs->transnoentitiesnoconv(
"VirtualHost")),
null,
'errors');
1453 $action =
'editcss';
1457 $arrayotherlang = explode(
',',
GETPOST(
'WEBSITE_OTHERLANG',
'alphanohtml'));
1458 foreach ($arrayotherlang as $key => $val) {
1460 if (empty(trim($val)))
continue;
1461 $arrayotherlang[$key] = substr(trim($val), 0, 2);
1464 $object->virtualhost = $tmpvirtualhost;
1465 $object->lang =
GETPOST(
'WEBSITE_LANG',
'aZ09');
1466 $object->otherlang = join(
',', $arrayotherlang);
1467 $object->use_manifest =
GETPOST(
'use_manifest',
'alpha');
1469 $result = $object->update($user);
1473 $action =
'editcss';
1479 if (($_FILES[
'addedfile'][
"name"] !=
'')) {
1480 $uploadfolder = $conf->website->dir_output.
'/'.$websitekey;
1481 if ($_FILES[
'addedfile'][
'type'] !=
'image/png') {
1485 $filetoread = realpath(
dol_osencode($_FILES[
'addedfile'][
'tmp_name']));
1486 $filesize = getimagesize($filetoread);
1487 if ($filesize[0] != $filesize[1]) {
1489 setEventMessages($langs->trans(
'ErrorFaviconMustBeASquaredImage'), array(),
'errors');
1491 if (! $error && ($filesize[0] != 16 && $filesize[0] != 32 && $filesize[0] != 64)) {
1500 if (!GETPOSTISSET(
'updateandstay')) {
1501 $action =
'preview';
1503 $backtopage = preg_replace(
'/searchstring=[^&]*/',
'', $backtopage);
1504 header(
"Location: ".$backtopage);
1508 $action =
'editcss';
1527 $dataposted = trim(
GETPOST(
'WEBSITE_HTML_HEADER',
'none'));
1528 $dataposted = preg_replace(array(
'/<html>\n*/ims',
'/<\/html>\n*/ims'), array(
'',
''), $dataposted);
1529 $dataposted = str_replace(
'<?=',
'<?php', $dataposted);
1532 $phpfullcodestringold =
'';
1536 $errorphpcheck =
checkPHPCode($phpfullcodestringold, $phpfullcodestring);
1538 if (!$errorphpcheck) {
1539 $htmlheadercontent =
'';
1551 $htmlheadercontent .= $dataposted.
"\n";
1566 $dataposted = trim(
GETPOST(
'WEBSITE_CSS_INLINE',
'none'));
1567 $dataposted = str_replace(
'<?=',
'<?php', $dataposted);
1570 $phpfullcodestringold =
'';
1574 $errorphpcheck =
checkPHPCode($phpfullcodestringold, $phpfullcodestring);
1576 if (!$errorphpcheck) {
1579 $csscontent .=
"<?php // BEGIN PHP\n";
1580 $csscontent .=
'$websitekey=basename(__DIR__);'.
"\n";
1581 $csscontent .=
"if (! defined('USEDOLIBARRSERVER') && ! defined('USEDOLIBARREDITOR')) { require_once __DIR__.'/master.inc.php'; } // Load env if not already loaded\n";
1582 $csscontent .=
"require_once DOL_DOCUMENT_ROOT.'/core/lib/website.lib.php';\n";
1583 $csscontent .=
"require_once DOL_DOCUMENT_ROOT.'/core/website.inc.php';\n";
1584 $csscontent .=
"ob_start();\n";
1585 $csscontent .=
"if (! headers_sent()) { /* because file is included inline when in edit mode and we don't want warning */ \n";
1586 $csscontent .=
"header('Cache-Control: max-age=3600, public, must-revalidate');\n";
1587 $csscontent .=
"header('Content-type: text/css');\n";
1588 $csscontent .=
"}\n";
1589 $csscontent .=
"// END PHP ?>\n";
1591 $csscontent .= $dataposted.
"\n";
1593 $csscontent .=
'<?php // BEGIN PHP'.
"\n";
1594 $csscontent .=
'$tmp = ob_get_contents(); ob_end_clean(); dolWebsiteOutput($tmp, "css");'.
"\n";
1595 $csscontent .=
"// END PHP ?>\n";
1597 dol_syslog(
"Save css content into ".$filecss);
1609 $dataposted = trim(
GETPOST(
'WEBSITE_JS_INLINE',
'none'));
1610 $dataposted = str_replace(
'<?=',
'<?php', $dataposted);
1613 $phpfullcodestringold =
'';
1617 $errorphpcheck =
checkPHPCode($phpfullcodestringold, $phpfullcodestring);
1619 if (!$errorphpcheck) {
1622 $jscontent .=
"<?php // BEGIN PHP\n";
1623 $jscontent .=
'$websitekey=basename(__DIR__);'.
"\n";
1624 $jscontent .=
"if (! defined('USEDOLIBARRSERVER') && ! defined('USEDOLIBARREDITOR')) { require_once __DIR__.'/master.inc.php'; } // Load env if not already loaded\n";
1625 $jscontent .=
"require_once DOL_DOCUMENT_ROOT.'/core/lib/website.lib.php';\n";
1626 $jscontent .=
"require_once DOL_DOCUMENT_ROOT.'/core/website.inc.php';\n";
1627 $jscontent .=
"ob_start();\n";
1628 $jscontent .=
"header('Cache-Control: max-age=3600, public, must-revalidate');\n";
1629 $jscontent .=
"header('Content-type: application/javascript');\n";
1630 $jscontent .=
"// END PHP ?>\n";
1632 $jscontent .= $dataposted.
"\n";
1634 $jscontent .=
'<?php // BEGIN PHP'.
"\n";
1635 $jscontent .=
'$tmp = ob_get_contents(); ob_end_clean(); dolWebsiteOutput($tmp, "js");'.
"\n";
1636 $jscontent .=
"// END PHP ?>\n";
1647 $dataposted = trim(
GETPOST(
'WEBSITE_ROBOT',
'restricthtml'));
1648 $dataposted = str_replace(
'<?=',
'<?php', $dataposted);
1651 $phpfullcodestringold =
'';
1655 $errorphpcheck =
checkPHPCode($phpfullcodestringold, $phpfullcodestring);
1657 if (!$errorphpcheck) {
1670 $robotcontent .= $dataposted.
"\n";
1685 $dataposted = trim(
GETPOST(
'WEBSITE_HTACCESS',
'restricthtml'));
1686 $dataposted = str_replace(
'<?=',
'<?php', $dataposted);
1689 $phpfullcodestringold =
'';
1693 $errorphpcheck =
checkPHPCode($phpfullcodestringold, $phpfullcodestring);
1695 if (!$errorphpcheck) {
1696 $htaccesscontent =
'';
1697 $htaccesscontent .= $dataposted.
"\n";
1709 $dataposted = trim(
GETPOST(
'WEBSITE_MANIFEST_JSON',
'none'));
1710 $dataposted = str_replace(
'<?=',
'<?php', $dataposted);
1713 $phpfullcodestringold =
'';
1717 $errorphpcheck =
checkPHPCode($phpfullcodestringold, $phpfullcodestring);
1719 if (!$errorphpcheck) {
1720 $manifestjsoncontent =
'';
1722 $manifestjsoncontent .=
"<?php // BEGIN PHP\n";
1723 $manifestjsoncontent .=
'$websitekey=basename(__DIR__);'.
"\n";
1724 $manifestjsoncontent .=
"if (! defined('USEDOLIBARRSERVER') && ! defined('USEDOLIBARREDITOR')) { require_once __DIR__.'/master.inc.php'; } // Load env if not already loaded\n";
1725 $manifestjsoncontent .=
"require_once DOL_DOCUMENT_ROOT.'/core/lib/website.lib.php';\n";
1726 $manifestjsoncontent .=
"require_once DOL_DOCUMENT_ROOT.'/core/website.inc.php';\n";
1727 $manifestjsoncontent .=
"ob_start();\n";
1728 $manifestjsoncontent .=
"header('Cache-Control: max-age=3600, public, must-revalidate');\n";
1729 $manifestjsoncontent .=
"header('Content-type: application/manifest+json');\n";
1730 $manifestjsoncontent .=
"// END PHP ?>\n";
1732 $manifestjsoncontent .= $dataposted.
"\n";
1734 $manifestjsoncontent .=
'<?php // BEGIN PHP'.
"\n";
1735 $manifestjsoncontent .=
'$tmp = ob_get_contents(); ob_end_clean(); dolWebsiteOutput($tmp, "manifest");'.
"\n";
1736 $manifestjsoncontent .=
"// END PHP ?>\n";
1741 setEventMessages(
'Failed to write file '.$filemanifestjson,
null,
'errors');
1747 $dataposted = trim(
GETPOST(
'WEBSITE_README',
'restricthtml'));
1748 $dataposted = str_replace(
'<?=',
'<?php', $dataposted);
1751 $phpfullcodestringold =
'';
1755 $errorphpcheck =
checkPHPCode($phpfullcodestringold, $phpfullcodestring);
1757 if (!$errorphpcheck) {
1758 $readmecontent =
'';
1770 $readmecontent .= $dataposted.
"\n";
1785 $dataposted = trim(
GETPOST(
'WEBSITE_LICENSE',
'restricthtml'));
1786 $dataposted = str_replace(
'<?=',
'<?php', $dataposted);
1789 $phpfullcodestringold =
'';
1793 $errorphpcheck =
checkPHPCode($phpfullcodestringold, $phpfullcodestring);
1795 if (!$errorphpcheck) {
1796 $licensecontent =
'';
1808 $licensecontent .= $dataposted.
"\n";
1832 if (!GETPOSTISSET(
'updateandstay')) {
1833 $action =
'preview';
1835 $backtopage = preg_replace(
'/searchstring=[^&]*/',
'', $backtopage);
1836 header(
"Location: ".$backtopage);
1840 $action =
'editcss';
1847if ($action ==
'setashome' && $usercanedit) {
1849 $object->fetch(0, $websitekey);
1852 $object->fk_default_home = $pageid;
1853 $res = $object->update($user);
1862 $filetpl = $pathofwebsite.
'/page'.$pageid.
'.tpl.php';
1865 $result =
dolSaveIndexPage($pathofwebsite, $fileindex, $filetpl, $filewrapper, $object);
1873 $action =
'preview';
1880if ($action ==
'updatemeta' && $usercanedit) {
1883 $result = $object->fetch(0, $websitekey);
1886 $objectpage->fk_website = $object->id;
1889 if (!preg_match(
'/^[a-z0-9\-\_]+$/i',
GETPOST(
'WEBSITE_PAGENAME',
'alpha'))) {
1891 $langs->load(
"errors");
1892 setEventMessages($langs->transnoentities(
"ErrorFieldCanNotContainSpecialCharacters", $langs->transnoentities(
'WEBSITE_PAGENAME')),
null,
'errors');
1893 $action =
'editmeta';
1896 $res = $objectpage->fetch($pageid, $object->id);
1899 setEventMessages(
'Page not found '.$objectpage->error, $objectpage->errors,
'errors');
1903 if (!$error &&
GETPOST(
'WEBSITE_PAGENAME',
'alpha')) {
1905 $result = $websitepagetemp->fetch(-1 * $objectpage->id, $object->id,
GETPOST(
'WEBSITE_PAGENAME',
'alpha'));
1908 $langs->load(
"errors");
1909 setEventMessages($websitepagetemp->error, $websitepagetemp->errors,
'errors');
1910 $action =
'editmeta';
1914 $langs->load(
"errors");
1915 setEventMessages($langs->trans(
"ErrorAPageWithThisNameOrAliasAlreadyExists", $websitepagetemp->pageurl),
null,
'errors');
1916 $action =
'editmeta';
1920 $newaliasnames =
'';
1921 if (!$error &&
GETPOST(
'WEBSITE_ALIASALT',
'alpha')) {
1922 $arrayofaliastotest = explode(
',', str_replace(array(
'<',
'>'),
'',
GETPOST(
'WEBSITE_ALIASALT',
'alpha')));
1925 foreach ($arrayofaliastotest as $aliastotest) {
1926 $aliastotest = trim(preg_replace(
'/\.php$/i',
'', $aliastotest));
1929 if (preg_match(
'/^page\d+/i', $aliastotest)) {
1931 $langs->load(
"errors");
1933 $action =
'editmeta';
1936 $result = $websitepagetemp->fetch(-1 * $objectpage->id, $object->id, $aliastotest);
1939 $langs->load(
"errors");
1940 setEventMessages($websitepagetemp->error, $websitepagetemp->errors,
'errors');
1941 $action =
'editmeta';
1946 $langs->load(
"errors");
1947 setEventMessages($langs->trans(
"ErrorAPageWithThisNameOrAliasAlreadyExists", $websitepagetemp->pageurl),
null,
'errors');
1948 $action =
'editmeta';
1951 $newaliasnames .= ($newaliasnames ?
', ' :
'').$aliastotest;
1957 $objectpage->old_object = clone $objectpage;
1959 $objectpage->title = str_replace(array(
'<',
'>'),
'',
GETPOST(
'WEBSITE_TITLE',
'alphanohtml'));
1960 $objectpage->type_container =
GETPOST(
'WEBSITE_TYPE_CONTAINER',
'aZ09');
1961 $objectpage->pageurl =
GETPOST(
'WEBSITE_PAGENAME',
'alpha');
1962 $objectpage->aliasalt = $newaliasnames;
1963 $objectpage->lang =
GETPOST(
'WEBSITE_LANG',
'aZ09');
1964 $objectpage->otherlang =
GETPOST(
'WEBSITE_OTHERLANG',
'aZ09comma');
1965 $objectpage->description = str_replace(array(
'<',
'>'),
'',
GETPOST(
'WEBSITE_DESCRIPTION',
'alphanohtml'));
1966 $objectpage->image =
GETPOST(
'WEBSITE_IMAGE',
'alpha');
1967 $objectpage->keywords = str_replace(array(
'<',
'>'),
'',
GETPOST(
'WEBSITE_KEYWORDS',
'alphanohtml'));
1968 $objectpage->allowed_in_frames =
GETPOST(
'WEBSITE_ALLOWED_IN_FRAMES',
'aZ09');
1969 $objectpage->htmlheader = trim(
GETPOST(
'htmlheader',
'none'));
1970 $objectpage->fk_page = (
GETPOST(
'pageidfortranslation',
'int') > 0 ?
GETPOST(
'pageidfortranslation',
'int') : 0);
1971 $objectpage->author_alias = trim(
GETPOST(
'WEBSITE_AUTHORALIAS',
'alphanohtml'));
1972 $objectpage->object_type =
GETPOST(
'WEBSITE_OBJECTCLASS',
'alpha');
1973 $objectpage->fk_object =
GETPOST(
'WEBSITE_OBJECTID',
'aZ09');
1975 $newdatecreation =
dol_mktime(
GETPOST(
'datecreationhour',
'int'),
GETPOST(
'datecreationmin',
'int'),
GETPOST(
'datecreationsec',
'int'),
GETPOST(
'datecreationmonth',
'int'),
GETPOST(
'datecreationday',
'int'),
GETPOST(
'datecreationyear',
'int'));
1976 if ($newdatecreation) {
1977 $objectpage->date_creation = $newdatecreation;
1980 $res = $objectpage->update($user);
1982 $langs->load(
"errors");
1983 if ($db->lasterrno ==
'DB_ERROR_RECORD_ALREADY_EXISTS') {
1985 $langs->load(
"errors");
1986 setEventMessages($langs->trans(
"ErrorAPageWithThisNameOrAliasAlreadyExists"),
null,
'errors');
1987 $action =
'editmeta';
1990 $langs->load(
"errors");
1992 $action =
'editmeta';
1999 $categoriesarray =
GETPOST(
'categories',
'array');
2000 $result = $objectpage->setCategories($categoriesarray);
2014 $filemaster = $pathofwebsite.
'/master.inc.php';
2015 $fileoldalias = $pathofwebsite.
'/'.$objectpage->old_object->pageurl.
'.php';
2016 $filealias = $pathofwebsite.
'/'.$objectpage->pageurl.
'.php';
2027 if (!empty($fileoldalias)) {
2028 dol_syslog(
"We delete old alias page name=".$fileoldalias.
" to build a new alias page=".$filealias);
2032 if (empty($objectpage->lang) || !in_array($objectpage->lang, explode(
',', $object->otherlang))) {
2033 $dirname = dirname($fileoldalias);
2034 $filename = basename($fileoldalias);
2035 $sublangs = explode(
',', $object->otherlang);
2036 foreach ($sublangs as $sublang) {
2040 if (empty(trim($sublang)))
continue;
2041 $fileoldaliassub = $dirname.
'/'.$sublang.
'/'.$filename;
2047 if (!empty($objectpage->old_object->aliasalt)) {
2048 $tmpaltaliases = explode(
',', $objectpage->old_object->aliasalt);
2049 if (is_array($tmpaltaliases)) {
2050 foreach ($tmpaltaliases as $tmpaliasalt) {
2051 dol_syslog(
"We delete old alt alias pages name=".trim($tmpaliasalt));
2055 if (empty($objectpage->lang) || !in_array($objectpage->lang, explode(
',', $object->otherlang))) {
2056 $dirname = dirname($pathofwebsite.
'/'.trim($tmpaliasalt).
'.php');
2057 $filename = basename($pathofwebsite.
'/'.trim($tmpaliasalt).
'.php');
2058 $sublangs = explode(
',', $object->otherlang);
2059 foreach ($sublangs as $sublang) {
2063 if (empty(trim($sublang)))
continue;
2064 $fileoldaliassub = $dirname.
'/'.$sublang.
'/'.$filename;
2078 if (!empty($objectpage->aliasalt)) {
2079 $tmpaltaliases = explode(
',', $objectpage->aliasalt);
2080 if (is_array($tmpaltaliases)) {
2081 foreach ($tmpaltaliases as $tmpaliasalt) {
2082 if (trim($tmpaliasalt)) {
2083 $filealias = $pathofwebsite.
'/'.trim($tmpaliasalt).
'.php';
2086 setEventMessages(
'Failed to write file '.basename($filealias),
null,
'errors');
2099 if (!GETPOSTISSET(
'updateandstay')) {
2102 $action =
'preview';
2104 $action =
'editmeta';
2110 $action =
'preview';
2116if ($usercanedit && (($action ==
'updatesource' || $action ==
'updatecontent' || $action ==
'confirm_createfromclone' || $action ==
'confirm_createpagefromclone')
2117 || ($action ==
'preview' && (
GETPOST(
'refreshsite') ||
GETPOST(
'refreshpage') ||
GETPOST(
'preview'))))) {
2118 $object->fetch(0, $websitekey);
2121 if ($action ==
'confirm_createfromclone') {
2124 $objectnew =
new Website($db);
2125 $result = $objectnew->createFromClone($user,
GETPOST(
'id',
'int'),
GETPOST(
'siteref',
'aZ09'), (
GETPOST(
'newlang',
'aZ09') ?
GETPOST(
'newlang',
'aZ09') :
''));
2130 $action =
'preview';
2134 $object = $objectnew;
2136 $pageid = $object->fk_default_home;
2137 $websitekey =
GETPOST(
'siteref',
'aZ09');
2143 if ($action ==
'confirm_createpagefromclone') {
2144 $istranslation = (
GETPOST(
'is_a_translation',
'aZ09') ==
'on' ? 1 : 0);
2146 if ($istranslation) {
2147 if (
GETPOST(
'newlang',
'aZ09') == $objectpage->lang || !
GETPOST(
'newlang',
'aZ09')) {
2149 setEventMessages($langs->trans(
"LanguageMustNotBeSameThanClonedPage"),
null,
'errors');
2150 $action =
'preview';
2152 if (
GETPOST(
'newwebsite',
'int') != $object->id) {
2154 setEventMessages($langs->trans(
"WebsiteMustBeSameThanClonedPageIfTranslation"),
null,
'errors');
2155 $action =
'preview';
2162 $newwebsiteid =
GETPOST(
'newwebsite',
'int');
2163 $pathofwebsitenew = $pathofwebsite;
2165 $tmpwebsite =
new Website($db);
2166 if ($newwebsiteid > 0 && $newwebsiteid != $object->id) {
2167 $tmpwebsite->fetch($newwebsiteid);
2168 $pathofwebsitenew = $dolibarr_main_data_root.($conf->entity > 1 ?
'/'.$conf->entity :
'').
'/website/'.$tmpwebsite->ref;
2170 $tmpwebsite = $object;
2174 $resultpage = $objectpage->createFromClone($user, $pageid,
GETPOST(
'newpageurl',
'aZ09'), (
GETPOST(
'newlang',
'aZ09') ?
GETPOST(
'newlang',
'aZ09') :
''), $istranslation, $newwebsiteid,
GETPOST(
'newtitle',
'alphanohtml'));
2175 if ($resultpage < 0) {
2178 $action =
'createpagefromclone';
2182 $filetpl = $pathofwebsitenew.
'/page'.$resultpage->id.
'.tpl.php';
2183 $fileindex = $pathofwebsitenew.
'/index.php';
2184 $filewrapper = $pathofwebsitenew.
'/wrapper.php';
2193 if (empty($newwebsiteid) || $newwebsiteid == $object->id) {
2194 $pageid = $resultpage->id;
2206 $pathtomedias = DOL_DATA_ROOT.
'/medias';
2207 $pathtomediasinwebsite = $pathofwebsite.
'/medias';
2209 dol_syslog(
"Create symlink for ".$pathtomedias.
" into name ".$pathtomediasinwebsite);
2210 dol_mkdir(dirname($pathtomediasinwebsite));
2211 $result = symlink($pathtomedias, $pathtomediasinwebsite);
2220 $objectpage->fk_website = $object->id;
2223 $res = $objectpage->fetch($pageid);
2226 if ($object->fk_default_home > 0) {
2227 $res = $objectpage->fetch($object->fk_default_home);
2230 $res = $objectpage->fetch(0, $object->id);
2235 if (!$error && $res > 0) {
2236 if ($action ==
'updatesource' || $action ==
'updatecontent') {
2241 $objectpage->content =
GETPOST(
'PAGE_CONTENT',
'none');
2246 $error =
checkPHPCode($phpfullcodestringold, $phpfullcodestring);
2249 if ($action ==
'updatesource') {
2250 $action =
'editsource';
2252 if ($action ==
'updatecontent') {
2253 $action =
'editcontent';
2258 $objectpage->content = preg_replace(
'/<head>.*<\/head>/ims',
'', $objectpage->content);
2262 $res = $objectpage->update($user);
2266 if ($action ==
'updatesource') {
2267 $action =
'editsource';
2269 if ($action ==
'updatecontent') {
2270 $action =
'editcontent';
2277 $filemaster = $pathofwebsite.
'/master.inc.php';
2279 $filealias = $pathofwebsite.
'/'.$objectpage->pageurl.
'.php';
2287 setEventMessages(
'Failed to write the master file file '.$filemaster,
null,
'errors');
2311 setEventMessages(
'Failed to write the alias file '.basename($filealias),
null,
'errors');
2319 if (!GETPOSTISSET(
'updateandstay')) {
2321 header(
"Location: ".$backtopage);
2324 header(
"Location: ".$_SERVER[
"PHP_SELF"].
'?website='.$websitekey.
'&pageid='.$pageid);
2328 if ($action ==
'updatesource') {
2329 $action =
'editsource';
2331 if ($action ==
'updatecontent') {
2332 $action =
'editcontent';
2337 header(
"Location: ".$_SERVER[
"PHP_SELF"].
'?website='.$websitekey.
'&pageid='.$pageid);
2344 header(
"Location: ".$_SERVER[
"PHP_SELF"].
'?website='.$websitekey.
'&pageid='.$pageid);
2349 if (empty($websitekey) || $websitekey ==
'-1') {
2350 setEventMessages($langs->trans(
"NoWebSiteCreateOneFirst"),
null,
'warnings');
2353 setEventMessages($langs->trans(
"YouCanCreatePageOrImportTemplate"),
null,
'warnings');
2360if ($action ==
'exportsite' && !empty($user->rights->website->export)) {
2361 $fileofzip = $object->exportWebSite();
2364 $file_name = basename($fileofzip);
2366 header(
"Content-Type: application/zip");
2367 header(
"Content-Disposition: attachment; filename=".$file_name);
2368 header(
"Content-Length: ".filesize($fileofzip));
2370 readfile($fileofzip);
2374 $action =
'preview';
2379if ($action ==
'regeneratesite' && $usercanedit) {
2381 $pathtomedias = DOL_DATA_ROOT.
'/medias';
2382 $pathtomediasinwebsite = $pathofwebsite.
'/medias';
2384 dol_syslog(
"Create symlink for ".$pathtomedias.
" into name ".$pathtomediasinwebsite);
2385 dol_mkdir(dirname($pathtomediasinwebsite));
2386 $result = symlink($pathtomedias, $pathtomediasinwebsite);
2388 $langs->load(
"errors");
2389 setEventMessages($langs->trans(
"ErrorFailedToCreateSymLinkToMedias", $pathtomediasinwebsite, $pathtomedias),
null,
'errors');
2390 $action =
'preview';
2394 $result = $object->rebuildWebSiteFiles();
2396 setEventMessages($langs->trans(
"PagesRegenerated", $result),
null,
'mesgs');
2397 $action =
'preview';
2400 $action =
'preview';
2405if ($action ==
'importsiteconfirm' && $usercanedit) {
2406 $dolibarrdataroot = preg_replace(
'/([\\/]+)$/i',
'', DOL_DATA_ROOT);
2407 $allowimportsite =
true;
2408 if (
dol_is_file($dolibarrdataroot.
'/installmodules.lock')) {
2409 $allowimportsite =
false;
2412 if ($allowimportsite) {
2413 if (empty($_FILES) && !GETPOSTISSET(
'templateuserfile')) {
2414 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"File")),
null,
'errors');
2415 $action =
'importsite';
2417 if (!empty($_FILES) || GETPOSTISSET(
'templateuserfile')) {
2419 $pathtomedias = DOL_DATA_ROOT.
'/medias';
2420 $pathtomediasinwebsite = $pathofwebsite.
'/medias';
2422 dol_syslog(
"Create symlink for ".$pathtomedias.
" into name ".$pathtomediasinwebsite);
2423 dol_mkdir(dirname($pathtomediasinwebsite));
2424 $result = symlink($pathtomedias, $pathtomediasinwebsite);
2426 $langs->load(
"errors");
2427 setEventMessages($langs->trans(
"ErrorFailedToCreateSymLinkToMedias", $pathtomediasinwebsite, $pathtomedias),
null,
'errors');
2428 $action =
'importsite';
2433 if (GETPOSTISSET(
'templateuserfile')) {
2435 $fileofzip = DOL_DATA_ROOT.
'/doctemplates/websites/'.
GETPOST(
'templateuserfile',
'alpha');
2436 } elseif (!empty($_FILES) && is_array($_FILES[
'userfile'])) {
2438 if (is_array($_FILES[
'userfile'][
'tmp_name'])) {
2439 $userfiles = $_FILES[
'userfile'][
'tmp_name'];
2441 $userfiles = array($_FILES[
'userfile'][
'tmp_name']);
2445 foreach ($userfiles as $key => $userfile) {
2446 if (empty($_FILES[
'userfile'][
'tmp_name'][$key])) {
2448 if ($_FILES[
'userfile'][
'error'][$key] == 1 || $_FILES[
'userfile'][
'error'][$key] == 2) {
2450 $action =
'importsite';
2452 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"File")),
null,
'errors');
2453 $action =
'importsite';
2460 $upload_dir = DOL_DATA_ROOT.
'/doctemplates/websites/';
2474 $action =
'importsite';
2477 if (!$error && GETPOSTISSET(
'templateuserfile')) {
2478 $result = $object->importWebSite($fileofzip);
2482 $action =
'importsite';
2485 dolibarr_set_const($db,
'WEBSITE_SUBCONTAINERSINLINE', 1,
'chaine', 0,
'', $conf->entity);
2487 header(
"Location: ".$_SERVER[
"PHP_SELF"].
'?website='.$object->ref);
2496 $message = $langs->trans(
'InstallModuleFromWebHasBeenDisabledContactUs');
2499 $message = $langs->trans(
"InstallModuleFromWebHasBeenDisabledByFile", $dolibarrdataroot.
'/installmodules.lock');
2505$domainname =
'0.0.0.0:8080';
2506$tempdir = $conf->website->dir_output.
'/'.$websitekey.
'/';
2509if ($action ==
'generatesitemaps' && $usercanedit) {
2511 if ($website->virtualhost) {
2512 $domainname = $website->virtualhost;
2514 if (! preg_match(
'/^http/i', $domainname)) {
2515 $domainname =
'https://'.$domainname;
2518 $domtree =
new DOMDocument(
'1.0',
'UTF-8');
2520 $root = $domtree->createElementNS(
'http://www.sitemaps.org/schemas/sitemap/0.9',
'urlset');
2521 $root->setAttributeNS(
'http://www.w3.org/2000/xmlns/',
'xmlns:xhtml',
'http://www.w3.org/1999/xhtml');
2523 $domtree->formatOutput =
true;
2526 $xmlname =
'sitemap.xml';
2528 $sql =
"SELECT wp.rowid, wp.type_container , wp.pageurl, wp.lang, wp.fk_page, wp.tms as tms,";
2529 $sql .=
" w.virtualhost, w.fk_default_home";
2530 $sql .=
" FROM ".MAIN_DB_PREFIX.
"website_page as wp, ".MAIN_DB_PREFIX.
"website as w";
2531 $sql .=
" WHERE wp.type_container IN ('page', 'blogpost')";
2532 $sql .=
" AND wp.fk_website = w.rowid";
2533 $sql .=
" AND wp.status = ".WebsitePage::STATUS_VALIDATED;
2534 $sql .=
" AND wp.pageurl NOT IN ('404', '500', '501', '503')";
2535 $sql .=
" AND w.ref = '".dol_escape_json($websitekey).
"'";
2536 $sql .=
" ORDER BY wp.tms DESC, wp.rowid DESC";
2537 $resql = $db->query($sql);
2539 $num_rows = $db->num_rows($resql);
2540 if ($num_rows > 0) {
2542 while ($i < $num_rows) {
2543 $objp = $db->fetch_object($resql);
2544 $url = $domtree->createElement(
'url');
2546 $shortlangcode =
'';
2548 $shortlangcode = substr($objp->lang, 0, 2);
2550 if (empty($shortlangcode)) {
2551 $shortlangcode = substr($object->lang, 0, 2);
2555 if ($objp->type_container ==
'blogpost') {
2560 $pageurl = $objp->pageurl.
'.php';
2561 if ($objp->fk_default_home == $objp->rowid) {
2564 if ($shortlangcode != substr($object->lang, 0, 2)) {
2565 $pageurl = $shortlangcode.
'/'.$pageurl;
2572 $loc = $domtree->createElement(
'loc', $domainname.
'/'.$pageurl);
2573 $lastmod = $domtree->createElement(
'lastmod',
dol_print_date($db->jdate($objp->tms),
'dayrfc',
'gmt'));
2574 $priority = $domtree->createElement(
'priority',
'1');
2576 $url->appendChild($loc);
2577 $url->appendChild($lastmod);
2579 if (!empty($conf->global->WEBSITE_SITEMAPS_ADD_WEEKLY_FREQ)) {
2580 $changefreq = $domtree->createElement(
'changefreq',
'weekly');
2581 $url->appendChild($changefreq);
2584 if ($objp->fk_default_home == $objp->rowid) {
2585 $url->appendChild($priority);
2589 if ($object->isMultiLang()) {
2590 $alternatefound = 0;
2593 $translationof = $objp->fk_page;
2594 if ($translationof) {
2596 $tmppage->fetch($translationof);
2597 if ($tmppage->id > 0) {
2598 $tmpshortlangcode =
'';
2599 if ($tmppage->lang) {
2600 $tmpshortlangcode = preg_replace(
'/[_-].*$/',
'', $tmppage->lang);
2602 if (empty($tmpshortlangcode)) {
2603 $tmpshortlangcode = preg_replace(
'/[_-].*$/',
'', $object->lang);
2605 if ($tmpshortlangcode != $shortlangcode) {
2606 $xhtmllink = $domtree->createElement(
'xhtml:link',
'');
2607 $xhtmllink->setAttribute(
"rel",
"alternate");
2608 $xhtmllink->setAttribute(
"hreflang", $tmpshortlangcode);
2609 $xhtmllink->setAttribute(
"href", $domainname.($objp->fk_default_home == $tmppage->id ?
'/' : (($tmpshortlangcode != substr($object->lang, 0, 2)) ?
'/'.$tmpshortlangcode :
'').
'/'.$tmppage->pageurl.
'.php'));
2610 $url->appendChild($xhtmllink);
2618 $sql =
'SELECT rowid as id, lang, pageurl from '.MAIN_DB_PREFIX.
'website_page';
2619 $sql .=
" WHERE status = ".((int) WebsitePage::STATUS_VALIDATED).
' AND fk_page IN ('.$db->sanitize($objp->rowid.($translationof ?
", ".$translationof :
"")).
")";
2620 $resqlhastrans = $db->query($sql);
2621 if ($resqlhastrans) {
2622 $num_rows_hastrans = $db->num_rows($resqlhastrans);
2623 if ($num_rows_hastrans > 0) {
2624 while ($objhastrans = $db->fetch_object($resqlhastrans)) {
2625 $tmpshortlangcode =
'';
2626 if ($objhastrans->lang) {
2627 $tmpshortlangcode = preg_replace(
'/[_-].*$/',
'', $objhastrans->lang);
2629 if ($tmpshortlangcode != $shortlangcode) {
2630 $xhtmllink = $domtree->createElement(
'xhtml:link',
'');
2631 $xhtmllink->setAttribute(
"rel",
"alternate");
2632 $xhtmllink->setAttribute(
"hreflang", $tmpshortlangcode);
2633 $xhtmllink->setAttribute(
"href", $domainname.($objp->fk_default_home == $objhastrans->id ?
'/' : (($tmpshortlangcode != substr($object->lang, 0, 2) ?
'/'.$tmpshortlangcode :
'')).
'/'.$objhastrans->pageurl.
'.php'));
2634 $url->appendChild($xhtmllink);
2644 if ($alternatefound) {
2646 $xhtmllink = $domtree->createElement(
'xhtml:link',
'');
2647 $xhtmllink->setAttribute(
"rel",
"alternate");
2648 $xhtmllink->setAttribute(
"hreflang", $shortlangcode);
2649 $xhtmllink->setAttribute(
"href", $domainname.
'/'.$pageurl);
2650 $url->appendChild($xhtmllink);
2666 $root->appendChild($url);
2672 if ($addrsswrapper &&
getDolGlobalInt(
'WEBSITE_ADD_RSS_FEED_INTO_SITEMAP')) {
2673 $url = $domtree->createElement(
'url');
2675 $pageurl =
'wrapper.php?rss=1';
2678 $loc = $domtree->createElement(
'loc', $domainname.
'/'.$pageurl);
2679 $lastmod = $domtree->createElement(
'lastmod',
dol_print_date($db->jdate(
dol_now()),
'dayrfc',
'gmt'));
2681 $url->appendChild($loc);
2682 $url->appendChild($lastmod);
2684 if (!empty($conf->global->WEBSITE_SITEMAPS_ADD_WEEKLY_FREQ)) {
2685 $changefreq = $domtree->createElement(
'changefreq',
'weekly');
2686 $url->appendChild($changefreq);
2689 $root->appendChild($url);
2692 $domtree->appendChild($root);
2694 if ($domtree->save($tempdir.$xmlname)) {
2696 setEventMessages($langs->trans(
"SitemapGenerated", $xmlname),
null,
'mesgs');
2706 $robotcontent = @file_get_contents($filerobot);
2707 $result = preg_replace(
'/<?php \/\/ BEGIN PHP[^?]END PHP ?>\n/ims',
'', $robotcontent);
2709 $robotcontent = $result;
2711 $robotsitemap =
"Sitemap: ".$domainname.
"/".$xmlname;
2712 $result = strpos($robotcontent,
'Sitemap: ');
2714 $result = preg_replace(
'/Sitemap:.*/', $robotsitemap, $robotcontent);
2715 $robotcontent = $result ? $result : $robotcontent;
2717 $robotcontent .= $robotsitemap.
"\n";
2724 $action =
'preview';
2732$form =
new Form($db);
2739if ($action ==
'confirmgeneratesitemaps') {
2740 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
'?website='.urlencode($website->ref), $langs->trans(
'ConfirmSitemapsCreation'), $langs->trans(
'ConfirmGenerateSitemaps', $object->ref),
'generatesitemaps',
'',
"yes", 1);
2741 $action =
'preview';
2743$helpurl =
'EN:Module_Website|FR:Module_Website_FR|ES:Módulo_Website';
2746 '/includes/ace/src/ace.js',
2747 '/includes/ace/src/ext-statusbar.js',
2748 '/includes/ace/src/ext-language_tools.js',
2752$arrayofcss = array();
2757$arrayofjs[] =
'includes/jquery/plugins/blockUI/jquery.blockUI.js';
2758$arrayofjs[] =
'core/js/blockUI.js';
2759if (empty($conf->global->MAIN_ECM_DISABLE_JS)) {
2760 $arrayofjs[] =
"includes/jquery/plugins/jqueryFileTree/jqueryFileTree.js";
2763$moreheadjs .=
'<script type="text/javascript">'.
"\n";
2764$moreheadjs .=
'var indicatorBlockUI = \''.DOL_URL_ROOT.
"/theme/".$conf->theme.
"/img/working.gif".
'\';
'."\n";
2765$moreheadjs .= '</script>
'."\n";
2767llxHeader($moreheadcss.$moreheadjs, $langs->trans("Website").(empty($website->ref) ? '' : ' -
'.$website->ref), $helpurl, '', 0, 0, $arrayofjs, $arrayofcss, '', '', '<!-- Begin div
class=
"fiche" -->
'."\n".'<div
class=
"fichebutwithotherclass">
');
2770print '<!-- Open form
for all page -->
'."\n";
2771print '<form action=
"'.$_SERVER["PHP_SELF
"].($action == 'file_manager' ? '?uploadform=1': '').'" method=
"POST" enctype=
"multipart/form-data" class=
"websiteformtoolbar">
';
2772print '<input
type=
"hidden" name=
"token" value=
"'.newToken().'">
';
2773print '<input
type=
"hidden" name=
"backtopage" value=
"'.$backtopage.'">
';
2774print '<input
type=
"hidden" name=
"dol_openinpopup" value=
"'.$dol_openinpopup.'">
';
2776if ($action == 'createsite
') {
2777 print '<input
type=
"hidden" name=
"action" value=
"addsite">
';
2779if ($action == 'createcontainer
') {
2780 print '<input
type=
"hidden" name=
"action" value=
"addcontainer">
';
2782if ($action == 'editcss
') {
2783 print '<input
type=
"hidden" name=
"action" value=
"updatecss">
';
2785if ($action == 'editmenu
') {
2786 print '<input
type=
"hidden" name=
"action" value=
"updatemenu">
';
2788if ($action == 'setashome
') {
2789 print '<input
type=
"hidden" name=
"action" value=
"updateashome">
';
2791if ($action == 'editmeta
') {
2792 print '<input
type=
"hidden" name=
"action" value=
"updatemeta">
';
2794if ($action == 'editsource
') {
2795 print '<input
type=
"hidden" name=
"action" value=
"updatesource">
';
2797if ($action == 'editcontent
') {
2798 print '<input
type=
"hidden" name=
"action" value=
"updatecontent">
';
2800if ($action == 'edit
') {
2801 print '<input
type=
"hidden" name=
"action" value=
"update">
';
2803if ($action == 'importsite
') {
2804 print '<input
type=
"hidden" name=
"action" value=
"importsiteconfirm">
';
2806if ($action == 'file_manager
') {
2807 print '<input
type=
"hidden" name=
"action" value=
"file_manager">
';
2810 print '<input
type=
"hidden" name=
"mode" value=
"'.$mode.'">
';
2815// Add a margin under toolbar ?
2817if ($action != 'preview
' && $action != 'editcontent
' && $action != 'editsource
' && !GETPOST('createpagefromclone
', 'alphanohtml
')) {
2818 $style = ' margin-bottom: 5px;
';
2822if (!GETPOST('hide_websitemenu
')) {
2824 if (empty($user->rights->website->write)) {
2825 $disabled = ' disabled=
"disabled"';
2827 $disabledexport = '';
2828 if (empty($user->rights->website->export)) {
2829 $disabledexport = ' disabled=
"disabled"';
2834 $dataroot = DOL_DATA_ROOT.($conf->entity > 1 ? '/
'.$conf->entity : '').'/website/
'.$websitekey;
2835 if (!empty($object->virtualhost)) {
2836 $virtualurl = $object->virtualhost;
2841 if ($object->id > 0) {
2842 $array = $objectpage->fetchAll($object->id, 'ASC,ASC
', 'type_container,pageurl
');
2843 $object->lines = $array;
2845 if (!is_array($array) && $array < 0) {
2846 dol_print_error('', $objectpage->error, $objectpage->errors);
2848 $atleastonepage = (is_array($array) && count($array) > 0);
2850 $websitepage = new WebsitePage($db);
2852 $websitepage->fetch($pageid);
2856 //var_dump($objectpage);exit;
2857 print '<div
class=
"centpercent websitebar'.(GETPOST('dol_openinpopup', 'aZ09') ? ' hiddenforpopup' : '').'">
';
2860 // Toolbar for websites
2863 print '<!-- Toolbar
for website -->
';
2864 if ($action != 'file_manager
') {
2865 print '<div
class=
"websiteselection hideonsmartphoneimp minwidth75 tdoverflowmax100 inline-block">
';
2866 print $langs->trans("Website").':
';
2869 // Button Add new website
2870 $urltocreatenewwebsite = $_SERVER["PHP_SELF"].'?action=createsite
';
2871 print '<span
class=
"websiteselection paddingrightonly">
';
2872 print '<a href=
"'.$urltocreatenewwebsite.'" class=
""'.$disabled.' title=
"'.dol_escape_htmltag($langs->trans("AddWebsite
")).'"><span
class=
"fa fa-plus-circle valignmiddle btnTitle-icon"><span></a>
';
2876 print '<span
class=
"websiteselection nopaddingrightimp">
';
2879 $out .= '<select
name=
"website" class=
"minwidth100 width200 maxwidth150onsmartphone" id=
"website">
';
2880 if (empty($object->records)) {
2881 $out .= '<option value=
"-1"> </option>
';
2884 // Loop on each sites
2886 foreach ($object->records as $key => $valwebsite) {
2887 if (empty($websitekey)) {
2888 if ($action != 'createsite
') {
2889 $websitekey = $valwebsite->ref;
2893 $out .= '<option value=
"'.$valwebsite->ref.'"';
2894 if ($websitekey == $valwebsite->ref) {
2895 $out .= ' selected
'; // To preselect a value
2897 //$outoption = $valwebsite->getLibStatut(3).' '.$valwebsite->ref.' ';
2898 $outoption = (($valwebsite->status == $valwebsite::STATUS_DRAFT) ? '<span
class=
"opacitymedium">
' : '').$valwebsite->ref.(($valwebsite->status == $valwebsite::STATUS_DRAFT) ? '</span>
' : '');
2899 $out .= ' data-html=
"'.dol_escape_htmltag($outoption).'"';
2901 $out .= $valwebsite->ref;
2902 $out .= '</option>
';
2905 $out .= '</select>
';
2906 $out .= ajax_combobox('website
');
2908 if (!empty($conf->use_javascript_ajax)) {
2909 $out .= '<script
type=
"text/javascript">
';
2910 $out .= 'jQuery(document).ready(
function () {
';
2911 $out .= ' jQuery(
"#website").change(
function () {
';
2912 $out .= ' console.log(
"We select "+jQuery(
"#website option:selected").val());
';
2913 $out .= ' if (jQuery(
"#website option:selected").val() == \
'-2\') {';
2914 $out .=
' window.location.href = "'.dol_escape_js($urltocreatenewwebsite).
'";';
2915 $out .=
' } else {';
2916 $out .=
' window.location.href = "'.$_SERVER[
"PHP_SELF"].
'?website="+jQuery("#website option:selected").val();';
2920 $out .=
'</script>';
2927 if (!empty($conf->use_javascript_ajax)) {
2928 print
'<span class="websiteselection">';
2933 if ($website->status == $website::STATUS_DRAFT) {
2934 $text_off =
'Offline';
2935 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=setwebsiteonline&token='.newToken().
'&website='.urlencode($website->ref).
'&websitepage='.((int) $websitepage->id).
'">'.
img_picto($langs->trans($text_off),
'switch_off').
'</a>';
2937 $text_off =
'Online';
2938 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=setwebsiteoffline&token='.newToken().
'&website='.urlencode($website->ref).
'&websitepage='.((int) $websitepage->id).
'">'.
img_picto($langs->trans($text_off),
'switch_on').
'</a>';
2944 if (empty($conf->use_javascript_ajax)) {
2945 print
'<span class="websiteselection">';
2946 print
'<input type="image" class="valignmiddle" src="'.img_picto(
'',
'refresh',
'', 0, 1).
'" name="refreshsite" value="'.$langs->trans(
"Load").
'">';
2951 print
'<span class="websiteselection">';
2953 if ($websitekey && $websitekey !=
'-1' && ($action ==
'preview' || $action ==
'createfromclone' || $action ==
'createpagefromclone' || $action ==
'deletesite')) {
2955 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?website='.urlencode($object->ref).
'&pageid='.((int) $pageid).
'&action=editcss&token='.newToken().
'" class="button bordertransp" title="'.
dol_escape_htmltag($langs->trans(
"EditCss")).
'"'.$disabled.
'><span class="fa fa-cog paddingrightonly"></span><span class="hideonsmartphone">'.
dol_escape_htmltag($langs->trans(
"EditCss")).
'</span></a>';
2958 $importlabel = $langs->trans(
"ImportSite");
2959 $exportlabel = $langs->trans(
"ExportSite");
2960 if (!empty($conf->dol_optimize_smallscreen)) {
2961 $importlabel = $langs->trans(
"Import");
2962 $exportlabel = $langs->trans(
"Export");
2965 if ($atleastonepage) {
2966 print
'<input type="submit" class="button bordertransp" disabled="disabled" value="'.dol_escape_htmltag($importlabel).
'" name="importsite">';
2968 print
'<input type="submit" class="button bordertransp"'.$disabled.
' value="'.
dol_escape_htmltag($importlabel).
'" name="importsite">';
2972 print
'<input type="submit" class="button bordertransp"'.$disabledexport.
' value="'.
dol_escape_htmltag($exportlabel).
'" name="exportsite">';
2975 print
'<input type="submit" class="button bordertransp"'.$disabled.
' value="'.
dol_escape_htmltag($langs->trans(
"CloneSite")).
'" name="createfromclone">';
2978 if (!$permissiontodelete) {
2979 $disabled =
' disabled="disabled"';
2980 $title = $langs->trans(
"NotEnoughPermissions");
2983 if ($website->status == $website::STATUS_VALIDATED) {
2984 $disabled =
' disabled="disabled"';
2985 $title = $langs->trans(
"WebsiteMustBeDisabled", $langs->transnoentitiesnoconv($website->LibStatut(0, 0)));
2989 $title = $langs->trans(
"Delete");
2990 $url = $_SERVER[
"PHP_SELF"].
'?action=deletesite&token='.newToken().
'&website='.urlencode($website->ref);
2993 print
'<a href="'.$url.
'" class="button buttonDelete bordertransp'.($disabled ?
' disabled' :
'').
'"'.$disabled.
' title="'.
dol_escape_htmltag($title).
'">'.
img_picto(
'',
'delete',
'class=""').
'<span class="hideonsmartphone paddingleft">'.$langs->trans(
"Delete").
'</span></a>';
2996 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=regeneratesite&token='.newToken().
'&website='.urlencode($website->ref).
'" class="button bordertransp"'.$disabled.
' title="'.
dol_escape_htmltag($langs->trans(
"RegenerateWebsiteContent")).
'"><span class="far fa-hdd"></span></a>';
2999 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=confirmgeneratesitemaps&token='.newToken().
'&website='.urlencode($website->ref).
'" class="button bordertransp"'.$disabled.
' title="'.
dol_escape_htmltag($langs->trans(
"GenerateSitemaps")).
'"><span class="fa fa-sitemap"></span></a>';
3002 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=replacesite&website='.urlencode($website->ref).
'" class="button bordertransp"'.$disabled.
' title="'.
dol_escape_htmltag($langs->trans(
"ReplaceWebsiteContent")).
'"><span class="fa fa-search"></span></a>';
3007 if ($websitekey && $websitekey !=
'-1' && ($action ==
'preview' || $action ==
'createfromclone' || $action ==
'createpagefromclone' || $action ==
'deletesite')) {
3008 print
'<span class="websiteselection">';
3010 print
dolButtonToOpenUrlInDialogPopup(
'file_manager', $langs->transnoentitiesnoconv(
"MediaFiles"),
'<span class="fa fa-image"></span>',
'/website/index.php?action=file_manager&website='.urlencode($website->ref).
'§ion_dir='.urlencode(
'image/'.$website->ref.
'/'), $disabled);
3012 if (isModEnabled(
'categorie')) {
3014 print
dolButtonToOpenUrlInDialogPopup(
'categories', $langs->transnoentitiesnoconv(
"Categories"),
'<span class="fa fa-tags"></span>',
'/categories/index.php?leftmenu=website&nosearch=1&type=website_page&website='.urlencode($website->ref), $disabled);
3020 print
'<input type="hidden" name="website" id="website" value="'.$websitekey.
'">';
3024 print
'<span class="websitetools">';
3026 if ($action ==
'preview' || $action ==
'createfromclone' || $action ==
'createpagefromclone' || $action ==
'deletesite') {
3027 $urlext = $virtualurl;
3028 $urlint = $urlwithroot.
'/public/website/index.php?website='.$websitekey;
3030 print
'<span class="websiteinputurl valignmiddle" id="websiteinputurl">';
3031 $linktotestonwebserver =
'<a href="'.($virtualurl ? $virtualurl :
'#').
'" class="valignmiddle">';
3032 $linktotestonwebserver .=
'<span class="hideonsmartphone paddingrightonly">'.$langs->trans(
"TestDeployOnWeb", $virtualurl).
'</span>'.
img_picto(
'',
'globe');
3033 $linktotestonwebserver .=
'</a>';
3035 if (empty($object->fk_default_home)) {
3036 $htmltext .=
'<br><span class="error">'.$langs->trans(
"YouMustDefineTheHomePage").
'</span><br><br>';
3037 } elseif (empty($virtualurl)) {
3040 $htmltext .=
'<br><center>'.$langs->trans(
"GoTo").
' <a href="'.$virtualurl.
'" target="_website">'.$virtualurl.
'</a></center><br>';
3042 if (!empty($conf->global->WEBSITE_REPLACE_INFO_ABOUT_USAGE_WITH_WEBSERVER)) {
3043 $htmltext .=
'<!-- Message defined translate key set into WEBSITE_REPLACE_INFO_ABOUT_USAGE_WITH_WEBSERVER -->';
3044 $htmltext .=
'<br>'.$langs->trans($conf->global->WEBSITE_REPLACE_INFO_ABOUT_USAGE_WITH_WEBSERVER);
3046 $htmltext .= $langs->trans(
"SetHereVirtualHost", $dataroot);
3047 $htmltext .=
'<br>';
3048 $htmltext .=
'<br>'.$langs->trans(
"CheckVirtualHostPerms", $langs->transnoentitiesnoconv(
"ReadPerm"), DOL_DOCUMENT_ROOT);
3049 $htmltext .=
'<br>'.$langs->trans(
"CheckVirtualHostPerms", $langs->transnoentitiesnoconv(
"WritePerm"),
'{s1}');
3050 $htmltext = str_replace(
'{s1}', DOL_DATA_ROOT.
'/website<br>'.DOL_DATA_ROOT.
'/medias', $htmltext);
3052 $examplewithapache =
'#php_admin_value open_basedir /tmp/:'.DOL_DOCUMENT_ROOT.
':'.DOL_DATA_ROOT.
':/dev/urandom'.
"\n";
3053 $examplewithapache .=
'<Directory "'.DOL_DOCUMENT_ROOT.
'">'.
"\n";
3054 $examplewithapache .=
'AllowOverride FileInfo Options
3055 Options -Indexes -MultiViews -FollowSymLinks -ExecCGI
3058 <Directory "'.DOL_DATA_ROOT.
'/website">
3059 AllowOverride FileInfo Options
3060 Options -Indexes -MultiViews +FollowSymLinks -ExecCGI
3063 <Directory "'.DOL_DATA_ROOT.
'/medias">
3064 AllowOverride FileInfo Options
3065 Options -Indexes -MultiViews -FollowSymLinks -ExecCGI
3069 $htmltext .=
'<br>'.$langs->trans(
"ExampleToUseInApacheVirtualHostConfig").
':<br>';
3070 $htmltext .=
'<div class="centpercent exampleapachesetup">'.dol_nl2br(
dol_escape_htmltag($examplewithapache, 1, 1)).
'</div>';
3072 $htmltext .=
'<br>';
3073 $htmltext .= $langs->trans(
"YouCanAlsoTestWithPHPS", $dataroot);
3074 $htmltext .=
'<br>';
3075 $htmltext .=
'<br>';
3076 $htmltext .= $langs->trans(
"YouCanAlsoDeployToAnotherWHP");
3078 print $form->textwithpicto($linktotestonwebserver, $htmltext, 1,
'none',
'valignmiddle', 0, 3,
'helpvirtualhost');
3082 if (in_array($action, array(
'editcss',
'editmenu',
'file_manager',
'replacesiteconfirm')) || in_array($mode, array(
'replacesite'))) {
3083 if ($action ==
'editcss') {
3084 print
'<input type="submit" id="savefileandstay" class="button buttonforacesave hideonsmartphone small" value="'.dol_escape_htmltag($langs->trans(
"SaveAndStay")).
'" name="updateandstay">';
3086 if (preg_match(
'/^create/', $action) && $action !=
'file_manager' && $action !=
'replacesite' && $action !=
'replacesiteconfirm') {
3087 print
'<input type="submit" id="savefile" class="button buttonforacesave button-save small" value="'.dol_escape_htmltag($langs->trans(
"Save")).
'" name="update">';
3089 if (preg_match(
'/^edit/', $action) && $action !=
'file_manager' && $action !=
'replacesite' && $action !=
'replacesiteconfirm') {
3090 print
'<input type="submit" id="savefile" class="button buttonforacesave button-save small" value="'.dol_escape_htmltag($langs->trans(
"Save")).
'" name="update">';
3092 if ($action !=
'preview') {
3093 print
'<input type="submit" class="button button-cancel small" value="'.dol_escape_htmltag($langs->trans(
"Cancel")).
'" name="cancel">';
3103 if ($websitekey && $websitekey !=
'-1' && (!in_array($action, array(
'editcss',
'editmenu',
'importsite',
'file_manager',
'replacesite',
'replacesiteconfirm'))) && (!in_array($mode, array(
'replacesite'))) && !$file_manager) {
3106 print
'<!-- Toolbar for websitepage -->';
3107 print
'<div class="centpercent websitebar"'.($style ?
' style="'.$style.
'"' :
'').
'>';
3109 print
'<div class="websiteselection hideonsmartphoneimp minwidth75 tdoverflowmax100 inline-block">';
3110 print $langs->trans(
"PageContainer").
': ';
3114 print
'<span class="websiteselection paddingrightonly">';
3115 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=createcontainer&token='.newToken().
'&website='.urlencode($website->ref).
'" class=""'.$disabled.
' title="'.
dol_escape_htmltag($langs->trans(
"AddPage")).
'"><span class="fa fa-plus-circle valignmiddle btnTitle-icon"></span></a>';
3121 $s = $formwebsite->selectContainer($website,
'pageid', $pageid, 0, $action,
'minwidth100 maxwidth200onsmartphone');
3123 $out .=
'<span class="websiteselection nopaddingrightimp">';
3127 $urltocreatenewpage = $_SERVER[
"PHP_SELF"].
'?action=createcontainer&token='.newToken().
'&website='.urlencode($website->ref);
3129 if (!empty($conf->use_javascript_ajax)) {
3130 $out .=
'<script type="text/javascript">';
3131 $out .=
'jQuery(document).ready(function () {';
3132 $out .=
' jQuery("#pageid").change(function () {';
3133 $out .=
' console.log("We select "+jQuery("#pageid option:selected").val());';
3134 $out .=
' if (jQuery("#pageid option:selected").val() == \'-2\') {';
3135 $out .=
' window.location.href = "'.$urltocreatenewpage.
'";';
3136 $out .=
' } else {';
3137 $out .=
' window.location.href = "'.$_SERVER[
"PHP_SELF"].
'?website='.urlencode($website->ref).
'&pageid="+jQuery("#pageid option:selected").val();';
3141 $out .=
'</script>';
3146 if (!empty($conf->use_javascript_ajax)) {
3147 print
'<span class="websiteselection">';
3149 if ($object->status == $object::STATUS_DRAFT) {
3150 $text_off =
'SetWebsiteOnlineBefore';
3151 if ($websitepage->status == $websitepage::STATUS_DRAFT) {
3152 print
'<span class="valignmiddle disabled opacitymedium">'.img_picto($langs->trans($text_off),
'switch_off').
'</span>';
3154 print
'<span class="valignmiddle disabled opacitymedium">'.img_picto($langs->trans($text_off),
'switch_on').
'</span>';
3157 print
ajax_object_onoff($websitepage,
'status',
'status',
'Online',
'Offline', array(),
'valignmiddle inline-block'.(empty($websitepage->id) ?
' opacitymedium disabled' :
''),
'statuswebsitepage');
3163 print
'<span class="websiteselection">';
3165 print
'<input type="image" class="valignmiddle buttonwebsite" src="'.img_picto(
'',
'refresh',
'', 0, 1).
'" name="refreshpage" value="'.$langs->trans(
"Load").
'"'.(($action !=
'editsource') ?
'' :
' disabled="disabled"').
'>';
3168 $pagepreviousid = 0;
3171 $sql =
"SELECT MAX(rowid) as pagepreviousid FROM ".MAIN_DB_PREFIX.
"website_page WHERE rowid < ".((int) $pageid).
" AND fk_website = ".((int) $object->id);
3172 $resql = $db->query($sql);
3174 $obj = $db->fetch_object($resql);
3176 $pagepreviousid = $obj->pagepreviousid;
3181 $sql =
"SELECT MIN(rowid) as pagenextid FROM ".MAIN_DB_PREFIX.
"website_page WHERE rowid > ".((int) $pageid).
" AND fk_website = ".((int) $object->id);
3182 $resql = $db->query($sql);
3184 $obj = $db->fetch_object($resql);
3186 $pagenextid = $obj->pagenextid;
3193 if ($pagepreviousid) {
3194 print
'<a class="valignmiddle" href="'.$_SERVER[
'PHP_SELF'].
'?website='.urlencode($object->ref).
'&pageid='.((int) $pagepreviousid).
'&action='.urlencode($action).
'&token='.newToken().
'">'.
img_previous($langs->trans(
"PreviousContainer")).
'</a>';
3196 print
'<span class="valignmiddle opacitymedium">'.img_previous($langs->trans(
"PreviousContainer")).
'</span>';
3199 print
'<a class="valignmiddle" href="'.$_SERVER[
'PHP_SELF'].
'?website='.urlencode($object->ref).
'&pageid='.((int) $pagenextid).
'&action='.urlencode($action).
'&token='.newToken().
'">'.
img_next($langs->trans(
"NextContainer")).
'</a>';
3201 print
'<span class="valignmiddle opacitymedium">'.img_next($langs->trans(
"NextContainer")).
'</span>';
3206 if ($action ==
'preview' || $action ==
'createfromclone' || $action ==
'createpagefromclone' || $action ==
'deletesite') {
3208 if (empty($user->rights->website->write)) {
3209 $disabled =
' disabled="disabled"';
3213 if ($action ==
'deletesite') {
3215 $formquestion = array(
3216 array(
'type' =>
'checkbox',
'name' =>
'delete_also_js',
'label' => $langs->trans(
"DeleteAlsoJs"),
'value' => 0),
3217 array(
'type' =>
'checkbox',
'name' =>
'delete_also_medias',
'label' => $langs->trans(
"DeleteAlsoMedias"),
'value' => 0),
3222 if ($atleastonepage) {
3223 $langs->load(
"errors");
3224 $formquestion[] = array(
'type' =>
'onecolumn',
'value' =>
'<div class="warning">'.$langs->trans(
"WarningPagesWillBeDeleted").
'</div>');
3227 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.$object->id, $langs->trans(
'DeleteWebsite'),
'',
'confirm_deletesite', $formquestion, 0, 1, 210 + ($atleastonepage ? 70 : 0), 580);
3233 if ($action ==
'createfromclone') {
3235 $formquestion = array(
3236 array(
'type' =>
'text',
'name' =>
'siteref',
'label'=> $langs->trans(
"WebSite"),
'value'=>
'copy_of_'.$object->ref)
3239 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.$object->id, $langs->trans(
'CloneSite'),
'',
'confirm_createfromclone', $formquestion, 0, 1, 200);
3244 if ($pageid > 0 && $atleastonepage) {
3246 if ($action ==
'createpagefromclone') {
3248 $preselectedlanguage =
GETPOST(
'newlang',
'aZ09') ?
GETPOST(
'newlang',
'aZ09') :
'';
3249 $onlylang = array();
3250 if ($website->otherlang) {
3251 if (!empty($website->lang)) {
3252 $onlylang[$website->lang] = $website->lang.
' ('.$langs->trans(
"Default").
')';
3254 foreach (explode(
',', $website->otherlang) as $langkey) {
3255 if (empty(trim($langkey)))
continue;
3256 $onlylang[$langkey] = $langkey;
3258 $textifempty = $langs->trans(
"Default");
3260 $onlylang[
'none'] =
'none';
3261 $textifempty = $langs->trans(
"Default");
3263 $formquestion = array(
3264 array(
'type' =>
'hidden',
'name' =>
'sourcepageurl',
'value'=> $objectpage->pageurl),
3265 array(
'type' =>
'other',
'tdclass'=>
'fieldrequired',
'name' =>
'newwebsite',
'label' => $langs->trans(
"WebSite"),
'value' => $formwebsite->selectWebsite($object->id,
'newwebsite', 0)),
3266 array(
'type' =>
'text',
'tdclass'=>
'maxwidth200 fieldrequired',
'moreattr'=>
'autofocus="autofocus"',
'name' =>
'newtitle',
'label'=> $langs->trans(
"WEBSITE_TITLE"),
'value'=> $langs->trans(
"CopyOf").
' '.$objectpage->title),
3267 array(
'type' =>
'text',
'tdclass'=>
'maxwidth200',
'name' =>
'newpageurl',
'label'=> $langs->trans(
"WEBSITE_PAGENAME"),
'value'=>
'')
3269 if (count($onlylang) > 1) {
3270 $formquestion[] = array(
'type' =>
'checkbox',
'tdclass'=>
'maxwidth200',
'name' =>
'is_a_translation',
'label' => $langs->trans(
"PageIsANewTranslation"),
'value' => 0,
'morecss'=>
'margintoponly');
3273 $value= $formadmin->select_language($preselectedlanguage,
'newlang', 0,
null, $textifempty, 0, 0,
'minwidth200', 1, 0, 0, $onlylang, 1);
3274 $formquestion[] = array(
'type' =>
'other',
'name' =>
'newlang',
'label' => $form->textwithpicto($langs->trans(
"Language"), $langs->trans(
"DefineListOfAltLanguagesInWebsiteProperties")),
'value' => $value);
3276 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
'?website='.$object->ref.
'&pageid='.$pageid, $langs->trans(
'ClonePage'),
'',
'confirm_createpagefromclone', $formquestion, 0, 1, 300, 550);
3281 print
'<span class="websiteselection">';
3284 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?website='.$object->ref.
'&pageid='.$pageid.
'&action=editmeta&token='.newToken().
'" class="button bordertransp" title="'.
dol_escape_htmltag($langs->trans(
"EditPageMeta")).
'"'.$disabled.
'><span class="fa fa-cog paddingrightonly"></span><span class="hideonsmartphone">'.
dol_escape_htmltag($langs->trans(
"EditPageMeta")).
'</span></a>';
3287 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?website='.$object->ref.
'&pageid='.$pageid.
'&action=editsource&token='.newToken().
'" class="button bordertransp"'.$disabled.
'>'.
dol_escape_htmltag($langs->trans($conf->dol_optimize_smallscreen ?
"HTML" :
"EditHTMLSource")).
'</a>';
3291 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?website='.$object->ref.
'&pageid='.$pageid.
'&action=editcontent&token='.newToken().
'" class="button bordertransp"'.$disabled.
'>'.
dol_escape_htmltag($langs->trans($conf->dol_optimize_smallscreen ?
"CKEditor" :
"CKEditor")).
'</a>';
3298 print
'<!-- button EditInLine and ShowSubcontainers -->'.
"\n";
3299 print
'<div class="websiteselectionsection inline-block">';
3301 print
'<div class="inline-block marginrightonly">';
3302 print $langs->trans(
"ShowSubcontainers");
3303 if (empty($conf->global->WEBSITE_SUBCONTAINERSINLINE)) {
3304 print
'<a class="nobordertransp nohoverborder marginleftonlyshort valignmiddle"'.$disabled.
' href="'.$_SERVER[
"PHP_SELF"].
'?website='.$object->ref.
'&pageid='.$websitepage->id.
'&action=setshowsubcontainers&token='.newToken().
'">'.
img_picto($langs->trans(
"ShowSubContainersOnOff", $langs->transnoentitiesnoconv(
"Off")),
'switch_off',
'',
false, 0, 0,
'',
'nomarginleft').
'</a>';
3306 print
'<a class="nobordertransp nohoverborder marginleftonlyshort valignmiddle"'.$disabled.
' href="'.$_SERVER[
"PHP_SELF"].
'?website='.$object->ref.
'&pageid='.$websitepage->id.
'&action=unsetshowsubcontainers&token='.newToken().
'">'.
img_picto($langs->trans(
"ShowSubContainersOnOff", $langs->transnoentitiesnoconv(
"On")),
'switch_on',
'',
false, 0, 0,
'',
'nomarginleft').
'</a>';
3310 print
'<div class="inline-block marginrightonly">';
3312 print
'<span id="switchckeditorinline">'.
"\n";
3313 print
'<!-- Code to enabled edit inline ckeditor -->'.
"\n";
3314 print
'<script type="text/javascript">
3315 $(document).ready(function() {
3316 var isEditingEnabled = '.(getDolGlobalString(
"WEBSITE_EDITINLINE") ?
'true' :
'false').
';
3317 if (isEditingEnabled)
3319 switchEditorOnline(true);
3322 $( "#switchckeditorinline" ).click(function() {
3323 switchEditorOnline();
3326 function switchEditorOnline(forceenable)
3328 if (! isEditingEnabled || forceenable)
3330 console.log("Enable inline edit");
3331 jQuery(\'section[contenteditable="true"],div[contenteditable="true"]\').each(function(idx){
3332 var idtouse = $(this).attr(\'id\');
3333 console.log("Enable inline edit for "+idtouse);
3334 CKEDITOR.inline(idtouse, {
3335 // Allow some non-standard markup that we used in the introduction.
3336 extraAllowedContent: \'span(*);cite(*);q(*);dl(*);dt(*);dd(*);ul(*);li(*);header(*);button(*);h1(*);h2(*);\',
3337 //extraPlugins: \'sourcedialog\',
3338 removePlugins: \'flash,stylescombo,exportpdf,scayt,wsc,pagebreak,iframe,smiley\',
3339 // Show toolbar on startup (optional).
3340 // startupFocus: true
3344 isEditingEnabled = true;
3347 console.log("Disable inline edit");
3348 for(name in CKEDITOR.instances)
3350 CKEDITOR.instances[name].destroy(true);
3352 isEditingEnabled = false;
3357 print $langs->trans(
"EditInLine");
3361 $disableeditinline = 0;
3362 if ($disableeditinline) {
3364 print
'<a class="nobordertransp opacitymedium nohoverborder marginleftonlyshort"'.$disabled.
' href="#" disabled="disabled" title="'.
dol_escape_htmltag($langs->trans(
"OnlyEditionOfSourceForGrabbedContent")).
'">'.
img_picto($langs->trans(
"OnlyEditionOfSourceForGrabbedContent"),
'switch_off',
'',
false, 0, 0,
'',
'nomarginleft').
'</a>';
3367 if (empty($conf->global->WEBSITE_EDITINLINE)) {
3368 print
'<a class="nobordertransp nohoverborder marginleftonlyshort valignmiddle"'.$disabled.
' href="'.$_SERVER[
"PHP_SELF"].
'?website='.$object->ref.
'&pageid='.$websitepage->id.
'&action=seteditinline&token='.newToken().
'">'.
img_picto($langs->trans(
"EditInLineOnOff", $langs->transnoentitiesnoconv(
"Off")),
'switch_off',
'',
false, 0, 0,
'',
'nomarginleft').
'</a>';
3370 print
'<a class="nobordertransp nohoverborder marginleftonlyshort valignmiddle"'.$disabled.
' href="'.$_SERVER[
"PHP_SELF"].
'?website='.$object->ref.
'&pageid='.$websitepage->id.
'&action=unseteditinline&token='.newToken().
'">'.
img_picto($langs->trans(
"EditInLineOnOff", $langs->transnoentitiesnoconv(
"On")),
'switch_on',
'',
false, 0, 0,
'',
'nomarginleft').
'</a>';
3379 print
'<span class="websiteselection">';
3380 if ($object->fk_default_home > 0 && $pageid == $object->fk_default_home) {
3384 print
'<a href="#" class="button bordertransp disabled" disabled="disabled" title="'.dol_escape_htmltag($langs->trans(
"SetAsHomePage")).
'"><span class="fa fa-home valignmiddle btnTitle-icon"></span></a>';
3388 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=setashome&token='.newToken().
'&website='.urlencode($website->ref).
'&pageid='.((int) $pageid).
'" class="button bordertransp"'.$disabled.
' title="'.
dol_escape_htmltag($langs->trans(
"SetAsHomePage")).
'"><span class="fa fa-home valignmiddle btnTitle-icon"></span></a>';
3390 print
'<input type="submit" class="button bordertransp"'.$disabled.
' value="'.
dol_escape_htmltag($langs->trans(
"ClonePage")).
'" name="createpagefromclone">';
3393 if ($websitepage->status != $websitepage::STATUS_DRAFT) {
3394 $disabled =
' disabled="disabled"';
3395 $title = $langs->trans(
"WebpageMustBeDisabled", $langs->transnoentitiesnoconv($websitepage->LibStatut(0, 0)));
3400 $url = $_SERVER[
"PHP_SELF"].
'?action=delete&token='.newToken().
'&pageid='.((int) $websitepage->id).
'&website='.urlencode($website->ref);
3402 print
'<a href="'.$url.
'" class="button buttonDelete bordertransp'.($disabled ?
' disabled' :
'').
'"'.$disabled.
' title="'.
dol_escape_htmltag($title).
'">'.
img_picto(
'',
'delete',
'class=""').
'<span class="hideonsmartphone paddingleft">'.$langs->trans(
"Delete").
'</span></a>';
3409 print
'<span class="websitetools">';
3411 if (($pageid > 0 && $atleastonepage) && ($action ==
'preview' || $action ==
'createfromclone' || $action ==
'createpagefromclone' || $action ==
'deletesite')) {
3412 $realpage = $urlwithroot.
'/public/website/index.php?website='.$websitekey.
'&pageref='.$websitepage->pageurl;
3413 $pagealias = $websitepage->pageurl;
3415 $htmltext = $langs->trans(
"PreviewSiteServedByDolibarr", $langs->transnoentitiesnoconv(
"Page"), $langs->transnoentitiesnoconv(
"Page"), $realpage, $dataroot);
3416 $htmltext .=
'<br>'.$langs->trans(
"CheckVirtualHostPerms", $langs->transnoentitiesnoconv(
"ReadPerm"),
'{s1}');
3417 $htmltext = str_replace(
'{s1}', $dataroot.
'<br>'.DOL_DATA_ROOT.
'/medias<br>'.DOL_DOCUMENT_ROOT, $htmltext);
3421 print
'<div class="websiteinputurl inline-block paddingright">';
3422 print
'<a class="websitebuttonsitepreview inline-block" id="previewpage" href="'.$realpage.
'&nocache='.
dol_now().
'" class="button" target="tab'.$websitekey.
'" alt="'.
dol_escape_htmltag($htmltext).
'">';
3423 print $form->textwithpicto(
'', $htmltext, 1,
'preview');
3447 if (!in_array($mode, array(
'replacesite')) && !in_array($action, array(
'editcss',
'editmenu',
'file_manager',
'replacesiteconfirm',
'createsite',
'createcontainer',
'createfromclone',
'createpagefromclone',
'deletesite'))) {
3448 if ($action ==
'editsource' || $action ==
'editmeta') {
3449 print
'<input type="submit" id="savefileandstay" class="button buttonforacesave hideonsmartphone small" value="'.dol_escape_htmltag($langs->trans(
"SaveAndStay")).
'" name="updateandstay">';
3451 if (preg_match(
'/^create/', $action)) {
3452 print
'<input type="submit" id="savefile" class="button buttonforacesave button-save small" value="'.dol_escape_htmltag($langs->trans(
"Save")).
'" name="update">';
3454 if (preg_match(
'/^edit/', $action)) {
3455 print
'<input type="submit" id="savefile" class="button buttonforacesave button-save small" value="'.dol_escape_htmltag($langs->trans(
"Save")).
'" name="update">';
3457 if ($action !=
'preview') {
3458 print
'<input type="submit" class="button button-cancel small" value="'.dol_escape_htmltag($langs->trans(
"Cancel")).
'" name="cancel">';
3464 print
'<span class="websitehelp">';
3465 if ($action ==
'editsource' || $action ==
'editcontent' ||
GETPOST(
'editsource',
'alpha') ||
GETPOST(
'editcontent',
'alpha')) {
3466 $url =
'https://wiki.dolibarr.org/index.php/Module_Website';
3468 $htmltext = $langs->transnoentitiesnoconv(
"YouCanEditHtmlSource", $url);
3469 $htmltext .= $langs->transnoentitiesnoconv(
"YouCanEditHtmlSource2", $url);
3470 $htmltext .= $langs->transnoentitiesnoconv(
"YouCanEditHtmlSourceMore", $url);
3471 $htmltext .=
'<br>';
3472 if ($conf->browser->layout ==
'phone') {
3473 print $form->textwithpicto(
'', $htmltext, 1,
'help',
'inline-block', 1, 2,
'tooltipsubstitution');
3476 print $form->textwithpicto($langs->trans(
"SyntaxHelp").
' '.
img_help(2, $langs->trans(
"SyntaxHelp")), $htmltext, 1,
'none',
'inline-block', 1, 2,
'tooltipsubstitution');
3482 if ($action ==
'preview' || $action ==
'createfromclone' || $action ==
'createpagefromclone') {
3484 if (!empty($conf->use_javascript_ajax)) {
3485 print
'<script type="text/javascript">
3486 jQuery(document).ready(function() {
3487 jQuery("#websiteinputurl").keyup(function() {
3488 console.log("Website external url modified "+jQuery("#previewsiteurl").val());
3489 if (jQuery("#previewsiteurl").val() != "" && jQuery("#previewsiteurl").val().startsWith("http"))
3491 jQuery("a.websitebuttonsitepreviewdisabled img").css({ opacity: 1 });
3493 else jQuery("a.websitebuttonsitepreviewdisabled img").css({ opacity: 0.2 });
3497 jQuery("#previewsiteext,#previewpageext").click(function() {
3499 newurl=jQuery("#previewsiteurl").val();
3500 if (! newurl.startsWith("http"))
3502 alert(\''.dol_escape_js($langs->trans(
"ErrorURLMustStartWithHttp")).
'\');
3506 newpage=jQuery(
"#previewsiteurl").val() +
"/" + jQuery(
"#previewpageurl").val() +
".php";
3507 console.log(
"Open url "+newurl);
3511 url:
"'.DOL_URL_ROOT.'/core/ajax/saveinplace.php",
3513 field: \
'editval_virtualhost\',
3514 element: \'website\',
3515 table_element: \'website\',
3516 fk_element: '.((int) $object->id).
',
3519 context: document.body
3522 jQuery("#previewsiteext").attr("href",newurl);
3523 jQuery("#previewpageext").attr("href",newpage);
3542if ($action ==
'editcss') {
3543 print
'<div class="fiche">';
3547 if (!GETPOSTISSET(
'WEBSITE_CSS_INLINE')) {
3548 $csscontent = @file_get_contents($filecss);
3550 $csscontent = preg_replace(
'/<\?php \/\/ BEGIN PHP[^\?]*END PHP \?>\n*/ims',
'', $csscontent);
3552 $csscontent =
GETPOST(
'WEBSITE_CSS_INLINE',
'none');
3554 if (!trim($csscontent)) {
3555 $csscontent =
'/* CSS content (all pages) */'.
"\nbody.bodywebsite { margin: 0; font-family: 'Open Sans', sans-serif; }\n.bodywebsite h1 { margin-top: 0; margin-bottom: 0; padding: 10px;}";
3558 if (!GETPOSTISSET(
'WEBSITE_JS_INLINE')) {
3559 $jscontent = @file_get_contents($filejs);
3561 $jscontent = preg_replace(
'/<\?php \/\/ BEGIN PHP[^\?]*END PHP \?>\n*/ims',
'', $jscontent);
3563 $jscontent =
GETPOST(
'WEBSITE_JS_INLINE',
'none');
3565 if (!trim($jscontent)) {
3566 $jscontent =
'/* JS content (all pages) */'.
"\n";
3569 if (!GETPOSTISSET(
'WEBSITE_HTML_HEADER')) {
3570 $htmlheadercontent = @file_get_contents($filehtmlheader);
3572 $htmlheadercontent = preg_replace(
'/<\?php \/\/ BEGIN PHP[^\?]*END PHP \?>\n*/ims',
'', $htmlheadercontent);
3574 $htmlheadercontent =
GETPOST(
'WEBSITE_HTML_HEADER',
'none');
3576 if (!trim($htmlheadercontent)) {
3577 $htmlheadercontent =
"<html>\n";
3578 $htmlheadercontent .= $htmlheadercontentdefault;
3579 $htmlheadercontent .=
"</html>";
3581 $htmlheadercontent = preg_replace(
'/^\s*<html>/ims',
'', $htmlheadercontent);
3582 $htmlheadercontent = preg_replace(
'/<\/html>\s*$/ims',
'', $htmlheadercontent);
3583 $htmlheadercontent =
'<html>'.
"\n".trim($htmlheadercontent).
"\n".
'</html>';
3586 if (!GETPOSTISSET(
'WEBSITE_ROBOT')) {
3587 $robotcontent = @file_get_contents($filerobot);
3589 $robotcontent = preg_replace(
'/<\?php \/\/ BEGIN PHP[^\?]*END PHP \?>\n*/ims',
'', $robotcontent);
3591 $robotcontent =
GETPOST(
'WEBSITE_ROBOT',
'nothtml');
3593 if (!trim($robotcontent)) {
3594 $robotcontent .=
"# Robot file. Generated with ".DOL_APPLICATION_TITLE.
"\n";
3595 $robotcontent .=
"User-agent: *\n";
3596 $robotcontent .=
"Allow: /public/\n";
3597 $robotcontent .=
"Disallow: /administrator/\n";
3600 if (!GETPOSTISSET(
'WEBSITE_HTACCESS')) {
3601 $htaccesscontent = @file_get_contents($filehtaccess);
3603 $htaccesscontent = preg_replace(
'/<\?php \/\/ BEGIN PHP[^\?]*END PHP \?>\n*/ims',
'', $htaccesscontent);
3605 $htaccesscontent =
GETPOST(
'WEBSITE_HTACCESS',
'nohtml');
3607 if (!trim($htaccesscontent)) {
3608 $htaccesscontent .=
"# Order allow,deny\n";
3609 $htaccesscontent .=
"# Deny from all\n";
3613 if (!GETPOSTISSET(
'WEBSITE_MANIFEST_JSON')) {
3614 $manifestjsoncontent = @file_get_contents($filemanifestjson);
3616 $manifestjsoncontent = preg_replace(
'/<\?php \/\/ BEGIN PHP[^\?]*END PHP \?>\n*/ims',
'', $manifestjsoncontent);
3618 $manifestjsoncontent =
GETPOST(
'WEBSITE_MANIFEST_JSON',
'restricthtml');
3620 if (!trim($manifestjsoncontent)) {
3624 if (!GETPOSTISSET(
'WEBSITE_README')) {
3625 $readmecontent = @file_get_contents($filereadme);
3627 $readmecontent = preg_replace(
'/<\?php \/\/ BEGIN PHP[^\?]*END PHP \?>\n*/ims',
'', $readmecontent);
3629 $readmecontent =
GETPOST(
'WEBSITE_README',
'none');
3631 if (!trim($readmecontent)) {
3635 if (!GETPOSTISSET(
'WEBSITE_LICENSE')) {
3636 $licensecontent = @file_get_contents($filelicense);
3638 $licensecontent = preg_replace(
'/<\?php \/\/ BEGIN PHP[^\?]*END PHP \?>\n*/ims',
'', $licensecontent);
3640 $licensecontent =
GETPOST(
'WEBSITE_LICENSE',
'none');
3642 if (!trim($licensecontent)) {
3648 print
'<!-- Edit Website properties -->'.
"\n";
3649 print
'<table class="border centpercent">';
3652 print
'<tr><td class="titlefieldcreate fieldrequired">';
3653 print $langs->trans(
'WebSite');
3659 if ($action !=
'createcontainer') {
3660 if (empty($conf->use_javascript_ajax)) {
3661 print
'<!-- Status of web site page -->'.
"\n";
3662 print
'<tr><td class="fieldrequired">';
3663 print $langs->trans(
'Status');
3665 print $form->selectyesno(
'status', $object->status);
3671 print
'<tr><td class="tdtop fieldrequired">';
3673 print $form->textwithpicto($langs->trans(
'MainLanguage'), $htmltext, 1,
'help',
'', 0, 2,
'WEBSITE_LANG');
3675 print
img_picto(
'',
'language',
'class="picotfixedwidth"');
3676 print $formadmin->select_language((GETPOSTISSET(
'WEBSITE_LANG') ?
GETPOST(
'WEBSITE_LANG',
'aZ09comma') : ($object->lang ? $object->lang :
'0')),
'WEBSITE_LANG', 0, null, 1, 0, 0,
'minwidth300', 2, 0, 0, array(), 1);
3681 print
'<tr><td class="tdtop">';
3682 $htmltext = $langs->trans(
"Example").
': fr,de,sv,it,pt';
3683 print $form->textwithpicto($langs->trans(
'OtherLanguages'), $htmltext, 1,
'help',
'', 0, 2);
3685 print
img_picto(
'',
'language',
'class="picotfixedwidth"');
3686 print
'<input type="text" class="flat" value="'.(GETPOSTISSET(
'WEBSITE_OTHERLANG') ?
GETPOST(
'WEBSITE_OTHERLANG',
'alpha') : $object->otherlang).
'" name="WEBSITE_OTHERLANG">';
3691 print
'<tr><td class="tdtop">';
3693 $htmltext = $langs->trans(
"VirtualhostDesc");
3694 print $form->textwithpicto($langs->trans(
'Virtualhost'), $htmltext, 1,
'help',
'', 0, 2,
'virtualhosttooltip');
3696 print
'<input type="text" class="flat minwidth300" value="'.(GETPOSTISSET(
'virtualhost') ?
GETPOST(
'virtualhost',
'alpha') : $virtualurl).
'" name="virtualhost">';
3702 print $form->textwithpicto($langs->trans(
'ImportFavicon'), $langs->trans(
'FaviconTooltip'));
3705 $maxmin = $maxfilesizearray[
'maxmin'];
3707 print
'<input type="hidden" name="MAX_FILE_SIZE" value="'.($maxmin * 1024).
'">';
3709 print
'<input type="file" class="flat minwidth300" name="addedfile" id="addedfile"/>';
3713 print
'<tr><td class="tdtop">';
3714 $htmlhelp = $langs->trans(
"CSSContentTooltipHelp");
3715 print $form->textwithpicto($langs->trans(
'WEBSITE_CSS_INLINE'), $htmlhelp, 1,
'help',
'', 0, 2,
'csstooltip');
3718 $poscursor = array(
'x'=>
GETPOST(
'WEBSITE_CSS_INLINE_x'),
'y'=>
GETPOST(
'WEBSITE_CSS_INLINE_y'));
3719 $doleditor =
new DolEditor(
'WEBSITE_CSS_INLINE', $csscontent,
'',
'220',
'ace',
'In',
true,
false,
'ace', 0,
'100%',
'', $poscursor);
3720 print $doleditor->Create(1,
'',
true,
'CSS',
'css');
3725 print
'<tr><td class="tdtop">';
3726 $textwithhelp = $langs->trans(
'WEBSITE_JS_INLINE');
3727 $htmlhelp2 = $langs->trans(
"LinkAndScriptsHereAreNotLoadedInEditor").
'<br>';
3728 print $form->textwithpicto($textwithhelp, $htmlhelp2, 1,
'warning',
'', 0, 2,
'htmljstooltip2');
3732 $poscursor = array(
'x'=>
GETPOST(
'WEBSITE_JS_INLINE_x'),
'y'=>
GETPOST(
'WEBSITE_JS_INLINE_y'));
3733 $doleditor =
new DolEditor(
'WEBSITE_JS_INLINE', $jscontent,
'',
'220',
'ace',
'In',
true,
false,
'ace', 0,
'100%',
'', $poscursor);
3734 print $doleditor->Create(1,
'',
true,
'JS',
'javascript');
3739 print
'<tr><td class="tdtop">';
3740 print $langs->trans(
'WEBSITE_HTML_HEADER');
3741 $htmlhelp = $langs->trans(
"Example").
' :<br>';
3743 $textwithhelp = $form->textwithpicto(
'', $htmlhelp, 1,
'help',
'', 0, 2,
'htmlheadertooltip');
3744 $htmlhelp2 = $langs->trans(
"LinkAndScriptsHereAreNotLoadedInEditor").
'<br>';
3745 print $form->textwithpicto($textwithhelp, $htmlhelp2, 1,
'warning',
'', 0, 2,
'htmlheadertooltip2');
3748 $poscursor = array(
'x'=>
GETPOST(
'WEBSITE_HTML_HEADER_x'),
'y'=>
GETPOST(
'WEBSITE_HTML_HEADER_y'));
3749 $doleditor =
new DolEditor(
'WEBSITE_HTML_HEADER', $htmlheadercontent,
'',
'220',
'ace',
'In',
true,
false,
'ace', 0,
'100%',
'', $poscursor);
3750 print $doleditor->Create(1,
'',
true,
'HTML Header',
'html');
3755 print
'<tr><td class="tdtop">';
3756 print $langs->trans(
'WEBSITE_ROBOT');
3759 $poscursor = array(
'x'=>
GETPOST(
'WEBSITE_ROBOT_x'),
'y'=>
GETPOST(
'WEBSITE_ROBOT_y'));
3760 $doleditor =
new DolEditor(
'WEBSITE_ROBOT', $robotcontent,
'',
'220',
'ace',
'In',
true,
false,
'ace', 0,
'100%',
'', $poscursor);
3761 print $doleditor->Create(1,
'',
true,
'Robot file',
'text');
3766 print
'<tr><td class="tdtop">';
3767 print $langs->trans(
'WEBSITE_HTACCESS');
3770 $poscursor = array(
'x'=>
GETPOST(
'WEBSITE_HTACCESS_x'),
'y'=>
GETPOST(
'WEBSITE_HTACCESS_y'));
3771 $doleditor =
new DolEditor(
'WEBSITE_HTACCESS', $htaccesscontent,
'',
'220',
'ace',
'In',
true,
false,
'ace', 0,
'100%',
'', $poscursor);
3772 print $doleditor->Create(1,
'',
true, $langs->trans(
"File").
' .htaccess',
'text');
3777 print
'<tr><td class="tdtop">';
3778 $htmlhelp = $langs->trans(
"Example").
' :<br>';
3779 $htmlhelp .=
'<small>'.dol_htmlentitiesbr($manifestjsoncontentdefault).
'</small>';
3780 print $form->textwithpicto($langs->trans(
'WEBSITE_MANIFEST_JSON'), $htmlhelp, 1,
'help',
'', 0, 2,
'manifestjsontooltip');
3782 print $langs->trans(
"UseManifest").
': '.$form->selectyesno(
'use_manifest', $website->use_manifest, 1).
'<br>';
3784 $poscursor = array(
'x'=>
GETPOST(
'WEBSITE_MANIFEST_JSON_x'),
'y'=>
GETPOST(
'WEBSITE_MANIFEST_JSON_y'));
3785 $doleditor =
new DolEditor(
'WEBSITE_MANIFEST_JSON', $manifestjsoncontent,
'',
'220',
'ace',
'In',
true,
false,
'ace', 0,
'100%',
'', $poscursor);
3786 print $doleditor->Create(1,
'',
true, $langs->trans(
"File").
' manifest.json',
'text');
3790 print
'<tr><td class="tdtop">';
3791 $htmlhelp = $langs->trans(
"EnterHereReadmeInformation");
3792 print $form->textwithpicto($langs->trans(
"File").
' README.md', $htmlhelp, 1,
'help',
'', 0, 2,
'readmetooltip');
3795 $poscursor = array(
'x'=>
GETPOST(
'WEBSITE_README_x'),
'y'=>
GETPOST(
'WEBSITE_README_y'));
3796 $doleditor =
new DolEditor(
'WEBSITE_README', $readmecontent,
'',
'220',
'ace',
'In',
true,
false,
'ace', 0,
'100%',
'', $poscursor);
3797 print $doleditor->Create(1,
'',
true, $langs->trans(
"File").
' README.md',
'text');
3802 print
'<tr><td class="tdtop">';
3803 $htmlhelp = $langs->trans(
"EnterHereLicenseInformation");
3804 print $form->textwithpicto($langs->trans(
"File").
' LICENSE', $htmlhelp, 1,
'help',
'', 0, 2,
'licensetooltip');
3807 $poscursor = array(
'x'=>
GETPOST(
'WEBSITE_LICENSE_x'),
'y'=>
GETPOST(
'WEBSITE_LICENSE_y'));
3808 $doleditor =
new DolEditor(
'WEBSITE_LICENSE', $licensecontent,
'',
'220',
'ace',
'In',
true,
false,
'ace', 0,
'100%',
'', $poscursor);
3809 print $doleditor->Create(1,
'',
true, $langs->trans(
"File").
' LICENSE',
'text');
3814 print
'<tr><td class="tdtop">';
3815 $htmlhelp = $langs->trans(
'RSSFeedDesc');
3816 print $form->textwithpicto($langs->trans(
'RSSFeed'), $htmlhelp, 1,
'help',
'', 0, 2,
'');
3818 print
'/wrapper.php?rss=1[&l=XX][&limit=123]';
3831if ($action ==
'createsite') {
3832 print
'<div class="fiche">';
3846 if ($action ==
'createcontainer') {
3850 print
'<!-- Add site -->'.
"\n";
3851 print
'<div class="tabBar tabBarWithBottom">';
3853 print
'<table class="border centpercent">';
3855 $siteref = $sitedesc = $sitelang = $siteotherlang =
'';
3857 $siteref =
GETPOST(
'WEBSITE_REF',
'aZ09');
3859 if (
GETPOST(
'WEBSITE_DESCRIPTION')) {
3860 $sitedesc =
GETPOST(
'WEBSITE_DESCRIPTION',
'alpha');
3862 if (
GETPOST(
'WEBSITE_LANG')) {
3863 $sitelang =
GETPOST(
'WEBSITE_LANG',
'aZ09');
3865 if (
GETPOST(
'WEBSITE_OTHERLANG')) {
3866 $siteotherlang =
GETPOST(
'WEBSITE_OTHERLANG',
'aZ09comma');
3869 print
'<tr><td class="titlefieldcreate fieldrequired">';
3870 print $form->textwithpicto($langs->trans(
'WebsiteName'), $langs->trans(
"Example").
': MyPortal, www.mywebsite.com, ...');
3872 print
'<input type="text" class="flat maxwidth300" name="WEBSITE_REF" value="'.dol_escape_htmltag($siteref).
'" autofocus>';
3875 print
'<tr><td class="fieldrequired">';
3876 print $langs->trans(
'MainLanguage');
3878 $shortlangcode = preg_replace(
'/[_-].*$/',
'', trim($langs->defaultlang));
3879 print
img_picto(
'',
'language',
'class="pictofixedwidth"');
3880 print $formadmin->select_language((GETPOSTISSET(
'WEBSITE_LANG') ?
GETPOST(
'WEBSITE_LANG',
'aZ09comma') : $shortlangcode),
'WEBSITE_LANG', 0, null, 1, 0, 0,
'minwidth300', 2, 0, 0, array(), 1);
3884 $htmltext = $langs->trans(
"Example").
': fr,de,sv,it,pt';
3885 print $form->textwithpicto($langs->trans(
'OtherLanguages'), $htmltext, 1,
'help',
'', 0, 2);
3887 print
img_picto(
'',
'language',
'class="pictofixedwidth"');
3888 print
'<input type="text" class="flat minwidth300" name="WEBSITE_OTHERLANG" value="'.dol_escape_htmltag($siteotherlang).
'">';
3892 print $langs->trans(
'Description');
3894 print
'<input type="text" class="flat minwidth500" name="WEBSITE_DESCRIPTION" value="'.dol_escape_htmltag($sitedesc).
'">';
3899 $htmltext = $langs->trans(
"VirtualhostDesc");
3907 print $form->textwithpicto($langs->trans(
'Virtualhost'), $htmltext, 1,
'help',
'', 0, 2,
'');
3909 print
'<input type="text" class="flat minwidth300" name="virtualhost" value="'.dol_escape_htmltag(
GETPOST(
'virtualhost',
'alpha')).
'">';
3915 if ($action ==
'createsite') {
3916 print
'<div class="center">';
3918 print
'<input type="submit" class="button small" name="addcontainer" value="'.$langs->trans(
"Create").
'">';
3919 print
'<input class="button button-cancel small" type="submit" name="preview" value="'.$langs->trans(
"Cancel").
'">';
3934if ($action ==
'importsite') {
3935 print
'<div class="fiche">';
3943 print
'<span class="opacitymedium">'.$langs->trans(
"ZipOfWebsitePackageToImport").
'</span><br><br>';
3946 $dolibarrdataroot = preg_replace(
'/([\\/]+)$/i',
'', DOL_DATA_ROOT);
3947 $allowimportsite =
true;
3948 if (
dol_is_file($dolibarrdataroot.
'/installmodules.lock')) {
3949 $allowimportsite =
false;
3952 if ($allowimportsite) {
3954 $maxmin = $maxfilesizearray[
'maxmin'];
3956 print
'<input type="hidden" name="MAX_FILE_SIZE" value="'.($maxmin * 1024).
'">';
3958 print
'<input class="flat minwidth400" type="file" name="userfile[]" accept=".zip">';
3959 print
'<input type="submit" class="button small" name="buttonsubmitimportfile" value="'.dol_escape_htmltag($langs->trans(
"Upload")).
'">';
3960 print
'<input type="submit" class="button button-cancel small" name="preview" value="'.dol_escape_htmltag($langs->trans(
"Cancel")).
'">';
3961 print
'<br><br><br>';
3965 $message = $langs->trans(
'InstallModuleFromWebHasBeenDisabledContactUs');
3968 $message = $langs->trans(
"InstallModuleFromWebHasBeenDisabledByFile", $dolibarrdataroot.
'/installmodules.lock');
3974 print
'<span class="opacitymedium">'.$langs->trans(
"ZipOfWebsitePackageToLoad").
'</span><br><br>';
3985if ($action ==
'editmeta' || $action ==
'createcontainer') {
3986 print
'<div class="fiche">';
4000 if ($action ==
'createcontainer') {
4004 print
'<!-- Edit or create page/container -->'.
"\n";
4007 $hiddenfromfetchingafterload =
' hideobject';
4008 $hiddenmanuallyafterload =
' hideobject';
4009 if (
GETPOST(
'radiocreatefrom') ==
'checkboxcreatefromfetching') {
4010 $hiddenfromfetchingafterload =
'';
4012 if (
GETPOST(
'radiocreatefrom') ==
'checkboxcreatemanually') {
4013 $hiddenmanuallyafterload =
'';
4016 if ($action ==
'editmeta' || empty($conf->use_javascript_ajax)) {
4017 $hiddenfromfetchingafterload =
'';
4018 $hiddenmanuallyafterload =
'';
4021 if ($action ==
'createcontainer') {
4024 if (!empty($conf->use_javascript_ajax)) {
4025 print
'<input type="radio" name="radiocreatefrom" id="checkboxcreatemanually" value="checkboxcreatemanually"'.(GETPOST(
'radiocreatefrom') ==
'checkboxcreatemanually' ?
' checked' :
'').
'> ';
4027 print
'<label for="checkboxcreatemanually"><span class="opacitymediumxx">'.$langs->trans(
"OrEnterPageInfoManually").
'</span></label><br>';
4028 print
'<hr class="tablecheckboxcreatemanually'.$hiddenmanuallyafterload.
'">';
4031 print
'<table class="border tableforfield nobackground centpercent tablecheckboxcreatemanually'.$hiddenmanuallyafterload.
'">';
4033 if ($action !=
'createcontainer') {
4034 print
'<tr><td class="titlefield fieldrequired">';
4035 print $langs->trans(
'IDOfPage').
' - '.$langs->trans(
'InternalURLOfPage');
4043 print
' - ';
4044 print
'/public/website/index.php?website='.urlencode($websitekey).
'&pageid='.urlencode($pageid);
4048 $type_container = $objectpage->type_container;
4049 $pageurl = $objectpage->pageurl;
4050 $pagealiasalt = $objectpage->aliasalt;
4051 $pagetitle = $objectpage->title;
4052 $pagedescription = $objectpage->description;
4053 $pageimage = $objectpage->image;
4054 $pagekeywords = $objectpage->keywords;
4055 $pagelang = $objectpage->lang;
4056 $pageallowedinframes = $objectpage->allowed_in_frames;
4057 $pagehtmlheader = $objectpage->htmlheader;
4058 $pagedatecreation = $objectpage->date_creation;
4059 $pagedatemodification = $objectpage->date_modification;
4060 $pageauthorid = $objectpage->fk_user_creat;
4061 $pageusermodifid = $objectpage->fk_user_modif;
4062 $pageauthoralias = $objectpage->author_alias;
4063 $pagestatus = $objectpage->status;
4065 $type_container =
'page';
4069 $pagedescription =
'';
4073 $pageallowedinframes = 0;
4074 $pagehtmlheader =
'';
4075 $pagedatecreation =
dol_now();
4076 $pagedatemodification =
'';
4077 $pageauthorid = $user->id;
4078 $pageusermodifid = 0;
4079 $pageauthoralias =
'';
4082 if (
GETPOST(
'WEBSITE_TITLE',
'alpha')) {
4083 $pagetitle = str_replace(array(
'<',
'>'),
'',
GETPOST(
'WEBSITE_TITLE',
'alphanohtml'));
4085 if (
GETPOST(
'WEBSITE_PAGENAME',
'alpha')) {
4086 $pageurl =
GETPOST(
'WEBSITE_PAGENAME',
'alpha');
4088 if (
GETPOST(
'WEBSITE_ALIASALT',
'alpha')) {
4089 $pagealiasalt = str_replace(array(
'<',
'>'),
'',
GETPOST(
'WEBSITE_ALIASALT',
'alphanohtml'));
4091 if (
GETPOST(
'WEBSITE_DESCRIPTION',
'alpha')) {
4092 $pagedescription = str_replace(array(
'<',
'>'),
'',
GETPOST(
'WEBSITE_DESCRIPTION',
'alphanohtml'));
4094 if (
GETPOST(
'WEBSITE_IMAGE',
'alpha')) {
4095 $pageimage =
GETPOST(
'WEBSITE_IMAGE',
'alpha');
4097 if (
GETPOST(
'WEBSITE_KEYWORDS',
'alpha')) {
4098 $pagekeywords = str_replace(array(
'<',
'>'),
'',
GETPOST(
'WEBSITE_KEYWORDS',
'alphanohtml'));
4100 if (
GETPOST(
'WEBSITE_LANG',
'aZ09')) {
4101 $pagelang =
GETPOST(
'WEBSITE_LANG',
'aZ09');
4103 if (
GETPOST(
'WEBSITE_ALLOWED_IN_FRAMES',
'aZ09')) {
4104 $pageallowedinframes =
GETPOST(
'WEBSITE_ALLOWED_IN_FRAMES',
'aZ09');
4106 if (
GETPOST(
'htmlheader',
'none')) {
4107 $pagehtmlheader =
GETPOST(
'htmlheader',
'none');
4110 if ($action !=
'createcontainer') {
4111 if (empty($conf->use_javascript_ajax)) {
4112 print
'<!-- Status of web site page -->'.
"\n";
4113 print
'<tr><td class="fieldrequired">';
4114 print $langs->trans(
'Status');
4116 print $form->selectyesno(
'status', $objectpage->status);
4122 print
'<tr><td class="titlefield fieldrequired">';
4123 print $langs->trans(
'WEBSITE_TYPE_CONTAINER');
4125 print
img_picto(
'',
'object_technic',
'class="paddingrightonly"').
' ';
4126 $formwebsite->selectTypeOfContainer(
'WEBSITE_TYPE_CONTAINER', (
GETPOST(
'WEBSITE_TYPE_CONTAINER',
'alpha') ?
GETPOST(
'WEBSITE_TYPE_CONTAINER',
'alpha') : $type_container), 0,
'', 1);
4130 if ($action ==
'createcontainer') {
4131 print
'<tr><td class="titlefield fieldrequired">';
4132 print $langs->trans(
'WEBSITE_PAGE_EXAMPLE');
4134 print $formwebsite->selectSampleOfContainer(
'sample', (GETPOSTISSET(
'sample') ?
GETPOST(
'sample',
'alpha') :
'empty'), 0,
'', 1,
'minwidth300');
4139 print
'<tr><td class="fieldrequired">';
4140 print $langs->trans(
'WEBSITE_TITLE');
4142 print
'<input type="text" class="flat quatrevingtpercent" name="WEBSITE_TITLE" id="WEBSITE_TITLE" value="'.dol_escape_htmltag($pagetitle).
'" autofocus>';
4146 print
'<tr><td class="titlefieldcreate fieldrequired">';
4147 print $langs->trans(
'WEBSITE_PAGENAME');
4149 print
'<input type="text" class="flat minwidth300" name="WEBSITE_PAGENAME" id="WEBSITE_PAGENAME" value="'.dol_escape_htmltag($pageurl).
'">';
4152 print
'<tr><td class="titlefieldcreate">';
4153 $htmlhelp = $langs->trans(
"WEBSITE_ALIASALTDesc");
4154 print $form->textwithpicto($langs->trans(
'WEBSITE_ALIASALT'), $htmlhelp, 1,
'help',
'', 0, 2,
'aliastooltip');
4156 print
'<input type="text" class="flat minwidth500" name="WEBSITE_ALIASALT" value="'.dol_escape_htmltag($pagealiasalt).
'">';
4160 print $langs->trans(
'WEBSITE_DESCRIPTION');
4162 print
'<input type="text" class="flat quatrevingtpercent" name="WEBSITE_DESCRIPTION" value="'.dol_escape_htmltag($pagedescription).
'">';
4166 $htmlhelp = $langs->trans(
"WEBSITE_IMAGEDesc");
4167 print $form->textwithpicto($langs->trans(
'WEBSITE_IMAGE'), $htmlhelp, 1,
'help',
'', 0, 2,
'imagetooltip');
4169 print
'<input type="text" class="flat quatrevingtpercent" name="WEBSITE_IMAGE" value="'.dol_escape_htmltag($pageimage).
'">';
4174 $htmlhelp = $langs->trans(
"WEBSITE_KEYWORDSDesc");
4175 print $form->textwithpicto($langs->trans(
'WEBSITE_KEYWORDS'), $htmlhelp, 1,
'help',
'', 0, 2,
'keywordtooltip');
4177 print
'<input type="text" class="flat quatrevingtpercent" name="WEBSITE_KEYWORDS" value="'.dol_escape_htmltag($pagekeywords).
'">';
4181 print $langs->trans(
'Language');
4183 $onlykeys = array();
4184 if ($object->lang) {
4185 $onlykeys[$object->lang] = $object->lang;
4187 $onlykeys[$langs->defaultlang] = $langs->defaultlang;
4189 if ($object->otherlang) {
4190 $tmparray = explode(
',', $object->otherlang);
4191 foreach ($tmparray as $key) {
4192 $tmpkey = trim($key);
4193 if (strlen($key) == 2) {
4194 $tmpkey = strtolower($key);
4196 $onlykeys[$tmpkey] = $tmpkey;
4199 if (empty($object->lang) && empty($object->otherlang)) {
4202 print
img_picto(
'',
'language',
'class="pictofixedwidth"').$formadmin->select_language($pagelang ? $pagelang :
'',
'WEBSITE_LANG', 0, null,
'1', 0, 0,
'minwidth200', 0, 0, 0, $onlykeys, 1);
4203 $htmltext = $langs->trans(
"AvailableLanguagesAreDefinedIntoWebsiteProperties");
4204 print $form->textwithpicto(
'', $htmltext);
4210 print
'<!-- Translation of --><tr><td>';
4211 print $langs->trans(
'TranslationLinks');
4213 if ($action !=
'createcontainer') {
4215 $sql =
"SELECT rowid, lang from ".MAIN_DB_PREFIX.
"website_page where fk_page = ".((int) $objectpage->id);
4216 $resql = $db->query($sql);
4218 $num_rows = $db->num_rows($resql);
4219 if ($num_rows > 0) {
4220 print
'<span class="opacitymedium">'.$langs->trans(
'ThisPageHasTranslationPages').
':</span>';
4224 while ($obj = $db->fetch_object($resql)) {
4225 $result = $tmppage->fetch($obj->rowid);
4228 $tmpstring .=
'<br>';
4230 $tmpstring .= $tmppage->getNomUrl(1).
' ('.$tmppage->lang.
')';
4246 if (empty($translatedby) && ($action ==
'editmeta' || $action ==
'createcontainer' || $objectpage->fk_page > 0)) {
4248 $result = $sourcepage->fetch($objectpage->fk_page);
4251 } elseif ($result > 0) {
4252 $translationof = $objectpage->fk_page;
4253 print
'<span class="opacitymedium">'.$langs->trans(
'ThisPageIsTranslationOf').
'</span> ';
4254 print $formwebsite->selectContainer($website,
'pageidfortranslation', ($translationof ? $translationof : -1), 1, $action,
'minwidth300', array($objectpage->id));
4255 if ($translationof > 0 && $sourcepage->lang) {
4256 print $sourcepage->getNomUrl(2).
' ('.$sourcepage->lang.
')';
4264 print $langs->trans(
'AllowedInFrames');
4268 print
'<input type="checkbox" class="flat" name="WEBSITE_ALLOWED_IN_FRAMES" value="1"'.($pageallowedinframes ?
'checked="checked"' :
'').
'>';
4272 if (isModEnabled(
'categorie') && $user->hasRight(
'categorie',
'lire')) {
4273 $langs->load(
'categories');
4275 if (!GETPOSTISSET(
'categories')) {
4276 $cate_arbo = $form->select_all_categories(Categorie::TYPE_WEBSITE_PAGE,
'',
null,
null,
null, 1);
4278 $cats = $c->containing($objectpage->id, Categorie::TYPE_WEBSITE_PAGE);
4279 $arrayselected = array();
4280 if (is_array($cats)) {
4281 foreach ($cats as $cat) {
4282 $arrayselected[] = $cat->id;
4286 $cate_arbo = $form->select_all_categories(Categorie::TYPE_WEBSITE_PAGE,
'',
'parent',
null,
null, 1);
4289 print
'<tr><td class="toptd">'.$form->editfieldkey(
'Categories',
'categories',
'', $objectpage, 0).
'</td><td>';
4290 print
img_picto(
'',
'category',
'class="pictofixedwidth"');
4291 print $form->multiselectarray(
'categories', $cate_arbo, (GETPOSTISSET(
'categories') ?
GETPOST(
'categories',
'array') : $arrayselected), null, null,
'minwidth200 widthcentpercentminusxx');
4295 if (!empty($conf->global->WEBSITE_PAGE_SHOW_INTERNAL_LINKS_TO_OBJECT)) {
4296 print
'<tr><td class="titlefieldcreate">';
4297 print
'ObjectClass';
4299 print
'<input type="text" class="flat minwidth300" name="WEBSITE_OBJECTCLASS" placeholder="ClassName::/path/class/ObjectClass.class.php" >';
4302 print
'<tr><td class="titlefieldcreate">';
4305 print
'<input type="text" class="flat minwidth300" name="WEBSITE_OBJECTID" >';
4309 $fuser =
new User($db);
4312 print $langs->trans(
'Author');
4314 if ($pageauthorid > 0) {
4315 $fuser->fetch($pageauthorid);
4316 print $fuser->getNomUrl(1);
4318 print
'<span class="opacitymedium">'.$langs->trans(
"Unknown").
'</span>';
4323 print $langs->trans(
'PublicAuthorAlias');
4325 print
'<input type="text" class="flat minwidth300" name="WEBSITE_AUTHORALIAS" value="'.dol_escape_htmltag($pageauthoralias).
'" placeholder="Anonymous">';
4329 print $langs->trans(
'DateCreation');
4331 print $form->selectDate($pagedatecreation,
'datecreation', 1, 1, 0,
'', 1, 1);
4335 if ($action !=
'createcontainer') {
4337 print $langs->trans(
'UserModif');
4339 if ($pageusermodifid > 0) {
4340 $fuser->fetch($pageusermodifid);
4341 print $fuser->getNomUrl(1);
4346 print $langs->trans(
'DateModification');
4348 print
dol_print_date($pagedatemodification,
'dayhour',
'tzuser');
4352 print
'<tr><td class="tdhtmlheader tdtop">';
4353 $htmlhelp = $langs->trans(
"EditTheWebSiteForACommonHeader").
'<br><br>';
4354 $htmlhelp .= $langs->trans(
"Example").
' :<br>';
4356 print $form->textwithpicto($langs->trans(
'HtmlHeaderPage'), $htmlhelp, 1,
'help',
'', 0, 2,
'htmlheadertooltip');
4358 $poscursor = array(
'x'=>
GETPOST(
'htmlheader_x'),
'y'=>
GETPOST(
'htmlheader_y'));
4359 $doleditor =
new DolEditor(
'htmlheader', $pagehtmlheader,
'',
'120',
'ace',
'In',
true,
false,
'ace', ROWS_3,
'100%',
'', $poscursor);
4360 print $doleditor->Create(1,
'',
true,
'HTML Header',
'html');
4365 if ($action ==
'createcontainer') {
4366 print
'<div class="center tablecheckboxcreatemanually'.$hiddenmanuallyafterload.
'">';
4368 print
'<input type="submit" class="button small" name="addcontainer" value="'.$langs->trans(
"Create").
'">';
4369 print
'<input class="button button-cancel small" type="submit" name="preview" value="'.$langs->trans(
"Cancel").
'">';
4376 if (!empty($conf->use_javascript_ajax)) {
4377 print
'<input type="radio" name="radiocreatefrom" id="checkboxcreatefromfetching" value="checkboxcreatefromfetching"'.(GETPOST(
'radiocreatefrom') ==
'checkboxcreatefromfetching' ?
' checked' :
'').
'> ';
4379 print
'<label for="checkboxcreatefromfetching"><span class="opacitymediumxx">'.$langs->trans(
"CreateByFetchingExternalPage").
'</span></label><br>';
4380 print
'<hr class="tablecheckboxcreatefromfetching'.$hiddenfromfetchingafterload.
'">';
4381 print
'<table class="tableforfield centpercent tablecheckboxcreatefromfetching'.$hiddenfromfetchingafterload.
'">';
4382 print
'<tr><td class="titlefield">';
4383 print $langs->trans(
"URL");
4385 print
info_admin($langs->trans(
"OnlyEditionOfSourceForGrabbedContentFuture"), 0, 0,
'warning');
4386 print
'<input class="flat minwidth500" type="text" name="externalurl" value="'.dol_escape_htmltag(
GETPOST(
'externalurl',
'alpha')).
'" placeholder="https://externalsite/pagetofetch"> ';
4387 print
'<br><input class="flat paddingtop" type="checkbox" name="grabimages" value="1" checked="checked"> '.$langs->trans(
"GrabImagesInto");
4389 print $langs->trans(
"ImagesShouldBeSavedInto").
' ';
4390 $arraygrabimagesinto = array(
'root'=>$langs->trans(
"WebsiteRootOfImages"),
'subpage'=>$langs->trans(
"SubdirOfPage"));
4391 print $form->selectarray(
'grabimagesinto', $arraygrabimagesinto, GETPOSTISSET(
'grabimagesinto') ?
GETPOST(
'grabimagesinto') :
'root', 0, 0, 0,
'', 0, 0, 0,
'',
'', 1);
4394 print
'<input class="button small" style="margin-top: 5px" type="submit" name="fetchexternalurl" value="'.dol_escape_htmltag($langs->trans(
"FetchAndCreate")).
'">';
4395 print
'<input class="button button-cancel small" type="submit" name="preview" value="'.$langs->trans(
"Cancel").
'">';
4401 if ($action ==
'createcontainer') {
4402 print
'<script type="text/javascript">
4403 jQuery(document).ready(function() {
4404 var disableautofillofalias = 0;
4405 var selectedm = \'\';
4406 var selectedf = \'\';
4407 jQuery("#WEBSITE_TITLE").keyup(function() {
4408 if (disableautofillofalias == 0)
4410 var valnospecial = jQuery("#WEBSITE_TITLE").val();
4411 valnospecial = valnospecial.replace(/[éèê]/g, \'e\').replace(/[à ]/g, \'a\').replace(/[ù]/g, \'u\').replace(/[î]/g, \'i\');
4412 valnospecial = valnospecial.replace(/[ç]/g, \'c\').replace(/[ö]/g, \'o\');
4413 valnospecial = valnospecial.replace(/[^\w]/gi, \'-\').toLowerCase();
4414 valnospecial = valnospecial.replace(/\-+/g, \'-\').replace(/\-$/, \'\');
4415 console.log("disableautofillofalias=0 so we replace WEBSITE_TITLE with "+valnospecial);
4416 jQuery("#WEBSITE_PAGENAME").val(valnospecial);
4419 jQuery("#WEBSITE_PAGENAME").keyup(function() {
4420 disableautofillofalias = 1;
4423 jQuery("#checkboxcreatefromfetching,#checkboxcreatemanually").click(function() {
4424 console.log("we select a method to create a new container "+jQuery("#checkboxcreatefromfetching:checked").val())
4425 jQuery(".tablecheckboxcreatefromfetching").hide();
4426 jQuery(".tablecheckboxcreatemanually").hide();
4427 if (typeof(jQuery("#checkboxcreatefromfetching:checked").val()) != \'undefined\') {
4428 console.log("show a");
4429 if (selectedf != \'createfromfetching\') {
4430 jQuery(".tablecheckboxcreatefromfetching").show();
4431 selectedf = \'createfromfetching\';
4434 jQuery(".tablecheckboxcreatefromfetching").hide();
4438 if (typeof(jQuery("#checkboxcreatemanually:checked").val()) != \'undefined\') {
4439 console.log("show b");
4440 if (selectedm != \'createmanually\') {
4441 jQuery(".tablecheckboxcreatemanually").show();
4442 selectedm = \'createmanually\';
4445 jQuery(".tablecheckboxcreatemanually").hide();
4464if ($action ==
'preview') {
4468if ($action ==
'editfile' || $action ==
'file_manager' || $action ==
'convertimgwebp' || $action ==
'confirmconvertimgwebp') {
4469 print
'<!-- Edit Media -->'.
"\n";
4470 print
'<div class="fiche"><br>';
4475 $formalreadyopen = 2;
4477 $url = DOL_URL_ROOT.
'/website/index.php';
4479 include DOL_DOCUMENT_ROOT.
'/core/tpl/filemanager.tpl.php';
4484if ($action ==
'editmenu') {
4485 print
'<!-- Edit Menu -->'.
"\n";
4486 print
'<div class="center">'.$langs->trans(
"FeatureNotYetAvailable").
'</center>';
4489if ($action ==
'editsource') {
4492 $contentforedit =
'';
4496 $contentforedit .= $objectpage->content;
4498 $maxheightwin = 480;
4499 if (isset($_SESSION[
"dol_screenheight"])) {
4500 if ($_SESSION[
"dol_screenheight"] > 680) {
4501 $maxheightwin = $_SESSION[
"dol_screenheight"] - 400;
4503 if ($_SESSION[
"dol_screenheight"] > 800) {
4504 $maxheightwin = $_SESSION[
"dol_screenheight"] - 490;
4508 $poscursor = array(
'x'=>
GETPOST(
'PAGE_CONTENT_x'),
'y'=>
GETPOST(
'PAGE_CONTENT_y'));
4509 require_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
4510 $doleditor =
new DolEditor(
'PAGE_CONTENT', $contentforedit,
'', $maxheightwin,
'Full',
'',
true,
true,
'ace', ROWS_5,
'40%', 0, $poscursor);
4511 $doleditor->Create(0,
'',
false,
'HTML Source',
'php');
4514if ($action ==
'editcontent') {
4517 $contentforedit =
'';
4521 $contentforedit .= $objectpage->content;
4524 $contentforedit = preg_replace(
'/(<img.*src=")(?!http)/',
'\1'.DOL_URL_ROOT.
'/viewimage.php?modulepart=medias&file=', $contentforedit, -1, $nbrep);
4526 require_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
4527 $poscursor = array(
'x'=>
GETPOST(
'PAGE_CONTENT_x'),
'y'=>
GETPOST(
'PAGE_CONTENT_y'));
4528 $doleditor=
new DolEditor(
'PAGE_CONTENT', $contentforedit,
'', 500,
'Full',
'',
true,
true,
true, ROWS_5,
'90%', 0, $poscursor);
4529 $doleditor->Create(0,
'',
false);
4537if ($mode ==
'replacesite' || $massaction ==
'replace') {
4538 print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="POST">';
4539 print
'<input type="hidden" name="token" value="'.newToken().
'">';
4540 print
'<input type="hidden" name="action" value="replacesiteconfirm">';
4541 print
'<input type="hidden" name="mode" value="replacesite">';
4542 print
'<input type="hidden" name="website" value="'.$website->ref.
'">';
4545 print
'<!-- Search page and replace string -->'.
"\n";
4546 print
'<div class="fiche"><br>';
4548 print
load_fiche_titre($langs->trans(
"ReplaceWebsiteContent"),
'',
'search');
4550 print
'<div class="fichecenter"><div class="fichehalfleft">';
4552 print
'<div class="tagtable">';
4554 print
'<div class="tagtr">';
4555 print
'<div class="tagtd paddingrightonly opacitymedium">';
4556 print $langs->trans(
"SearchReplaceInto");
4558 print
'<div class="tagtd">';
4559 print
'<input type="checkbox" class="marginleftonly" id="checkboxoptioncontent" name="optioncontent" value="content"'.((!GETPOSTISSET(
'buttonreplacesitesearch') ||
GETPOST(
'optioncontent',
'aZ09')) ?
' checked' :
'').
'> <label for="checkboxoptioncontent" class="tdoverflowmax150onsmartphone inline-block valignmiddle">'.$langs->trans(
"Content").
'</label><br>';
4560 print
'<input type="checkbox" class="marginleftonly" id="checkboxoptionmeta" name="optionmeta" value="meta"'.(GETPOST(
'optionmeta',
'aZ09') ?
' checked' :
'').
'> <label for="checkboxoptionmeta" class="tdoverflowmax150onsmartphone inline-block valignmiddle">'.$langs->trans(
"Title").
' | '.$langs->trans(
"Description").
' | '.$langs->trans(
"Keywords").
'</label><br>';
4561 print
'<input type="checkbox" class="marginleftonly" id="checkboxoptionsitefiles" name="optionsitefiles" value="sitefiles"'.(GETPOST(
'optionsitefiles',
'aZ09') ?
' checked' :
'').
'> <label for="checkboxoptionsitefiles" class="tdoverflowmax150onsmartphone inline-block valignmiddle">'.$langs->trans(
"GlobalCSSorJS").
'</label><br>';
4565 print
'<div class="tagtr">';
4566 print
'<div class="tagtd paddingrightonly opacitymedium" style="padding-right: 10px !important">';
4567 print $langs->trans(
"SearchString");
4569 print
'<div class="tagtd">';
4570 print
'<input type="text" name="searchstring" value="'.dol_escape_htmltag($searchkey, 0, 0,
'', 1).
'" autofocus>';
4576 print
'</div><div class="fichehalfleft">';
4578 print
'<div class="tagtable">';
4580 print
'<div class="tagtr">';
4581 print
'<div class="tagtd paddingrightonly opacitymedium tdoverflowmax100onsmartphone" style="padding-right: 10px !important">';
4582 print $langs->trans(
"WEBSITE_TYPE_CONTAINER");
4584 print
'<div class="tagtd">';
4585 print
img_picto(
'',
'object_technic',
'class="paddingrightonly"').
' ';
4586 $formwebsite->selectTypeOfContainer(
'optioncontainertype', (
GETPOST(
'optioncontainertype',
'alpha') ?
GETPOST(
'optioncontainertype',
'alpha') :
''), 1,
'', 1,
'minwidth125 maxwidth400 widthcentpercentminusx');
4590 print
'<div class="tagtr">';
4591 print
'<div class="tagtd paddingrightonly opacitymedium tdoverflowmax100onsmartphone" style="padding-right: 10px !important">';
4592 print $langs->trans(
"Language");
4594 print
'<div class="tagtd">';
4595 print
img_picto(
'',
'language',
'class="paddingrightonly"').
' '.$formadmin->select_language(GETPOSTISSET(
'optionlanguage') ?
GETPOST(
'optionlanguage') :
'',
'optionlanguage', 0, null,
'1', 0, 0,
'minwidth125 maxwidth400 widthcentpercentminusx', 2, 0, 0, null, 1);
4600 if (isModEnabled(
'categorie') && $user->hasRight(
'categorie',
'lire')) {
4601 print
'<div class="tagtr">';
4602 print
'<div class="tagtd paddingrightonly marginrightonly opacitymedium tdoverflowmax100onsmartphone" style="padding-right: 10px !important">';
4603 print $langs->trans(
"Category");
4605 print
'<div class="tagtd">';
4606 print
img_picto(
'',
'category',
'class="paddingrightonly"').
' '.$form->select_all_categories(Categorie::TYPE_WEBSITE_PAGE, GETPOSTISSET(
'optioncategory') ?
GETPOST(
'optioncategory') :
'',
'optioncategory', 0, 0, 0, 0,
'minwidth125 maxwidth400 widthcentpercentminusx');
4607 include_once DOL_DOCUMENT_ROOT.
'/core/lib/ajax.lib.php';
4615 print
'<input type="submit" class="button margintoponly" name="buttonreplacesitesearch" value="'.dol_escape_htmltag($langs->trans(
"Search")).
'">';
4617 print
'</div></div>';
4619 if ($mode ==
'replacesite') {
4620 print
'<!-- List of search result -->'.
"\n";
4621 print
'<div class="rowsearchresult clearboth">';
4626 if ($listofpages[
'code'] ==
'OK') {
4627 $arrayofselected = is_array($toselect) ? $toselect : array();
4629 $nbtotalofrecords = count($listofpages[
'list']);
4631 $permissiontodelete = $user->hasRight(
'website',
'delete');
4634 $arrayofmassactions = array();
4635 if ($user->hasRight(
'website',
'writephp') && $searchkey) {
4636 $arrayofmassactions[
'replace'] =
img_picto(
'',
'replacement',
'class="pictofixedwidth"').$langs->trans(
"Replace");
4638 if ($user->hasRight(
'website',
'write')) {
4639 $arrayofmassactions[
'setcategory'] =
img_picto(
'',
'category',
'class="pictofixedwidth"').$langs->trans(
"ClassifyInCategory");
4641 if ($user->hasRight(
'website',
'write')) {
4642 $arrayofmassactions[
'delcategory'] =
img_picto(
'',
'category',
'class="pictofixedwidth"').$langs->trans(
"RemoveCategory");
4644 if ($permissiontodelete) {
4645 $arrayofmassactions[
'predelete'] =
img_picto(
'',
'delete',
'class="pictofixedwidth"').$langs->trans(
"Delete");
4647 if (
GETPOST(
'nomassaction',
'int') || in_array($massaction, array(
'presend',
'predelete'))) {
4648 $arrayofmassactions = array();
4651 $massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
4652 $massactionbutton .=
'<div class="massactionother massactionreplace hidden">';
4653 $massactionbutton .= $langs->trans(
"ReplaceString");
4654 $massactionbutton .=
' <input type="text" name="replacestring" value="'.dol_escape_htmltag(
GETPOST(
'replacestring',
'none')).
'">';
4655 $massactionbutton .=
'</div>';
4656 $massactionbutton .=
'<div class="massactionother massactionsetcategory massactiondelcategory hidden">';
4657 $massactionbutton .=
img_picto(
'',
'category').
' '.$langs->trans(
"Category");
4658 $massactionbutton .=
' '.$form->select_all_categories(Categorie::TYPE_WEBSITE_PAGE, GETPOSTISSET(
'setcategory') ?
GETPOST(
'setcategory') :
'',
'setcategory', 64, 0, 0, 0,
'minwidth300 alignstart');
4659 include_once DOL_DOCUMENT_ROOT.
'/core/lib/ajax.lib.php';
4661 $massactionbutton .=
'</div>';
4663 $varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
4666 $selectedfields =
'';
4667 $selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) :
'');
4669 print_barre_liste($langs->trans(
"Results"), $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords,
'generic', 0,
'',
'', $limit, 1, 1, 1);
4671 $topicmail =
"WebsitePageRef";
4672 $modelmail =
"websitepage_send";
4674 $trackid =
'wsp'.$object->id;
4675 include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
4677 $param =
'mode=replacesite&website='.urlencode($website->ref);
4678 $param .=
'&searchstring='.urlencode($searchkey);
4679 if (
GETPOST(
'optioncontent')) {
4680 $param .=
'&optioncontent=content';
4683 $param .=
'&optionmeta=meta';
4685 if (
GETPOST(
'optionsitefiles')) {
4686 $param .=
'&optionsitefiles=optionsitefiles';
4688 if (
GETPOST(
'optioncontainertype')) {
4689 $param .=
'&optioncontainertype='.GETPOST(
'optioncontainertype',
'aZ09');
4691 if (
GETPOST(
'optionlanguage')) {
4692 $param .=
'&optionlanguage='.GETPOST(
'optionlanguage',
'aZ09');
4694 if (
GETPOST(
'optioncategory')) {
4695 $param .=
'&optioncategory='.GETPOST(
'optioncategory',
'aZ09');
4698 print
'<div class="div-table-responsive-no-min">';
4699 print
'<table class="noborder centpercent">';
4700 print
'<tr class="liste_titre">';
4701 print
getTitleFieldOfList(
"Type", 0, $_SERVER[
'PHP_SELF'],
'type_container',
'', $param,
'', $sortfield, $sortorder,
'').
"\n";
4702 print
getTitleFieldOfList(
"Page", 0, $_SERVER[
'PHP_SELF'],
'pageurl',
'', $param,
'', $sortfield, $sortorder,
'').
"\n";
4704 print
getTitleFieldOfList(
"Language", 0, $_SERVER[
'PHP_SELF'],
'lang',
'', $param,
'', $sortfield, $sortorder,
'center ').
"\n";
4706 print
getTitleFieldOfList(
"DateLastModification", 0, $_SERVER[
'PHP_SELF'],
'tms',
'', $param,
'', $sortfield, $sortorder,
'center ').
"\n";
4708 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
4711 require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.php';
4716 foreach ($listofpages[
'list'] as $answerrecord) {
4717 if (is_object($answerrecord) && get_class($answerrecord) ==
'WebsitePage') {
4721 print
'<td class="nowraponall">'.$langs->trans(
"Container").
' - ';
4722 print $langs->trans($answerrecord->type_container);
4727 print $answerrecord->getNomUrl(1);
4728 print
' <span class="opacitymedium">('.($answerrecord->title ? $answerrecord->title : $langs->trans(
"NoTitle")).
')</span>';
4732 print
'<span class="opacitymedium">'.$answerrecord->description.
'</span>';
4736 print
'<td class="center">';
4737 if (isModEnabled(
'categorie') && $user->hasRight(
'categorie',
'lire')) {
4739 $existing = $c->containing($answerrecord->id, Categorie::TYPE_WEBSITE_PAGE,
'object');
4740 if (is_array($existing)) {
4741 foreach ($existing as $tmpcategory) {
4743 print
img_object($langs->trans(
"Category").
' : '.$tmpcategory->label,
'category',
'style="padding-left: 2px; padding-right: 2px; color: #'.($tmpcategory->color !=
'' ? $tmpcategory->color :
'888').
'"');
4751 $param =
'?mode=replacesite';
4752 $param .=
'&websiteid='.$website->id;
4753 $param .=
'&optioncontent='.GETPOST(
'optioncontent',
'aZ09');
4754 $param .=
'&optionmeta='.GETPOST(
'optionmeta',
'aZ09');
4755 $param .=
'&optionsitefiles='.GETPOST(
'optionsitefiles',
'aZ09');
4756 $param .=
'&optioncontainertype='.GETPOST(
'optioncontainertype',
'aZ09');
4757 $param .=
'&optionlanguage='.GETPOST(
'optionlanguage',
'aZ09');
4758 $param .=
'&optioncategory='.GETPOST(
'optioncategory',
'aZ09');
4759 $param .=
'&searchstring='.urlencode($searchkey);
4762 print
'<td class="center">';
4767 print
'<td class="center nowraponall">';
4769 $characterMap =
'áà éèëÃóúüñùç0123456789';
4770 $nbofwords = str_word_count($textwithouthtml, 0, $characterMap);
4772 print $nbofwords.
' '.$langs->trans(
"words");
4773 $totalnbwords += $nbofwords;
4778 print
'<td class="center nowraponall">';
4779 print
dol_print_date($answerrecord->date_modification,
'dayhour');
4783 print
'<td class="tdwebsitesearchresult right nowraponall">';
4785 $urltoedithtmlsource = $_SERVER[
"PHP_SELF"].
'?action=editmeta&token='.newToken().
'&websiteid='.$website->id.
'&pageid='.$answerrecord->id.
'&backtopage='.urlencode($_SERVER[
"PHP_SELF"].$param);
4786 if (empty($user->rights->website->write)) {
4787 $disabled =
' disabled';
4788 $urltoedithtmlsource =
'';
4790 print
'<a class="editfielda marginleftonly marginrightonly '.$disabled.
'" href="'.$urltoedithtmlsource.
'" title="'.$langs->trans(
"EditPageMeta").
'">'.
img_picto($langs->trans(
"EditPageMeta"),
'pencil-ruler').
'</a>';
4793 $urltoedithtmlsource = $_SERVER[
"PHP_SELF"].
'?action=editsource&token='.newToken().
'&websiteid='.$website->id.
'&pageid='.$answerrecord->id.
'&backtopage='.urlencode($_SERVER[
"PHP_SELF"].$param);
4794 if (empty($user->rights->website->write)) {
4795 $disabled =
' disabled';
4796 $urltoedithtmlsource =
'';
4798 print
'<a class="editfielda marginleftonly marginrightonly '.$disabled.
'" href="'.$urltoedithtmlsource.
'" title="'.$langs->trans(
"EditHTMLSource").
'">'.
img_picto($langs->trans(
"EditHTMLSource"),
'edit').
'</a>';
4800 print
'<span class="marginleftonly marginrightonly"></span>';
4801 print
ajax_object_onoff($answerrecord,
'status',
'status',
'Enabled',
'Disabled', array(),
'valignmiddle inline-block');
4806 print
'<td class="nowrap center">';
4808 print
'<!-- Status of page -->'.
"\n";
4809 if ($massactionbutton || $massaction) {
4811 if (in_array($answerrecord->id, $arrayofselected)) {
4814 print
'<input id="'.$answerrecord->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$answerrecord->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
4824 $translateofrecordtype = array(
4825 'website_csscontent'=>
'WEBSITE_CSS_INLINE',
4826 'website_jscontent'=>
'WEBSITE_JS_INLINE',
4827 'website_robotcontent'=>
'WEBSITE_ROBOT',
4828 'website_htmlheadercontent'=>
'WEBSITE_HTML_HEADER',
4829 'website_htaccess'=>
'WEBSITE_HTACCESS',
4830 'website_readme'=>
'WEBSITE_README',
4831 'website_manifestjson'=>
'WEBSITE_MANIFEST_JSON'
4833 if (!empty($translateofrecordtype[$answerrecord[
'type']])) {
4834 print $langs->trans($translateofrecordtype[$answerrecord[
'type']]);
4836 print $answerrecord[
'type'];
4840 $param =
'?mode=replacesite';
4841 $param .=
'&websiteid='.$website->id;
4842 $param .=
'&optioncontent='.GETPOST(
'optioncontent',
'aZ09');
4843 $param .=
'&optionmeta='.GETPOST(
'optionmeta',
'aZ09');
4844 $param .=
'&optionsitefiles='.GETPOST(
'optionsitefiles',
'aZ09');
4845 $param .=
'&optioncontainertype='.GETPOST(
'optioncontainertype',
'aZ09');
4846 $param .=
'&optionlanguage='.GETPOST(
'optionlanguage',
'aZ09');
4847 $param .=
'&optioncategory='.GETPOST(
'optioncategory',
'aZ09');
4848 $param .=
'&searchstring='.urlencode($searchkey);
4852 $backtopageurl = $_SERVER[
"PHP_SELF"].$param;
4853 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=editcss&token='.newToken().
'&website='.urlencode($website->ref).
'&backtopage='.urlencode($backtopageurl).
'">'.$langs->trans(
"EditCss").
'</a>';
4869 print
'<td class="center nowraponall">';
4878 print
'<td class="nowrap center">';
4885 if (count($listofpages[
'list']) >= 2) {
4887 print
'<tr class="lite_titre">';
4891 print $langs->trans(
"Total");
4907 print
'<td class="center nowraponall">';
4908 print $totalnbwords.
' '.$langs->trans(
"words");
4920 print
'<td class="nowrap center">';
4930 print
'<div class="warning">'.$listofpages[
'message'].
'</div>';
4939if ((empty($action) || $action ==
'preview' || $action ==
'createfromclone' || $action ==
'createpagefromclone') && !in_array($mode, array(
'replacesite'))) {
4940 if ($pageid > 0 && $atleastonepage) {
4946 $objectpage->fetch($pageid);
4948 $jscontent = @file_get_contents($filejs);
4950 $out =
'<!-- Page content '.$filetpl.
' : Div with (Htmlheader/Style of page from database + CSS Of website from file + Page content from database or by include if WEBSITE_SUBCONTAINERSINLINE is on) -->'.
"\n";
4959 $out .=
"\n<html><head>\n";
4960 $out .=
"<!-- htmlheader/style of page from database -->\n";
4963 $out .=
"<!-- htmlheader/style of website from files -->\n";
4981 $out .=
"</head>\n";
4985 $out .=
'<div id="websitecontentundertopmenu" class="websitecontentundertopmenu boostrap-iso">'.
"\n";
4989 $out .=
'<!-- style of website from file -->'.
"\n";
4990 $out .=
'<style scoped>'.
"\n";
4992 $tmpout .=
'/* Include website CSS file */'.
"\n";
4996 $csscontent = ob_get_contents();
4999 $tmpout .=
'/* Include style from the HTML header of page */'.
"\n";
5001 $tmp = preg_split(
'(<style[^>]*>|</style>)', $objectpage->htmlheader);
5002 $tmpstyleinheader =
'';
5004 foreach ($tmp as $valtmp) {
5007 $tmpstyleinheader .= $valtmp.
"\n";
5010 $tmpout .= $tmpstyleinheader.
"\n";
5012 $tmpout = preg_replace(
'/}[\s\n]*body\s*{[^}]+}/ims',
'}', $tmpout);
5014 $out .=
'</style>'.
"\n";
5021 $out .=
'<div id="divbodywebsite" class="bodywebsite bodywebpage-'.$objectpage->ref.
'">'.
"\n";
5023 $newcontent = $objectpage->content;
5026 if (!empty($conf->global->WEBSITE_SUBCONTAINERSINLINE)) {
5030 $filephp = $filetpl;
5033 $res = include $filephp;
5035 print
"ERROR: Failed to include file '".$filephp.
"'. Try to edit and re-save page ith this ID.";
5038 print $e->getMessage();
5040 $newcontent = ob_get_contents();
5045 if (empty($conf->global->WEBSITE_EDITINLINE)) {
5047 $newcontent = preg_replace(
'/(div|section)(\s[^>]*)contenteditable="true"/',
'\1\2', $newcontent);
5056 $out .=
'</div> <!-- End div id=websitecontentundertopmenu -->';
5062 $out .=
"\n</body></html>\n";
5064 $out .=
"\n".
'<!-- End page content '.$filetpl.
' -->'.
"\n\n";
5088 if (empty($websitekey) || $websitekey ==
'-1') {
5089 print
'<br><br><div class="center previewnotyetavailable"><span class="">'.$langs->trans(
"NoWebSiteCreateOneFirst").
'</span></div><br><br><br>';
5090 print
'<div class="center"><div class="logo_setup"></div></div>';
5092 print
'<br><br><div class="center previewnotyetavailable"><span class="">'.$langs->trans(
"PreviewOfSiteNotYetAvailable", $object->ref).
'</span></div><br><br><br>';
5093 print
'<div class="center"><div class="logo_setup"></div></div>';
dolibarr_set_const($db, $name, $value, $type='chaine', $visible=0, $note='', $entity=1)
Insert a parameter (key,value) into database (delete old key then insert it again).
dolibarr_del_const($db, $name, $entity=1)
Delete a constant.
ajax_combobox($htmlname, $events=array(), $minLengthToAutocomplete=0, $forcefocus=0, $widthTypeOfAutocomplete='resolve', $idforemptyvalue='-1', $morecss='')
Convert a html select field into an ajax combobox.
ajax_object_onoff($object, $code, $field, $text_on, $text_off, $input=array(), $morecss='', $htmlname='', $forcenojs=0)
On/off button to change a property status of an object This uses the ajax service objectonoff....
Class to manage categories.
Class to manage a WYSIWYG editor.
lessphp v0.5.0 http://leafo.net/lessphp
Class to manage Dolibarr users.
dol_delete_dir_recursive($dir, $count=0, $nophperrors=0, $onlysub=0, &$countdeleted=0, $indexdatabase=1, $nolog=0)
Remove a directory $dir and its subdirectories (or only files and subdirectories)
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_is_file($pathoffile)
Return if path is a file.
dol_add_file_process($upload_dir, $allowoverwrite=0, $donotupdatesession=0, $varfiles='addedfile', $savingdocmask='', $link=null, $trackid='', $generatethumbs=1, $object=null)
Get and save an upload file (for example after submitting a new file a mail form).
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed informations (by default a local PHP server timestamp) Re...
picto_from_langcode($codelang, $moreatt='', $notitlealt=0)
Return img flag of country for a language code or country code.
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
img_help($usehelpcursor=1, $usealttitle=1)
Show help logo with cursor "?".
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dol_osencode($str)
Return a string encoded into OS filesystem encoding.
dol_string_nohtmltag($stringtoclean, $removelinefeed=1, $pagecodeto='UTF-8', $strip_tags=0, $removedoublespaces=1)
Clean a string from all HTML tags and entities.
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dolButtonToOpenUrlInDialogPopup($name, $label, $buttonstring, $url, $disabled='', $morecss='classlink button bordertransp', $jsonopen='', $backtopagejsfields='', $accesskey='')
Return HTML code to output a button to open a dialog popup box.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
dol_get_fiche_end($notab=0)
Return tab footer of a card.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
dolChmod($filepath, $newmask='')
Change mod of a file.
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return dolibarr global constant int value.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
img_previous($titlealt='default', $moreatt='')
Show previous logo.
getTitleFieldOfList($name, $thead=0, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $disablesortlink=0, $tooltip='', $forcenowrapcolumntitle=0)
Get title line of an array.
make_substitutions($text, $substitutionarray, $outputlangs=null, $converttextinhtmlifnecessary=0)
Make substitution into a text string, replacing keys with vals from $substitutionarray (oldval=>newva...
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
info_admin($text, $infoonimgalt=0, $nodiv=0, $admin='1', $morecss='hideonsmartphone', $textfordropdown='')
Show information for admin users or standard users.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
print_barre_liste($titre, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $hideselectlimit=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
img_next($titlealt='default', $moreatt='')
Show next logo.
dol_htmlentitiesbr($stringtoencode, $nl2brmode=0, $pagecodefrom='UTF-8', $removelasteolbr=1)
This function is called to encode a string into a HTML string but differs from htmlentities because a...
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_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
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...
getDomainFromURL($url, $mode=0)
Function get second level domain name.
getRootURLFromURL($url)
Function root url from a long url For example: https://www.abc.mydomain.com/dir/page....
getURLContent($url, $postorget='GET', $param='', $followlocation=1, $addheaders=array(), $allowedschemes=array('http', 'https'), $localurl=0, $ssl_verifypeer=-1)
Function to get a content from an URL (use proxy if proxy defined).
removeHtmlComment($content)
Function to remove comments into HTML content.
if(preg_match('/crypted:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
$conf db name
Only used if Module[ID]Name translation string is not found.
getMaxFileSizeArray()
Return the max allowed for file upload.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.
checkPHPCode($phpfullcodestringold, $phpfullcodestring)
Check a new string containing only php code (including <php tag)
dolSaveMasterFile($filemaster)
Save content of a page on disk.
showWebsiteTemplates(Website $website)
Show list of themes.
dolSaveLicense($file, $content)
Save content of a page on disk.
dolSaveHtmlHeader($filehtmlheader, $htmlheadercontent)
Save content of a page on disk.
dolSaveReadme($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).
dolSaveHtaccessFile($filehtaccess, $htaccess)
Save content of a page on disk.
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).
dolSaveCssFile($filecss, $csscontent)
Save content of a page on disk.
dolSaveRobotFile($filerobot, $robotcontent)
Save content of a page on disk.
getAllImages($object, $objectpage, $urltograb, &$tmp, &$action, $modifylinks=0, $grabimages=1, $grabimagesinto='subpage')
Download all images found into page content $tmp.
getPagesFromSearchCriterias($type, $algo, $searchstring, $max=25, $sortfield='date_creation', $sortorder='DESC', $langcode='', $otherfilters='null', $status=1)
Return list of containers object that match a criteria.
dolWebsiteReplacementOfLinks($website, $content, $removephppart=0, $contenttype='html', $containerid='')
Convert a page content to have correct links (based on DOL_URL_ROOT) into an html content.
dolStripPhpCode($str, $replacewith='')
Remove PHP code part from a string.
dolKeepOnlyPhpCode($str)
Keep only PHP code part from a HTML string page.