37 -11=>
"Pacific/Midway",
38 -10=>
"Pacific/Fakaofo",
39 -9=>
"America/Anchorage",
40 -8=>
"America/Los_Angeles",
41 -7=>
"America/Dawson_Creek",
42 -6=>
"America/Chicago",
44 -4=>
"America/Anguilla",
45 -3=>
"America/Araguaina",
46 -2=>
"America/Noronha",
47 -1=>
"Atlantic/Azores",
58 10=>
"Australia/Sydney",
60 12=>
"Pacific/Auckland",
61 13=>
"Pacific/Enderbury"
74 return @date_default_timezone_get();
85 if (method_exists(
'DateTimeZone',
'getOffset')) {
91 if ($refgmtdate ==
'now') {
92 $newrefgmtdate = $yearref.
'-'.$monthref.
'-'.$dayref;
93 } elseif ($refgmtdate ==
'summer') {
94 $newrefgmtdate = $yearref.
'-08-01';
96 $newrefgmtdate = $yearref.
'-01-01';
98 $newrefgmtdate .=
'T00:00:00+00:00';
100 $localdt =
new DateTime($newrefgmtdate, $localtz);
101 $tmp = -1 * $localtz->getOffset($localdt);
107 $tz = round(($tmp < 0 ? 1 : -1) * abs($tmp / 3600));
124 if ($duration_unit ==
's') {
125 return $time + ($duration_value);
127 if ($duration_value == 0) {
130 if ($duration_unit ==
'i') {
131 return $time + (60 * $duration_value);
133 if ($duration_unit ==
'h') {
134 return $time + (3600 * $duration_value);
136 if ($duration_unit ==
'w') {
137 return $time + (3600 * 24 * 7 * $duration_value);
142 if ($duration_value > 0) {
143 $deltastring .= abs($duration_value);
146 if ($duration_value < 0) {
147 $deltastring .= abs($duration_value);
150 if ($duration_unit ==
'd') {
153 if ($duration_unit ==
'm') {
156 if ($duration_unit ==
'y') {
160 $date =
new DateTime();
161 if (!empty($conf->global->MAIN_DATE_IN_MEMORY_ARE_GMT)) {
162 $date->setTimezone(
new DateTimeZone(
'UTC'));
164 $date->setTimestamp($time);
165 $interval =
new DateInterval($deltastring);
168 $date->sub($interval);
170 $date->add($interval);
173 if ($ruleforendofmonth == 1 && $duration_unit ==
'm') {
176 $timetotalmonths = (($timeyear * 12) + $timemonth);
178 $monthsexpected = ($timetotalmonths + $duration_value);
180 $newtime = $date->getTimestamp();
184 $newtimetotalmonths = (($newtimeyear * 12) + $newtimemonth);
186 if ($monthsexpected < $newtimetotalmonths) {
191 $datelim =
dol_mktime($newtimehours, $newtimemins, $newtimesecs, $newtimemonth, 1, $newtimeyear);
192 $datelim -= (3600 * 24);
194 $date->setTimestamp($datelim);
197 return $date->getTimestamp();
212 $iResult = ((int) $iHours * 3600) + ((int) $iMinutes * 60) + (int) $iSeconds;
242 if (empty($lengthOfDay)) {
243 $lengthOfDay = 86400;
245 if (empty($lengthOfWeek)) {
248 $nbHbyDay = $lengthOfDay / 3600;
250 if ($format ==
'all' || $format ==
'allwithouthour' || $format ==
'allhour' || $format ==
'allhourmin' || $format ==
'allhourminsec') {
251 if ((
int) $iSecond === 0) {
259 if ($iSecond >= $lengthOfDay) {
260 for ($i = $iSecond; $i >= $lengthOfDay; $i -= $lengthOfDay) {
262 $iSecond -= $lengthOfDay;
264 $dayTranslate = $langs->trans(
"Day");
265 if ($iSecond >= ($lengthOfDay * 2)) {
266 $dayTranslate = $langs->trans(
"Days");
270 if ($lengthOfWeek < 7) {
272 if ($sDay >= $lengthOfWeek) {
273 $sWeek = (int) (($sDay - $sDay % $lengthOfWeek) / $lengthOfWeek);
274 $sDay = $sDay % $lengthOfWeek;
275 $weekTranslate = $langs->trans(
"DurationWeek");
277 $weekTranslate = $langs->trans(
"DurationWeeks");
279 $sTime .= $sWeek.
' '.$weekTranslate.
' ';
284 $dayTranslate = $langs->trans(
"Day");
286 $dayTranslate = $langs->trans(
"Days");
288 $sTime .= $sDay.
' '.strtolower(
dol_substr($dayTranslate, 0, 1)).
'. ';
291 if ($format ==
'all') {
292 if ($iSecond || empty($sDay)) {
295 } elseif ($format ==
'allhourminsec') {
296 return sprintf(
"%02d", ($sWeek * $lengthOfWeek * $nbHbyDay + $sDay * $nbHbyDay + (
int) floor($iSecond/3600))).
':'.sprintf(
"%02d", ((
int) floor(($iSecond % 3600) / 60))).
':'.sprintf(
"%02d", ((
int) ($iSecond % 60)));
297 } elseif ($format ==
'allhourmin') {
298 return sprintf(
"%02d", ($sWeek * $lengthOfWeek * $nbHbyDay + $sDay * $nbHbyDay + (
int) floor($iSecond/3600))).
':'.sprintf(
"%02d", ((
int) floor(($iSecond % 3600)/60)));
299 } elseif ($format ==
'allhour') {
300 return sprintf(
"%02d", ($sWeek * $lengthOfWeek * $nbHbyDay + $sDay * $nbHbyDay + (
int) floor($iSecond/3600)));
302 } elseif ($format ==
'hour') {
304 } elseif ($format ==
'fullhour') {
305 if (!empty($iSecond)) {
306 $iSecond = $iSecond / 3600;
311 } elseif ($format ==
'min') {
313 } elseif ($format ==
'sec') {
315 } elseif ($format ==
'month') {
317 } elseif ($format ==
'year') {
334 if ($duration_unit ==
's') $result = $duration_value / 3600;
335 if ($duration_unit ==
'i') $result = $duration_value / 60;
336 if ($duration_unit ==
'h') $result = $duration_value;
337 if ($duration_unit ==
'd') $result = $duration_value * 24;
338 if ($duration_unit ==
'w') $result = $duration_value * 24 * 7;
339 if ($duration_unit ==
'm') $result = $duration_value * 730.484;
340 if ($duration_unit ==
'y') $result = $duration_value * 365 * 24;
358 function dolSqlDateFilter($datefield, $day_date, $month_date, $year_date, $excludefirstand = 0, $gm =
false)
363 $day_date = intval($day_date);
364 $month_date = intval($month_date);
365 $year_date = intval($year_date);
367 if ($month_date > 0) {
368 if ($month_date > 12) {
371 if ($year_date > 0 && empty($day_date)) {
372 $sqldate .= ($excludefirstand ?
"" :
" AND ").$datefield.
" BETWEEN '".$db->idate(
dol_get_first_day($year_date, $month_date, $gm));
373 $sqldate .=
"' AND '".$db->idate(
dol_get_last_day($year_date, $month_date, $gm)).
"'";
374 } elseif ($year_date > 0 && !empty($day_date)) {
375 $sqldate .= ($excludefirstand ?
"" :
" AND ").$datefield.
" BETWEEN '".$db->idate(
dol_mktime(0, 0, 0, $month_date, $day_date, $year_date, $gm));
376 $sqldate .=
"' AND '".$db->idate(
dol_mktime(23, 59, 59, $month_date, $day_date, $year_date, $gm)).
"'";
379 $sqldate .= ($excludefirstand ?
"" :
" AND ").
" date_format( ".$datefield.
", '%c') = '".$db->escape($month_date).
"'";
381 } elseif ($year_date > 0) {
382 $sqldate .= ($excludefirstand ?
"" :
" AND ").$datefield.
" BETWEEN '".$db->idate(
dol_get_first_day($year_date, 1, $gm));
383 $sqldate .=
"' AND '".$db->idate(
dol_get_last_day($year_date, 12, $gm)).
"'";
411 if (preg_match(
'/^([0-9]+)\/([0-9]+)\/([0-9]+)\s?([0-9]+)?:?([0-9]+)?:?([0-9]+)?/i', $string, $reg)) {
412 dol_syslog(
"dol_stringtotime call to function with deprecated parameter format", LOG_WARNING);
424 if ($syear >= 50 && $syear < 100) {
427 $string = sprintf(
"%04d%02d%02d%02d%02d%02d", $syear, $smonth, $sday, $shour, $smin, $ssec);
428 } elseif (preg_match(
'/^([0-9]{4})-([0-9]{2})-([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})Z$/i', $string, $reg)
429 || preg_match(
'/^([0-9]{4})-([0-9]{2})-([0-9]{2}) ([0-9]{2}):([0-9]{2}):([0-9]{2})$/i', $string, $reg)
430 || preg_match(
'/^([0-9]{4})([0-9]{2})([0-9]{2})T([0-9]{2})([0-9]{2})([0-9]{2})Z$/i', $string, $reg)
438 $string = sprintf(
"%04d%02d%02d%02d%02d%02d", $syear, $smonth, $sday, $shour, $smin, $ssec);
441 $string = preg_replace(
'/([^0-9])/i',
'', $string);
442 $tmp = $string.
'000000';
446 } elseif (empty($gm) || $gm ===
'tzserver') {
450 $date =
dol_mktime(substr($tmp, 8, 2), substr($tmp, 10, 2), substr($tmp, 12, 2), substr($tmp, 4, 2), substr($tmp, 6, 2), substr($tmp, 0, 4), $gm);
465 $time =
dol_mktime(12, 0, 0, $month, $day, $year, 1, 0);
466 $time -= 24 * 60 * 60;
468 return array(
'year' => $tmparray[
'year'],
'month' => $tmparray[
'mon'],
'day' => $tmparray[
'mday']);
481 $time =
dol_mktime(12, 0, 0, $month, $day, $year, 1, 0);
482 $time += 24 * 60 * 60;
484 return array(
'year' => $tmparray[
'year'],
'month' => $tmparray[
'mon'],
'day' => $tmparray[
'mday']);
498 $prev_year = $year - 1;
500 $prev_month = $month - 1;
503 return array(
'year' => $prev_year,
'month' => $prev_month);
517 $next_year = $year + 1;
519 $next_month = $month + 1;
522 return array(
'year' => $next_year,
'month' => $next_month);
538 $time =
dol_mktime(12, 0, 0, $month, $tmparray[
'first_day'], $year, 1, 0);
539 $time -= 24 * 60 * 60 * 7;
541 return array(
'year' => $tmparray[
'year'],
'month' => $tmparray[
'mon'],
'day' => $tmparray[
'mday']);
557 $time =
dol_mktime(12, 0, 0, $tmparray[
'first_month'], $tmparray[
'first_day'], $tmparray[
'first_year'], 1, 0);
558 $time += 24 * 60 * 60 * 7;
561 return array(
'year' => $tmparray[
'year'],
'month' => $tmparray[
'mon'],
'day' => $tmparray[
'mday']);
580 return dol_mktime(0, 0, 0, $month, 1, $year, $gm);
607 $datelim =
dol_mktime(23, 59, 59, $month, 1, $year, $gm);
608 $datelim -= (3600 * 24);
623 $tmparray =
dol_getdate($date,
false, ($gm ==
'gmt' ?
'gmt' :
''));
624 return dol_mktime(23, 59, 59, $tmparray[
'mon'], $tmparray[
'mday'], $tmparray[
'year'], $gm);
637 $tmparray =
dol_getdate($date,
false, ($gm ==
'gmt' ?
'gmt' :
''));
638 return dol_mktime(0, 0, 0, $tmparray[
'mon'], $tmparray[
'mday'], $tmparray[
'year'], $gm);
655 $date =
dol_mktime(0, 0, 0, $month, $day, $year, $gm);
658 $start_week = (isset($conf->global->MAIN_START_WEEK) ? $conf->global->MAIN_START_WEEK : 1);
663 $days = $start_week - $tmparray[
'wday'];
668 $seconds = $days * 24 * 60 * 60;
672 $tmpdaytms = date($tmparray[0]) - $seconds;
673 $tmpday = date(
"d", $tmpdaytms);
676 if ($tmpday > $day) {
677 $prev_month = $month - 1;
680 if ($prev_month == 0) {
682 $prev_year = $year - 1;
685 $prev_month = $month;
688 $tmpmonth = $prev_month;
689 $tmpyear = $prev_year;
692 $tmptime =
dol_mktime(12, 0, 0, $month, $tmpday, $year, 1, 0);
693 $tmptime -= 24 * 60 * 60 * 7;
695 $prev_day = $tmparray[
'mday'];
698 if ($prev_day > $tmpday) {
699 $prev_month = $month - 1;
702 if ($prev_month == 0) {
704 $prev_year = $year - 1;
708 $week = date(
"W",
dol_mktime(0, 0, 0, $tmpmonth, $tmpday, $tmpyear, $gm));
710 return array(
'year' => $year,
'month' => $month,
'week' => $week,
'first_day' => $tmpday,
'first_month' => $tmpmonth,
'first_year' => $tmpyear,
'prev_year' => $prev_year,
'prev_month' => $prev_month,
'prev_day' => $prev_day);
722 $base =
new DateTime(
"$year-03-21",
new DateTimeZone(
"UTC"));
723 $days = easter_days($year);
724 $tmp = $base->add(
new DateInterval(
"P{$days}D"));
725 return $tmp->getTimestamp();
744 function num_public_holiday($timestampStart, $timestampEnd, $country_code =
'', $lastday = 0, $includesaturday = -1, $includesunday = -1, $includefriday = -1, $includemonday = -1)
746 global $db, $conf, $mysoc;
751 if ((($timestampEnd - $timestampStart) % 86400) != 0) {
752 return 'Error Dates must use same hours and must be GMT dates';
755 if (empty($country_code)) {
756 $country_code = $mysoc->country_code;
758 if ($includemonday < 0) {
759 $includemonday = (isset($conf->global->MAIN_NON_WORKING_DAYS_INCLUDE_MONDAY) ? $conf->global->MAIN_NON_WORKING_DAYS_INCLUDE_MONDAY : 0);
761 if ($includefriday < 0) {
762 $includefriday = (isset($conf->global->MAIN_NON_WORKING_DAYS_INCLUDE_FRIDAY) ? $conf->global->MAIN_NON_WORKING_DAYS_INCLUDE_FRIDAY : 0);
764 if ($includesaturday < 0) {
765 $includesaturday = (isset($conf->global->MAIN_NON_WORKING_DAYS_INCLUDE_SATURDAY) ? $conf->global->MAIN_NON_WORKING_DAYS_INCLUDE_SATURDAY : 1);
767 if ($includesunday < 0) {
768 $includesunday = (isset($conf->global->MAIN_NON_WORKING_DAYS_INCLUDE_SUNDAY) ? $conf->global->MAIN_NON_WORKING_DAYS_INCLUDE_SUNDAY : 1);
771 $country_id =
dol_getIdFromCode($db, $country_code,
'c_country',
'code',
'rowid');
774 while ((($lastday == 0 && $timestampStart < $timestampEnd) || ($lastday && $timestampStart <= $timestampEnd))
777 $specialdayrule = array();
779 $jour = gmdate(
"d", $timestampStart);
780 $mois = gmdate(
"m", $timestampStart);
781 $annee = gmdate(
"Y", $timestampStart);
787 $sql =
"SELECT code, entity, fk_country, dayrule, year, month, day, active";
788 $sql .=
" FROM ".MAIN_DB_PREFIX.
"c_hrm_public_holiday";
789 $sql .=
" WHERE active = 1 and fk_country IN (0".($country_id > 0 ?
", ".$country_id : 0).
")";
791 $resql = $db->query($sql);
793 $num_rows = $db->num_rows(
$resql);
795 while ($i < $num_rows) {
796 $obj = $db->fetch_object(
$resql);
798 if (!empty($obj->dayrule) && $obj->dayrule !=
'date') {
799 $specialdayrule[$obj->dayrule] = $obj->dayrule;
802 if (!empty($obj->year) && $obj->year != $annee) {
805 if ($obj->month != $mois) {
808 if ($obj->day != $jour) {
821 return 'Error sql '.$db->lasterror();
828 if (in_array(
'easter', $specialdayrule)) {
831 $jour_paques = gmdate(
"d", $date_paques);
832 $mois_paques = gmdate(
"m", $date_paques);
833 if ($jour_paques == $jour && $mois_paques == $mois) {
839 if (in_array(
'eastermonday', $specialdayrule)) {
843 $date_lundi_paques = $date_paques + (3600 * 24);
844 $jour_lundi_paques = gmdate(
"d", $date_lundi_paques);
845 $mois_lundi_paques = gmdate(
"m", $date_lundi_paques);
846 if ($jour_lundi_paques == $jour && $mois_lundi_paques == $mois) {
854 if (in_array(
'goodfriday', $specialdayrule)) {
859 $date_good_friday = $easter - (2 * 3600 * 24);
860 $dom_good_friday = gmdate(
"d", $date_good_friday);
861 $month_good_friday = gmdate(
"m", $date_good_friday);
863 if ($dom_good_friday == $jour && $month_good_friday == $mois) {
868 if (in_array(
'ascension', $specialdayrule)) {
871 $date_ascension = $date_paques + (3600 * 24 * 39);
872 $jour_ascension = gmdate(
"d", $date_ascension);
873 $mois_ascension = gmdate(
"m", $date_ascension);
874 if ($jour_ascension == $jour && $mois_ascension == $mois) {
880 if (in_array(
'pentecote', $specialdayrule)) {
883 $date_pentecote = $date_paques + (3600 * 24 * 49);
884 $jour_pentecote = gmdate(
"d", $date_pentecote);
885 $mois_pentecote = gmdate(
"m", $date_pentecote);
886 if ($jour_pentecote == $jour && $mois_pentecote == $mois) {
891 if (in_array(
'pentecotemonday', $specialdayrule)) {
894 $date_pentecote = $date_paques + (3600 * 24 * 50);
895 $jour_pentecote = gmdate(
"d", $date_pentecote);
896 $mois_pentecote = gmdate(
"m", $date_pentecote);
897 if ($jour_pentecote == $jour && $mois_pentecote == $mois) {
903 if (in_array(
'viernessanto', $specialdayrule)) {
906 $date_viernes = $date_paques - (3600 * 24 * 2);
907 $jour_viernes = gmdate(
"d", $date_viernes);
908 $mois_viernes = gmdate(
"m", $date_viernes);
909 if ($jour_viernes == $jour && $mois_viernes == $mois) {
915 if (in_array(
'fronleichnam', $specialdayrule)) {
918 $date_fronleichnam = $date_paques + (3600 * 24 * 60);
919 $jour_fronleichnam = gmdate(
"d", $date_fronleichnam);
920 $mois_fronleichnam = gmdate(
"m", $date_fronleichnam);
921 if ($jour_fronleichnam == $jour && $mois_fronleichnam == $mois) {
927 if (in_array(
'genevafast', $specialdayrule)) {
929 $date_1sunsept = strtotime(
'next thursday', strtotime(
'next sunday', mktime(0, 0, 0, 9, 1, $annee)));
930 $jour_1sunsept = date(
"d", $date_1sunsept);
931 $mois_1sunsept = date(
"m", $date_1sunsept);
932 if ($jour_1sunsept == $jour && $mois_1sunsept == $mois) $ferie=
true;
940 if ($includefriday || $includesaturday || $includesunday) {
941 $jour_julien = unixtojd($timestampStart);
942 $jour_semaine = jddayofweek($jour_julien, 0);
943 if ($includefriday) {
944 if ($jour_semaine == 5) {
948 if ($includesaturday) {
949 if ($jour_semaine == 6) {
953 if ($includesunday) {
954 if ($jour_semaine == 0) {
990 if ($timestampStart < $timestampEnd) {
996 $nbjours = (int) floor(($timestampEnd - $timestampStart) / (60 * 60 * 24)) + 1 - $bit;
1014 function num_open_day($timestampStart, $timestampEnd, $inhour = 0, $lastday = 0, $halfday = 0, $country_code =
'')
1016 global $langs, $mysoc;
1018 if (empty($country_code)) {
1019 $country_code = $mysoc->country_code;
1022 dol_syslog(
'num_open_day timestampStart='.$timestampStart.
' timestampEnd='.$timestampEnd.
' bit='.$lastday.
' country_code='.$country_code);
1025 if (!is_int($timestampStart) && !is_float($timestampStart)) {
1026 return 'ErrorBadParameter_num_open_day';
1028 if (!is_int($timestampEnd) && !is_float($timestampEnd)) {
1029 return 'ErrorBadParameter_num_open_day';
1033 if ($timestampStart < $timestampEnd) {
1036 $numholidays =
num_public_holiday($timestampStart, $timestampEnd, $country_code, $lastday);
1037 $nbOpenDay = ($numdays - $numholidays);
1038 if ($inhour == 1 && $nbOpenDay <= 3) {
1039 $nbOpenDay = ($nbOpenDay * 24);
1041 return $nbOpenDay - (($inhour == 1 ? 12 : 0.5) * abs($halfday));
1042 } elseif ($timestampStart == $timestampEnd) {
1045 $numholidays =
num_public_holiday($timestampStart, $timestampEnd, $country_code, $lastday);
1046 if ($numholidays == 1) {
1051 $nbOpenDay = $lastday;
1054 $nbOpenDay = ($nbOpenDay * 24);
1056 return $nbOpenDay - (($inhour == 1 ? 12 : 0.5) * abs($halfday));
1058 return $langs->trans(
"Error");
1074 $montharray = array(
1075 1 => $outputlangs->trans(
"Month01"),
1076 2 => $outputlangs->trans(
"Month02"),
1077 3 => $outputlangs->trans(
"Month03"),
1078 4 => $outputlangs->trans(
"Month04"),
1079 5 => $outputlangs->trans(
"Month05"),
1080 6 => $outputlangs->trans(
"Month06"),
1081 7 => $outputlangs->trans(
"Month07"),
1082 8 => $outputlangs->trans(
"Month08"),
1083 9 => $outputlangs->trans(
"Month09"),
1084 10 => $outputlangs->trans(
"Month10"),
1085 11 => $outputlangs->trans(
"Month11"),
1086 12 => $outputlangs->trans(
"Month12")
1089 if (!empty($short)) {
1090 $montharray = array(
1091 1 => $outputlangs->trans(
"MonthShort01"),
1092 2 => $outputlangs->trans(
"MonthShort02"),
1093 3 => $outputlangs->trans(
"MonthShort03"),
1094 4 => $outputlangs->trans(
"MonthShort04"),
1095 5 => $outputlangs->trans(
"MonthShort05"),
1096 6 => $outputlangs->trans(
"MonthShort06"),
1097 7 => $outputlangs->trans(
"MonthShort07"),
1098 8 => $outputlangs->trans(
"MonthShort08"),
1099 9 => $outputlangs->trans(
"MonthShort09"),
1100 10 => $outputlangs->trans(
"MonthShort10"),
1101 11 => $outputlangs->trans(
"MonthShort11"),
1102 12 => $outputlangs->trans(
"MonthShort12")
1117 $nb_days = cal_days_in_month(CAL_GREGORIAN, $month, $year);
1119 for ($day = 1; $day < $nb_days; $day++) {
1121 $TWeek[$week_number] = $week_number;
1134 $TFirstDayOfWeek = array();
1135 foreach ($TWeek as $weekNb) {
1136 if (in_array(
'01', $TWeek) && in_array(
'52', $TWeek) && $weekNb ==
'01') {
1139 $TFirstDayOfWeek[$weekNb] = date(
'd', strtotime($year.
'W'.$weekNb));
1141 return $TFirstDayOfWeek;
1152 $TLastDayOfWeek = array();
1153 foreach ($TWeek as $weekNb) {
1154 $TLastDayOfWeek[$weekNb] = date(
'd', strtotime($year.
'W'.$weekNb.
'+6 days'));
1156 return $TLastDayOfWeek;
1168 $date =
new DateTime($year.
'-'.$month.
'-'.$day);
1169 $week = $date->format(
"W");
if(isModEnabled('facture') &&!empty($user->rights->facture->lire)) if((isModEnabled('fournisseur') &&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) && $user->hasRight("fournisseur", "facture", "lire"))||(isModEnabled('supplier_invoice') && $user->hasRight("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->hasRight("commande", "lire") &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $resql
Social contributions to pay.
dol_get_prev_month($month, $year)
Return previous month.
dol_get_first_hour($date, $gm='tzserver')
Return GMT time for first hour of a given GMT date (it removes hours, min and second part)
dol_get_next_day($day, $month, $year)
Return next day.
dol_get_next_week($day, $week, $month, $year)
Return next week.
dolSqlDateFilter($datefield, $day_date, $month_date, $year_date, $excludefirstand=0, $gm=false)
Generate a SQL string to make a filter into a range (for second of date until last second of date).
getServerTimeZoneString()
Return server timezone string.
dol_get_last_hour($date, $gm='tzserver')
Return GMT time for last hour of a given GMT date (it replaces hours, min and second part to 23:59:59...
getLastDayOfEachWeek($TWeek, $year)
Return array of last day of weeks.
getWeekNumbersOfMonth($month, $year)
Return array of week numbers.
getServerTimeZoneInt($refgmtdate='now')
Return server timezone int.
dol_get_first_day_week($day, $month, $year, $gm=false)
Return first day of week for a date.
getGMTEasterDatetime($year)
Return the easter day in GMT time.
convertDurationtoHour($duration_value, $duration_unit)
Convert duration to hour.
get_tz_array()
Return an array with timezone values.
dol_get_prev_day($day, $month, $year)
Return previous day.
dol_get_first_day($year, $month=1, $gm=false)
Return GMT time for first day of a month or year.
getFirstDayOfEachWeek($TWeek, $year)
Return array of first day of weeks.
dol_get_next_month($month, $year)
Return next month.
getWeekNumber($day, $month, $year)
Return week number.
num_between_day($timestampStart, $timestampEnd, $lastday=0)
Function to return number of days between two dates (date must be UTC date !) Example: 2012-01-01 201...
convertTime2Seconds($iHours=0, $iMinutes=0, $iSeconds=0)
Convert hours and minutes into seconds.
num_open_day($timestampStart, $timestampEnd, $inhour=0, $lastday=0, $halfday=0, $country_code='')
Function to return number of working days (and text of units) between two dates (working days)
dol_time_plus_duree($time, $duration_value, $duration_unit, $ruleforendofmonth=0)
Add a delay to a date.
convertSecondToTime($iSecond, $format='all', $lengthOfDay=86400, $lengthOfWeek=7)
Return, in clear text, value of a number of seconds in days, hours and minutes.
dol_get_prev_week($day, $week, $month, $year)
Return previous week.
dol_stringtotime($string, $gm=1)
Convert a string date into a GM Timestamps date Warning: YYYY-MM-DDTHH:MM:SS+02:00 (RFC3339) is not s...
dol_get_last_day($year, $month=12, $gm=false)
Return GMT time for last day of a month or year.
monthArray($outputlangs, $short=0)
Return array of translated months or selected month.
num_public_holiday($timestampStart, $timestampEnd, $country_code='', $lastday=0, $includesaturday=-1, $includesunday=-1, $includefriday=-1, $includemonday=-1)
Return the number of non working days including Friday, Saturday and Sunday (or not) between 2 dates ...
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed informations (by default a local PHP server timestamp) Re...
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
dol_now($mode='auto')
Return date for now.
dol_getIdFromCode($db, $key, $tablename, $fieldkey='code', $fieldid='id', $entityfilter=0, $filters='')
Return an id or code from a code or id.
dol_substr($string, $start, $length, $stringencoding='', $trunconbytes=0)
Make a substring.
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.