123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779 |
- <?php
- /* Copyright (C) 2004-2011 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2005-2011 Regis Houssin <regis.houssin@capnetworks.com>
- * Copyright (C) 2011 Juanjo Menent <jmenent@2byte.es>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- * or see http://www.gnu.org/
- */
- /**
- * \file htdocs/core/lib/date.lib.php
- * \brief Set of function to manipulate dates
- */
- /**
- * Return an array with timezone values
- *
- * @return array Array with timezone values
- */
- function get_tz_array()
- {
- $tzarray=array(
- -11=>"Pacific/Midway",
- -10=>"Pacific/Fakaofo",
- -9=>"America/Anchorage",
- -8=>"America/Los_Angeles",
- -7=>"America/Dawson_Creek",
- -6=>"America/Chicago",
- -5=>"America/Bogota",
- -4=>"America/Anguilla",
- -3=>"America/Araguaina",
- -2=>"America/Noronha",
- -1=>"Atlantic/Azores",
- 0=>"Africa/Abidjan",
- 1=>"Europe/Paris",
- 2=>"Europe/Helsinki",
- 3=>"Europe/Moscow",
- 4=>"Asia/Dubai",
- 5=>"Asia/Karachi",
- 6=>"Indian/Chagos",
- 7=>"Asia/Jakarta",
- 8=>"Asia/Hong_Kong",
- 9=>"Asia/Tokyo",
- 10=>"Australia/Sydney",
- 11=>"Pacific/Noumea",
- 12=>"Pacific/Auckland",
- 13=>"Pacific/Enderbury"
- );
- return $tzarray;
- }
- /**
- * Return server timezone string
- *
- * @return string PHP server timezone string ('Europe/Paris')
- */
- function getServerTimeZoneString()
- {
- return @date_default_timezone_get();
- }
- /**
- * Return server timezone int.
- *
- * @param string $refgmtdate Reference period for timezone (timezone differs on winter and summer. May be 'now', 'winter' or 'summer')
- * @return int An offset in hour (+1 for Europe/Paris on winter and +2 for Europe/Paris on summer)
- */
- function getServerTimeZoneInt($refgmtdate='now')
- {
- global $conf;
- if (method_exists('DateTimeZone','getOffset'))
- {
- // Method 1 (include daylight)
- $gmtnow=dol_now('gmt'); $yearref=dol_print_date($gmtnow,'%Y'); $monthref=dol_print_date($gmtnow,'%m'); $dayref=dol_print_date($gmtnow,'%d');
- if ($refgmtdate == 'now') $newrefgmtdate=$yearref.'-'.$monthref.'-'.$dayref;
- elseif ($refgmtdate == 'summer') $newrefgmtdate=$yearref.'-08-01';
- else $newrefgmtdate=$yearref.'-01-01';
- $localtz = new DateTimeZone(getServerTimeZoneString());
- $localdt = new DateTime($newrefgmtdate, $localtz);
- $tmp=-1*$localtz->getOffset($localdt);
- //print $refgmtdate.'='.$tmp;
- }
- else
- {
- dol_print_error('','PHP version must be 5.3+');
- /*
- // Method 2 (does not include daylight, not supported by adodb)
- if ($refgmtdate == 'now')
- {
- if (ini_get("date.timezone")=='UTC') return 0;
- // We don't know server timezone string, so we don't know location, so we can't guess daylight. We assume we use same than client but this may be a bug.
- $gmtnow=dol_now('gmt'); $yearref=dol_print_date($gmtnow,'%Y'); $monthref=dol_print_date($gmtnow,'%m'); $dayref=dol_print_date($gmtnow,'%d');
- if (dol_stringtotime($_SESSION['dol_dst_first']) <= $gmtnow && $gmtnow < dol_stringtotime($_SESSION['dol_dst_second'])) $daylight=1;
- else $daylight=0;
- $tmp=dol_mktime(0,0,0,$monthref,$dayref,$yearref,false,0)-dol_mktime(0,0,0,$monthref,$dayref,$yearref,true,0)-($daylight*3600);
- return 'unknown'; // For true result
- }
- elseif ($refgmtdate == 'summer')
- {
- if (ini_get("date.timezone")=='UTC') return 0;
- // We don't know server timezone string, so we don't know location, so we can't guess daylight. We assume we use same than client but this may be a bug.
- $gmtnow=dol_now('gmt'); $yearref=dol_print_date($gmtnow,'%Y'); $monthref='08'; $dayref='01';
- if (dol_stringtotime($_SESSION['dol_dst_first']) <= dol_stringtotime($yearref.'-'.$monthref.'-'.$dayref) && dol_stringtotime($yearref.'-'.$monthref.'-'.$dayref) < dol_stringtotime($_SESSION['dol_dst_second'])) $daylight=1;
- else $daylight=0;
- $tmp=dol_mktime(0,0,0,$monthref,$dayref,$yearref,false,0)-dol_mktime(0,0,0,$monthref,$dayref,$yearref,true,0)-($daylight*3600);
- return 'unknown'; // For true result
- }
- else $tmp=dol_mktime(0,0,0,1,1,1970);
- */
- }
- $tz=round(($tmp<0?1:-1)*abs($tmp/3600));
- return $tz;
- }
- /**
- * Add a delay to a date
- *
- * @param int $time Date timestamp (or string with format YYYY-MM-DD)
- * @param int $duration_value Value of delay to add
- * @param int $duration_unit Unit of added delay (d, m, y, w)
- * @return int New timestamp
- */
- function dol_time_plus_duree($time,$duration_value,$duration_unit)
- {
- if ($duration_value == 0) return $time;
- if ($duration_unit == 'w') return $time + (3600*24*7*$duration_value);
- if ($duration_value > 0) $deltastring="+".abs($duration_value);
- if ($duration_value < 0) $deltastring="-".abs($duration_value);
- if ($duration_unit == 'd') { $deltastring.=" day"; }
- if ($duration_unit == 'm') { $deltastring.=" month"; }
- if ($duration_unit == 'y') { $deltastring.=" year"; }
- return strtotime($deltastring,$time);
- }
- /**
- * Convert hours and minutes into seconds
- *
- * @param int $iHours Hours
- * @param int $iMinutes Minutes
- * @param int $iSeconds Seconds
- * @return int Time into seconds
- */
- function convertTime2Seconds($iHours=0,$iMinutes=0,$iSeconds=0)
- {
- $iResult=($iHours*3600)+($iMinutes*60)+$iSeconds;
- return $iResult;
- }
- /** Return, in clear text, value of a number of seconds in days, hours and minutes
- *
- * @param int $iSecond Number of seconds
- * @param string $format Output format (all: total delay days hour:min like "2 days 12:30"", allhourmin: total delay hours:min like "60:30", allhour: total delay hours without min/sec like "60:30", fullhour: total delay hour decimal like "60.5" for 60:30, hour: only hours part "12", min: only minutes part "30", sec: only seconds part, month: only month part, year: only year part);
- * @param int $lengthOfDay Length of day (default 86400 seconds for 1 day, 28800 for 8 hour)
- * @param int $lengthOfWeek Length of week (default 7)
- * @return sTime Formated text of duration
- * Example: 0 return 00:00, 3600 return 1:00, 86400 return 1d, 90000 return 1 Day 01:00
- */
- function convertSecondToTime($iSecond, $format='all', $lengthOfDay=86400, $lengthOfWeek=7)
- {
- global $langs;
- if (empty($lengthOfDay)) $lengthOfDay = 86400; // 1 day = 24 hours
- if (empty($lengthOfWeek)) $lengthOfWeek = 7; // 1 week = 7 days
- if ($format == 'all' || $format == 'allhour' || $format == 'allhourmin')
- {
- if ($iSecond === 0) return '0'; // This is to avoid having 0 return a 12:00 AM for en_US
- $sTime='';
- $sDay=0;
- $sWeek='';
- if ($iSecond >= $lengthOfDay)
- {
- for($i = $iSecond; $i >= $lengthOfDay; $i -= $lengthOfDay )
- {
- $sDay++;
- $iSecond-=$lengthOfDay;
- }
- $dayTranslate = $langs->trans("Day");
- if ($iSecond >= ($lengthOfDay*2)) $dayTranslate = $langs->trans("Days");
- }
- if ($lengthOfWeek < 7)
- {
- if ($sDay)
- {
- if ($sDay >= $lengthOfWeek)
- {
- $sWeek = (int) (($sDay - $sDay % $lengthOfWeek ) / $lengthOfWeek);
- $sDay = $sDay % $lengthOfWeek;
- $weekTranslate = $langs->trans("DurationWeek");
- if ($sWeek >= 2) $weekTranslate = $langs->trans("DurationWeeks");
- $sTime.=$sWeek.' '.$weekTranslate.' ';
- }
- }
- }
- if ($sDay>0)
- {
- $dayTranslate = $langs->trans("Day");
- if ($sDay > 1) $dayTranslate = $langs->trans("Days");
- $sTime.=$sDay.' '.$dayTranslate.' ';
- }
- if ($format == 'all')
- {
- if ($iSecond || empty($sDay))
- {
- $sTime.= dol_print_date($iSecond,'hourduration',true);
- }
- }
- if ($format == 'allhourmin')
- {
- return sprintf("%02d",($sWeek*$lengthOfWeek*24 + $sDay*24 + (int) floor($iSecond/3600))).':'.sprintf("%02d",((int) floor(($iSecond % 3600)/60)));
- }
- if ($format == 'allhour')
- {
- return sprintf("%02d",($sWeek*$lengthOfWeek*24 + $sDay*24 + (int) floor($iSecond/3600)));
- }
- }
- else if ($format == 'hour') // only hour part
- {
- $sTime=dol_print_date($iSecond,'%H',true);
- }
- else if ($format == 'fullhour')
- {
- if (!empty($iSecond)) {
- $iSecond=$iSecond/3600;
- }
- else {
- $iSecond=0;
- }
- $sTime=$iSecond;
- }
- else if ($format == 'min') // only min part
- {
- $sTime=dol_print_date($iSecond,'%M',true);
- }
- else if ($format == 'sec') // only sec part
- {
- $sTime=dol_print_date($iSecond,'%S',true);
- }
- else if ($format == 'month') // only month part
- {
- $sTime=dol_print_date($iSecond,'%m',true);
- }
- else if ($format == 'year') // only year part
- {
- $sTime=dol_print_date($iSecond,'%Y',true);
- }
- return trim($sTime);
- }
- /**
- * Convert a string date into a GM Timestamps date
- *
- * @param string $string Date in a string
- * YYYYMMDD
- * YYYYMMDDHHMMSS
- * YYYYMMDDTHHMMSSZ
- * YYYY-MM-DDTHH:MM:SSZ (RFC3339)
- * DD/MM/YY or DD/MM/YYYY (this format should not be used anymore)
- * DD/MM/YY HH:MM:SS or DD/MM/YYYY HH:MM:SS (this format should not be used anymore)
- * @param int $gm 1 =Input date is GM date,
- * 0 =Input date is local date using PHP server timezone
- * @return int Date as a timestamp
- * 19700101020000 -> 7200 with gm=1
- *
- * @see dol_print_date, dol_mktime, dol_getdate
- */
- function dol_stringtotime($string, $gm=1)
- {
- // Convert date with format DD/MM/YYY HH:MM:SS. This part of code should not be used.
- if (preg_match('/^([0-9]+)\/([0-9]+)\/([0-9]+)\s?([0-9]+)?:?([0-9]+)?:?([0-9]+)?/i',$string,$reg))
- {
- dol_syslog("dol_stringtotime call to function with deprecated parameter", LOG_WARNING);
- // Date est au format 'DD/MM/YY' ou 'DD/MM/YY HH:MM:SS'
- // Date est au format 'DD/MM/YYYY' ou 'DD/MM/YYYY HH:MM:SS'
- $sday = $reg[1];
- $smonth = $reg[2];
- $syear = $reg[3];
- $shour = $reg[4];
- $smin = $reg[5];
- $ssec = $reg[6];
- if ($syear < 50) $syear+=1900;
- if ($syear >= 50 && $syear < 100) $syear+=2000;
- $string=sprintf("%04d%02d%02d%02d%02d%02d",$syear,$smonth,$sday,$shour,$smin,$ssec);
- }
- else if (
- 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) // Convert date with format RFC3339
- || preg_match('/^([0-9]{4})-([0-9]{2})-([0-9]{2}) ([0-9]{2}):([0-9]{2}):([0-9]{2})$/i',$string,$reg) // Convert date with format YYYY-MM-DD HH:MM:SS
- || 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) // Convert date with format YYYYMMDDTHHMMSSZ
- )
- {
- $syear = $reg[1];
- $smonth = $reg[2];
- $sday = $reg[3];
- $shour = $reg[4];
- $smin = $reg[5];
- $ssec = $reg[6];
- $string=sprintf("%04d%02d%02d%02d%02d%02d",$syear,$smonth,$sday,$shour,$smin,$ssec);
- }
- $string=preg_replace('/([^0-9])/i','',$string);
- $tmp=$string.'000000';
- $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?1:0));
- return $date;
- }
- /** Return previous day
- *
- * @param int $day Day
- * @param int $month Month
- * @param int $year Year
- * @return array Previous year,month,day
- */
- function dol_get_prev_day($day, $month, $year)
- {
- $time=dol_mktime(12,0,0,$month,$day,$year,1,0);
- $time-=24*60*60;
- $tmparray=dol_getdate($time,true);
- return array('year' => $tmparray['year'], 'month' => $tmparray['mon'], 'day' => $tmparray['mday']);
- }
- /** Return next day
- *
- * @param int $day Day
- * @param int $month Month
- * @param int $year Year
- * @return array Next year,month,day
- */
- function dol_get_next_day($day, $month, $year)
- {
- $time=dol_mktime(12,0,0,$month,$day,$year,1,0);
- $time+=24*60*60;
- $tmparray=dol_getdate($time,true);
- return array('year' => $tmparray['year'], 'month' => $tmparray['mon'], 'day' => $tmparray['mday']);
- }
- /** Return previous month
- *
- * @param int $month Month
- * @param int $year Year
- * @return array Previous year,month
- */
- function dol_get_prev_month($month, $year)
- {
- if ($month == 1)
- {
- $prev_month = 12;
- $prev_year = $year - 1;
- }
- else
- {
- $prev_month = $month-1;
- $prev_year = $year;
- }
- return array('year' => $prev_year, 'month' => $prev_month);
- }
- /** Return next month
- *
- * @param int $month Month
- * @param int $year Year
- * @return array Next year,month
- */
- function dol_get_next_month($month, $year)
- {
- if ($month == 12)
- {
- $next_month = 1;
- $next_year = $year + 1;
- }
- else
- {
- $next_month = $month + 1;
- $next_year = $year;
- }
- return array('year' => $next_year, 'month' => $next_month);
- }
- /** Return previous week
- *
- * @param int $day Day
- * @param int $week Week
- * @param int $month Month
- * @param int $year Year
- * @return array Previous year,month,day
- */
- function dol_get_prev_week($day, $week, $month, $year)
- {
- $tmparray = dol_get_first_day_week($day, $month, $year);
- $time=dol_mktime(12,0,0,$month,$tmparray['first_day'],$year,1,0);
- $time-=24*60*60*7;
- $tmparray=dol_getdate($time,true);
- return array('year' => $tmparray['year'], 'month' => $tmparray['mon'], 'day' => $tmparray['mday']);
- }
- /** Return next week
- *
- * @param int $day Day
- * @param int $week Week
- * @param int $month Month
- * @param int $year Year
- * @return array Next year,month,day
- */
- function dol_get_next_week($day, $week, $month, $year)
- {
- $tmparray = dol_get_first_day_week($day, $month, $year);
- $time=dol_mktime(12,0,0,$month,$tmparray['first_day'],$year,1,0);
- $time+=24*60*60*7;
- $tmparray=dol_getdate($time,true);
- return array('year' => $tmparray['year'], 'month' => $tmparray['mon'], 'day' => $tmparray['mday']);
- }
- /** Return GMT time for first day of a month or year
- *
- * @param int $year Year
- * @param int $month Month
- * @param mixed $gm False or 0 or 'server' = Return date to compare with server TZ, True or 1 to compare with GM date.
- * Exemple: dol_get_first_day(1970,1,false) will return -3600 with TZ+1, after a dol_print_date will return 1970-01-01 00:00:00
- * Exemple: dol_get_first_day(1970,1,true) will return 0 whatever is TZ, after a dol_print_date will return 1970-01-01 00:00:00
- * @return int Date for first day
- */
- function dol_get_first_day($year,$month=1,$gm=false)
- {
- return dol_mktime(0,0,0,$month,1,$year,$gm);
- }
- /** Return GMT time for last day of a month or year
- *
- * @param int $year Year
- * @param int $month Month
- * @param boolean $gm False or 0 or 'server' = Return date to compare with server TZ, True or 1 to compare with GM date.
- * @return int Date for first day
- */
- function dol_get_last_day($year,$month=12,$gm=false)
- {
- if ($month == 12)
- {
- $month = 1;
- $year += 1;
- }
- else
- {
- $month += 1;
- }
- // On se deplace au debut du mois suivant, et on retire un jour
- $datelim=dol_mktime(23,59,59,$month,1,$year,$gm);
- $datelim -= (3600 * 24);
- return $datelim;
- }
- /** Return first day of week for a date
- *
- * @param int $day Day
- * @param int $month Month
- * @param int $year Year
- * @param int $gm False or 0 or 'server' = Return date to compare with server TZ, True or 1 to compare with GM date.
- * @return array year,month, week,first_day,prev_year,prev_month,prev_day
- */
- function dol_get_first_day_week($day,$month,$year,$gm=false)
- {
- global $conf;
- $date = dol_mktime(0,0,0,$month,$day,$year,$gm);
- //Checking conf of start week
- $start_week = (isset($conf->global->MAIN_START_WEEK)?$conf->global->MAIN_START_WEEK:1);
- $tmparray = dol_getdate($date,true);
- //Calculate days to count
- $days = $start_week - $tmparray['wday'];
- if ($days>=1) $days=7-$days;
- $days = abs($days);
- $seconds = $days*24*60*60;
- //Get first day of week
- $tmpday = date($tmparray[0])-$seconds;
- $tmpday = date("d",$tmpday);
- //Check first day of week is form this month or not
- if ($tmpday>$day)
- {
- $prev_month = $month-1;
- $prev_year = $year;
- if ($prev_month==0)
- {
- $prev_month = 12;
- $prev_year = $year-1;
- }
- }
- else
- {
- $prev_month = $month;
- $prev_year = $year;
- }
- //Get first day of next week
- $tmptime=dol_mktime(12,0,0,$month,$tmpday,$year,1,0);
- $tmptime-=24*60*60*7;
- $tmparray=dol_getdate($tmptime,true);
- $prev_day = $tmparray['mday'];
- //Check first day of week is form this month or not
- if ($prev_day>$tmpday)
- {
- $prev_month = $month-1;
- $prev_year = $year;
- if ($prev_month==0)
- {
- $prev_month = 12;
- $prev_year = $year-1;
- }
- }
- $week = date("W",dol_mktime(0,0,0,$month,$tmpday,$year,$gm));
- return array('year' => $year, 'month' => $month, 'week' => $week, 'first_day' => $tmpday, 'prev_year' => $prev_year, 'prev_month' => $prev_month, 'prev_day' => $prev_day);
- }
- /**
- * Fonction retournant le nombre de jour feries, samedis et dimanches entre 2 dates entrees en timestamp. Dates must be UTC with hour, day, min to 0
- * Called by function num_open_day
- *
- * @param int $timestampStart Timestamp de debut
- * @param int $timestampEnd Timestamp de fin
- * @param string $countrycode Country code
- * @return int Nombre de jours feries
- */
- function num_public_holiday($timestampStart, $timestampEnd, $countrycode='FR')
- {
- $nbFerie = 0;
- // Check to ensure we use correct parameters
- if ((($timestampEnd - $timestampStart) % 86400) != 0) return 'ErrorDates must use same hour and be GMT dates';
- while ($timestampStart < $timestampEnd) // Loop end when equals
- {
- $ferie=false;
- $countryfound=0;
- $jour = date("d", $timestampStart);
- $mois = date("m", $timestampStart);
- $annee = date("Y", $timestampStart);
- if ($countrycode == 'FR')
- {
- $countryfound=1;
- // Definition des dates feriees fixes
- if($jour == 1 && $mois == 1) $ferie=true; // 1er janvier
- if($jour == 1 && $mois == 5) $ferie=true; // 1er mai
- if($jour == 8 && $mois == 5) $ferie=true; // 5 mai
- if($jour == 14 && $mois == 7) $ferie=true; // 14 juillet
- if($jour == 15 && $mois == 8) $ferie=true; // 15 aout
- if($jour == 1 && $mois == 11) $ferie=true; // 1 novembre
- if($jour == 11 && $mois == 11) $ferie=true; // 11 novembre
- if($jour == 25 && $mois == 12) $ferie=true; // 25 decembre
- // Calcul du jour de paques
- $date_paques = easter_date($annee);
- $jour_paques = date("d", $date_paques);
- $mois_paques = date("m", $date_paques);
- if($jour_paques == $jour && $mois_paques == $mois) $ferie=true;
- // Paques
- // Calcul du jour de l ascension (38 jours apres Paques)
- $date_ascension = mktime(
- date("H", $date_paques),
- date("i", $date_paques),
- date("s", $date_paques),
- date("m", $date_paques),
- date("d", $date_paques) + 38,
- date("Y", $date_paques)
- );
- $jour_ascension = date("d", $date_ascension);
- $mois_ascension = date("m", $date_ascension);
- if($jour_ascension == $jour && $mois_ascension == $mois) $ferie=true;
- //Ascension
- // Calcul de Pentecote (11 jours apres Paques)
- $date_pentecote = mktime(
- date("H", $date_ascension),
- date("i", $date_ascension),
- date("s", $date_ascension),
- date("m", $date_ascension),
- date("d", $date_ascension) + 11,
- date("Y", $date_ascension)
- );
- $jour_pentecote = date("d", $date_pentecote);
- $mois_pentecote = date("m", $date_pentecote);
- if($jour_pentecote == $jour && $mois_pentecote == $mois) $ferie=true;
- //Pentecote
- // Calul des samedis et dimanches
- $jour_julien = unixtojd($timestampStart);
- $jour_semaine = jddayofweek($jour_julien, 0);
- if($jour_semaine == 0 || $jour_semaine == 6) $ferie=true;
- //Samedi (6) et dimanche (0)
- }
- // Pentecoste and Ascensione in Italy go to the sunday after: isn't holiday.
- // Pentecoste is 50 days after Easter, Ascensione 40
- if ($countrycode == 'IT')
- {
- $countryfound=1;
- // Definition des dates feriees fixes
- if($jour == 1 && $mois == 1) $ferie=true; // Capodanno
- if($jour == 6 && $mois == 1) $ferie=true; // Epifania
- if($jour == 25 && $mois == 4) $ferie=true; // Anniversario Liberazione
- if($jour == 1 && $mois == 5) $ferie=true; // Festa del Lavoro
- if($jour == 2 && $mois == 6) $ferie=true; // Festa della Repubblica
- if($jour == 15 && $mois == 8) $ferie=true; // Ferragosto
- if($jour == 1 && $mois == 11) $ferie=true; // Tutti i Santi
- if($jour == 8 && $mois == 12) $ferie=true; // Immacolata Concezione
- if($jour == 25 && $mois == 12) $ferie=true; // 25 decembre
- if($jour == 26 && $mois == 12) $ferie=true; // Santo Stefano
- // Calcul du jour de paques
- $date_paques = easter_date($annee);
- $jour_paques = date("d", $date_paques);
- $mois_paques = date("m", $date_paques);
- if($jour_paques == $jour && $mois_paques == $mois) $ferie=true;
- // Paques
- // Calul des samedis et dimanches
- $jour_julien = unixtojd($timestampStart);
- $jour_semaine = jddayofweek($jour_julien, 0);
- if($jour_semaine == 0 || $jour_semaine == 6) $ferie=true;
- //Samedi (6) et dimanche (0)
- }
- // Cas pays non defini
- if (! $countryfound)
- {
- // Calul des samedis et dimanches
- $jour_julien = unixtojd($timestampStart);
- $jour_semaine = jddayofweek($jour_julien, 0);
- if($jour_semaine == 0 || $jour_semaine == 6) $ferie=true;
- //Samedi (6) et dimanche (0)
- }
- // On incremente compteur
- if ($ferie) $nbFerie++;
- // Increase number of days (on go up into loop)
- $jour++;
- $timestampStart=dol_mktime(0,0,0,$mois,$jour,$annee,1); // Generate GMT date for next day
- }
- return $nbFerie;
- }
- /**
- * Function to return number of days between two dates (date must be UTC date !)
- * Example: 2012-01-01 2012-01-02 => 1 if lastday=0, 2 if lastday=1
- *
- * @param int $timestampStart Timestamp start UTC
- * @param int $timestampEnd Timestamp end UTC
- * @param int $lastday Last day is included, 0: non, 1:oui
- * @return int Number of days
- */
- function num_between_day($timestampStart, $timestampEnd, $lastday=0)
- {
- if ($timestampStart < $timestampEnd)
- {
- if ($lastday == 1)
- {
- $bit = 0;
- }
- else
- {
- $bit = 1;
- }
- $nbjours = (int) floor(($timestampEnd - $timestampStart)/(60*60*24)) + 1 - $bit;
- }
- //print ($timestampEnd - $timestampStart) - $lastday;
- return $nbjours;
- }
- /**
- * Function to return number of working days (and text of units) between two dates (working days)
- *
- * @param int $timestampStart Timestamp for start date (date must be UTC to avoid calculation errors)
- * @param int $timestampEnd Timestamp for end date (date must be UTC to avoid calculation errors)
- * @param int $inhour 0: return number of days, 1: return number of hours
- * @param int $lastday We include last day, 0: no, 1:yes
- * @param int $halfday Tag to define half day when holiday start and end
- * @return int Number of days or hours
- */
- function num_open_day($timestampStart, $timestampEnd, $inhour=0, $lastday=0, $halfday=0)
- {
- global $langs;
- dol_syslog('num_open_day timestampStart='.$timestampStart.' timestampEnd='.$timestampEnd.' bit='.$lastday);
- // Check parameters
- if (! is_int($timestampStart) && ! is_float($timestampStart)) return 'ErrorBadParameter_num_open_day';
- if (! is_int($timestampEnd) && ! is_float($timestampEnd)) return 'ErrorBadParameter_num_open_day';
- //print 'num_open_day timestampStart='.$timestampStart.' timestampEnd='.$timestampEnd.' bit='.$lastday;
- if ($timestampStart < $timestampEnd)
- {
- $nbOpenDay = num_between_day($timestampStart, $timestampEnd, $lastday) - num_public_holiday($timestampStart, $timestampEnd, $lastday);
- $nbOpenDay.= " " . $langs->trans("Days");
- if ($inhour == 1 && $nbOpenDay <= 3) $nbOpenDay = $nbOpenDay*24 . $langs->trans("HourShort");
- return $nbOpenDay - (($inhour == 1 ? 12 : 0.5) * abs($halfday));
- }
- elseif ($timestampStart == $timestampEnd)
- {
- $nbOpenDay=$lastday;
- if ($inhour == 1) $nbOpenDay = $nbOpenDay*24 . $langs->trans("HourShort");
- return $nbOpenDay - (($inhour == 1 ? 12 : 0.5) * abs($halfday));
- }
- else
- {
- return $langs->trans("Error");
- }
- }
- /**
- * Return array of translated months or selected month.
- * This replace old function monthArrayOrSelected.
- *
- * @param Translate $outputlangs Object langs
- * @return array Month string or array if selected < 0
- */
- function monthArray($outputlangs)
- {
- $montharray = array (
- 1 => $outputlangs->trans("January"),
- 2 => $outputlangs->trans("February"),
- 3 => $outputlangs->trans("March"),
- 4 => $outputlangs->trans("April"),
- 5 => $outputlangs->trans("May"),
- 6 => $outputlangs->trans("June"),
- 7 => $outputlangs->trans("July"),
- 8 => $outputlangs->trans("August"),
- 9 => $outputlangs->trans("September"),
- 10 => $outputlangs->trans("October"),
- 11 => $outputlangs->trans("November"),
- 12 => $outputlangs->trans("December")
- );
- return $montharray;
- }
|