34 $str = str_replace(
'<?=',
'<?php', $str);
39 $parts = explode(
'<?php', $str);
42 foreach ($parts as $part) {
49 $partlings = explode(
'?>', $part);
50 if (!empty($partlings)) {
53 if (count($partlings) > 1) {
59 $newstr .=
'<span phptag>'.$replacewith.
'</span>'.implode(
'', $partlings);
76 $str = str_replace(
'<?=',
'<?php', $str);
81 $parts = explode(
'<?php', $str);
84 foreach ($parts as $part) {
91 $partlings = explode(
'?>', $part, 2);
92 if (!empty($partlings)) {
93 $newstr .= $partlings[0].
'?>';
95 $newstr .= $part.
'?>';
118 dol_syslog(
'dolWebsiteReplacementOfLinks start (contenttype='.$contenttype.
" containerid=".$containerid.
" USEDOLIBARREDITOR=".(defined(
'USEDOLIBARREDITOR') ?
'1' :
'').
" USEDOLIBARRSERVER=".(defined(
'USEDOLIBARRSERVER') ?
'1' :
'').
')', LOG_DEBUG);
122 $replacewith =
'...php...';
123 if ($removephppart) {
126 $content = preg_replace(
'/value="<\?php((?!\?>).)*\?>\n*/ims',
'value="'.$replacewith.
'"', $content);
128 $replacewith =
'"callto=#';
129 if ($removephppart) {
132 $content = preg_replace(
'/"callto:<\?php((?!\?>).)*\?>\n*/ims', $replacewith, $content);
134 $replacewith =
'"mailto=#';
135 if ($removephppart) {
138 $content = preg_replace(
'/"mailto:<\?php((?!\?>).)*\?>\n*/ims', $replacewith, $content);
140 $replacewith =
'src="php';
141 if ($removephppart) {
144 $content = preg_replace(
'/src="<\?php((?!\?>).)*\?>\n*/ims', $replacewith, $content);
146 $replacewith =
'href="php';
147 if ($removephppart) {
150 $content = preg_replace(
'/href="<\?php((?!\?>).)*\?>\n*/ims', $replacewith, $content);
153 $replacewith =
'...php...';
154 if ($removephppart) {
165 $content = str_replace(
'href="styles.css.php',
'href="!~!~!~styles.css.php', $content);
166 $content = str_replace(
'href="http',
'href="!~!~!~http', $content);
167 $content = str_replace(
'href="//',
'href="!~!~!~//', $content);
168 $content = str_replace(
'src="viewimage.php',
'src="!~!~!~/viewimage.php', $content);
169 $content = str_replace(
'src="/viewimage.php',
'src="!~!~!~/viewimage.php', $content);
170 $content = str_replace(
'src="'.DOL_URL_ROOT.
'/viewimage.php',
'src="!~!~!~'.DOL_URL_ROOT.
'/viewimage.php', $content);
171 $content = str_replace(
'href="document.php',
'href="!~!~!~/document.php', $content);
172 $content = str_replace(
'href="/document.php',
'href="!~!~!~/document.php', $content);
173 $content = str_replace(
'href="'.DOL_URL_ROOT.
'/document.php',
'href="!~!~!~'.DOL_URL_ROOT.
'/document.php', $content);
176 $content = preg_replace(
'/(href=")\/(#[^\"<>]*)?\"/',
'\1!~!~!~'.DOL_URL_ROOT.
'/website/index.php?website='.$website->ref.
'&pageid='.$website->fk_default_home.
'\2"', $content, -1, $nbrep);
178 $content = preg_replace(
'/(href=")\/?([^:\"\!]*)\.php(#[^\"<>]*)?\"/',
'\1!~!~!~'.DOL_URL_ROOT.
'/website/index.php?website='.$website->ref.
'&pageref=\2\3"', $content, -1, $nbrep);
180 $content = preg_replace(
'/(href=")\/?([^:\"\!]*)\.php\?([^#\"<>]*)(#[^\"<>]*)?\"/',
'\1!~!~!~'.DOL_URL_ROOT.
'/website/index.php?website='.$website->ref.
'&pageref=\2&\3\4"', $content, -1, $nbrep);
183 $content = preg_replace(
'/url\((["\']?)\/?medias\//',
'url(\1!~!~!~'.DOL_URL_ROOT.
'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
184 $content = preg_replace(
'/data-slide-bg=(["\']?)\/?medias\//',
'data-slide-bg=\1!~!~!~'.DOL_URL_ROOT.
'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
188 $content = preg_replace(
'/(<img[^>]*src=")\/?medias\//',
'\1!~!~!~'.DOL_URL_ROOT.
'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
190 $content = preg_replace(
'/(<img[^>]*src=")\/?([^:\"\!]+)\"/',
'\1!~!~!~'.DOL_URL_ROOT.
'/viewimage.php?modulepart=medias&file=\2"', $content, -1, $nbrep);
192 $content = preg_replace(
'/(<img[^>]*src=")(\/?viewimage\.php)/',
'\1!~!~!~'.DOL_URL_ROOT.
'/viewimage.php', $content, -1, $nbrep);
195 $content = preg_replace(
'/(action=")\/?([^:\"]*)(\.php\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'/website/index.php?website='.$website->ref.
'&pageref=\2"', $content, -1, $nbrep);
198 $content = preg_replace(
'/(href=")(\/?document\.php\?[^\"]*modulepart=[^\"]*)(\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'\2\3', $content, -1, $nbrep);
199 $content = preg_replace(
'/(src=")(\/?document\.php\?[^\"]*modulepart=[^\"]*)(\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'\2\3', $content, -1, $nbrep);
202 $content = preg_replace(
'/(url\(")(\/?viewimage\.php\?[^\"]*modulepart=[^\"]*)(\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'\2\3', $content, -1, $nbrep);
205 $content = str_replace(
'src="!~!~!~/viewimage.php',
'src="!~!~!~'.DOL_URL_ROOT.
'/viewimage.php', $content);
206 $content = str_replace(
'href="!~!~!~/document.php',
'href="!~!~!~'.DOL_URL_ROOT.
'/document.php', $content);
208 $content = str_replace(
'!~!~!~',
'', $content);
210 dol_syslog(
'dolWebsiteReplacementOfLinks end', LOG_DEBUG);
228 global $db, $langs, $conf, $user;
229 global $dolibarr_main_url_root, $dolibarr_main_data_root;
231 global $includehtmlcontentopened;
235 dol_syslog(
"dolWebsiteOutput start - contenttype=".$contenttype.
" containerid=".$containerid.
" USEDOLIBARREDITOR=".(defined(
'USEDOLIBARREDITOR') ?
'1' :
'').
" USEDOLIBARRSERVER=".(defined(
'USEDOLIBARRSERVER') ?
'1' :
'').
' includehtmlcontentopened='.$includehtmlcontentopened);
240 $urlwithouturlroot = preg_replace(
'/'.preg_quote(DOL_URL_ROOT,
'/').
'$/i',
'', trim($dolibarr_main_url_root));
241 $urlwithroot = $urlwithouturlroot.DOL_URL_ROOT;
244 if (defined(
'USEDOLIBARREDITOR')) {
246 if ($contenttype ==
'html') {
247 $content = preg_replace(
'/<head>.*<\/head>/ims',
'', $content);
248 $content = preg_replace(
'/^.*<body(\s[^>]*)*>/ims',
'', $content);
249 $content = preg_replace(
'/<\/body(\s[^>]*)*>.*$/ims',
'', $content);
251 } elseif (defined(
'USEDOLIBARRSERVER')) {
252 $content = str_replace(
'<link rel="stylesheet" href="/styles.css',
'<link rel="stylesheet" href="styles.css', $content);
255 $content = str_replace(
'href="styles.css.php',
'href="!~!~!~styles.css.php', $content);
256 $content = str_replace(
'href="http',
'href="!~!~!~http', $content);
257 $content = str_replace(
'href="//',
'href="!~!~!~//', $content);
258 $content = str_replace(array(
'src="viewimage.php',
'src="/viewimage.php'),
'src="!~!~!~/viewimage.php', $content);
259 $content = str_replace(
'src="'.DOL_URL_ROOT.
'/viewimage.php',
'src="!~!~!~'.DOL_URL_ROOT.
'/viewimage.php', $content);
260 $content = str_replace(array(
'href="document.php',
'href="/document.php'),
'href="!~!~!~/document.php', $content);
261 $content = str_replace(
'href="'.DOL_URL_ROOT.
'/document.php',
'href="!~!~!~'.DOL_URL_ROOT.
'/document.php', $content);
264 $content = preg_replace(
'/(href=")\/\"/',
'\1!~!~!~'.DOL_URL_ROOT.
'/public/website/index.php?website='.$website->ref.
'"', $content, -1, $nbrep);
266 $content = preg_replace(
'/(href=")\/?([^:\"\!]*)\.php(#[^\"<>]*)?\"/',
'\1!~!~!~'.DOL_URL_ROOT.
'/public/website/index.php?website='.$website->ref.
'&pageref=\2\3"', $content, -1, $nbrep);
270 $content = preg_replace(
'/(href=")\/?([^:\"\!]*)\.php\?([^#\"<>]*)(#[^\"<>]*)?\"/',
'\1!~!~!~'.DOL_URL_ROOT.
'/public/website/index.php?website='.$website->ref.
'&pageref=\2&\3\4"', $content, -1, $nbrep);
272 $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);
275 $content = preg_replace(
'/(href=")(\/?document\.php\?[^\"]*modulepart=[^\"]*)(\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'\2\3', $content, -1, $nbrep);
276 $content = preg_replace(
'/(src=")(\/?document\.php\?[^\"]*modulepart=[^\"]*)(\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'\2\3', $content, -1, $nbrep);
279 $content = preg_replace(
'/(href=")(\/?viewimage\.php\?[^\"]*modulepart=[^\"]*)(\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'\2\3', $content, -1, $nbrep);
280 $content = preg_replace(
'/(src=")(\/?viewimage\.php\?[^\"]*modulepart=[^\"]*)(\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'\2\3', $content, -1, $nbrep);
281 $content = preg_replace(
'/(url\(")(\/?viewimage\.php\?[^\"]*modulepart=[^\"]*)(\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'\2\3', $content, -1, $nbrep);
284 $content = preg_replace(
'/url\((["\']?)\/?medias\//',
'url(\1!~!~!~'.DOL_URL_ROOT.
'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
285 $content = preg_replace(
'/data-slide-bg=(["\']?)\/?medias\//',
'data-slide-bg=\1!~!~!~'.DOL_URL_ROOT.
'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
289 $content = preg_replace(
'/(<img[^>]*src=")\/?medias\//',
'\1!~!~!~'.DOL_URL_ROOT.
'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
291 $content = preg_replace(
'/(<img[^>]*src=")\/?([^:\"\!]+)\"/',
'\1!~!~!~'.DOL_URL_ROOT.
'/viewimage.php?modulepart=medias&file=\2"', $content, -1, $nbrep);
293 $content = preg_replace(
'/(<img[^>]*src=")(\/?viewimage\.php)/',
'\1!~!~!~'.DOL_URL_ROOT.
'/viewimage.php', $content, -1, $nbrep);
296 $content = preg_replace(
'/(action=")\/?([^:\"]*)(\.php\")/',
'\1!~!~!~'.DOL_URL_ROOT.
'/public/website/index.php?website='.$website->ref.
'&pageref=\2"', $content, -1, $nbrep);
299 $content = str_replace(
'src="!~!~!~/viewimage.php',
'src="!~!~!~'.DOL_URL_ROOT.
'/viewimage.php', $content);
300 $content = str_replace(
'href="!~!~!~/document.php',
'href="!~!~!~'.DOL_URL_ROOT.
'/document.php', $content);
303 if (empty($includehtmlcontentopened)) {
304 $content = str_replace(
'!~!~!~',
'', $content);
308 $symlinktomediaexists = 1;
309 if ($website->virtualhost) {
310 $content = preg_replace(
'/^(<link[^>]*rel="canonical" href=")\//m',
'\1'.$website->virtualhost.
'/', $content, -1, $nbrep);
319 if (!$symlinktomediaexists) {
321 $content = preg_replace(
'/(<img[^>]*src=")\/?image\//',
'\1/wrapper.php?modulepart=medias&file=medias/image/', $content, -1, $nbrep);
322 $content = preg_replace(
'/(url\(["\']?)\/?image\//',
'\1/wrapper.php?modulepart=medias&file=medias/image/', $content, -1, $nbrep);
324 $content = preg_replace(
'/(<script[^>]*src=")[^\"]*document\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2modulepart=medias\3file=\4\5', $content, -1, $nbrep);
325 $content = preg_replace(
'/(<a[^>]*href=")[^\"]*document\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2modulepart=medias\3file=\4\5', $content, -1, $nbrep);
327 $content = preg_replace(
'/(<a[^>]*href=")[^\"]*viewimage\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2modulepart=medias\3file=\4\5', $content, -1, $nbrep);
328 $content = preg_replace(
'/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2modulepart=medias\3file=\4\5', $content, -1, $nbrep);
329 $content = preg_replace(
'/(url\(["\']?)[^\)]*viewimage\.php([^\)]*)modulepart=medias([^\)]*)file=([^\)]*)(["\']?\))/',
'\1/wrapper.php\2modulepart=medias\3file=\4\5', $content, -1, $nbrep);
331 $content = preg_replace(
'/(<a[^>]*href=")[^\"]*viewimage\.php([^\"]*)hashp=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2hashp=\3\4', $content, -1, $nbrep);
332 $content = preg_replace(
'/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)hashp=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2hashp=\3\4', $content, -1, $nbrep);
333 $content = preg_replace(
'/(url\(["\']?)[^\)]*viewimage\.php([^\)]*)hashp=([^\)]*)(["\']?\))/',
'\1/wrapper.php\2hashp\3\4', $content, -1, $nbrep);
335 $content = preg_replace(
'/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)modulepart=mycompany([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2modulepart=mycompany\3file=\4\5', $content, -1, $nbrep);
338 $content = preg_replace(
'/(<img[^>]*src=")\/?viewimage\.php/',
'\1/wrapper.php', $content, -1, $nbrep);
339 $content = preg_replace(
'/(<a[^>]*href=")\/?documents\.php/',
'\1/wrapper.php', $content, -1, $nbrep);
342 $content = preg_replace(
'/(<img[^>]*src=")\/?image\//',
'\1/medias/image/', $content, -1, $nbrep);
343 $content = preg_replace(
'/(url\(["\']?)\/?image\//',
'\1/medias/image/', $content, -1, $nbrep);
345 $content = preg_replace(
'/(<script[^>]*src=")[^\"]*document\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/medias/\4\5', $content, -1, $nbrep);
346 $content = preg_replace(
'/(<a[^>]*href=")[^\"]*document\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/medias/\4\5', $content, -1, $nbrep);
348 $content = preg_replace(
'/(<a[^>]*href=")[^\"]*viewimage\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/medias/\4\5', $content, -1, $nbrep);
349 $content = preg_replace(
'/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/medias/\4\5', $content, -1, $nbrep);
350 $content = preg_replace(
'/(url\(["\']?)[^\)]*viewimage\.php([^\)]*)modulepart=medias([^\)]*)file=([^\)]*)(["\']?\))/',
'\1/medias/\4\5', $content, -1, $nbrep);
352 $content = preg_replace(
'/(<a[^>]*href=")[^\"]*viewimage\.php([^\"]*)hashp=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2hashp=\3\4', $content, -1, $nbrep);
353 $content = preg_replace(
'/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)hashp=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2hashp=\3\4', $content, -1, $nbrep);
354 $content = preg_replace(
'/(url\(["\']?)[^\)]*viewimage\.php([^\)]*)hashp=([^\)]*)(["\']?\))/',
'\1/wrapper.php\2hashp=\3\4', $content, -1, $nbrep);
356 $content = preg_replace(
'/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)modulepart=mycompany([^\"]*)file=([^\"]*)("[^>]*>)/',
'\1/wrapper.php\2modulepart=mycompany\3file=\4\5', $content, -1, $nbrep);
359 $content = preg_replace(
'/(<img[^>]*src=")\/?viewimage\.php/',
'\1/wrapper.php', $content, -1, $nbrep);
360 $content = preg_replace(
'/(<a[^>]*href=")\/?document\.php/',
'\1/wrapper.php', $content, -1, $nbrep);
364 if (!defined(
'USEDOLIBARREDITOR')) {
365 $content = str_replace(
' contenteditable="true"',
' contenteditable="false"', $content);
368 if (!empty($conf->global->WEBSITE_ADD_CSS_TO_BODY)) {
369 $content = str_replace(
'<body id="bodywebsite" class="bodywebsite',
'<body id="bodywebsite" class="bodywebsite '.$conf->global->WEBSITE_ADD_CSS_TO_BODY, $content);
416 global $db, $website;
422 if ($containeraliasalt) {
423 include_once DOL_DOCUMENT_ROOT.
'/website/class/websitepage.class.php';
425 $result = $tmpwebsitepage->fetch(0, $website->id,
'', $containeraliasalt);
427 $containerref = $tmpwebsitepage->pageurl;
429 print
"Error, page contains a redirect to the alternative alias '".$containeraliasalt.
"' that does not exists in web site (".$website->id.
" / ".$website->ref.
")";
434 if (defined(
'USEDOLIBARREDITOR')) {
438 $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.";
439 setEventMessages($text, null,
'warnings',
'WEBSITEREDIRECTDISABLED'.$containerref);
443 if (defined(
'USEDOLIBARRSERVER')) {
445 if (!$containeraliasalt) {
446 include_once DOL_DOCUMENT_ROOT.
'/website/class/websitepage.class.php';
448 $result = $tmpwebsitepage->fetch(0, $website->id, $containerref);
449 unset($tmpwebsitepage);
452 $currenturi = $_SERVER[
"REQUEST_URI"];
454 if (preg_match(
'/&pageref=([^&]+)/', $currenturi, $regtmp)) {
455 if ($regtmp[0] == $containerref) {
456 print
"Error, page with uri '.$currenturi.' try a redirect to the same alias page '".$containerref.
"' in web site '".$website->ref.
"'";
459 $newurl = preg_replace(
'/&pageref=([^&]+)/',
'&pageref='.$containerref, $currenturi);
462 $newurl = $currenturi.
'&pageref='.urlencode($containerref);
467 $newurl =
'/'.$containerref.
'.php';
472 header(
"Status: 301 Moved Permanently",
false, 301);
474 header(
"Location: ".$newurl.(empty($_SERVER[
"QUERY_STRING"]) ?
'' :
'?'.$_SERVER[
"QUERY_STRING"]));
477 print
"Error, page contains a redirect to the alias page '".$containerref.
"' that does not exists in web site (".$website->id.
" / ".$website->ref.
")";
492 global $conf, $db, $hookmanager, $langs, $mysoc, $user, $website, $websitepage, $weblangs;
493 global $includehtmlcontentopened;
494 global $websitekey, $websitepagefile;
498 if (!preg_match(
'/\.php$/i', $containerref)) {
499 $containerref .=
'.php';
502 $fullpathfile = DOL_DATA_ROOT.($conf->entity > 1 ?
'/'.$conf->entity :
'').
'/website/'.$websitekey.
'/'.$containerref;
504 if (empty($includehtmlcontentopened)) {
505 $includehtmlcontentopened = 0;
507 $includehtmlcontentopened++;
508 if ($includehtmlcontentopened > $MAXLEVEL) {
509 print
'ERROR: RECURSIVE CONTENT LEVEL. Depth of recursive call is more than the limit of '.((int) $MAXLEVEL).
".\n";
520 $res = include $fullpathfile;
521 $tmpoutput = ob_get_contents();
524 print
"\n".
'<!-- include '.$websitekey.
'/'.$containerref.(is_object($websitepage) ?
' parent id='.$websitepage->id :
'').
' level = '.$includehtmlcontentopened.
' -->'.
"\n";
525 print preg_replace(array(
'/^.*<body[^>]*>/ims',
'/<\/body>.*$/ims'), array(
'',
''), $tmpoutput);
528 print
'ERROR: FAILED TO INCLUDE PAGE '.$containerref.
".\n";
531 $includehtmlcontentopened--;
546 global $conf, $db, $hookmanager, $langs, $mysoc, $user, $website, $websitepage, $weblangs, $pagelangs;
548 $type = strtolower($type);
550 if ($type ==
'software') {
551 $ret =
'<!-- Add structured data for entry in a software annuary -->'.
"\n";
552 $ret .=
'<script type="application/ld+json">'.
"\n";
554 "@context": "https://schema.org",
555 "@type": "SoftwareApplication",
556 "name": "'.dol_escape_json($data[
'name']).
'",
558 "applicationCategory": "https://schema.org/'.
dol_escape_json($data[
'applicationCategory']).
'",';
559 if (!empty($data[
'ratingcount'])) {
562 "@type": "AggregateRating",
563 "ratingValue": "'.dol_escape_json($data[
'ratingvalue']).
'",
570 "price": "'.dol_escape_json($data[
'price']).
'",
571 "priceCurrency": "'.
dol_escape_json($data[
'currency'] ? $data[
'currency'] : $conf->currency).
'"
574 $ret .=
'</script>'.
"\n";
575 } elseif ($type ==
'organization') {
576 $companyname = $mysoc->name;
579 $ret =
'<!-- Add structured data for organization -->'.
"\n";
580 $ret .=
'<script type="application/ld+json">'.
"\n";
582 "@context": "https://schema.org",
583 "@type": "Organization",
584 "name": "'.dol_escape_json($data[
'name'] ? $data[
'name'] : $companyname).
'",
586 "logo": "'.($data[
'logo'] ?
dol_escape_json($data[
'logo']) :
'/wrapper.php?modulepart=mycompany&file=logos%2F'.urlencode($mysoc->logo)).
'",
588 "@type": "ContactPoint",
589 "contactType": "Contact",
590 "email": "'.
dol_escape_json($data[
'email'] ? $data[
'email'] : $mysoc->email).
'"
592 if (is_array($mysoc->socialnetworks) && count($mysoc->socialnetworks) > 0) {
594 $ret .=
'"sameAs": [';
596 foreach ($mysoc->socialnetworks as $key => $value) {
597 if ($key ==
'linkedin') {
598 $ret .=
'"https://www.'.$key.
'.com/company/'.
dol_escape_json($value).
'"';
599 } elseif ($key ==
'youtube') {
605 if ($i < count($mysoc->socialnetworks)) {
612 $ret .=
'</script>'.
"\n";
613 } elseif ($type ==
'blogpost') {
614 if (!empty($websitepage->author_alias)) {
619 $pageurl = $websitepage->pageurl;
620 $title = $websitepage->title;
621 $image = $websitepage->image;
622 $companyname = $mysoc->name;
623 $description = $websitepage->description;
625 $pageurl = str_replace(
'__WEBSITE_KEY__', $website->ref, $pageurl);
626 $title = str_replace(
'__WEBSITE_KEY__', $website->ref, $title);
627 $image =
'/medias'.(preg_match(
'/^\//', $image) ?
'' :
'/').str_replace(
'__WEBSITE_KEY__', $website->ref, $image);
628 $companyname = str_replace(
'__WEBSITE_KEY__', $website->ref, $companyname);
629 $description = str_replace(
'__WEBSITE_KEY__', $website->ref, $description);
631 $ret =
'<!-- Add structured data for blog post -->'.
"\n";
632 $ret .=
'<script type="application/ld+json">'.
"\n";
634 "@context": "https://schema.org",
635 "@type": "NewsArticle",
636 "mainEntityOfPage": {
638 "@id": "'.dol_escape_json($pageurl).
'"
644 "dateCreated": "'.
dol_print_date($websitepage->date_creation,
'dayhourrfc').
'",
645 "datePublished": "'.
dol_print_date($websitepage->date_creation,
'dayhourrfc').
'",
646 "dateModified": "'.
dol_print_date($websitepage->date_modification,
'dayhourrfc').
'",
652 "@type": "Organization",
655 "@type": "ImageObject",
656 "url": "/wrapper.php?modulepart=mycompany&file=logos%2F'.urlencode($mysoc->logo).
'"
659 if ($websitepage->keywords) {
660 $ret .=
'"keywords": [';
662 $arrayofkeywords = explode(
',', $websitepage->keywords);
663 foreach ($arrayofkeywords as $keyword) {
664 $ret .=
'"'.dol_escape_json($keyword).
'"';
666 if ($i < count($arrayofkeywords)) {
672 $ret .=
'"description": "'.dol_escape_json($description).
'"';
673 $ret .=
"\n".
'}'.
"\n";
674 $ret .=
'</script>'.
"\n";
676 $ret .=
'<!-- no structured data inserted inline inside blogpost because no author_alias defined -->'.
"\n";
678 } elseif ($type ==
'product') {
679 $ret =
'<!-- Add structured data for product -->'.
"\n";
680 $ret .=
'<script type="application/ld+json">'.
"\n";
682 "@context": "https://schema.org/",
684 "name": "'.dol_escape_json($data[
'label']).
'",
701 "url": "https://example.com/anvil",
702 "priceCurrency": "'.
dol_escape_json($data[
'currency'] ? $data[
'currency'] : $conf->currency).
'",
704 "itemCondition": "https://schema.org/UsedCondition",
705 "availability": "https://schema.org/InStock",
707 "@type": "Organization",
712 $ret .=
'</script>'.
"\n";
713 } elseif ($type ==
'qa') {
714 $ret =
'<!-- Add structured data for QA -->'.
"\n";
715 $ret .=
'<script type="application/ld+json">'.
"\n";
717 "@context": "https://schema.org/",
721 "name": "'.dol_escape_json($data[
'name']).
'",
738 $ret .=
'</script>'.
"\n";
751 global $conf, $db, $hookmanager, $langs, $mysoc, $user, $website, $websitepage, $weblangs;
755 if ($website->virtualhost) {
756 $pageurl = $websitepage->pageurl;
757 $title = $websitepage->title;
758 $image = $websitepage->image;
759 $companyname = $mysoc->name;
760 $description = $websitepage->description;
762 $pageurl = str_replace(
'__WEBSITE_KEY__', $website->ref, $pageurl);
763 $title = str_replace(
'__WEBSITE_KEY__', $website->ref, $title);
764 $image =
'/medias'.(preg_match(
'/^\//', $image) ?
'' :
'/').str_replace(
'__WEBSITE_KEY__', $website->ref, $image);
765 $companyname = str_replace(
'__WEBSITE_KEY__', $website->ref, $companyname);
766 $description = str_replace(
'__WEBSITE_KEY__', $website->ref, $description);
769 if ($websitepage->lang) {
770 $shortlangcode = substr($websitepage->lang, 0, 2);
772 if (empty($shortlangcode)) {
773 $shortlangcode = substr($website->lang, 0, 2);
776 $fullurl = $website->virtualhost.
'/'.$websitepage->pageurl.
'.php';
777 $canonicalurl = $website->virtualhost.(($websitepage->id == $website->fk_default_home) ?
'/' : (($shortlangcode != substr($website->lang, 0, 2) ?
'/'.$shortlangcode :
'').
'/'.$websitepage->pageurl.
'.php'));
778 $hashtags = trim(join(
' #', array_map(
'trim', explode(
',', $websitepage->keywords))));
781 $out .=
'<meta name="og:type" content="website">'.
"\n";
782 $out .=
'<meta name="og:title" content="'.$websitepage->title.
'">'.
"\n";
783 if ($websitepage->image) {
784 $out .=
'<meta name="og:image" content="'.$website->virtualhost.$image.
'">'.
"\n";
786 $out .=
'<meta name="og:url" content="'.$canonicalurl.
'">'.
"\n";
789 $out .=
'<meta name="twitter:card" content="summary">'.
"\n";
790 if (!empty($params) && !empty($params[
'twitter_account'])) {
791 $out .=
'<meta name="twitter:site" content="@'.$params[
'twitter_account'].
'">'.
"\n";
792 $out .=
'<meta name="twitter:creator" content="@'.$params[
'twitter_account'].
'">'.
"\n";
794 $out .=
'<meta name="twitter:title" content="'.$websitepage->title.
'">'.
"\n";
795 if ($websitepage->description) {
796 $out .=
'<meta name="twitter:description" content="'.$websitepage->description.
'">'.
"\n";
798 if ($websitepage->image) {
799 $out .=
'<meta name="twitter:image" content="'.$website->virtualhost.$image.
'">'.
"\n";
825 global $conf, $db, $hookmanager, $langs, $mysoc, $user, $website, $websitepage, $weblangs;
827 $out =
'<!-- section for social network sharing of page -->'.
"\n";
829 if ($website->virtualhost) {
830 $fullurl = $website->virtualhost.
'/'.$websitepage->pageurl.
'.php';
831 $hashtags = trim(join(
' #', array_map(
'trim', explode(
',', $websitepage->keywords))));
833 $out .=
'<div class="dol-social-share">'.
"\n";
836 $out .=
'<div class="dol-social-share-tw">'.
"\n";
837 $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>';
838 $out .=
'<script>!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>';
839 $out .=
'</div>'.
"\n";
842 $out .=
'<div class="dol-social-share-reddit">'.
"\n";
843 $out .=
'<a href="https://www.reddit.com/submit" target="_blank" rel="noopener noreferrer external" onclick="window.location = \'https://www.reddit.com/submit?url='.$fullurl.
'\';
return false">';
844 $out .= '<span class="dol-social-share-reddit-span
">Reddit</span>';
846 $out .= '</div>'."\n
";
849 $out .= '<div class="dol-social-share-fbl
">'."\n
";
850 $out .= '<div id="fb-root
"></div>'."\n
";
851 $out .= '<script>(function(d, s, id) {
852 var js, fjs = d.getElementsByTagName(s)[0];
853 if (d.getElementById(id)) return;
854 js = d.createElement(s); js.id = id;
856 fjs.parentNode.insertBefore(js, fjs);
857 }(document, \
'script\', \'facebook-jssdk\'));</script>
860 layout="button_count"
865 action="like" ></fb:like>'.
"\n";
866 $out .=
'</div>'.
"\n";
868 $out .=
"\n</div>\n";
870 $out .=
'<!-- virtual host not defined in CMS. No way to add sharing buttons -->'.
"\n";
872 $out .=
'<!-- section end for social network sharing of page -->'.
"\n";
892 function getPagesFromSearchCriterias($type, $algo, $searchstring, $max = 25, $sortfield =
'date_creation', $sortorder =
'DESC', $langcode =
'', $otherfilters =
'null', $status = 1)
894 global $conf, $db, $hookmanager, $langs, $mysoc, $user, $website, $websitepage, $weblangs;
897 $arrayresult = array(
'code'=>
'',
'list'=>array());
899 if (!is_object($weblangs)) {
903 if (empty($searchstring) && empty($type) && empty($langcode) && empty($otherfilters)) {
905 $arrayresult[
'code'] =
'KO';
906 $arrayresult[
'message'] = $weblangs->trans(
"EmptySearchString");
907 } elseif ($searchstring &&
dol_strlen($searchstring) < 2) {
908 $weblangs->load(
"errors");
910 $arrayresult[
'code'] =
'KO';
911 $arrayresult[
'message'] = $weblangs->trans(
"ErrorSearchCriteriaTooSmall");
913 $tmparrayoftype = explode(
',', $type);
927 if (!$error && (empty($max) || ($found < $max)) && (preg_match(
'/meta/', $algo) || preg_match(
'/content/', $algo))) {
928 $sql =
'SELECT wp.rowid FROM '.MAIN_DB_PREFIX.
'website_page as wp';
929 if (is_array($otherfilters) && !empty($otherfilters[
'category'])) {
930 $sql .=
', '.MAIN_DB_PREFIX.
'categorie_website_page as cwp';
932 $sql .=
" WHERE wp.fk_website = ".((int) $website->id);
934 $sql .=
" AND wp.status = ".((int) $status);
937 $sql .=
" AND wp.lang ='".$db->escape($langcode).
"'";
940 $tmparrayoftype = explode(
',', $type);
942 foreach ($tmparrayoftype as $tmptype) {
943 $typestring .= ($typestring ?
", " :
"").
"'".$db->escape(trim($tmptype)).
"'";
945 $sql .=
" AND wp.type_container IN (".$db->sanitize($typestring, 1).
")";
949 if (preg_match(
'/meta/', $algo)) {
950 $searchalgo .= ($searchalgo ?
' OR ' :
'').
"wp.title LIKE '%".$db->escapeforlike($db->escape($searchstring)).
"%' OR wp.description LIKE '%".$db->escapeforlike($db->escape($searchstring)).
"%'";
951 $searchalgo .= ($searchalgo ?
' OR ' :
'').
"wp.keywords LIKE '".$db->escapeforlike($db->escape($searchstring)).
",%' OR wp.keywords LIKE '% ".$db->escapeforlike($db->escape($searchstring)).
"%'";
953 if (preg_match(
'/content/', $algo)) {
954 $searchalgo .= ($searchalgo ?
' OR ' :
'').
"wp.content LIKE '%".$db->escapeforlike($db->escape($searchstring)).
"%'";
957 if (is_array($otherfilters) && !empty($otherfilters[
'category'])) {
958 $sql .=
' AND cwp.fk_website_page = wp.rowid AND cwp.fk_categorie = '.((int) $otherfilters[
'category']);
961 $sql .= $db->order($sortfield, $sortorder);
962 $sql .= $db->plimit($max);
965 $resql = $db->query($sql);
968 while (($obj = $db->fetch_object(
$resql)) && ($i < $max || $max == 0)) {
969 if ($obj->rowid > 0) {
971 $tmpwebsitepage->fetch($obj->rowid);
972 if ($tmpwebsitepage->id > 0) {
973 $arrayresult[
'list'][$obj->rowid] = $tmpwebsitepage;
981 $arrayresult[
'code'] = $db->lasterrno();
982 $arrayresult[
'message'] = $db->lasterror();
988 if (!$error && (empty($max) || ($found < $max)) && (preg_match(
'/sitefiles/', $algo))) {
989 global $dolibarr_main_data_root;
991 $pathofwebsite = $dolibarr_main_data_root.($conf->entity > 1 ?
'/'.$conf->entity :
'').
'/website/'.$website->ref;
992 $filehtmlheader = $pathofwebsite.
'/htmlheader.html';
993 $filecss = $pathofwebsite.
'/styles.css.php';
994 $filejs = $pathofwebsite.
'/javascript.js.php';
995 $filerobot = $pathofwebsite.
'/robots.txt';
996 $filehtaccess = $pathofwebsite.
'/.htaccess';
997 $filemanifestjson = $pathofwebsite.
'/manifest.json.php';
998 $filereadme = $pathofwebsite.
'/README.md';
1000 $filecontent = file_get_contents($filehtmlheader);
1001 if ((empty($max) || ($found < $max)) && preg_match(
'/'.preg_quote($searchstring,
'/').
'/', $filecontent)) {
1002 $arrayresult[
'list'][] = array(
'type'=>
'website_htmlheadercontent');
1005 $filecontent = file_get_contents($filecss);
1006 if ((empty($max) || ($found < $max)) && preg_match(
'/'.preg_quote($searchstring,
'/').
'/', $filecontent)) {
1007 $arrayresult[
'list'][] = array(
'type'=>
'website_csscontent');
1010 $filecontent = file_get_contents($filejs);
1011 if ((empty($max) || ($found < $max)) && preg_match(
'/'.preg_quote($searchstring,
'/').
'/', $filecontent)) {
1012 $arrayresult[
'list'][] = array(
'type'=>
'website_jscontent');
1015 $filerobot = file_get_contents($filerobot);
1016 if ((empty($max) || ($found < $max)) && preg_match(
'/'.preg_quote($searchstring,
'/').
'/', $filecontent)) {
1017 $arrayresult[
'list'][] = array(
'type'=>
'website_robotcontent');
1025 $arrayresult[
'code'] =
'OK';
1026 if (empty($arrayresult[
'list'])) {
1027 $arrayresult[
'code'] =
'KO';
1028 $arrayresult[
'message'] = $weblangs->trans(
"NoRecordFound");
1032 $arrayresult[
'code'] =
'KO';
1033 $arrayresult[
'message'] =
'No supported algorithm found';
1037 return $arrayresult;
1054 function getAllImages($object, $objectpage, $urltograb, &$tmp, &$action, $modifylinks = 0, $grabimages = 1, $grabimagesinto =
'subpage')
1060 dol_syslog(
"Call getAllImages with grabimagesinto=".$grabimagesinto);
1062 $alreadygrabbed = array();
1064 if (preg_match(
'/\/$/', $urltograb)) {
1067 $urltograb = dirname($urltograb);
1071 preg_match_all(
'/<img([^\.\/]+)src="([^>"]+)"([^>]*)>/i', $tmp, $regs);
1073 foreach ($regs[0] as $key => $val) {
1074 if (preg_match(
'/^data:image/i', $regs[2][$key])) {
1078 if (preg_match(
'/^\//', $regs[2][$key])) {
1080 $urltograbbis = $urltograbdirrootwithoutslash.$regs[2][$key];
1082 $urltograbbis = $urltograb.
'/'.$regs[2][$key];
1085 $linkwithoutdomain = $regs[2][$key];
1086 $dirforimages =
'/'.$objectpage->pageurl;
1087 if ($grabimagesinto ==
'root') {
1092 $filetosave = $conf->medias->multidir_output[$conf->entity].
'/image/'.$object->ref.$dirforimages.(preg_match(
'/^\//', $regs[2][$key]) ?
'' :
'/').$regs[2][$key];
1093 if (preg_match(
'/^http/', $regs[2][$key])) {
1094 $urltograbbis = $regs[2][$key];
1095 $linkwithoutdomain = preg_replace(
'/^https?:\/\/[^\/]+\//i',
'', $regs[2][$key]);
1096 $filetosave = $conf->medias->multidir_output[$conf->entity].
'/image/'.$object->ref.$dirforimages.(preg_match(
'/^\//', $linkwithoutdomain) ?
'' :
'/').$linkwithoutdomain;
1098 $filename =
'image/'.$object->ref.$dirforimages.(preg_match(
'/^\//', $linkwithoutdomain) ?
'' :
'/').$linkwithoutdomain;
1101 $filetosave = preg_replace(
'/\/[^\/]+\/\.\./',
'', $filetosave);
1102 $filename = preg_replace(
'/\/[^\/]+\/\.\./',
'', $filename);
1108 if (empty($alreadygrabbed[$urltograbbis])) {
1110 $tmpgeturl =
getURLContent($urltograbbis,
'GET',
'', 1, array(), array(
'http',
'https'), 0);
1111 if ($tmpgeturl[
'curl_error_no']) {
1113 setEventMessages(
'Error getting '.$urltograbbis.
': '.$tmpgeturl[
'curl_error_msg'], null,
'errors');
1115 } elseif ($tmpgeturl[
'http_code'] !=
'200') {
1117 setEventMessages(
'Error getting '.$urltograbbis.
': '.$tmpgeturl[
'http_code'], null,
'errors');
1120 $alreadygrabbed[$urltograbbis] = 1;
1124 $fp = fopen($filetosave,
"w");
1125 fputs($fp, $tmpgeturl[
'content']);
1127 if (!empty($conf->global->MAIN_UMASK)) {
1128 @chmod($filetosave, octdec($conf->global->MAIN_UMASK));
1135 $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);
1140 preg_match_all(
'/background([^\.\/\(;]+)url\([\"\']?([^\)\"\']*)[\"\']?\)/i', $tmp, $regs);
1142 foreach ($regs[0] as $key => $val) {
1143 if (preg_match(
'/^data:image/i', $regs[2][$key])) {
1147 if (preg_match(
'/^\//', $regs[2][$key])) {
1149 $urltograbbis = $urltograbdirrootwithoutslash.$regs[2][$key];
1151 $urltograbbis = $urltograb.
'/'.$regs[2][$key];
1154 $linkwithoutdomain = $regs[2][$key];
1156 $dirforimages =
'/'.$objectpage->pageurl;
1157 if ($grabimagesinto ==
'root') {
1161 $filetosave = $conf->medias->multidir_output[$conf->entity].
'/image/'.$object->ref.$dirforimages.(preg_match(
'/^\//', $regs[2][$key]) ?
'' :
'/').$regs[2][$key];
1163 if (preg_match(
'/^http/', $regs[2][$key])) {
1164 $urltograbbis = $regs[2][$key];
1165 $linkwithoutdomain = preg_replace(
'/^https?:\/\/[^\/]+\//i',
'', $regs[2][$key]);
1166 $filetosave = $conf->medias->multidir_output[$conf->entity].
'/image/'.$object->ref.$dirforimages.(preg_match(
'/^\//', $linkwithoutdomain) ?
'' :
'/').$linkwithoutdomain;
1169 $filename =
'image/'.$object->ref.$dirforimages.(preg_match(
'/^\//', $linkwithoutdomain) ?
'' :
'/').$linkwithoutdomain;
1172 $filetosave = preg_replace(
'/\/[^\/]+\/\.\./',
'', $filetosave);
1173 $filename = preg_replace(
'/\/[^\/]+\/\.\./',
'', $filename);
1179 if (empty($alreadygrabbed[$urltograbbis])) {
1181 $tmpgeturl =
getURLContent($urltograbbis,
'GET',
'', 1, array(), array(
'http',
'https'), 0);
1182 if ($tmpgeturl[
'curl_error_no']) {
1184 setEventMessages(
'Error getting '.$urltograbbis.
': '.$tmpgeturl[
'curl_error_msg'], null,
'errors');
1186 } elseif ($tmpgeturl[
'http_code'] !=
'200') {
1188 setEventMessages(
'Error getting '.$urltograbbis.
': '.$tmpgeturl[
'http_code'], null,
'errors');
1191 $alreadygrabbed[$urltograbbis] = 1;
1195 $fp = fopen($filetosave,
"w");
1196 fputs($fp, $tmpgeturl[
'content']);
1198 if (!empty($conf->global->MAIN_UMASK)) {
1199 @chmod($filetosave, octdec($conf->global->MAIN_UMASK));
1206 $tmp = preg_replace(
'/'.preg_quote($regs[0][$key],
'/').
'/i',
'background'.$regs[1][$key].
'url("'.DOL_URL_ROOT.
'/viewimage.php?modulepart=medias&file='.$filename.
'")', $tmp);
dol_string_nohtmltag($stringtoclean, $removelinefeed=1, $pagecodeto= 'UTF-8', $strip_tags=0, $removedoublespaces=1)
Clean a string from all HTML tags and entities.
getStructuredData($type, $data=array())
Return HTML content to add structured data for an article, news or Blog Post.
dol_mkdir($dir, $dataroot= '', $newmask= '')
Creation of a directory (this can create recursive subdir)
getSocialNetworkHeaderCards($params=null)
Return HTML content to add as header card for an article, news or Blog Post or home page...
dolWebsiteReplacementOfLinks($website, $content, $removephppart=0, $contenttype= 'html', $containerid= '')
Convert a page content to have correct links (based on DOL_URL_ROOT) into an html content...
dol_escape_json($stringtoescape)
Returns text escaped for inclusion into javascript code.
getRootURLFromURL($url)
Function root url from a long url For example: https://www.abc.mydomain.com/dir/page.html return 'https://www.abc.mydomain.com' For example: http://www.abc.mydomain.com/ return 'https://www.abc.mydomain.com'.
redirectToContainer($containerref, $containeraliasalt= '', $containerid=0, $permanent=0)
Format img tags to introduce viewimage on img src.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags= '', $escapeonlyhtmltags=0)
Returns text escaped for inclusion in HTML alt or title tags, or into values of HTML input fields...
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.
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).
getAllImages($object, $objectpage, $urltograb, &$tmp, &$action, $modifylinks=0, $grabimages=1, $grabimagesinto= 'subpage')
Download all images found into page content $tmp.
dolWebsiteOutput($content, $contenttype= 'html', $containerid= '')
Render a string of an HTML content and output it.
setEventMessages($mesg, $mesgs, $style= 'mesgs', $messagekey= '')
Set event messages in dol_events session object.
dol_strlen($string, $stringencoding= 'UTF-8')
Make a strlen call.
getSocialNetworkSharingLinks()
Return HTML content to add structured data for an article, news or Blog Post.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename= '', $restricttologhandler= '', $logcontext=null)
Write log message into outputs.
dolStripPhpCode($str, $replacewith= '')
Remove PHP code part from a string.
if(isModEnabled('facture')&&!empty($user->rights->facture->lire)) if((isModEnabled('fournisseur')&&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD)&&$user->rights->fournisseur->facture->lire)||(isModEnabled('supplier_invoice')&&$user->rights->supplier_invoice->lire)) if(isModEnabled('don')&&!empty($user->rights->don->lire)) if(isModEnabled('tax')&&!empty($user->rights->tax->charges->lire)) if(isModEnabled('facture')&&isModEnabled('commande')&&$user->rights->commande->lire &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $resql
Social contributions to pay.
dol_print_date($time, $format= '', $tzoutput= 'auto', $outputlangs= '', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
getPagesFromSearchCriterias($type, $algo, $searchstring, $max=25, $sortfield= 'date_creation', $sortorder= 'DESC', $langcode= '', $otherfilters= 'null', $status=1)
Return list of containers object that match a criteria.