X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=includes%2Fdate_functions.inc;h=e44f083b41d424c55f1589fab3e87c1510446e1b;hb=2e8e792ac86ac0242c38236fa14bf7a005b921a7;hp=24f3b8f8b78bb1e52be9cd8056aa6bc77de457f4;hpb=818719f38b8327cdca616d58b13913dbd174d96a;p=fa-stable.git diff --git a/includes/date_functions.inc b/includes/date_functions.inc index 24f3b8f8..e44f083b 100644 --- a/includes/date_functions.inc +++ b/includes/date_functions.inc @@ -1,13 +1,13 @@ . + See the License here . ***********************************************************************/ /* date validation and parsing functions @@ -18,6 +18,8 @@ this can be a string either "d/m/Y" for UK/Australia/New Zealand dates or "m/d/Y" for US/Canada format dates */ +if(function_exists("date_default_timezone_set") and function_exists("date_default_timezone_get")) + @date_default_timezone_set(@date_default_timezone_get()); function __date($year, $month, $day) { @@ -141,6 +143,19 @@ function Now() else return date("H:i"); } +// +// Retrieve and optionaly set default date for new document. +// +function new_doc_date($date=null) +{ + if (isset($date)) + $_SESSION['_default_date'] = $date; + + if (!isset($_SESSION['_default_date']) || !sticky_doc_date()) + $_SESSION['_default_date'] = Today(); + + return $_SESSION['_default_date']; +} function is_date_in_fiscalyear($date, $convert=false) { @@ -347,6 +362,8 @@ and converts to a yyyy/mm/dd format */ $year = substr($date_,0,4); } } + else + $year = $month = $day = 0; //to modify assumption in 2030 if ($date_system == 0) @@ -403,7 +420,7 @@ function date1_greater_date2 ($date1, $date2) } -function date_diff ($date1, $date2, $period) +function date_diff2 ($date1, $date2, $period) { /* expects dates in the format specified in $DefaultDateFormat - period can be one of 'd','w','y','m'