36 $str = str_replace(
'<?=',
'<?php', $str);
42 $parts = preg_split(
'/'.preg_quote(
'<?php',
'/').
'/i', $str);
46 foreach ($parts as $part) {
53 $partlings = explode(
'?>', $part);
54 if (!empty($partlings)) {
57 if (count($partlings) > 1) {
63 $newstr .=
'<span phptag>'.$replacewith.
'</span>'.implode(
'', $partlings);
80 $str = str_replace(
'<?=',
'<?php', $str);
81 $str = str_replace(
'<?php',
'__LTINTPHP__', $str);
82 $str = str_replace(
'<?',
'<?php', $str);
83 $str = str_replace(
'__LTINTPHP__',
'<?php', $str);
89 $parts = preg_split(
'/'.preg_quote(
'<?php',
'/').
'/i', $str);
93 foreach ($parts as $part) {
100 $partlings = explode(
'?>', $part, 2);
101 if (!empty($partlings)) {
102 $newstr .= $partlings[0].
'?>';
104 $newstr .= $part.
'?>';
127 dol_syslog(
'dolWebsiteReplacementOfLinks start (contenttype='.$contenttype.
" containerid=".$containerid.
" USEDOLIBARREDITOR=".(defined(
'USEDOLIBARREDITOR') ?
'1' :
'').
" USEDOLIBARRSERVER=".(defined(
'USEDOLIBARRSERVER') ?
'1' :
'').
')', LOG_DEBUG);
131 $replacewith =
'...php...';
132 if ($removephppart) {
135 $content = preg_replace(
'/value="<\?php((?!\?>).)*\?>\n*/ims',
'value="'.$replacewith.
'"', $content);
137 $replacewith =
'"callto=#';
138 if ($removephppart) {
141 $content = preg_replace(
'/"callto:<\?php((?!\?>).)*\?>\n*/ims', $replacewith, $content);
143 $replacewith =
'"mailto=#';
144 if ($removephppart) {
147 $content = preg_replace(
'/"mailto:<\?php((?!\?>).)*\?>\n*/ims', $replacewith, $content);
149 $replacewith =
'src="php';
150 if ($removephppart) {
153 $content = preg_replace(
'/src="<\?php((?!\?>).)*\?>\n*/ims', $replacewith, $content);
155 $replacewith =
'href="php';
156 if ($removephppart) {
159 $content = preg_replace(
'/href="<\?php((?!\?>).)*\?>\n*/ims', $replacewith, $content);
162 $replacewith =
'...php...';
163 if ($removephppart) {
173 $content = str_replace(
'href="styles.css.php',
'href="!~!~!~styles.css.php', $content);
174 $content = str_replace(
'src="javascript.js.php',
'src="!~!~!~javascript.js.php', $content);
175 $content = str_replace(
'href="http',
'href="!~!~!~http', $content);
176 $content = str_replace(
'xlink:href="',
'xlink:href="!~!~!~', $content);
177 $content = str_replace(
'href="//',
'href="!~!~!~//', $content);
178 $content = str_replace(
'src="//',
'src="!~!~!~//', $content);
179 $content = str_replace(
'src="viewimage.php',
'src="!~!~!~/viewimage.php', $content);
180 $content = str_replace(
'src="/viewimage.php',
'src="!~!~!~/viewimage.php', $content);
181 $content = str_replace(
'src="'.DOL_URL_ROOT.
'/viewimage.php',
'src="!~!~!~'.DOL_URL_ROOT.
'/viewimage.php', $content);
182 $content = str_replace(
'href="document.php',
'href="!~!~!~/document.php', $content);
183 $content = str_replace(
'href="/document.php',
'href="!~!~!~/document.php', $content);
184 $content = str_replace(
'href="'.DOL_URL_ROOT.
'/document.php',
'href="!~!~!~'.DOL_URL_ROOT.
'/document.php', $content);
187 $content = preg_replace(
'/(href=")\/(#[^\"<>]*)?\"/',
'\1!~!~!~'.DOL_URL_ROOT.
'/website/index.php?website='.$website->ref.
'&pageid='.$website->fk_default_home.
'\2"', $content, -1, $nbrep);
189 $content = preg_replace(
'/(href=")\/?([^:\"\!]*)\.php(#[^\"<>]*)?\"/',
'\1!~!~!~'.DOL_URL_ROOT.
'/website/index.php?website='.$website->ref.
'&pageref=\2\3"', $content, -1, $nbrep);
191 $content = preg_replace(
'/(href=")\/?([^:\"\!]*)\.php\?([^#\"<>]*)(#[^\"<>]*)?\"/',
'\1!~!~!~'.DOL_URL_ROOT.
'/website/index.php?website='.$website->ref.
'&pageref=\2&\3\4"', $content, -1, $nbrep);
194 $content = preg_replace(
'/url\((["\']?)\/?medias\//',
'url(\1!~!~!~'.DOL_URL_ROOT.
'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
195 $content = preg_replace(
'/data-slide-bg=(["\']?)\/?medias\//',
'data-slide-bg=\1!~!~!~'.DOL_URL_ROOT.
'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
199 $content = preg_replace(
'/(<img[^>]*src=")\/?medias\//',
'\1!~!~!~'.DOL_URL_ROOT.
'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
201 $content = preg_replace(
'/(<img[^>]*src=")\/?([^:\"\!]+)\"/',
'\1!~!~!~'.DOL_URL_ROOT.
'/viewimage.php?modulepart=medias&file=\2"', $content, -1, $nbrep);
203 $content = preg_replace(
'/(<img[^>]*src=")(\/?viewimage\.php)/',
'\1!~!~!~'.DOL_URL_ROOT.
'/viewimage.php', $content, -1, $nbrep);
206 $content = preg_replace(
'/(action=")\/?([^:\"]*)(\.php\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'/website/index.php?website='.$website->ref.
'&pageref=\2"', $content, -1, $nbrep);
209 $content = preg_replace(
'/(href=")(\/?document\.php\?[^\"]*modulepart=[^\"]*)(\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'\2\3', $content, -1, $nbrep);
210 $content = preg_replace(
'/(src=")(\/?document\.php\?[^\"]*modulepart=[^\"]*)(\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'\2\3', $content, -1, $nbrep);
213 $content = preg_replace(
'/(url\(")(\/?viewimage\.php\?[^\"]*modulepart=[^\"]*)(\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'\2\3', $content, -1, $nbrep);
216 $content = str_replace(
'src="!~!~!~/viewimage.php',
'src="!~!~!~'.DOL_URL_ROOT.
'/viewimage.php', $content);
217 $content = str_replace(
'href="!~!~!~/document.php',
'href="!~!~!~'.DOL_URL_ROOT.
'/document.php', $content);
219 $content = str_replace(
'!~!~!~',
'', $content);
221 dol_syslog(
'dolWebsiteReplacementOfLinks end', LOG_DEBUG);
236 ":face_with_tears_of_joy:" =>
"\xF0\x9F\x98\x82",
237 ":grinning_face_with_smiling_eyes:" =>
"\xF0\x9F\x98\x81",
238 ":smiling_face_with_open_mouth:" =>
"\xF0\x9F\x98\x83",
239 ":smiling_face_with_open_mouth_and_cold_sweat:" =>
"\xF0\x9F\x98\x85",
240 ":smiling_face_with_open_mouth_and_tightly_closed_eyes:" =>
"\xF0\x9F\x98\x86",
241 ":winking_face:" =>
"\xF0\x9F\x98\x89",
242 ":smiling_face_with_smiling_eyes:" =>
"\xF0\x9F\x98\x8A",
243 ":face_savouring_delicious_food:" =>
"\xF0\x9F\x98\x8B",
244 ":relieved_face:" =>
"\xF0\x9F\x98\x8C",
245 ":smiling_face_with_heart_shaped_eyes:" =>
"\xF0\x9F\x98\x8D",
246 ":smiling_face_with_sunglasses:" =>
"\xF0\x9F\x98\x8E",
247 ":smirking_face:" =>
"\xF0\x9F\x98\x8F",
248 ":neutral_face:" =>
"\xF0\x9F\x98\x90",
249 ":expressionless_face:" =>
"\xF0\x9F\x98\x91",
250 ":unamused_face:" =>
"\xF0\x9F\x98\x92",
251 ":face_with_cold_sweat:" =>
"\xF0\x9F\x98\x93",
252 ":pensive_face:" =>
"\xF0\x9F\x98\x94",
253 ":confused_face:" =>
"\xF0\x9F\x98\x95",
254 ":confounded_face:" =>
"\xF0\x9F\x98\x96",
255 ":kissing_face:" =>
"\xF0\x9F\x98\x97",
256 ":face_throwing_a_kiss:" =>
"\xF0\x9F\x98\x98",
257 ":kissing_face_with_smiling_eyes:" =>
"\xF0\x9F\x98\x99",
258 ":kissing_face_with_closed_eyes:" =>
"\xF0\x9F\x98\x9A",
259 ":face_with_stuck_out_tongue:" =>
"\xF0\x9F\x98\x9B",
260 ":face_with_stuck_out_tongue_and_winking_eye:" =>
"\xF0\x9F\x98\x9C",
261 ":face_with_stuck_out_tongue_and_tightly_closed_eyes:" =>
"\xF0\x9F\x98\x9D",
262 ":disappointed_face:" =>
"\xF0\x9F\x98\x9E",
263 ":worried_face:" =>
"\xF0\x9F\x98\x9F",
264 ":angry_face:" =>
"\xF0\x9F\x98\xA0",
265 ":face_with_symbols_on_mouth:" =>
"\xF0\x9F\x98\xA1",
267 foreach ($map as $key => $value) {
268 $content = str_replace($key, $value, $content);
286 global $db, $langs, $conf, $user;
287 global $dolibarr_main_url_root, $dolibarr_main_data_root;
289 global $includehtmlcontentopened;
293 dol_syslog(
"dolWebsiteOutput start - contenttype=".$contenttype.
" containerid=".$containerid.
" USEDOLIBARREDITOR=".(defined(
'USEDOLIBARREDITOR') ?
'1' :
'').
" USEDOLIBARRSERVER=".(defined(
'USEDOLIBARRSERVER') ?
'1' :
'').
' includehtmlcontentopened='.$includehtmlcontentopened);
298 $urlwithouturlroot = preg_replace(
'/'.preg_quote(DOL_URL_ROOT,
'/').
'$/i',
'', trim($dolibarr_main_url_root));
299 $urlwithroot = $urlwithouturlroot.DOL_URL_ROOT;
302 if (defined(
'USEDOLIBARREDITOR')) {
304 if ($contenttype ==
'html') {
305 $content = preg_replace(
'/<head>.*<\/head>/ims',
'', $content);
306 $content = preg_replace(
'/^.*<body(\s[^>]*)*>/ims',
'', $content);
307 $content = preg_replace(
'/<\/body(\s[^>]*)*>.*$/ims',
'', $content);
309 } elseif (defined(
'USEDOLIBARRSERVER')) {
310 $content = str_replace(
'<link rel="stylesheet" href="/styles.css',
'<link rel="stylesheet" href="styles.css', $content);
311 $content = str_replace(
' async src="/javascript.js',
' async src="javascript.js', $content);
314 $content = str_replace(
'href="styles.css.php',
'href="!~!~!~styles.css.php', $content);
315 $content = str_replace(
'src="javascript.css.php',
'src="!~!~!~javascript.css.php', $content);
316 $content = str_replace(
'href="http',
'href="!~!~!~http', $content);
317 $content = str_replace(
'xlink:href="',
'xlink:href="!~!~!~', $content);
318 $content = str_replace(
'href="//',
'href="!~!~!~//', $content);
319 $content = str_replace(
'src="//',
'src="!~!~!~//', $content);
320 $content = str_replace(array(
'src="viewimage.php',
'src="/viewimage.php'),
'src="!~!~!~/viewimage.php', $content);
321 $content = str_replace(
'src="'.DOL_URL_ROOT.
'/viewimage.php',
'src="!~!~!~'.DOL_URL_ROOT.
'/viewimage.php', $content);
322 $content = str_replace(array(
'href="document.php',
'href="/document.php'),
'href="!~!~!~/document.php', $content);
323 $content = str_replace(
'href="'.DOL_URL_ROOT.
'/document.php',
'href="!~!~!~'.DOL_URL_ROOT.
'/document.php', $content);
326 $content = preg_replace(
'/(href=")\/\"/',
'\1!~!~!~'.DOL_URL_ROOT.
'/public/website/index.php?website='.$website->ref.
'"', $content, -1, $nbrep);
328 $content = preg_replace(
'/(href=")\/?([^:\"\!]*)\.php(#[^\"<>]*)?\"/',
'\1!~!~!~'.DOL_URL_ROOT.
'/public/website/index.php?website='.$website->ref.
'&pageref=\2\3"', $content, -1, $nbrep);
332 $content = preg_replace(
'/(href=")\/?([^:\"\!]*)\.php\?([^#\"<>]*)(#[^\"<>]*)?\"/',
'\1!~!~!~'.DOL_URL_ROOT.
'/public/website/index.php?website='.$website->ref.
'&pageref=\2&\3\4"', $content, -1, $nbrep);
334 $content = preg_replace(
'/([\'"])_service_([^\'"]+)\.php\1/',
'\1!~!~!~' . DOL_URL_ROOT .
'/public/website/index.php?website=' . $website->ref .
'&pageref=_service_\2\1', $content, -1, $nbrep);
336 $content = preg_replace(
'/([\'"])_library_([^\'"]+)\.php\1/',
'\1!~!~!~' . DOL_URL_ROOT .
'/public/website/index.php?website=' . $website->ref .
'&pageref=_library_\2\1', $content, -1, $nbrep);
338 $content = preg_replace(
'/(href=")\/?([a-zA-Z0-9\-_#]+)(\"|\?)/',
'\1!~!~!~'.DOL_URL_ROOT.
'/public/website/index.php?website='.$website->ref.
'&pageref=\2\3', $content, -1, $nbrep);
341 $content = preg_replace(
'/(href=")(\/?document\.php\?[^\"]*modulepart=[^\"]*)(\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'\2\3', $content, -1, $nbrep);
342 $content = preg_replace(
'/(src=")(\/?document\.php\?[^\"]*modulepart=[^\"]*)(\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'\2\3', $content, -1, $nbrep);
345 $content = preg_replace(
'/(href=")(\/?viewimage\.php\?[^\"]*modulepart=[^\"]*)(\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'\2\3', $content, -1, $nbrep);
346 $content = preg_replace(
'/(src=")(\/?viewimage\.php\?[^\"]*modulepart=[^\"]*)(\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'\2\3', $content, -1, $nbrep);
347 $content = preg_replace(
'/(url\(")(\/?viewimage\.php\?[^\"]*modulepart=[^\"]*)(\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'\2\3', $content, -1, $nbrep);
350 $content = preg_replace(
'/url\((["\']?)\/?medias\//',
'url(\1!~!~!~'.DOL_URL_ROOT.
'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
351 $content = preg_replace(
'/data-slide-bg=(["\']?)\/?medias\//',
'data-slide-bg=\1!~!~!~'.DOL_URL_ROOT.
'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
355 $content = preg_replace(
'/(<img[^>]*src=")\/?medias\//',
'\1!~!~!~'.DOL_URL_ROOT.
'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
357 $content = preg_replace(
'/(<img[^>]*src=")\/?([^:\"\!]+)\"/',
'\1!~!~!~'.DOL_URL_ROOT.
'/viewimage.php?modulepart=medias&file=\2"', $content, -1, $nbrep);
359 $content = preg_replace(
'/(<img[^>]*src=")(\/?viewimage\.php)/',
'\1!~!~!~'.DOL_URL_ROOT.
'/viewimage.php', $content, -1, $nbrep);
362 $content = preg_replace(
'/(action=")\/?([^:\"]*)(\.php\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'/public/website/index.php?website='.$website->ref.
'&pageref=\2"', $content, -1, $nbrep);
365 $content = str_replace(
'src="!~!~!~/viewimage.php',
'src="!~!~!~'.DOL_URL_ROOT.
'/viewimage.php', $content);
366 $content = str_replace(
'href="!~!~!~/document.php',
'href="!~!~!~'.DOL_URL_ROOT.
'/document.php', $content);
369 if (empty($includehtmlcontentopened)) {
370 $content = str_replace(
'!~!~!~',
'', $content);
373 $symlinktomediaexists = 1;
374 if ($website->virtualhost) {
375 $content = preg_replace(
'/^(<link[^>]*rel="canonical" href=")\//m',
'\1'.$website->virtualhost.
'/', $content, -1, $nbrep);
384 if (!$symlinktomediaexists) {
386 $content = preg_replace(
'/(<img[^>]*src=")\/?image\//',
'\1/wrapper.php?modulepart=medias&file=medias/image/', $content, -1, $nbrep);
387 $content = preg_replace(
'/(url\(["\']?)\/?image\//',
'\1/wrapper.php?modulepart=medias&file=medias/image/', $content, -1, $nbrep);
389 $content = preg_replace(
'/(<script[^>]*src=")[^\"]*document\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2modulepart=medias\3file=\4\5', $content, -1, $nbrep);
390 $content = preg_replace(
'/(<a[^>]*href=")[^\"]*document\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2modulepart=medias\3file=\4\5', $content, -1, $nbrep);
392 $content = preg_replace(
'/(<a[^>]*href=")[^\"]*viewimage\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2modulepart=medias\3file=\4\5', $content, -1, $nbrep);
393 $content = preg_replace(
'/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2modulepart=medias\3file=\4\5', $content, -1, $nbrep);
394 $content = preg_replace(
'/(url\(["\']?)[^\)]*viewimage\.php([^\)]*)modulepart=medias([^\)]*)file=([^\)]*)(["\']?\))/',
'\1/wrapper.php\2modulepart=medias\3file=\4\5', $content, -1, $nbrep);
396 $content = preg_replace(
'/(<a[^>]*href=")[^\"]*viewimage\.php([^\"]*)hashp=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2hashp=\3\4', $content, -1, $nbrep);
397 $content = preg_replace(
'/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)hashp=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2hashp=\3\4', $content, -1, $nbrep);
398 $content = preg_replace(
'/(url\(["\']?)[^\)]*viewimage\.php([^\)]*)hashp=([^\)]*)(["\']?\))/',
'\1/wrapper.php\2hashp\3\4', $content, -1, $nbrep);
400 $content = preg_replace(
'/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)modulepart=mycompany([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2modulepart=mycompany\3file=\4\5', $content, -1, $nbrep);
403 $content = preg_replace(
'/(<img[^>]*src=")\/?viewimage\.php/',
'\1/wrapper.php', $content, -1, $nbrep);
404 $content = preg_replace(
'/(<a[^>]*href=")\/?documents\.php/',
'\1/wrapper.php', $content, -1, $nbrep);
407 $content = preg_replace(
'/(<img[^>]*src=")\/?image\//',
'\1/medias/image/', $content, -1, $nbrep);
408 $content = preg_replace(
'/(url\(["\']?)\/?image\//',
'\1/medias/image/', $content, -1, $nbrep);
410 $content = preg_replace(
'/(<script[^>]*src=")[^\"]*document\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/medias/\4\5', $content, -1, $nbrep);
411 $content = preg_replace(
'/(<a[^>]*href=")[^\"]*document\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/medias/\4\5', $content, -1, $nbrep);
413 $content = preg_replace(
'/(<a[^>]*href=")[^\"]*viewimage\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/medias/\4\5', $content, -1, $nbrep);
414 $content = preg_replace(
'/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/medias/\4\5', $content, -1, $nbrep);
415 $content = preg_replace(
'/(url\(["\']?)[^\)]*viewimage\.php([^\)]*)modulepart=medias([^\)]*)file=([^\)]*)(["\']?\))/',
'\1/medias/\4\5', $content, -1, $nbrep);
417 $content = preg_replace(
'/(<a[^>]*href=")[^\"]*viewimage\.php([^\"]*)hashp=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2hashp=\3\4', $content, -1, $nbrep);
418 $content = preg_replace(
'/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)hashp=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2hashp=\3\4', $content, -1, $nbrep);
419 $content = preg_replace(
'/(url\(["\']?)[^\)]*viewimage\.php([^\)]*)hashp=([^\)]*)(["\']?\))/',
'\1/wrapper.php\2hashp=\3\4', $content, -1, $nbrep);
421 $content = preg_replace(
'/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)modulepart=mycompany([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2modulepart=mycompany\3file=\4\5', $content, -1, $nbrep);
424 $content = preg_replace(
'/(<img[^>]*src=")\/?viewimage\.php/',
'\1/wrapper.php', $content, -1, $nbrep);
425 $content = preg_replace(
'/(<a[^>]*href=")\/?document\.php/',
'\1/wrapper.php', $content, -1, $nbrep);
429 if (!defined(
'USEDOLIBARREDITOR')) {
430 $content = str_replace(
' contenteditable="true"',
' contenteditable="false"', $content);
434 $content = str_replace(
'<body id="bodywebsite" class="bodywebsite',
'<body id="bodywebsite" class="bodywebsite ' .
getDolGlobalString(
'WEBSITE_ADD_CSS_TO_BODY'), $content);
456 if (in_array($websitepagetype, array(
'blogpost',
'page'))) {
461 $sql =
"UPDATE ".$db->prefix().
"website SET ";
462 $sql .=
" pageviews_total = pageviews_total + 1,";
463 $sql .=
" pageviews_month = pageviews_month + 1,";
465 $sql .=
" pageviews_previous_month = ".$db->ifsql(
"lastaccess < '".$db->idate(
dol_mktime(0, 0, 0, $tmpnow[
'mon'], 1, $tmpnow[
'year'],
'gmt', 0),
'gmt').
"'",
'pageviews_month',
'pageviews_previous_month').
",";
466 $sql .=
" lastaccess = '".$db->idate(
dol_now(
'gmt'),
'gmt').
"',";
467 $sql .=
" lastpageid = ".((int) $websitepageid);
468 $sql .=
" WHERE rowid = ".((int) $websiteid);
470 $resql = $db->query($sql);
518function redirectToContainer($containerref, $containeraliasalt =
'', $containerid = 0, $permanent = 0, $parameters = array())
520 global $db, $website;
526 if ($containeraliasalt) {
527 include_once DOL_DOCUMENT_ROOT.
'/website/class/websitepage.class.php';
530 $result = $tmpwebsitepage->fetch(0, $website->id,
'', $containeraliasalt);
532 $containerref = $tmpwebsitepage->pageurl;
534 print
"Error, page contains a redirect to the alternative alias '".$containeraliasalt.
"' that does not exists in web site (".$website->id.
" / ".$website->ref.
")";
539 if (defined(
'USEDOLIBARREDITOR')) {
543 $text =
"This page contains dynamic code that make a redirect to '".$containerref.
"' in your current context. Redirect has been canceled as it is not supported in edition mode.";
544 setEventMessages($text,
null,
'warnings',
'WEBSITEREDIRECTDISABLED'.$containerref);
548 if (defined(
'USEDOLIBARRSERVER')) {
550 if (!$containeraliasalt) {
551 include_once DOL_DOCUMENT_ROOT.
'/website/class/websitepage.class.php';
554 $result = $tmpwebsitepage->fetch(0, $website->id, $containerref);
555 unset($tmpwebsitepage);
558 $currenturi = $_SERVER[
"REQUEST_URI"];
560 if (preg_match(
'/&pageref=([^&]+)/', $currenturi, $regtmp)) {
561 if ($regtmp[0] == $containerref) {
562 print
"Error, page with uri '.$currenturi.' try a redirect to the same alias page '".$containerref.
"' in web site '".$website->ref.
"'";
565 $newurl = preg_replace(
'/&pageref=([^&]+)/',
'&pageref='.$containerref, $currenturi);
568 $newurl = $currenturi.
'&pageref='.urlencode($containerref);
572 $newurl =
'/'.$containerref.
'.php';
573 $newurl = $newurl.(empty($_SERVER[
"QUERY_STRING"]) ?
'' :
'?'.$_SERVER[
"QUERY_STRING"]);
577 if (!empty($parameters)) {
578 $separator = (parse_url($newurl, PHP_URL_QUERY) ==
null) ?
'?' :
'&';
579 $newurl = $newurl . $separator . http_build_query($parameters);
582 header(
"Status: 301 Moved Permanently",
false, 301);
584 header(
"Location: ".$newurl);
587 print
"Error, page contains a redirect to the alias page '".$containerref.
"' that does not exists in web site (".$website->id.
" / ".$website->ref.
")";
602 global $conf, $db, $hookmanager, $langs, $mysoc, $user, $website, $websitepage, $weblangs;
603 global $includehtmlcontentopened;
604 global $websitekey, $websitepagefile;
608 if (!preg_match(
'/\.php$/i', $containerref)) {
609 $containerref .=
'.php';
612 $fullpathfile = DOL_DATA_ROOT.($conf->entity > 1 ?
'/'.$conf->entity :
'').
'/website/'.$websitekey.
'/'.$containerref;
614 if (empty($includehtmlcontentopened)) {
615 $includehtmlcontentopened = 0;
617 $includehtmlcontentopened++;
618 if ($includehtmlcontentopened > $MAXLEVEL) {
619 print
'ERROR: RECURSIVE CONTENT LEVEL. Depth of recursive call is more than the limit of '.((int) $MAXLEVEL).
".\n";
630 $res = @include $fullpathfile;
631 $tmpoutput = ob_get_contents();
634 print
"\n".
'<!-- include '.$websitekey.
'/'.$containerref.(is_object($websitepage) ?
' parent id='.$websitepage->id :
'').
' level = '.$includehtmlcontentopened.
' -->'.
"\n";
635 print preg_replace(array(
'/^.*<body[^>]*>/ims',
'/<\/body>.*$/ims'), array(
'',
''), $tmpoutput);
638 print
'ERROR: FAILED TO INCLUDE PAGE '.$containerref.
".\n";
641 $includehtmlcontentopened--;
656 global $conf, $db, $hookmanager, $langs, $mysoc, $user, $website, $websitepage, $weblangs, $pagelangs;
658 $type = strtolower($type);
660 if ($type ==
'software') {
661 $ret =
'<!-- Add structured data for entry in a software annuary -->'.
"\n";
662 $ret .=
'<script nonce="'.getNonce().
'" type="application/ld+json">'.
"\n";
664 "@context": "https://schema.org",
665 "@type": "SoftwareApplication",
666 "name": "'.dol_escape_json($data[
'name']).
'",
668 "applicationCategory": "https://schema.org/'.
dol_escape_json($data[
'applicationCategory']).
'",';
669 if (!empty($data[
'ratingcount'])) {
672 "@type": "AggregateRating",
673 "ratingValue": "'.dol_escape_json($data[
'ratingvalue']).
'",
680 "price": "'.dol_escape_json($data[
'price']).
'",
681 "priceCurrency": "'.
dol_escape_json($data[
'currency'] ? $data[
'currency'] : $conf->currency).
'"
684 $ret .=
'</script>'.
"\n";
685 } elseif ($type ==
'organization') {
686 $companyname = $mysoc->name;
689 $ret =
'<!-- Add structured data for organization -->'.
"\n";
690 $ret .=
'<script nonce="'.getNonce().
'" type="application/ld+json">'.
"\n";
692 "@context": "https://schema.org",
693 "@type": "Organization",
694 "name": "'.dol_escape_json(!empty($data[
'name']) ? $data[
'name'] : $companyname).
'",
695 "url": "'.
dol_escape_json(!empty($data[
'url']) ? $data[
'url'] : $url).
'",
696 "logo": "'.($data[
'logo'] ?
dol_escape_json($data[
'logo']) :
'/wrapper.php?modulepart=mycompany&file=logos%2F'.urlencode($mysoc->logo)).
'",
698 "@type": "ContactPoint",
699 "contactType": "Contact",
700 "email": "'.
dol_escape_json(!empty($data[
'email']) ? $data[
'email'] : $mysoc->email).
'"
702 if (is_array($mysoc->socialnetworks) && count($mysoc->socialnetworks) > 0) {
704 $ret .=
'"sameAs": [';
706 foreach ($mysoc->socialnetworks as $key => $value) {
707 if ($key ==
'linkedin') {
708 $ret .=
'"https://www.'.$key.
'.com/company/'.
dol_escape_json($value).
'"';
709 } elseif ($key ==
'youtube') {
715 if ($i < count($mysoc->socialnetworks)) {
722 $ret .=
'</script>'.
"\n";
723 } elseif ($type ==
'blogpost') {
724 if (!empty($websitepage->author_alias)) {
729 $pageurl = $websitepage->pageurl;
730 $title = $websitepage->title;
731 $image = $websitepage->image;
732 $companyname = $mysoc->name;
733 $description = $websitepage->description;
735 $pageurl = str_replace(
'__WEBSITE_KEY__', $website->ref, $pageurl);
736 $title = str_replace(
'__WEBSITE_KEY__', $website->ref, $title);
737 $image =
'/medias'.(preg_match(
'/^\//', $image) ?
'' :
'/').str_replace(
'__WEBSITE_KEY__', $website->ref, $image);
738 $companyname = str_replace(
'__WEBSITE_KEY__', $website->ref, $companyname);
739 $description = str_replace(
'__WEBSITE_KEY__', $website->ref, $description);
741 $ret =
'<!-- Add structured data for blog post -->'.
"\n";
742 $ret .=
'<script nonce="'.getNonce().
'" type="application/ld+json">'.
"\n";
744 "@context": "https://schema.org",
745 "@type": "NewsArticle",
746 "mainEntityOfPage": {
748 "@id": "'.dol_escape_json($pageurl).
'"
754 "dateCreated": "'.
dol_print_date($websitepage->date_creation,
'dayhourrfc').
'",
755 "datePublished": "'.
dol_print_date($websitepage->date_creation,
'dayhourrfc').
'",
756 "dateModified": "'.
dol_print_date($websitepage->date_modification,
'dayhourrfc').
'",
762 "@type": "Organization",
765 "@type": "ImageObject",
766 "url": "/wrapper.php?modulepart=mycompany&file=logos%2F'.urlencode($mysoc->logo).
'"
769 if ($websitepage->keywords) {
770 $ret .=
'"keywords": [';
772 $arrayofkeywords = explode(
',', $websitepage->keywords);
773 foreach ($arrayofkeywords as $keyword) {
774 $ret .=
'"'.dol_escape_json($keyword).
'"';
776 if ($i < count($arrayofkeywords)) {
782 $ret .=
'"description": "'.dol_escape_json($description).
'"';
783 $ret .=
"\n".
'}'.
"\n";
784 $ret .=
'</script>'.
"\n";
786 $ret =
'<!-- no structured data inserted inline inside blogpost because no author_alias defined -->'.
"\n";
788 } elseif ($type ==
'product') {
789 $ret =
'<!-- Add structured data for product -->'.
"\n";
790 $ret .=
'<script nonce="'.getNonce().
'" type="application/ld+json">'.
"\n";
792 "@context": "https://schema.org/",
794 "name": "'.dol_escape_json($data[
'label']).
'",
811 "url": "https://example.com/anvil",
812 "priceCurrency": "'.
dol_escape_json($data[
'currency'] ? $data[
'currency'] : $conf->currency).
'",
814 "itemCondition": "https://schema.org/UsedCondition",
815 "availability": "https://schema.org/InStock",
817 "@type": "Organization",
822 $ret .=
'</script>'.
"\n";
823 } elseif ($type ==
'qa') {
824 $ret =
'<!-- Add structured data for QA -->'.
"\n";
825 $ret .=
'<script nonce="'.getNonce().
'" type="application/ld+json">'.
"\n";
827 "@context": "https://schema.org/",
831 "name": "'.dol_escape_json($data[
'name']).
'",
848 $ret .=
'</script>'.
"\n";
863 global $conf, $db, $hookmanager, $langs, $mysoc, $user, $website, $websitepage, $weblangs;
867 if ($website->virtualhost) {
868 $pageurl = $websitepage->pageurl;
869 $title = $websitepage->title;
870 $image = $websitepage->image;
871 $companyname = $mysoc->name;
872 $description = $websitepage->description;
874 $pageurl = str_replace(
'__WEBSITE_KEY__', $website->ref, $pageurl);
875 $title = str_replace(
'__WEBSITE_KEY__', $website->ref, $title);
876 $image =
'/medias'.(preg_match(
'/^\//', $image) ?
'' :
'/').str_replace(
'__WEBSITE_KEY__', $website->ref, $image);
877 $companyname = str_replace(
'__WEBSITE_KEY__', $website->ref, $companyname);
878 $description = str_replace(
'__WEBSITE_KEY__', $website->ref, $description);
881 if ($websitepage->lang) {
882 $shortlangcode = substr($websitepage->lang, 0, 2);
884 if (empty($shortlangcode)) {
885 $shortlangcode = substr($website->lang, 0, 2);
888 $fullurl = $website->virtualhost.
'/'.$websitepage->pageurl.
'.php';
889 $canonicalurl = $website->virtualhost.(($websitepage->id == $website->fk_default_home) ?
'/' : (($shortlangcode != substr($website->lang, 0, 2) ?
'/'.$shortlangcode :
'').
'/'.$websitepage->pageurl.
'.php'));
890 $hashtags = trim(implode(
' #', array_map(
'trim', explode(
',', $websitepage->keywords))));
893 $out .=
'<meta name="og:type" content="website">'.
"\n";
894 $out .=
'<meta name="og:title" content="'.$websitepage->title.
'">'.
"\n";
895 if ($websitepage->image) {
896 $out .=
'<meta name="og:image" content="'.$website->virtualhost.$image.
'">'.
"\n";
898 $out .=
'<meta name="og:url" content="'.$canonicalurl.
'">'.
"\n";
901 $out .=
'<meta name="twitter:card" content="summary">'.
"\n";
902 if (!empty($params) && !empty($params[
'twitter_account'])) {
903 $out .=
'<meta name="twitter:site" content="@'.$params[
'twitter_account'].
'">'.
"\n";
904 $out .=
'<meta name="twitter:creator" content="@'.$params[
'twitter_account'].
'">'.
"\n";
906 $out .=
'<meta name="twitter:title" content="'.$websitepage->title.
'">'.
"\n";
907 if ($websitepage->description) {
908 $out .=
'<meta name="twitter:description" content="'.$websitepage->description.
'">'.
"\n";
910 if ($websitepage->image) {
911 $out .=
'<meta name="twitter:image" content="'.$website->virtualhost.$image.
'">'.
"\n";
938 global $website, $websitepage;
940 $out =
'<!-- section for social network sharing of page -->'.
"\n";
942 if ($website->virtualhost) {
943 $fullurl = $website->virtualhost.
'/'.$websitepage->pageurl.
'.php';
944 $hashtags = trim(implode(
' #', array_map(
'trim', explode(
',', $websitepage->keywords))));
946 $out .=
'<div class="dol-social-share">'.
"\n";
949 if (empty($socialnetworks) || preg_match(
'/twitter/', $socialnetworks)) {
950 $out .=
'<div class="dol-social-share-tw">'.
"\n";
951 $out .=
'<a href="https://twitter.com/share" class="twitter-share-button" data-url="'.$fullurl.
'" data-text="'.
dol_escape_htmltag($websitepage->description).
'" data-lang="'.$websitepage->lang.
'" data-size="small" data-related="" data-hashtags="'.preg_replace(
'/^#/',
'', $hashtags).
'" data-count="horizontal">Tweet</a>';
952 $out .=
'<script nonce="'.getNonce().
'">!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?\'http\':\'https\';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+\'://platform.twitter.com/widgets.js\';fjs.parentNode.insertBefore(js,fjs);}}(document, \'script\', \'twitter-wjs\');</script>';
953 $out .=
'</div>'.
"\n";
957 if (empty($socialnetworks) || preg_match(
'/reddit/', $socialnetworks)) {
958 $out .=
'<div class="dol-social-share-reddit">'.
"\n";
959 $out .=
'<a href="https://www.reddit.com/submit" target="_blank" rel="noopener noreferrer external" onclick="window.location = \'https://www.reddit.com/submit?url='.urlencode($fullurl).
'\';
return false">';
960 $out .= '<span class="dol-social-share-reddit-span
">Reddit</span>';
962 $out .= '</div>'."\n
";
966 if (empty($socialnetworks) || preg_match('/facebook/', $socialnetworks)) {
967 $out .= '<div class="dol-social-share-fbl
">'."\n
";
968 $out .= '<a href="https:
969 $out .=
'<span class="dol-social-share-fbl-span">Facebook</span>';
974 $out .=
"\n</div>\n";
976 $out .=
'<!-- virtual host not defined in CMS. No way to add sharing buttons -->'.
"\n";
978 $out .=
'<!-- section end for social network sharing of page -->'.
"\n";
997 include_once DOL_DOCUMENT_ROOT.
'/core/lib/images.lib.php';
999 $regexforimg =
'('.$regexforimg.
')$';
1001 $sql =
"SELECT COUNT(rowid) as nb";
1002 $sql .=
" FROM ".MAIN_DB_PREFIX.
"ecm_files";
1003 $sql .=
" WHERE entity IN (".getEntity(
$object->element).
")";
1004 $sql .=
" AND src_object_type = '".$db->escape(
$object->element).
"' AND src_object_id = ".((int)
$object->id);
1005 $sql .=
" AND ".$db->regexpsql(
'filename', $regexforimg, 1);
1006 $sql .=
" AND share IS NOT NULL";
1008 $resql = $db->query($sql);
1010 $obj = $db->fetch_object($resql);
1034 include_once DOL_DOCUMENT_ROOT.
'/core/lib/images.lib.php';
1036 $regexforimg =
'('.$regexforimg.
')$';
1038 $sql =
"SELECT rowid, ref, share, filename, cover, position";
1039 $sql .=
" FROM ".MAIN_DB_PREFIX.
"ecm_files";
1040 $sql .=
" WHERE entity IN (".getEntity(
$object->element).
")";
1041 $sql .=
" AND src_object_type = '".$db->escape(
$object->element).
"' AND src_object_id = ".((int)
$object->id);
1042 $sql .=
" AND ".$db->regexpsql(
'filename', $regexforimg, 1);
1043 $sql .= $db->order(
"cover,position,rowid",
"ASC,ASC,ASC");
1045 $resql = $db->query($sql);
1047 $num = $db->num_rows($resql);
1050 $foundnotshared = 0;
1052 $obj = $db->fetch_object($resql);
1054 if (empty($obj->share)) {
1059 if (defined(
'USEDOLIBARRSERVER') || defined(
'USEDOLIBARREDITOR')) {
1060 $image_path = DOL_URL_ROOT.
'/viewimage.php?hashp='.urlencode($obj->share);
1062 $image_path =
'/wrapper.php?hashp='.urlencode($obj->share);
1066 $image_path .=
'&extname='.urlencode($extName);
1070 if ($found >= $no) {
1075 if (!$found && $foundnotshared) {
1076 if (defined(
'USEDOLIBARRSERVER') || defined(
'USEDOLIBARREDITOR')) {
1077 $image_path = DOL_URL_ROOT.
'/viewimage.php?modulepart=common&file=nophotopublic.png';
1079 $image_path =
'/wrapper.php?modulepart=common&file=nophotopublic.png';
1084 if (empty($image_path)) {
1085 if (defined(
'USEDOLIBARRSERVER') || defined(
'USEDOLIBARREDITOR')) {
1086 $image_path = DOL_URL_ROOT.
'/viewimage.php?modulepart=common&file=nophoto.png';
1088 $image_path =
'/wrapper.php?modulepart=common&file=nophoto.png';
1107 include_once DOL_DOCUMENT_ROOT.
'/core/lib/images.lib.php';
1109 $regexforimg =
'/('.$regexforimg.
')$/i';
1111 $sql =
"SELECT rowid, ref, share, filename, cover, position";
1112 $sql .=
" FROM ".MAIN_DB_PREFIX.
"ecm_files";
1113 $sql .=
" WHERE entity IN (".getEntity(
$object->element).
")";
1114 $sql .=
" AND src_object_type = '".$db->escape(
$object->element).
"' AND src_object_id = ".((int)
$object->id);
1115 $sql .= $db->order(
"cover,position,rowid",
"ASC,ASC,ASC");
1117 $resql = $db->query($sql);
1119 $num = $db->num_rows($resql);
1122 $obj = $db->fetch_object($resql);
1124 if (!empty($obj->share)) {
1125 $files[$obj->rowid][
'filename'] = $obj->filename;
1126 $files[$obj->rowid][
'position'] = $obj->position;
1127 if (defined(
'USEDOLIBARRSERVER') || defined(
'USEDOLIBARREDITOR')) {
1128 if (preg_match($regexforimg, $obj->filename)) {
1129 $files[$obj->rowid][
'url'] = DOL_URL_ROOT.
'/viewimage.php?hashp='.urlencode($obj->share);
1131 $files[$obj->rowid][
'url'] = DOL_URL_ROOT.
'/document.php?hashp='.urlencode($obj->share);
1134 $files[$obj->rowid][
'url'] =
'/wrapper.php?hashp='.urlencode($obj->share);
1161function getPagesFromSearchCriterias($type, $algo, $searchstring, $max = 25, $sortfield =
'date_creation', $sortorder =
'DESC', $langcode =
'', $otherfilters = [], $status = 1)
1163 global $conf, $db, $hookmanager, $langs, $mysoc, $user, $website, $websitepage, $weblangs;
1166 $arrayresult = array(
'code' =>
'',
'list' => array());
1169 if (!is_object($weblangs)) {
1188 $tmparrayoftype = explode(
',', $type);
1202 if (!$error && (empty($max) || ($found < $max)) && (preg_match(
'/meta/', $algo) || preg_match(
'/content/', $algo))) {
1203 include_once DOL_DOCUMENT_ROOT.
'/website/class/websitepage.class.php';
1205 $sql =
'SELECT wp.rowid FROM '.MAIN_DB_PREFIX.
'website_page as wp';
1206 if (is_array($otherfilters) && !empty($otherfilters[
'category'])) {
1207 $sql .=
', '.MAIN_DB_PREFIX.
'categorie_website_page as cwp';
1209 $sql .=
" WHERE wp.fk_website = ".((int) $website->id);
1211 $sql .=
" AND wp.status = ".((int) $status);
1214 $sql .=
" AND wp.lang = '".$db->escape($langcode).
"'";
1217 $tmparrayoftype = explode(
',', $type);
1219 foreach ($tmparrayoftype as $tmptype) {
1220 $typestring .= ($typestring ?
", " :
"").
"'".$db->escape(trim($tmptype)).
"'";
1222 $sql .=
" AND wp.type_container IN (".$db->sanitize($typestring, 1).
")";
1226 if (preg_match(
'/meta/', $algo)) {
1227 $searchalgo .= ($searchalgo ?
' OR ' :
'').
"wp.title LIKE '%".$db->escape($db->escapeforlike($searchstring)).
"%' OR wp.description LIKE '%".$db->escape($db->escapeforlike($searchstring)).
"%'";
1228 $searchalgo .= ($searchalgo ?
' OR ' :
'').
"wp.keywords LIKE '".$db->escape($db->escapeforlike($searchstring)).
",%' OR wp.keywords LIKE '% ".$db->escape($db->escapeforlike($searchstring)).
"%'";
1230 if (preg_match(
'/content/', $algo)) {
1231 $searchalgo .= ($searchalgo ?
' OR ' :
'').
"wp.content LIKE '%".$db->escape($db->escapeforlike($searchstring)).
"%'";
1233 $sql .= $searchalgo;
1234 if (is_array($otherfilters) && !empty($otherfilters[
'category'])) {
1235 $sql .=
' AND cwp.fk_website_page = wp.rowid AND cwp.fk_categorie = '.((int) $otherfilters[
'category']);
1238 $sql .= $db->order($sortfield, $sortorder);
1239 $sql .= $db->plimit($max);
1242 $resql = $db->query($sql);
1246 while (($obj = $db->fetch_object($resql)) && ($i < $max || $max == 0)) {
1247 if ($obj->rowid > 0) {
1249 $tmpwebsitepage->fetch($obj->rowid);
1250 if ($tmpwebsitepage->id > 0) {
1251 $arrayresult[
'list'][$obj->rowid] = $tmpwebsitepage;
1259 $arrayresult[
'code'] = $db->lasterrno();
1260 $arrayresult[
'message'] = $db->lasterror();
1266 if (!$error && (empty($max) || ($found < $max)) && (preg_match(
'/sitefiles/', $algo))) {
1267 global $dolibarr_main_data_root;
1269 $pathofwebsite = $dolibarr_main_data_root.($conf->entity > 1 ?
'/'.$conf->entity :
'').
'/website/'.$website->ref;
1270 $filehtmlheader = $pathofwebsite.
'/htmlheader.html';
1271 $filecss = $pathofwebsite.
'/styles.css.php';
1272 $filejs = $pathofwebsite.
'/javascript.js.php';
1273 $filerobot = $pathofwebsite.
'/robots.txt';
1274 $filehtaccess = $pathofwebsite.
'/.htaccess';
1275 $filemanifestjson = $pathofwebsite.
'/manifest.json.php';
1276 $filereadme = $pathofwebsite.
'/README.md';
1278 $filecontent = file_get_contents($filehtmlheader);
1279 if ((empty($max) || ($found < $max)) && preg_match(
'/'.preg_quote($searchstring,
'/').
'/', $filecontent)) {
1280 $arrayresult[
'list'][] = array(
'type' =>
'website_htmlheadercontent');
1283 $filecontent = file_get_contents($filecss);
1284 if ((empty($max) || ($found < $max)) && preg_match(
'/'.preg_quote($searchstring,
'/').
'/', $filecontent)) {
1285 $arrayresult[
'list'][] = array(
'type' =>
'website_csscontent');
1288 $filecontent = file_get_contents($filejs);
1289 if ((empty($max) || ($found < $max)) && preg_match(
'/'.preg_quote($searchstring,
'/').
'/', $filecontent)) {
1290 $arrayresult[
'list'][] = array(
'type' =>
'website_jscontent');
1293 $filerobot = file_get_contents($filerobot);
1294 if ((empty($max) || ($found < $max)) && preg_match(
'/'.preg_quote($searchstring,
'/').
'/', $filecontent)) {
1295 $arrayresult[
'list'][] = array(
'type' =>
'website_robotcontent');
1303 $arrayresult[
'code'] =
'OK';
1304 if (empty($arrayresult[
'list'])) {
1305 $arrayresult[
'code'] =
'KO';
1306 $arrayresult[
'message'] = $weblangs->trans(
"NoRecordFound");
1310 $arrayresult[
'code'] =
'KO';
1311 $arrayresult[
'message'] =
'No supported algorithm found';
1315 return $arrayresult;
1329 $dom =
new DOMDocument();
1331 libxml_use_internal_errors(
false);
1332 if (LIBXML_VERSION < 20900) {
1336 libxml_disable_entity_loader(
true);
1340 $dom->loadHTML($htmlContent);
1343 libxml_clear_errors();
1346 $images = $dom->getElementsByTagName(
'img');
1349 if ($imageNumber > 0 && $imageNumber <= $images->length) {
1351 $img = $images->item($imageNumber - 1);
1352 if ($img instanceof DOMElement) {
1353 return $img->getAttribute(
'src');
1374function getAllImages(
$object, $objectpage, $urltograb, &$tmp, &$action, $modifylinks = 0, $grabimages = 1, $grabimagesinto =
'subpage')
1380 dol_syslog(
"Call getAllImages with grabimagesinto=".$grabimagesinto);
1382 $alreadygrabbed = array();
1384 if (preg_match(
'/\/$/', $urltograb)) {
1387 $urltograb = dirname($urltograb);
1391 preg_match_all(
'/<img([^\.\/]+)src="([^>"]+)"([^>]*)>/i', $tmp, $regs);
1393 foreach ($regs[0] as $key => $val) {
1394 if (preg_match(
'/^data:image/i', $regs[2][$key])) {
1398 if (preg_match(
'/^\//', $regs[2][$key])) {
1400 $urltograbbis = $urltograbdirrootwithoutslash.$regs[2][$key];
1402 $urltograbbis = $urltograb.
'/'.$regs[2][$key];
1405 $linkwithoutdomain = $regs[2][$key];
1406 $dirforimages =
'/'.$objectpage->pageurl;
1407 if ($grabimagesinto ==
'root') {
1412 $filetosave = $conf->medias->multidir_output[$conf->entity].
'/image/'.
$object->ref.$dirforimages.(preg_match(
'/^\//', $regs[2][$key]) ?
'' :
'/').$regs[2][$key];
1413 if (preg_match(
'/^http/', $regs[2][$key])) {
1414 $urltograbbis = $regs[2][$key];
1415 $linkwithoutdomain = preg_replace(
'/^https?:\/\/[^\/]+\//i',
'', $regs[2][$key]);
1416 $filetosave = $conf->medias->multidir_output[$conf->entity].
'/image/'.
$object->ref.$dirforimages.(preg_match(
'/^\//', $linkwithoutdomain) ?
'' :
'/').$linkwithoutdomain;
1418 $filename =
'image/'.$object->ref.$dirforimages.(preg_match(
'/^\//', $linkwithoutdomain) ?
'' :
'/').$linkwithoutdomain;
1421 $filetosave = preg_replace(
'/\/[^\/]+\/\.\./',
'', $filetosave);
1422 $filename = preg_replace(
'/\/[^\/]+\/\.\./',
'', $filename);
1424 if (empty($alreadygrabbed[$urltograbbis])) {
1426 $tmpgeturl =
getURLContent($urltograbbis,
'GET',
'', 1, array(), array(
'http',
'https'), 0);
1427 if ($tmpgeturl[
'curl_error_no']) {
1429 setEventMessages(
'Error getting '.$urltograbbis.
': '.$tmpgeturl[
'curl_error_msg'],
null,
'errors');
1431 } elseif ($tmpgeturl[
'http_code'] !=
'200') {
1433 setEventMessages(
'Error getting '.$urltograbbis.
': '.$tmpgeturl[
'http_code'],
null,
'errors');
1436 $alreadygrabbed[$urltograbbis] = 1;
1440 $fp = fopen($filetosave,
"w");
1441 fwrite($fp, $tmpgeturl[
'content']);
1449 $tmp = preg_replace(
'/'.preg_quote($regs[0][$key],
'/').
'/i',
'<img'.$regs[1][$key].
'src="'.DOL_URL_ROOT.
'/viewimage.php?modulepart=medias&file='.$filename.
'"'.$regs[3][$key].
'>', $tmp);
1454 preg_match_all(
'/background([^\.\/\(;]+)url\([\"\']?([^\)\"\']*)[\"\']?\)/i', $tmp, $regs);
1456 foreach ($regs[0] as $key => $val) {
1457 if (preg_match(
'/^data:image/i', $regs[2][$key])) {
1461 if (preg_match(
'/^\//', $regs[2][$key])) {
1463 $urltograbbis = $urltograbdirrootwithoutslash.$regs[2][$key];
1465 $urltograbbis = $urltograb.
'/'.$regs[2][$key];
1468 $linkwithoutdomain = $regs[2][$key];
1470 $dirforimages =
'/'.$objectpage->pageurl;
1471 if ($grabimagesinto ==
'root') {
1475 $filetosave = $conf->medias->multidir_output[$conf->entity].
'/image/'.
$object->ref.$dirforimages.(preg_match(
'/^\//', $regs[2][$key]) ?
'' :
'/').$regs[2][$key];
1477 if (preg_match(
'/^http/', $regs[2][$key])) {
1478 $urltograbbis = $regs[2][$key];
1479 $linkwithoutdomain = preg_replace(
'/^https?:\/\/[^\/]+\//i',
'', $regs[2][$key]);
1480 $filetosave = $conf->medias->multidir_output[$conf->entity].
'/image/'.
$object->ref.$dirforimages.(preg_match(
'/^\//', $linkwithoutdomain) ?
'' :
'/').$linkwithoutdomain;
1483 $filename =
'image/'.$object->ref.$dirforimages.(preg_match(
'/^\//', $linkwithoutdomain) ?
'' :
'/').$linkwithoutdomain;
1486 $filetosave = preg_replace(
'/\/[^\/]+\/\.\./',
'', $filetosave);
1487 $filename = preg_replace(
'/\/[^\/]+\/\.\./',
'', $filename);
1489 if (empty($alreadygrabbed[$urltograbbis])) {
1491 $tmpgeturl =
getURLContent($urltograbbis,
'GET',
'', 1, array(), array(
'http',
'https'), 0);
1492 if ($tmpgeturl[
'curl_error_no']) {
1494 setEventMessages(
'Error getting '.$urltograbbis.
': '.$tmpgeturl[
'curl_error_msg'],
null,
'errors');
1496 } elseif ($tmpgeturl[
'http_code'] !=
'200') {
1498 setEventMessages(
'Error getting '.$urltograbbis.
': '.$tmpgeturl[
'http_code'],
null,
'errors');
1501 $alreadygrabbed[$urltograbbis] = 1;
1505 $fp = fopen($filetosave,
"w");
1506 fwrite($fp, $tmpgeturl[
'content']);
1514 $tmp = preg_replace(
'/'.preg_quote($regs[0][$key],
'/').
'/i',
'background'.$regs[1][$key].
'url("'.DOL_URL_ROOT.
'/viewimage.php?modulepart=medias&file='.$filename.
'")', $tmp);
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed information (by default a local PHP server timestamp) Rep...
dol_string_nohtmltag($stringtoclean, $removelinefeed=1, $pagecodeto='UTF-8', $strip_tags=0, $removedoublespaces=1)
Clean a string from all HTML tags and entities.
dolChmod($filepath, $newmask='')
Change mod of a file.
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
dol_escape_json($stringtoescape)
Returns text escaped for inclusion into javascript code.
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_getdate($timestamp, $fast=false, $forcetimezone='')
Return an array with locale date info.
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...
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).
getListOfPossibleImageExt($acceptsvg=0)
Return if a filename is file name of a supported image format.
getAllImages($object, $objectpage, $urltograb, &$tmp, &$action, $modifylinks=0, $grabimages=1, $grabimagesinto='subpage')
Download all images found into page content $tmp.
getImagePublicURLOfObject($object, $no=1, $extName='')
Return HTML content to add structured data for an article, news or Blog Post.
redirectToContainer($containerref, $containeraliasalt='', $containerid=0, $permanent=0, $parameters=array())
Format img tags to introduce viewimage on img src.
getPublicFilesOfObject($object)
Return list of public files of a given object.
getImageFromHtmlContent($htmlContent, $imageNumber=1)
Return the URL of an image found into a HTML content.
dolStripPhpCode($str, $replacewith='')
Remove PHP code part from a string.
getNbOfImagePublicURLOfObject($object)
Return HTML content to add structured data for an article, news or Blog Post.
getStructuredData($type, $data=array())
Return HTML content to add structured data for an article, news or Blog Post.
dolWebsiteReplacementOfLinks($website, $content, $removephppart=0, $contenttype='html', $containerid=0)
Convert a page content to have correct links (based on DOL_URL_ROOT) into an html content.
getPagesFromSearchCriterias($type, $algo, $searchstring, $max=25, $sortfield='date_creation', $sortorder='DESC', $langcode='', $otherfilters=[], $status=1)
Return list of containers object that match a criteria.
dolWebsiteIncrementCounter($websiteid, $websitepagetype, $websitepageid)
Increase the website counter of page access.
dolReplaceSmileyCodeWithUTF8($content)
Converts smiley string into the utf8 sequence.
includeContainer($containerref)
Clean an HTML page to report only content, so we can include it into another page.
dolKeepOnlyPhpCode($str)
Keep only PHP code part from a HTML string page.
dolWebsiteOutput($content, $contenttype='html', $containerid=0)
Render a string of an HTML content and output it.
getSocialNetworkHeaderCards($params=null)
Return HTML content to add as header card for an article, news or Blog Post or home page.
getSocialNetworkSharingLinks($socialnetworks='')
Return HTML content to add structured data for an article, news or Blog Post.