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;
290 '@phan-var-force WebSite $website';
294 dol_syslog(
"dolWebsiteOutput start - contenttype=".$contenttype.
" containerid=".$containerid.
" USEDOLIBARREDITOR=".(defined(
'USEDOLIBARREDITOR') ?
'1' :
'').
" USEDOLIBARRSERVER=".(defined(
'USEDOLIBARRSERVER') ?
'1' :
'').
' includehtmlcontentopened='.$includehtmlcontentopened);
299 $urlwithouturlroot = preg_replace(
'/'.preg_quote(DOL_URL_ROOT,
'/').
'$/i',
'', trim($dolibarr_main_url_root));
300 $urlwithroot = $urlwithouturlroot.DOL_URL_ROOT;
303 if (defined(
'USEDOLIBARREDITOR')) {
305 if ($contenttype ==
'html') {
306 $content = preg_replace(
'/<head>.*<\/head>/ims',
'', $content);
307 $content = preg_replace(
'/^.*<body(\s[^>]*)*>/ims',
'', $content);
308 $content = preg_replace(
'/<\/body(\s[^>]*)*>.*$/ims',
'', $content);
310 } elseif (defined(
'USEDOLIBARRSERVER')) {
311 $content = str_replace(
'<link rel="stylesheet" href="/styles.css',
'<link rel="stylesheet" href="styles.css', $content);
312 $content = str_replace(
' async src="/javascript.js',
' async src="javascript.js', $content);
315 $content = str_replace(
'href="styles.css.php',
'href="!~!~!~styles.css.php', $content);
316 $content = str_replace(
'src="javascript.css.php',
'src="!~!~!~javascript.css.php', $content);
317 $content = str_replace(
'href="http',
'href="!~!~!~http', $content);
318 $content = str_replace(
'xlink:href="',
'xlink:href="!~!~!~', $content);
319 $content = str_replace(
'href="//',
'href="!~!~!~//', $content);
320 $content = str_replace(
'src="//',
'src="!~!~!~//', $content);
321 $content = str_replace(array(
'src="viewimage.php',
'src="/viewimage.php'),
'src="!~!~!~/viewimage.php', $content);
322 $content = str_replace(
'src="'.DOL_URL_ROOT.
'/viewimage.php',
'src="!~!~!~'.DOL_URL_ROOT.
'/viewimage.php', $content);
323 $content = str_replace(array(
'href="document.php',
'href="/document.php'),
'href="!~!~!~/document.php', $content);
324 $content = str_replace(
'href="'.DOL_URL_ROOT.
'/document.php',
'href="!~!~!~'.DOL_URL_ROOT.
'/document.php', $content);
327 $content = preg_replace(
'/(href=")\/\"/',
'\1!~!~!~'.DOL_URL_ROOT.
'/public/website/index.php?website='.$website->ref.
'"', $content, -1, $nbrep);
329 $content = preg_replace(
'/(href=")\/?([^:\"\!]*)\.php(#[^\"<>]*)?\"/',
'\1!~!~!~'.DOL_URL_ROOT.
'/public/website/index.php?website='.$website->ref.
'&pageref=\2\3"', $content, -1, $nbrep);
333 $content = preg_replace(
'/(href=")\/?([^:\"\!]*)\.php\?([^#\"<>]*)(#[^\"<>]*)?\"/',
'\1!~!~!~'.DOL_URL_ROOT.
'/public/website/index.php?website='.$website->ref.
'&pageref=\2&\3\4"', $content, -1, $nbrep);
335 $content = preg_replace(
'/([\'"])_service_([^\'"]+)\.php\1/',
'\1!~!~!~' . DOL_URL_ROOT .
'/public/website/index.php?website=' . $website->ref .
'&pageref=_service_\2\1', $content, -1, $nbrep);
337 $content = preg_replace(
'/([\'"])_library_([^\'"]+)\.php\1/',
'\1!~!~!~' . DOL_URL_ROOT .
'/public/website/index.php?website=' . $website->ref .
'&pageref=_library_\2\1', $content, -1, $nbrep);
339 $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);
342 $content = preg_replace(
'/(href=")(\/?document\.php\?[^\"]*modulepart=[^\"]*)(\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'\2\3', $content, -1, $nbrep);
343 $content = preg_replace(
'/(src=")(\/?document\.php\?[^\"]*modulepart=[^\"]*)(\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'\2\3', $content, -1, $nbrep);
346 $content = preg_replace(
'/(href=")(\/?viewimage\.php\?[^\"]*modulepart=[^\"]*)(\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'\2\3', $content, -1, $nbrep);
347 $content = preg_replace(
'/(src=")(\/?viewimage\.php\?[^\"]*modulepart=[^\"]*)(\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'\2\3', $content, -1, $nbrep);
348 $content = preg_replace(
'/(url\(")(\/?viewimage\.php\?[^\"]*modulepart=[^\"]*)(\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'\2\3', $content, -1, $nbrep);
351 $content = preg_replace(
'/url\((["\']?)\/?medias\//',
'url(\1!~!~!~'.DOL_URL_ROOT.
'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
352 $content = preg_replace(
'/data-slide-bg=(["\']?)\/?medias\//',
'data-slide-bg=\1!~!~!~'.DOL_URL_ROOT.
'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
356 $content = preg_replace(
'/(<img[^>]*src=")\/?medias\//',
'\1!~!~!~'.DOL_URL_ROOT.
'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
358 $content = preg_replace(
'/(<img[^>]*src=")\/?([^:\"\!]+)\"/',
'\1!~!~!~'.DOL_URL_ROOT.
'/viewimage.php?modulepart=medias&file=\2"', $content, -1, $nbrep);
360 $content = preg_replace(
'/(<img[^>]*src=")(\/?viewimage\.php)/',
'\1!~!~!~'.DOL_URL_ROOT.
'/viewimage.php', $content, -1, $nbrep);
363 $content = preg_replace(
'/(action=")\/?([^:\"]*)(\.php\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'/public/website/index.php?website='.$website->ref.
'&pageref=\2"', $content, -1, $nbrep);
366 $content = str_replace(
'src="!~!~!~/viewimage.php',
'src="!~!~!~'.DOL_URL_ROOT.
'/viewimage.php', $content);
367 $content = str_replace(
'href="!~!~!~/document.php',
'href="!~!~!~'.DOL_URL_ROOT.
'/document.php', $content);
370 if (empty($includehtmlcontentopened)) {
371 $content = str_replace(
'!~!~!~',
'', $content);
374 $symlinktomediaexists = 1;
375 if ($website->virtualhost) {
376 $content = preg_replace(
'/^(<link[^>]*rel="canonical" href=")\//m',
'\1'.$website->virtualhost.
'/', $content, -1, $nbrep);
385 if (!$symlinktomediaexists) {
387 $content = preg_replace(
'/(<img[^>]*src=")\/?image\//',
'\1/wrapper.php?modulepart=medias&file=medias/image/', $content, -1, $nbrep);
388 $content = preg_replace(
'/(url\(["\']?)\/?image\//',
'\1/wrapper.php?modulepart=medias&file=medias/image/', $content, -1, $nbrep);
390 $content = preg_replace(
'/(<script[^>]*src=")[^\"]*document\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2modulepart=medias\3file=\4\5', $content, -1, $nbrep);
391 $content = preg_replace(
'/(<a[^>]*href=")[^\"]*document\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2modulepart=medias\3file=\4\5', $content, -1, $nbrep);
393 $content = preg_replace(
'/(<a[^>]*href=")[^\"]*viewimage\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2modulepart=medias\3file=\4\5', $content, -1, $nbrep);
394 $content = preg_replace(
'/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2modulepart=medias\3file=\4\5', $content, -1, $nbrep);
395 $content = preg_replace(
'/(url\(["\']?)[^\)]*viewimage\.php([^\)]*)modulepart=medias([^\)]*)file=([^\)]*)(["\']?\))/',
'\1/wrapper.php\2modulepart=medias\3file=\4\5', $content, -1, $nbrep);
397 $content = preg_replace(
'/(<a[^>]*href=")[^\"]*viewimage\.php([^\"]*)hashp=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2hashp=\3\4', $content, -1, $nbrep);
398 $content = preg_replace(
'/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)hashp=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2hashp=\3\4', $content, -1, $nbrep);
399 $content = preg_replace(
'/(url\(["\']?)[^\)]*viewimage\.php([^\)]*)hashp=([^\)]*)(["\']?\))/',
'\1/wrapper.php\2hashp\3\4', $content, -1, $nbrep);
401 $content = preg_replace(
'/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)modulepart=mycompany([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2modulepart=mycompany\3file=\4\5', $content, -1, $nbrep);
404 $content = preg_replace(
'/(<img[^>]*src=")\/?viewimage\.php/',
'\1/wrapper.php', $content, -1, $nbrep);
405 $content = preg_replace(
'/(<a[^>]*href=")\/?documents\.php/',
'\1/wrapper.php', $content, -1, $nbrep);
408 $content = preg_replace(
'/(<img[^>]*src=")\/?image\//',
'\1/medias/image/', $content, -1, $nbrep);
409 $content = preg_replace(
'/(url\(["\']?)\/?image\//',
'\1/medias/image/', $content, -1, $nbrep);
411 $content = preg_replace(
'/(<script[^>]*src=")[^\"]*document\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/medias/\4\5', $content, -1, $nbrep);
412 $content = preg_replace(
'/(<a[^>]*href=")[^\"]*document\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/medias/\4\5', $content, -1, $nbrep);
414 $content = preg_replace(
'/(<a[^>]*href=")[^\"]*viewimage\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/medias/\4\5', $content, -1, $nbrep);
415 $content = preg_replace(
'/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/medias/\4\5', $content, -1, $nbrep);
416 $content = preg_replace(
'/(url\(["\']?)[^\)]*viewimage\.php([^\)]*)modulepart=medias([^\)]*)file=([^\)]*)(["\']?\))/',
'\1/medias/\4\5', $content, -1, $nbrep);
418 $content = preg_replace(
'/(<a[^>]*href=")[^\"]*viewimage\.php([^\"]*)hashp=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2hashp=\3\4', $content, -1, $nbrep);
419 $content = preg_replace(
'/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)hashp=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2hashp=\3\4', $content, -1, $nbrep);
420 $content = preg_replace(
'/(url\(["\']?)[^\)]*viewimage\.php([^\)]*)hashp=([^\)]*)(["\']?\))/',
'\1/wrapper.php\2hashp=\3\4', $content, -1, $nbrep);
422 $content = preg_replace(
'/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)modulepart=mycompany([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2modulepart=mycompany\3file=\4\5', $content, -1, $nbrep);
425 $content = preg_replace(
'/(<img[^>]*src=")\/?viewimage\.php/',
'\1/wrapper.php', $content, -1, $nbrep);
426 $content = preg_replace(
'/(<a[^>]*href=")\/?document\.php/',
'\1/wrapper.php', $content, -1, $nbrep);
430 if (!defined(
'USEDOLIBARREDITOR')) {
431 $content = str_replace(
' contenteditable="true"',
' contenteditable="false"', $content);
435 $content = str_replace(
'<body id="bodywebsite" class="bodywebsite',
'<body id="bodywebsite" class="bodywebsite ' .
getDolGlobalString(
'WEBSITE_ADD_CSS_TO_BODY'), $content);
457 if (in_array($websitepagetype, array(
'blogpost',
'page'))) {
462 $sql =
"UPDATE ".$db->prefix().
"website SET ";
463 $sql .=
" pageviews_total = pageviews_total + 1,";
464 $sql .=
" pageviews_month = pageviews_month + 1,";
466 $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').
",";
467 $sql .=
" lastaccess = '".$db->idate(
dol_now(
'gmt'),
'gmt').
"',";
468 $sql .=
" lastpageid = ".((int) $websitepageid);
469 $sql .=
" WHERE rowid = ".((int) $websiteid);
471 $resql = $db->query($sql);
519function redirectToContainer($containerref, $containeraliasalt =
'', $containerid = 0, $permanent = 0, $parameters = array())
521 global $db, $website;
522 '@phan-var-force WebSite $website';
528 if ($containeraliasalt) {
529 include_once DOL_DOCUMENT_ROOT.
'/website/class/websitepage.class.php';
532 $result = $tmpwebsitepage->fetch(0, $website->id,
'', $containeraliasalt);
534 $containerref = $tmpwebsitepage->pageurl;
536 print
"Error, page contains a redirect to the alternative alias '".$containeraliasalt.
"' that does not exists in web site (".$website->id.
" / ".$website->ref.
")";
541 if (defined(
'USEDOLIBARREDITOR')) {
545 $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.";
546 setEventMessages($text,
null,
'warnings',
'WEBSITEREDIRECTDISABLED'.$containerref);
550 if (defined(
'USEDOLIBARRSERVER')) {
552 if (!$containeraliasalt) {
553 include_once DOL_DOCUMENT_ROOT.
'/website/class/websitepage.class.php';
556 $result = $tmpwebsitepage->fetch(0, $website->id, $containerref);
557 unset($tmpwebsitepage);
560 $currenturi = $_SERVER[
"REQUEST_URI"];
562 if (preg_match(
'/&pageref=([^&]+)/', $currenturi, $regtmp)) {
563 if ($regtmp[0] == $containerref) {
564 print
"Error, page with uri '.$currenturi.' try a redirect to the same alias page '".$containerref.
"' in web site '".$website->ref.
"'";
567 $newurl = preg_replace(
'/&pageref=([^&]+)/',
'&pageref='.$containerref, $currenturi);
570 $newurl = $currenturi.
'&pageref='.urlencode($containerref);
574 $newurl =
'/'.$containerref.
'.php';
575 $newurl .= (empty($_SERVER[
"QUERY_STRING"]) ?
'' :
'?'.$_SERVER[
"QUERY_STRING"]);
579 if (!empty($parameters)) {
580 $separator = (parse_url($newurl, PHP_URL_QUERY) ==
null) ?
'?' :
'&';
581 $newurl = $newurl . $separator . http_build_query($parameters);
584 header(
"Status: 301 Moved Permanently",
false, 301);
586 header(
"Location: ".$newurl);
589 print
"Error, page contains a redirect to the alias page '".$containerref.
"' that does not exists in web site (".$website->id.
" / ".$website->ref.
")";
604 global $conf, $db, $hookmanager, $langs, $mysoc, $user, $website, $websitepage, $weblangs;
605 global $includehtmlcontentopened;
606 global $websitekey, $websitepagefile;
607 '@phan-var-force WebSite $website';
611 if (!preg_match(
'/\.php$/i', $containerref)) {
612 $containerref .=
'.php';
615 $fullpathfile = DOL_DATA_ROOT.($conf->entity > 1 ?
'/'.$conf->entity :
'').
'/website/'.$websitekey.
'/'.$containerref;
617 if (empty($includehtmlcontentopened)) {
618 $includehtmlcontentopened = 0;
620 $includehtmlcontentopened++;
621 if ($includehtmlcontentopened > $MAXLEVEL) {
622 print
'ERROR: RECURSIVE CONTENT LEVEL. Depth of recursive call is more than the limit of '.((int) $MAXLEVEL).
".\n";
633 $res = @include $fullpathfile;
634 $tmpoutput = ob_get_contents();
638 if (!empty($websitepage->type_container) && !in_array($websitepage->type_container, array(
'library',
'service'))) {
639 print
"\n".
'<!-- include '.$websitekey.
'/'.$containerref.(is_object($websitepage) ?
' parent id='.$websitepage->id :
'').
' level = '.$includehtmlcontentopened.
' -->'.
"\n";
641 print preg_replace(array(
'/^.*<body[^>]*>/ims',
'/<\/body>.*$/ims'), array(
'',
''), $tmpoutput);
644 print
'ERROR: FAILED TO INCLUDE PAGE '.$containerref.
".\n";
647 $includehtmlcontentopened--;
662 global $conf, $db, $hookmanager, $langs, $mysoc, $user, $website, $websitepage, $weblangs, $pagelangs;
663 '@phan-var-force WebSite $website';
665 $type = strtolower($type);
667 if ($type ==
'software') {
668 $ret =
'<!-- Add structured data for entry in a software annuary -->'.
"\n";
669 $ret .=
'<script nonce="'.getNonce().
'" type="application/ld+json">'.
"\n";
671 "@context": "https://schema.org",
672 "@type": "SoftwareApplication",
673 "name": "'.dol_escape_json($data[
'name']).
'",
675 "applicationCategory": "https://schema.org/'.
dol_escape_json($data[
'applicationCategory']).
'",';
676 if (!empty($data[
'ratingcount'])) {
679 "@type": "AggregateRating",
680 "ratingValue": "'.dol_escape_json($data[
'ratingvalue']).
'",
687 "price": "'.dol_escape_json($data[
'price']).
'",
688 "priceCurrency": "'.
dol_escape_json($data[
'currency'] ? $data[
'currency'] : $conf->currency).
'"
691 $ret .=
'</script>'.
"\n";
692 } elseif ($type ==
'organization') {
693 $companyname = $mysoc->name;
696 $ret =
'<!-- Add structured data for organization -->'.
"\n";
697 $ret .=
'<script nonce="'.getNonce().
'" type="application/ld+json">'.
"\n";
699 "@context": "https://schema.org",
700 "@type": "Organization",
701 "name": "'.dol_escape_json(!empty($data[
'name']) ? $data[
'name'] : $companyname).
'",
702 "url": "'.
dol_escape_json(!empty($data[
'url']) ? $data[
'url'] : $url).
'",
703 "logo": "'.($data[
'logo'] ?
dol_escape_json($data[
'logo']) :
'/wrapper.php?modulepart=mycompany&file=logos%2F'.urlencode($mysoc->logo)).
'",
705 "@type": "ContactPoint",
706 "contactType": "Contact",
707 "email": "'.
dol_escape_json(!empty($data[
'email']) ? $data[
'email'] : $mysoc->email).
'"
709 if (is_array($mysoc->socialnetworks) && count($mysoc->socialnetworks) > 0) {
711 $ret .=
'"sameAs": [';
713 foreach ($mysoc->socialnetworks as $key => $value) {
714 if ($key ==
'linkedin') {
715 $ret .=
'"https://www.'.$key.
'.com/company/'.
dol_escape_json($value).
'"';
716 } elseif ($key ==
'youtube') {
722 if ($i < count($mysoc->socialnetworks)) {
729 $ret .=
'</script>'.
"\n";
730 } elseif ($type ==
'blogpost') {
731 if (!empty($websitepage->author_alias)) {
736 $pageurl = $websitepage->pageurl;
737 $title = $websitepage->title;
738 $image = $websitepage->image;
739 $companyname = $mysoc->name;
740 $description = $websitepage->description;
742 $pageurl = str_replace(
'__WEBSITE_KEY__', $website->ref, $pageurl);
743 $title = str_replace(
'__WEBSITE_KEY__', $website->ref, $title);
744 $image =
'/medias'.(preg_match(
'/^\//', $image) ?
'' :
'/').str_replace(
'__WEBSITE_KEY__', $website->ref, $image);
745 $companyname = str_replace(
'__WEBSITE_KEY__', $website->ref, $companyname);
746 $description = str_replace(
'__WEBSITE_KEY__', $website->ref, $description);
748 $ret =
'<!-- Add structured data for blog post -->'.
"\n";
749 $ret .=
'<script nonce="'.getNonce().
'" type="application/ld+json">'.
"\n";
751 "@context": "https://schema.org",
752 "@type": "NewsArticle",
753 "mainEntityOfPage": {
755 "@id": "'.dol_escape_json($pageurl).
'"
761 "dateCreated": "'.
dol_print_date($websitepage->date_creation,
'dayhourrfc').
'",
762 "datePublished": "'.
dol_print_date($websitepage->date_creation,
'dayhourrfc').
'",
763 "dateModified": "'.
dol_print_date($websitepage->date_modification,
'dayhourrfc').
'",
769 "@type": "Organization",
772 "@type": "ImageObject",
773 "url": "/wrapper.php?modulepart=mycompany&file=logos%2F'.urlencode($mysoc->logo).
'"
776 if ($websitepage->keywords) {
777 $ret .=
'"keywords": [';
779 $arrayofkeywords = explode(
',', $websitepage->keywords);
780 foreach ($arrayofkeywords as $keyword) {
781 $ret .=
'"'.dol_escape_json($keyword).
'"';
783 if ($i < count($arrayofkeywords)) {
789 $ret .=
'"description": "'.dol_escape_json($description).
'"';
790 $ret .=
"\n".
'}'.
"\n";
791 $ret .=
'</script>'.
"\n";
793 $ret =
'<!-- no structured data inserted inline inside blogpost because no author_alias defined -->'.
"\n";
795 } elseif ($type ==
'product') {
796 $ret =
'<!-- Add structured data for product -->'.
"\n";
797 $ret .=
'<script nonce="'.getNonce().
'" type="application/ld+json">'.
"\n";
799 "@context": "https://schema.org/",
801 "name": "'.dol_escape_json($data[
'label']).
'",
818 "url": "https://example.com/anvil",
819 "priceCurrency": "'.
dol_escape_json($data[
'currency'] ? $data[
'currency'] : $conf->currency).
'",
821 "itemCondition": "https://schema.org/UsedCondition",
822 "availability": "https://schema.org/InStock",
824 "@type": "Organization",
829 $ret .=
'</script>'.
"\n";
830 } elseif ($type ==
'qa') {
831 $ret =
'<!-- Add structured data for QA -->'.
"\n";
832 $ret .=
'<script nonce="'.getNonce().
'" type="application/ld+json">'.
"\n";
834 "@context": "https://schema.org/",
838 "name": "'.dol_escape_json($data[
'name']).
'",
855 $ret .=
'</script>'.
"\n";
870 global $conf, $db, $hookmanager, $langs, $mysoc, $user, $website, $websitepage, $weblangs;
871 '@phan-var-force WebSite $website';
875 if ($website->virtualhost) {
876 $pageurl = $websitepage->pageurl;
877 $title = $websitepage->title;
878 $image = $websitepage->image;
879 $companyname = $mysoc->name;
880 $description = $websitepage->description;
882 $pageurl = str_replace(
'__WEBSITE_KEY__', $website->ref, $pageurl);
883 $title = str_replace(
'__WEBSITE_KEY__', $website->ref, $title);
884 $image =
'/medias'.(preg_match(
'/^\//', $image) ?
'' :
'/').str_replace(
'__WEBSITE_KEY__', $website->ref, $image);
885 $companyname = str_replace(
'__WEBSITE_KEY__', $website->ref, $companyname);
886 $description = str_replace(
'__WEBSITE_KEY__', $website->ref, $description);
889 if ($websitepage->lang) {
890 $shortlangcode = substr($websitepage->lang, 0, 2);
892 if (empty($shortlangcode)) {
893 $shortlangcode = substr($website->lang, 0, 2);
896 $fullurl = $website->virtualhost.
'/'.$websitepage->pageurl.
'.php';
897 $canonicalurl = $website->virtualhost.(($websitepage->id == $website->fk_default_home) ?
'/' : (($shortlangcode != substr($website->lang, 0, 2) ?
'/'.$shortlangcode :
'').
'/'.$websitepage->pageurl.
'.php'));
898 $hashtags = trim(implode(
' #', array_map(
'trim', explode(
',', $websitepage->keywords))));
901 $out .=
'<meta name="og:type" content="website">'.
"\n";
902 $out .=
'<meta name="og:title" content="'.$websitepage->title.
'">'.
"\n";
903 if ($websitepage->image) {
904 $out .=
'<meta name="og:image" content="'.$website->virtualhost.$image.
'">'.
"\n";
906 $out .=
'<meta name="og:url" content="'.$canonicalurl.
'">'.
"\n";
909 $out .=
'<meta name="twitter:card" content="summary">'.
"\n";
910 if (!empty($params) && !empty($params[
'twitter_account'])) {
911 $out .=
'<meta name="twitter:site" content="@'.$params[
'twitter_account'].
'">'.
"\n";
912 $out .=
'<meta name="twitter:creator" content="@'.$params[
'twitter_account'].
'">'.
"\n";
914 $out .=
'<meta name="twitter:title" content="'.$websitepage->title.
'">'.
"\n";
915 if ($websitepage->description) {
916 $out .=
'<meta name="twitter:description" content="'.$websitepage->description.
'">'.
"\n";
918 if ($websitepage->image) {
919 $out .=
'<meta name="twitter:image" content="'.$website->virtualhost.$image.
'">'.
"\n";
946 global $website, $websitepage;
947 '@phan-var-force WebSite $website';
949 $out =
'<!-- section for social network sharing of page -->'.
"\n";
951 if ($website->virtualhost) {
952 $fullurl = $website->virtualhost.
'/'.$websitepage->pageurl.
'.php';
953 $hashtags = trim(implode(
' #', array_map(
'trim', explode(
',', $websitepage->keywords))));
955 $out .=
'<div class="dol-social-share">'.
"\n";
958 if (empty($socialnetworks) || preg_match(
'/twitter/', $socialnetworks)) {
959 $out .=
'<div class="dol-social-share-tw">'.
"\n";
960 $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>';
961 $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>';
962 $out .=
'</div>'.
"\n";
966 if (empty($socialnetworks) || preg_match(
'/reddit/', $socialnetworks)) {
967 $out .=
'<div class="dol-social-share-reddit">'.
"\n";
968 $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">';
969 $out .= '<span class="dol-social-share-reddit-span
">Reddit</span>';
971 $out .= '</div>'."\n
";
975 if (empty($socialnetworks) || preg_match('/facebook/', $socialnetworks)) {
976 $out .= '<div class="dol-social-share-fbl
">'."\n
";
977 $out .= '<a href="https:
978 $out .=
'<span class="dol-social-share-fbl-span">Facebook</span>';
983 $out .=
"\n</div>\n";
985 $out .=
'<!-- virtual host not defined in CMS. No way to add sharing buttons -->'.
"\n";
987 $out .=
'<!-- section end for social network sharing of page -->'.
"\n";
1006 include_once DOL_DOCUMENT_ROOT.
'/core/lib/images.lib.php';
1008 $regexforimg =
'('.$regexforimg.
')$';
1010 $sql =
"SELECT COUNT(rowid) as nb";
1011 $sql .=
" FROM ".MAIN_DB_PREFIX.
"ecm_files";
1012 $sql .=
" WHERE entity IN (".getEntity(
$object->element).
")";
1013 $sql .=
" AND src_object_type = '".$db->escape(
$object->element).
"' AND src_object_id = ".((int)
$object->id);
1014 $sql .=
" AND ".$db->regexpsql(
'filename', $regexforimg, 1);
1015 $sql .=
" AND share IS NOT NULL";
1017 $resql = $db->query($sql);
1019 $obj = $db->fetch_object($resql);
1044 include_once DOL_DOCUMENT_ROOT.
'/core/lib/images.lib.php';
1046 $regexforimg =
'('.$regexforimg.
')$';
1048 $sql =
"SELECT rowid, ref, share, filename, cover, position";
1049 $sql .=
" FROM ".MAIN_DB_PREFIX.
"ecm_files";
1050 $sql .=
" WHERE entity IN (".getEntity(
$object->element).
")";
1051 $sql .=
" AND src_object_type = '".$db->escape(
$object->element).
"' AND src_object_id = ".((int)
$object->id);
1052 $sql .=
" AND ".$db->regexpsql(
'filename', $regexforimg, 1);
1053 $sql .= $db->order(
"cover,position,rowid",
"ASC,ASC,ASC");
1055 $resql = $db->query($sql);
1057 $num = $db->num_rows($resql);
1060 $foundnotshared = 0;
1062 $obj = $db->fetch_object($resql);
1064 if (empty($obj->share)) {
1069 if (defined(
'USEDOLIBARRSERVER') || defined(
'USEDOLIBARREDITOR')) {
1070 $image_path = DOL_URL_ROOT.
'/viewimage.php?hashp='.urlencode($obj->share);
1072 $image_path =
'/wrapper.php?hashp='.urlencode($obj->share);
1076 $image_path .=
'&extname='.urlencode($extName);
1080 if ($found >= $no) {
1085 if (!$found && $foundnotshared) {
1086 if (defined(
'USEDOLIBARRSERVER') || defined(
'USEDOLIBARREDITOR')) {
1087 $image_path = DOL_URL_ROOT.
'/viewimage.php?modulepart=common&file=nophotopublic.png';
1089 $image_path =
'/wrapper.php?modulepart=common&file=nophotopublic.png';
1094 if (empty($image_path)) {
1095 if (defined(
'USEDOLIBARRSERVER') || defined(
'USEDOLIBARREDITOR')) {
1096 $image_path = DOL_URL_ROOT.
'/viewimage.php?modulepart=common&file=nophoto.png';
1098 $image_path =
'/wrapper.php?modulepart=common&file=nophoto.png';
1118 include_once DOL_DOCUMENT_ROOT.
'/core/lib/images.lib.php';
1120 $regexforimg =
'/('.$regexforimg.
')$/i';
1122 $sql =
"SELECT rowid, ref, share, filename, cover, position";
1123 $sql .=
" FROM ".MAIN_DB_PREFIX.
"ecm_files";
1124 $sql .=
" WHERE entity IN (".getEntity(
$object->element).
")";
1125 $sql .=
" AND src_object_type = '".$db->escape(
$object->element).
"' AND src_object_id = ".((int)
$object->id);
1126 $sql .= $db->order(
"cover,position,rowid",
"ASC,ASC,ASC");
1128 $resql = $db->query($sql);
1130 $num = $db->num_rows($resql);
1133 $obj = $db->fetch_object($resql);
1135 if (!empty($obj->share)) {
1136 $files[$obj->rowid][
'filename'] = $obj->filename;
1137 $files[$obj->rowid][
'position'] = $obj->position;
1138 if (defined(
'USEDOLIBARRSERVER') || defined(
'USEDOLIBARREDITOR')) {
1139 if (preg_match($regexforimg, $obj->filename)) {
1140 $files[$obj->rowid][
'url'] = DOL_URL_ROOT.
'/viewimage.php?hashp='.urlencode($obj->share);
1142 $files[$obj->rowid][
'url'] = DOL_URL_ROOT.
'/document.php?hashp='.urlencode($obj->share);
1145 $files[$obj->rowid][
'url'] =
'/wrapper.php?hashp='.urlencode($obj->share);
1172function getPagesFromSearchCriterias($type, $algo, $searchstring, $max = 25, $sortfield =
'date_creation', $sortorder =
'DESC', $langcode =
'', $otherfilters = [], $status = 1)
1174 global $conf, $db, $hookmanager, $langs, $mysoc, $user, $website, $websitepage, $weblangs;
1175 '@phan-var-force WebSite $website';
1178 $arrayresult = array(
'code' =>
'',
'list' => array());
1181 if (!is_object($weblangs)) {
1200 $tmparrayoftype = explode(
',', $type);
1214 if (!$error && (empty($max) || ($found < $max)) && (preg_match(
'/meta/', $algo) || preg_match(
'/content/', $algo))) {
1215 include_once DOL_DOCUMENT_ROOT.
'/website/class/websitepage.class.php';
1217 $sql =
'SELECT wp.rowid FROM '.MAIN_DB_PREFIX.
'website_page as wp';
1218 if (is_array($otherfilters) && !empty($otherfilters[
'category'])) {
1219 $sql .=
', '.MAIN_DB_PREFIX.
'categorie_website_page as cwp';
1221 $sql .=
" WHERE wp.fk_website = ".((int) $website->id);
1223 $sql .=
" AND wp.status = ".((int) $status);
1226 $sql .=
" AND wp.lang = '".$db->escape($langcode).
"'";
1229 $tmparrayoftype = explode(
',', $type);
1231 foreach ($tmparrayoftype as $tmptype) {
1232 $typestring .= ($typestring ?
", " :
"").
"'".$db->escape(trim($tmptype)).
"'";
1234 $sql .=
" AND wp.type_container IN (".$db->sanitize($typestring, 1).
")";
1238 if (preg_match(
'/meta/', $algo)) {
1239 $searchalgo .= ($searchalgo ?
' OR ' :
'').
"wp.title LIKE '%".$db->escape($db->escapeforlike($searchstring)).
"%' OR wp.description LIKE '%".$db->escape($db->escapeforlike($searchstring)).
"%'";
1240 $searchalgo .= ($searchalgo ?
' OR ' :
'').
"wp.keywords LIKE '".$db->escape($db->escapeforlike($searchstring)).
",%' OR wp.keywords LIKE '% ".$db->escape($db->escapeforlike($searchstring)).
"%'";
1242 if (preg_match(
'/content/', $algo)) {
1243 $searchalgo .= ($searchalgo ?
' OR ' :
'').
"wp.content LIKE '%".$db->escape($db->escapeforlike($searchstring)).
"%'";
1245 $sql .= $searchalgo;
1246 if (is_array($otherfilters) && !empty($otherfilters[
'category'])) {
1247 $sql .=
' AND cwp.fk_website_page = wp.rowid AND cwp.fk_categorie = '.((int) $otherfilters[
'category']);
1250 $sql .= $db->order($sortfield, $sortorder);
1251 $sql .= $db->plimit($max);
1254 $resql = $db->query($sql);
1258 while (($obj = $db->fetch_object($resql)) && ($i < $max || $max == 0)) {
1259 if ($obj->rowid > 0) {
1261 $tmpwebsitepage->fetch($obj->rowid);
1262 if ($tmpwebsitepage->id > 0) {
1263 $arrayresult[
'list'][$obj->rowid] = $tmpwebsitepage;
1271 $arrayresult[
'code'] = $db->lasterrno();
1272 $arrayresult[
'message'] = $db->lasterror();
1278 if (!$error && (empty($max) || ($found < $max)) && (preg_match(
'/sitefiles/', $algo))) {
1279 global $dolibarr_main_data_root;
1281 $pathofwebsite = $dolibarr_main_data_root.($conf->entity > 1 ?
'/'.$conf->entity :
'').
'/website/'.$website->ref;
1282 $filehtmlheader = $pathofwebsite.
'/htmlheader.html';
1283 $filecss = $pathofwebsite.
'/styles.css.php';
1284 $filejs = $pathofwebsite.
'/javascript.js.php';
1285 $filerobot = $pathofwebsite.
'/robots.txt';
1286 $filehtaccess = $pathofwebsite.
'/.htaccess';
1287 $filemanifestjson = $pathofwebsite.
'/manifest.json.php';
1288 $filereadme = $pathofwebsite.
'/README.md';
1290 $filecontent = file_get_contents($filehtmlheader);
1291 if ((empty($max) || ($found < $max)) && preg_match(
'/'.preg_quote($searchstring,
'/').
'/', $filecontent)) {
1292 $arrayresult[
'list'][] = array(
'type' =>
'website_htmlheadercontent');
1295 $filecontent = file_get_contents($filecss);
1296 if ((empty($max) || ($found < $max)) && preg_match(
'/'.preg_quote($searchstring,
'/').
'/', $filecontent)) {
1297 $arrayresult[
'list'][] = array(
'type' =>
'website_csscontent');
1300 $filecontent = file_get_contents($filejs);
1301 if ((empty($max) || ($found < $max)) && preg_match(
'/'.preg_quote($searchstring,
'/').
'/', $filecontent)) {
1302 $arrayresult[
'list'][] = array(
'type' =>
'website_jscontent');
1305 $filerobot = file_get_contents($filerobot);
1306 if ((empty($max) || ($found < $max)) && preg_match(
'/'.preg_quote($searchstring,
'/').
'/', $filecontent)) {
1307 $arrayresult[
'list'][] = array(
'type' =>
'website_robotcontent');
1315 $arrayresult[
'code'] =
'OK';
1316 if (empty($arrayresult[
'list'])) {
1317 $arrayresult[
'code'] =
'KO';
1318 $arrayresult[
'message'] = $weblangs->trans(
"NoRecordFound");
1322 $arrayresult[
'code'] =
'KO';
1323 $arrayresult[
'message'] =
'No supported algorithm found';
1327 return $arrayresult;
1341 $dom =
new DOMDocument();
1343 libxml_use_internal_errors(
false);
1344 if (LIBXML_VERSION < 20900) {
1348 libxml_disable_entity_loader(
true);
1352 $dom->loadHTML($htmlContent);
1355 libxml_clear_errors();
1358 $images = $dom->getElementsByTagName(
'img');
1361 if ($imageNumber > 0 && $imageNumber <= $images->length) {
1363 $img = $images->item($imageNumber - 1);
1364 if ($img instanceof DOMElement) {
1365 return $img->getAttribute(
'src');
1388function getAllImages(
$object, $objectpage, $urltograb, &$tmp, &$action, $modifylinks = 0, $grabimages = 1, $grabimagesinto =
'subpage')
1394 dol_syslog(
"Call getAllImages with grabimagesinto=".$grabimagesinto);
1396 $alreadygrabbed = array();
1398 if (preg_match(
'/\/$/', $urltograb)) {
1401 $urltograb = dirname($urltograb);
1405 preg_match_all(
'/<img([^\.\/]+)src="([^>"]+)"([^>]*)>/i', $tmp, $regs);
1407 foreach ($regs[0] as $key => $val) {
1408 if (preg_match(
'/^data:image/i', $regs[2][$key])) {
1412 if (preg_match(
'/^\//', $regs[2][$key])) {
1414 $urltograbbis = $urltograbdirrootwithoutslash.$regs[2][$key];
1416 $urltograbbis = $urltograb.
'/'.$regs[2][$key];
1419 $linkwithoutdomain = $regs[2][$key];
1420 $dirforimages =
'/'.$objectpage->pageurl;
1421 if ($grabimagesinto ==
'root') {
1426 $filetosave = $conf->medias->multidir_output[$conf->entity].
'/image/'.
$object->ref.$dirforimages.(preg_match(
'/^\//', $regs[2][$key]) ?
'' :
'/').$regs[2][$key];
1427 if (preg_match(
'/^http/', $regs[2][$key])) {
1428 $urltograbbis = $regs[2][$key];
1429 $linkwithoutdomain = preg_replace(
'/^https?:\/\/[^\/]+\//i',
'', $regs[2][$key]);
1430 $filetosave = $conf->medias->multidir_output[$conf->entity].
'/image/'.
$object->ref.$dirforimages.(preg_match(
'/^\//', $linkwithoutdomain) ?
'' :
'/').$linkwithoutdomain;
1432 $filename =
'image/'.$object->ref.$dirforimages.(preg_match(
'/^\//', $linkwithoutdomain) ?
'' :
'/').$linkwithoutdomain;
1435 $filetosave = preg_replace(
'/\/[^\/]+\/\.\./',
'', $filetosave);
1436 $filename = preg_replace(
'/\/[^\/]+\/\.\./',
'', $filename);
1438 if (empty($alreadygrabbed[$urltograbbis])) {
1440 $tmpgeturl =
getURLContent($urltograbbis,
'GET',
'', 1, array(), array(
'http',
'https'), 0);
1441 if ($tmpgeturl[
'curl_error_no']) {
1443 setEventMessages(
'Error getting '.$urltograbbis.
': '.$tmpgeturl[
'curl_error_msg'],
null,
'errors');
1445 } elseif ($tmpgeturl[
'http_code'] !=
'200') {
1447 setEventMessages(
'Error getting '.$urltograbbis.
': '.$tmpgeturl[
'http_code'],
null,
'errors');
1450 $alreadygrabbed[$urltograbbis] = 1;
1454 $fp = fopen($filetosave,
"w");
1455 fwrite($fp, $tmpgeturl[
'content']);
1463 $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);
1468 preg_match_all(
'/background([^\.\/\(;]+)url\([\"\']?([^\)\"\']*)[\"\']?\)/i', $tmp, $regs);
1470 foreach ($regs[0] as $key => $val) {
1471 if (preg_match(
'/^data:image/i', $regs[2][$key])) {
1475 if (preg_match(
'/^\//', $regs[2][$key])) {
1477 $urltograbbis = $urltograbdirrootwithoutslash.$regs[2][$key];
1479 $urltograbbis = $urltograb.
'/'.$regs[2][$key];
1482 $linkwithoutdomain = $regs[2][$key];
1484 $dirforimages =
'/'.$objectpage->pageurl;
1485 if ($grabimagesinto ==
'root') {
1489 $filetosave = $conf->medias->multidir_output[$conf->entity].
'/image/'.
$object->ref.$dirforimages.(preg_match(
'/^\//', $regs[2][$key]) ?
'' :
'/').$regs[2][$key];
1491 if (preg_match(
'/^http/', $regs[2][$key])) {
1492 $urltograbbis = $regs[2][$key];
1493 $linkwithoutdomain = preg_replace(
'/^https?:\/\/[^\/]+\//i',
'', $regs[2][$key]);
1494 $filetosave = $conf->medias->multidir_output[$conf->entity].
'/image/'.
$object->ref.$dirforimages.(preg_match(
'/^\//', $linkwithoutdomain) ?
'' :
'/').$linkwithoutdomain;
1497 $filename =
'image/'.$object->ref.$dirforimages.(preg_match(
'/^\//', $linkwithoutdomain) ?
'' :
'/').$linkwithoutdomain;
1500 $filetosave = preg_replace(
'/\/[^\/]+\/\.\./',
'', $filetosave);
1501 $filename = preg_replace(
'/\/[^\/]+\/\.\./',
'', $filename);
1503 if (empty($alreadygrabbed[$urltograbbis])) {
1505 $tmpgeturl =
getURLContent($urltograbbis,
'GET',
'', 1, array(), array(
'http',
'https'), 0);
1506 if ($tmpgeturl[
'curl_error_no']) {
1508 setEventMessages(
'Error getting '.$urltograbbis.
': '.$tmpgeturl[
'curl_error_msg'],
null,
'errors');
1510 } elseif ($tmpgeturl[
'http_code'] !=
'200') {
1512 setEventMessages(
'Error getting '.$urltograbbis.
': '.$tmpgeturl[
'http_code'],
null,
'errors');
1515 $alreadygrabbed[$urltograbbis] = 1;
1519 $fp = fopen($filetosave,
"w");
1520 fwrite($fp, $tmpgeturl[
'content']);
1528 $tmp = preg_replace(
'/'.preg_quote($regs[0][$key],
'/').
'/i',
'background'.$regs[1][$key].
'url("'.DOL_URL_ROOT.
'/viewimage.php?modulepart=medias&file='.$filename.
'")', $tmp);
1543 if (empty($postId)) {
1547 $sql =
"SELECT p.title, p.description, p.date_creation, p.image
1548 FROM ".MAIN_DB_PREFIX.
"website_page as p
1549 WHERE p.rowid = ".(intval($postId));
1551 $resql = $db->query($sql);
1553 return $db->fetch_array($resql);
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...
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
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).
dol_escape_json($stringtoescape)
Returns text escaped for inclusion into javascript code.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_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 an external URL.
getImagePublicURLOfObject($object, $no=1, $extName='')
Return the public image URL of an object.
redirectToContainer($containerref, $containeraliasalt='', $containerid=0, $permanent=0, $parameters=array())
Format img tags to introduce viewimage on img src.
getPublicFilesOfObject($object)
Return array with list of all 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 nb of images known into inde files for an object;.
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.
getNewsDetailsById($postId)
Retrieves the details of a news post by its ID.
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.