CRM-13863 - Civi style for ui dialog buttons
[civicrm-core.git] / CRM / Utils / Date.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * Date utilties
38 */
39class CRM_Utils_Date {
40
41 /**
42 * format a date by padding it with leading '0'.
43 *
f4aaa82a
EM
44 * @param array $date ('Y', 'M', 'd')
45 * @param string $separator the seperator to use when formatting the date
46 * @param int|string $invalidDate what to return if the date is invalid
6a488035
TO
47 *
48 * @return string - formatted string for date
49 *
50 * @static
51 */
52 static function format($date, $separator = '', $invalidDate = 0) {
53 if (is_numeric($date) &&
54 ((strlen($date) == 8) || (strlen($date) == 14))
55 ) {
56 return $date;
57 }
58
59 if (!is_array($date) ||
60 CRM_Utils_System::isNull($date) ||
61 empty($date['Y'])
62 ) {
63 return $invalidDate;
64 }
65
66 $date['Y'] = (int ) $date['Y'];
67 if ($date['Y'] < 1000 || $date['Y'] > 2999) {
68 return $invalidDate;
69 }
70
71 if (array_key_exists('m', $date)) {
72 $date['M'] = $date['m'];
73 }
74 elseif (array_key_exists('F', $date)) {
75 $date['M'] = $date['F'];
76 }
77
a7488080 78 if (!empty($date['M'])) {
6a488035
TO
79 $date['M'] = (int ) $date['M'];
80 if ($date['M'] < 1 || $date['M'] > 12) {
81 return $invalidDate;
82 }
83 }
84 else {
85 $date['M'] = 1;
86 }
87
a7488080 88 if (!empty($date['d'])) {
6a488035
TO
89 $date['d'] = (int ) $date['d'];
90 }
91 else {
92 $date['d'] = 1;
93 }
94
95 if (!checkdate($date['M'], $date['d'], $date['Y'])) {
96 return $invalidDate;
97 }
98
99 $date['M'] = sprintf('%02d', $date['M']);
100 $date['d'] = sprintf('%02d', $date['d']);
101
102 $time = '';
103 if (CRM_Utils_Array::value('H', $date) != NULL ||
104 CRM_Utils_Array::value('h', $date) != NULL ||
105 CRM_Utils_Array::value('i', $date) != NULL ||
106 CRM_Utils_Array::value('s', $date) != NULL
107 ) {
108 // we have time too..
a7488080 109 if (!empty($date['h'])) {
6a488035
TO
110 if (CRM_Utils_Array::value('A', $date) == 'PM' or CRM_Utils_Array::value('a', $date) == 'pm') {
111 if ($date['h'] != 12) {
112 $date['h'] = $date['h'] + 12;
113 }
114 }
115 if ((CRM_Utils_Array::value('A', $date) == 'AM' or CRM_Utils_Array::value('a', $date) == 'am') &&
116 CRM_Utils_Array::value('h', $date) == 12
117 ) {
118 $date['h'] = '00';
119 }
120
121 $date['h'] = (int ) $date['h'];
122 }
123 else {
124 $date['h'] = 0;
125 }
126
127 // in 24-hour format the hour is under the 'H' key
a7488080 128 if (!empty($date['H'])) {
6a488035
TO
129 $date['H'] = (int) $date['H'];
130 }
131 else {
132 $date['H'] = 0;
133 }
134
a7488080 135 if (!empty($date['i'])) {
6a488035
TO
136 $date['i'] = (int ) $date['i'];
137 }
138 else {
139 $date['i'] = 0;
140 }
141
142 if ($date['h'] == 0 && $date['H'] != 0) {
143 $date['h'] = $date['H'];
144 }
145
a7488080 146 if (!empty($date['s'])) {
6a488035
TO
147 $date['s'] = (int ) $date['s'];
148 }
149 else {
150 $date['s'] = 0;
151 }
152
153 $date['h'] = sprintf('%02d', $date['h']);
154 $date['i'] = sprintf('%02d', $date['i']);
155 $date['s'] = sprintf('%02d', $date['s']);
156
157 if ($separator) {
158 $time = '&nbsp;';
159 }
160 $time .= $date['h'] . $separator . $date['i'] . $separator . $date['s'];
161 }
162
163 return $date['Y'] . $separator . $date['M'] . $separator . $date['d'] . $time;
164 }
165
166 /**
167 * return abbreviated weekday names according to the locale
168 *
169 * @return array 0-based array with abbreviated weekday names
170 *
171 * @static
172 */
173 static function &getAbbrWeekdayNames() {
174 static $abbrWeekdayNames;
175 if (!isset($abbrWeekdayNames)) {
176
177 // set LC_TIME and build the arrays from locale-provided names
178 // June 1st, 1970 was a Monday
179 CRM_Core_I18n::setLcTime();
180 for ($i = 0; $i < 7; $i++) {
181 $abbrWeekdayNames[$i] = strftime('%a', mktime(0, 0, 0, 6, $i, 1970));
182 }
183 }
184 return $abbrWeekdayNames;
185 }
186
187 /**
188 * return full weekday names according to the locale
189 *
190 * @return array 0-based array with full weekday names
191 *
192 * @static
193 */
194 static function &getFullWeekdayNames() {
195 static $fullWeekdayNames;
196 if (!isset($fullWeekdayNames)) {
197
198 // set LC_TIME and build the arrays from locale-provided names
199 // June 1st, 1970 was a Monday
200 CRM_Core_I18n::setLcTime();
201 for ($i = 0; $i < 7; $i++) {
202 $fullWeekdayNames[$i] = strftime('%A', mktime(0, 0, 0, 6, $i, 1970));
203 }
204 }
205 return $fullWeekdayNames;
206 }
207
208 /**
209 * return abbreviated month names according to the locale
210 *
f4aaa82a
EM
211 * @param bool $month
212 *
6a488035
TO
213 * @return array 1-based array with abbreviated month names
214 *
215 * @static
216 */
217 static function &getAbbrMonthNames($month = FALSE) {
218 static $abbrMonthNames;
219 if (!isset($abbrMonthNames)) {
220
221 // set LC_TIME and build the arrays from locale-provided names
222 CRM_Core_I18n::setLcTime();
223 for ($i = 1; $i <= 12; $i++) {
224 $abbrMonthNames[$i] = strftime('%b', mktime(0, 0, 0, $i, 10, 1970));
225 }
226 }
227 if ($month) {
228 return $abbrMonthNames[$month];
229 }
230 return $abbrMonthNames;
231 }
232
233 /**
234 * return full month names according to the locale
235 *
236 * @return array 1-based array with full month names
237 *
238 * @static
239 */
240 static function &getFullMonthNames() {
241 static $fullMonthNames;
242 if (!isset($fullMonthNames)) {
243
244 // set LC_TIME and build the arrays from locale-provided names
245 CRM_Core_I18n::setLcTime();
246 for ($i = 1; $i <= 12; $i++) {
247 $fullMonthNames[$i] = strftime('%B', mktime(0, 0, 0, $i, 10, 1970));
248 }
249 }
250 return $fullMonthNames;
251 }
252
5bc392e6
EM
253 /**
254 * @param $string
255 *
256 * @return int
257 */
6a488035
TO
258 static function unixTime($string) {
259 if (empty($string)) {
260 return 0;
261 }
262 $parsedDate = date_parse($string);
263 return mktime(CRM_Utils_Array::value('hour', $parsedDate),
264 CRM_Utils_Array::value('minute', $parsedDate),
265 59,
266 CRM_Utils_Array::value('month', $parsedDate),
267 CRM_Utils_Array::value('day', $parsedDate),
268 CRM_Utils_Array::value('year', $parsedDate)
269 );
270 }
271
272 /**
273 * create a date and time string in a provided format
274 *
275 * %b - abbreviated month name ('Jan'..'Dec')
276 * %B - full month name ('January'..'December')
277 * %d - day of the month as a decimal number, 0-padded ('01'..'31')
278 * %e - day of the month as a decimal number, blank-padded (' 1'..'31')
279 * %E - day of the month as a decimal number ('1'..'31')
280 * %f - English ordinal suffix for the day of the month ('st', 'nd', 'rd', 'th')
281 * %H - hour in 24-hour format, 0-padded ('00'..'23')
282 * %I - hour in 12-hour format, 0-padded ('01'..'12')
283 * %k - hour in 24-hour format, blank-padded (' 0'..'23')
284 * %l - hour in 12-hour format, blank-padded (' 1'..'12')
285 * %m - month as a decimal number, 0-padded ('01'..'12')
286 * %M - minute, 0-padded ('00'..'60')
287 * %p - lowercase ante/post meridiem ('am', 'pm')
288 * %P - uppercase ante/post meridiem ('AM', 'PM')
289 * %Y - year as a decimal number including the century ('2005')
290 *
f5d25ee9 291 * @param string $dateString
f4aaa82a
EM
292 * @param string $format the output format
293 * @param array $dateParts an array with the desired date parts
6a488035 294 *
f4aaa82a 295 * @internal param string $date date and time in 'YYYY-MM-DD hh:mm:ss' format
6a488035
TO
296 * @return string the $format-formatted $date
297 *
298 * @static
299 */
300 static function customFormat($dateString, $format = NULL, $dateParts = NULL) {
301 // 1-based (January) month names arrays
302 $abbrMonths = self::getAbbrMonthNames();
303 $fullMonths = self::getFullMonthNames();
304
305 if (!$format) {
306 $config = CRM_Core_Config::singleton();
307
308 if ($dateParts) {
309 if (array_intersect(array('h', 'H'), $dateParts)) {
310 $format = $config->dateformatDatetime;
311 }
312 elseif (array_intersect(array('d', 'j'), $dateParts)) {
313 $format = $config->dateformatFull;
314 }
315 elseif (array_intersect(array('m', 'M'), $dateParts)) {
316 $format = $config->dateformatPartial;
317 }
318 else {
319 $format = $config->dateformatYear;
320 }
321 }
322 else {
323 if (strpos($dateString, '-')) {
324 $month = (int) substr($dateString, 5, 2);
325 $day = (int) substr($dateString, 8, 2);
326 }
327 else {
328 $month = (int) substr($dateString, 4, 2);
329 $day = (int) substr($dateString, 6, 2);
330 }
331
332 if (strlen($dateString) > 10) {
333 $format = $config->dateformatDatetime;
334 }
335 elseif ($day > 0) {
336 $format = $config->dateformatFull;
337 }
338 elseif ($month > 0) {
339 $format = $config->dateformatPartial;
340 }
341 else {
342 $format = $config->dateformatYear;
343 }
344 }
345 }
346
347 if ($dateString) {
348 if (strpos($dateString, '-')) {
349 $year = (int) substr($dateString, 0, 4);
350 $month = (int) substr($dateString, 5, 2);
351 $day = (int) substr($dateString, 8, 2);
352
353 $hour24 = (int) substr($dateString, 11, 2);
354 $minute = (int) substr($dateString, 14, 2);
355 }
356 else {
357 $year = (int) substr($dateString, 0, 4);
358 $month = (int) substr($dateString, 4, 2);
359 $day = (int) substr($dateString, 6, 2);
360
361 $hour24 = (int) substr($dateString, 8, 2);
362 $minute = (int) substr($dateString, 10, 2);
363 }
364
365 if ($day % 10 == 1 and $day != 11) {
366 $suffix = 'st';
367 }
368 elseif ($day % 10 == 2 and $day != 12) {
369 $suffix = 'nd';
370 }
371 elseif ($day % 10 == 3 and $day != 13) {
372 $suffix = 'rd';
373 }
374 else {
375 $suffix = 'th';
376 }
377
378 if ($hour24 < 12) {
379 if ($hour24 == 00) {
380 $hour12 = 12;
381 }
382 else {
383 $hour12 = $hour24;
384 }
385 $type = 'AM';
386 }
387 else {
388 if ($hour24 == 12) {
389 $hour12 = 12;
390 }
391 else {
392 $hour12 = $hour24 - 12;
393 }
394 $type = 'PM';
395 }
396
397 $date = array(
398 '%b' => CRM_Utils_Array::value($month, $abbrMonths),
399 '%B' => CRM_Utils_Array::value($month, $fullMonths),
400 '%d' => $day > 9 ? $day : '0' . $day,
401 '%e' => $day > 9 ? $day : ' ' . $day,
402 '%E' => $day,
403 '%f' => $suffix,
404 '%H' => $hour24 > 9 ? $hour24 : '0' . $hour24,
405 '%h' => $hour12 > 9 ? $hour12 : '0' . $hour12,
406 '%I' => $hour12 > 9 ? $hour12 : '0' . $hour12,
407 '%k' => $hour24 > 9 ? $hour24 : ' ' . $hour24,
408 '%l' => $hour12 > 9 ? $hour12 : ' ' . $hour12,
409 '%m' => $month > 9 ? $month : '0' . $month,
410 '%M' => $minute > 9 ? $minute : '0' . $minute,
411 '%i' => $minute > 9 ? $minute : '0' . $minute,
412 '%p' => strtolower($type),
413 '%P' => $type,
414 '%A' => $type,
415 '%Y' => $year,
416 );
417
418 return strtr($format, $date);
419 }
420 else {
421 return '';
422 }
423 }
424
425 /**
426 * converts the date/datetime from MySQL format to ISO format
427 *
428 * @param string $mysql date/datetime in MySQL format
429 *
430 * @return string date/datetime in ISO format
431 * @static
432 */
433 static function mysqlToIso($mysql) {
434 $year = substr($mysql, 0, 4);
435 $month = substr($mysql, 4, 2);
436 $day = substr($mysql, 6, 2);
437 $hour = substr($mysql, 8, 2);
438 $minute = substr($mysql, 10, 2);
439 $second = substr($mysql, 12, 2);
440
441 $iso = '';
442 if ($year) {
443 $iso .= "$year";
444 }
445 if ($month) {
446 $iso .= "-$month";
447 if ($day) {
448 $iso .= "-$day";
449 }
450 }
451
452 if ($hour) {
453 $iso .= " $hour";
454 if ($minute) {
455 $iso .= ":$minute";
456 if ($second) {
457 $iso .= ":$second";
458 }
459 }
460 }
461 return $iso;
462 }
463
464 /**
465 * converts the date/datetime from ISO format to MySQL format
5d9f6898
EM
466 * Note that until CRM-14986/ 4.4.7 this was required whenever the pattern $dao->find(TRUE): $dao->save(); was
467 * used to update an object with a date field was used. The DAO now checks for a '-' in date field strings
468 * & runs this function if the - appears - meaning it is likely redundant in the form & BAO layers
6a488035
TO
469 *
470 * @param string $iso date/datetime in ISO format
471 *
472 * @return string date/datetime in MySQL format
473 * @static
474 */
475 static function isoToMysql($iso) {
476 $dropArray = array('-' => '', ':' => '', ' ' => '');
477 return strtr($iso, $dropArray);
478 }
479
480 /**
481 * converts the any given date to default date format.
482 *
f4aaa82a
EM
483 * @param array $params has given date-format
484 * @param int $dateType type of date
485 * @param string $dateParam index of params
486 *
487 * @return bool
6a488035
TO
488 * @static
489 */
d4c8a770 490 static function convertToDefaultDate(&$params, $dateType, $dateParam) {
6a488035
TO
491 $now = getDate();
492 $cen = substr($now['year'], 0, 2);
493 $prevCen = $cen - 1;
494
495 $value = NULL;
a7488080 496 if (!empty($params[$dateParam])) {
6a488035
TO
497 // suppress hh:mm or hh:mm:ss if it exists CRM-7957
498 $value = preg_replace("/(\s(([01]\d)|[2][0-3])(:([0-5]\d)){1,2})$/", "", $params[$dateParam]);
499 }
500
501 switch ($dateType) {
502 case 1:
503 if (!preg_match('/^\d\d\d\d-?(\d|\d\d)-?(\d|\d\d)$/', $value)) {
504 return FALSE;
505 }
506 break;
507
508 case 2:
509 if (!preg_match('/^(\d|\d\d)[-\/](\d|\d\d)[-\/]\d\d$/', $value)) {
510 return FALSE;
511 }
512 break;
513
514 case 4:
515 if (!preg_match('/^(\d|\d\d)[-\/](\d|\d\d)[-\/]\d\d\d\d$/', $value)) {
516 return FALSE;
517 }
518 break;
519
520 case 8:
521 if (!preg_match('/^[A-Za-z]*.[ \t]?\d\d\,[ \t]?\d\d\d\d$/', $value)) {
522 return FALSE;
523 }
524 break;
525
526 case 16:
527 if (!preg_match('/^\d\d-[A-Za-z]{3}.*-\d\d$/', $value) && !preg_match('/^\d\d[-\/]\d\d[-\/]\d\d$/', $value)) {
528 return FALSE;
529 }
530 break;
531
532 case 32:
533 if (!preg_match('/^(\d|\d\d)[-\/](\d|\d\d)[-\/]\d\d\d\d/', $value)) {
534 return FALSE;
535 }
536 break;
537 }
538
539 if ($dateType == 1) {
540 $formattedDate = explode("-", $value);
541 if (count($formattedDate) == 3) {
542 $year = (int) $formattedDate[0];
543 $month = (int) $formattedDate[1];
544 $day = (int) $formattedDate[2];
545 }
546 elseif (count($formattedDate) == 1 && (strlen($value) == 8)) {
547 return TRUE;
548 }
549 else {
550 return FALSE;
551 }
552 }
553
554
555 if ($dateType == 2 || $dateType == 4) {
556 $formattedDate = explode("/", $value);
557 if (count($formattedDate) != 3) {
558 $formattedDate = explode("-", $value);
559 }
560 if (count($formattedDate) == 3) {
561 $year = (int) $formattedDate[2];
562 $month = (int) $formattedDate[0];
563 $day = (int) $formattedDate[1];
564 }
565 else {
566 return FALSE;
567 }
568 }
569 if ($dateType == 8) {
570 $dateArray = explode(' ', $value);
571 // ignore comma(,)
572 $dateArray[1] = (int) substr($dateArray[1], 0, 2);
573
574 $monthInt = 0;
575 $fullMonths = self::getFullMonthNames();
576 foreach ($fullMonths as $key => $val) {
577 if (strtolower($dateArray[0]) == strtolower($val)) {
578 $monthInt = $key;
579 break;
580 }
581 }
582 if (!$monthInt) {
583 $abbrMonths = self::getAbbrMonthNames();
584 foreach ($abbrMonths as $key => $val) {
585 if (strtolower(trim($dateArray[0], ".")) == strtolower($val)) {
586 $monthInt = $key;
587 break;
588 }
589 }
590 }
591 $year = (int) $dateArray[2];
592 $day = (int) $dateArray[1];
593 $month = (int) $monthInt;
594 }
595 if ($dateType == 16) {
596 $dateArray = explode('-', $value);
597 if (count($dateArray) != 3) {
598 $dateArray = explode('/', $value);
599 }
600
601 if (count($dateArray) == 3) {
602 $monthInt = 0;
603 $fullMonths = self::getFullMonthNames();
604 foreach ($fullMonths as $key => $val) {
605 if (strtolower($dateArray[1]) == strtolower($val)) {
606 $monthInt = $key;
607 break;
608 }
609 }
610 if (!$monthInt) {
611 $abbrMonths = self::getAbbrMonthNames();
612 foreach ($abbrMonths as $key => $val) {
613 if (strtolower(trim($dateArray[1], ".")) == strtolower($val)) {
614 $monthInt = $key;
615 break;
616 }
617 }
618 }
619 if (!$monthInt) {
620 $monthInt = $dateArray[1];
621 }
622
623 $year = (int) $dateArray[2];
624 $day = (int) $dateArray[0];
625 $month = (int) $monthInt;
626 }
627 else {
628 return FALSE;
629 }
630 }
631 if ($dateType == 32) {
632 $formattedDate = explode("/", $value);
633 if (count($formattedDate) == 3) {
634 $year = (int) $formattedDate[2];
635 $month = (int) $formattedDate[1];
636 $day = (int) $formattedDate[0];
637 }
638 else {
639 return FALSE;
640 }
641 }
642
643 $month = ($month < 10) ? "0" . "$month" : $month;
644 $day = ($day < 10) ? "0" . "$day" : $day;
645
646 $year = (int ) $year;
647 // simple heuristic to determine what century to use
648 // 00 - 20 is always 2000 - 2020
649 // 21 - 99 is always 1921 - 1999
650 if ($year < 21) {
651 $year = (strlen($year) == 1) ? $cen . '0' . $year : $cen . $year;
652 }
653 elseif ($year < 100) {
654 $year = $prevCen . $year;
655 }
656
657 if ($params[$dateParam]) {
658 $params[$dateParam] = "$year$month$day";
659 }
660 //if month is invalid return as error
661 if ($month !== '00' && $month <= 12) {
662 return TRUE;
663 }
664 return FALSE;
665 }
666
5bc392e6
EM
667 /**
668 * @param $date
669 *
670 * @return bool
671 */
6a488035
TO
672 static function isDate(&$date) {
673 if (CRM_Utils_System::isNull($date)) {
674 return FALSE;
675 }
676 return TRUE;
677 }
678
5bc392e6
EM
679 /**
680 * @param null $timeStamp
681 *
682 * @return bool|string
683 */
6a488035
TO
684 static function currentDBDate($timeStamp = NULL) {
685 return $timeStamp ? date('YmdHis', $timeStamp) : date('YmdHis');
686 }
687
5bc392e6
EM
688 /**
689 * @param $date
690 * @param null $now
691 *
692 * @return bool
693 */
6a488035
TO
694 static function overdue($date, $now = NULL) {
695 $mysqlDate = self::isoToMysql($date);
696 if (!$now) {
697 $now = self::currentDBDate();
698 }
699 else {
700 $now = self::isoToMysql($now);
701 }
702
703 return ($mysqlDate >= $now) ? FALSE : TRUE;
704 }
705
706 /**
707 * Function to get customized today
708 *
709 * This function is used for getting customized today. To get
710 * actuall today pass 'dayParams' as null. or else pass the day,
711 * month, year values as array values
712 * Example: $dayParams = array(
713 'day' => '25', 'month' => '10',
714 * 'year' => '2007' );
715 *
716 * @param Array $dayParams Array of the day, month, year
717 * values.
718 * @param string $format expected date format( default
719 * format is 2007-12-21 )
720 *
721 * @return string Return the customized todays date (Y-m-d)
722 * @static
723 */
724 static function getToday($dayParams = NULL, $format = "Y-m-d") {
725 if (is_null($dayParams) || empty($dayParams)) {
726 $today = date($format);
727 }
728 else {
729 $today = date($format, mktime(0, 0, 0,
730 $dayParams['month'],
731 $dayParams['day'],
732 $dayParams['year']
733 ));
734 }
735
736 return $today;
737 }
738
739 /**
740 * Function to find whether today's date lies in
741 * the given range
742 *
743 * @param date $startDate start date for the range
744 * @param date $endDate end date for the range
745 *
746 * @return true todays date is in the given date range
747 * @static
748 */
749 static function getRange($startDate, $endDate) {
750 $today = date("Y-m-d");
751 $mysqlStartDate = self::isoToMysql($startDate);
752 $mysqlEndDate = self::isoToMysql($endDate);
753 $mysqlToday = self::isoToMysql($today);
754
755 if ((isset($mysqlStartDate) && isset($mysqlEndDate)) && (($mysqlToday >= $mysqlStartDate) && ($mysqlToday <= $mysqlEndDate))) {
756 return TRUE;
757 }
758 elseif ((isset($mysqlStartDate) && !isset($mysqlEndDate)) && (($mysqlToday >= $mysqlStartDate))) {
759 return TRUE;
760 }
761 elseif ((!isset($mysqlStartDate) && isset($mysqlEndDate)) && (($mysqlToday <= $mysqlEndDate))) {
762 return TRUE;
763 }
764 return FALSE;
765 }
766
767 /**
768 * Function to get start date and end from
769 * the given relative term and unit
770 *
f4aaa82a
EM
771 * @param date $relative eg: term.unit
772 *
773 * @param $from
774 * @param $to
6a488035
TO
775 *
776 * @return array start date, end date
777 * @static
778 */
779 static function getFromTo($relative, $from, $to) {
780 if ($relative) {
781 list($term, $unit) = explode('.', $relative);
782 $dateRange = self::relativeToAbsolute($term, $unit);
783 $from = $dateRange['from'];
784 //Take only Date Part, Sometime Time part is also present in 'to'
785 $to = substr($dateRange['to'], 0, 8);
786 }
787
788 $from = self::processDate($from);
789 $to = self::processDate($to, '235959');
790
791 return array($from, $to);
792 }
793
794 /**
795 * Function to calculate Age in Years if greater than one year else in months
796 *
797 * @param date $birthDate Birth Date
798 *
799 * @return int array $results contains years or months
800 * @access public
801 * @static
802 */
803 static public function calculateAge($birthDate) {
804 $results = array();
805 $formatedBirthDate = CRM_Utils_Date::customFormat($birthDate, '%Y-%m-%d');
806
807 $bDate = explode('-', $formatedBirthDate);
808 $birthYear = $bDate[0];
809 $birthMonth = $bDate[1];
810 $birthDay = $bDate[2];
811 $year_diff = date("Y") - $birthYear;
812
813 // don't calculate age CRM-3143
814 if ($birthYear == '1902') {
815 return $results;
816 }
817
818 switch ($year_diff) {
819 case 1:
820 $month = (12 - $birthMonth) + date("m");
821 if ($month < 12) {
822 if (date("d") < $birthDay) {
823 $month--;
824 }
825 $results['months'] = $month;
826 }
827 elseif ($month == 12 && (date("d") < $birthDay)) {
828 $results['months'] = $month - 1;
829 }
830 else {
831 $results['years'] = $year_diff;
832 }
833 break;
834
835 case 0:
836 $month = date("m") - $birthMonth;
837 $results['months'] = $month;
838 break;
839
840 default:
841 $results['years'] = $year_diff;
842 if ((date("m") < $birthMonth) || (date("m") == $birthMonth) && (date("d") < $birthDay)) {
843 $results['years']--;
844 }
845 }
846
847 return $results;
848 }
849
850 /**
851 * Function to calculate next payment date according to provided unit & interval
852 *
f4aaa82a 853 * @param string $unit frequency unit like year,month, week etc..
6a488035 854 *
f4aaa82a 855 * @param int $interval frequency interval.
6a488035 856 *
f4aaa82a
EM
857 * @param array $date start date of pledge.
858 *
859 * @param bool $dontCareTime
6a488035
TO
860 *
861 * @return array $result contains new date with added interval
862 * @access public
863 */
864 static function intervalAdd($unit, $interval, $date, $dontCareTime = FALSE) {
865 if (is_array($date)) {
866 $hour = CRM_Utils_Array::value('H', $date);
867 $minute = CRM_Utils_Array::value('i', $date);
868 $second = CRM_Utils_Array::value('s', $date);
869 $month = CRM_Utils_Array::value('M', $date);
870 $day = CRM_Utils_Array::value('d', $date);
871 $year = CRM_Utils_Array::value('Y', $date);
872 }
873 else {
874 extract(date_parse($date));
875 }
876 $date = mktime($hour, $minute, $second, $month, $day, $year);
877 switch ($unit) {
878 case 'year':
879 $date = mktime($hour, $minute, $second, $month, $day, $year + $interval);
880 break;
881
882 case 'month':
883 $date = mktime($hour, $minute, $second, $month + $interval, $day, $year);
884 break;
885
886 case 'week':
887 $interval = $interval * 7;
888 $date = mktime($hour, $minute, $second, $month, $day + $interval, $year);
889 break;
890
891 case 'day':
892 $date = mktime($hour, $minute, $second, $month, $day + $interval, $year);
893 break;
894
895 case 'second':
896 $date = mktime($hour, $minute, $second + $interval, $month, $day, $year);
897 break;
898 }
899
900 $scheduleDate = explode("-", date("n-j-Y-H-i-s", $date));
901
902 $date = array();
903 $date['M'] = $scheduleDate[0];
904 $date['d'] = $scheduleDate[1];
905 $date['Y'] = $scheduleDate[2];
906 if ($dontCareTime == FALSE) {
907 $date['H'] = $scheduleDate[3];
908 $date['i'] = $scheduleDate[4];
909 $date['s'] = $scheduleDate[5];
910 }
911 return $date;
912 }
913
914 /**
915 * function to check given format is valid for bith date.
916 * and retrun supportable birth date format w/ qf mapping.
917 *
918 * @param $format given format ( eg 'M Y', 'Y M' )
919 * return array of qfMapping and date parts for date format.
f4aaa82a
EM
920 *
921 * @return array|null|string
6a488035
TO
922 */
923 static function &checkBirthDateFormat($format = NULL) {
924 $birthDateFormat = NULL;
925 if (!$format) {
926 $birthDateFormat = self::getDateFormat('birth');
927 }
928
929 $supportableFormats = array(
930 'mm/dd' => '%B %E%f',
931 'dd-mm' => '%E%f %B',
932 'yy-mm' => '%Y %B',
933 'M yy' => '%b %Y',
934 'yy' => '%Y',
935 'dd/mm/yy' => '%E%f %B %Y',
936 );
937
938 if (array_key_exists($birthDateFormat, $supportableFormats)) {
939 $birthDateFormat = array('qfMapping' => $supportableFormats[$birthDateFormat]);
940 }
941
942 return $birthDateFormat;
943 }
944
945 /**
946 * resolves the given relative time interval into finite time limits
947 *
948 * @param array $relativeTerm relative time frame like this, previous, etc
949 * @param int $unit frequency unit like year, month, week etc..
950 *
951 * @return array $dateRange start date and end date for the relative time frame
952 * @static
953 */
954 static function relativeToAbsolute($relativeTerm, $unit) {
955 $now = getDate();
956 $from = $to = $dateRange = array();
957 $from['H'] = $from['i'] = $from['s'] = 0;
958
959 switch ($unit) {
960 case 'year':
961 switch ($relativeTerm) {
962 case 'this':
963 $from['d'] = $from['M'] = 1;
964 $to['d'] = 31;
965 $to['M'] = 12;
966 $to['Y'] = $from['Y'] = $now['year'];
967 break;
968
969 case 'previous':
970 $from['M'] = $from['d'] = 1;
971 $to['d'] = 31;
972 $to['M'] = 12;
973 $to['Y'] = $from['Y'] = $now['year'] - 1;
974 break;
975
976 case 'previous_before':
977 $from['M'] = $from['d'] = 1;
978 $to['d'] = 31;
979 $to['M'] = 12;
980 $to['Y'] = $from['Y'] = $now['year'] - 2;
981 break;
982
983 case 'previous_2':
984 $from['M'] = $from['d'] = 1;
985 $to['d'] = 31;
986 $to['M'] = 12;
987 $from['Y'] = $now['year'] - 2;
988 $to['Y'] = $now['year'] - 1;
989 break;
990
991 case 'earlier':
992 $to['d'] = 31;
993 $to['M'] = 12;
994 $to['Y'] = $now['year'] - 1;
995 unset($from);
996 break;
997
998 case 'greater':
999 $from['M'] = $from['d'] = 1;
1000 $from['Y'] = $now['year'];
1001 unset($to);
1002 break;
1003
1004 case 'ending':
1005 $to['d'] = $now['mday'];
1006 $to['M'] = $now['mon'];
1007 $to['Y'] = $now['year'];
1008 $to['H'] = 23;
1009 $to['i'] = $to['s'] = 59;
1010 $from = self::intervalAdd('year', -1, $to);
1011 $from = self::intervalAdd('second', 1, $from);
1012 break;
e902edd1 1013
1014 case 'current':
1015 $from['M'] = $from['d'] = 1;
1016 $from['Y'] = $now['year'];
1017 $to['H'] = 23;
1018 $to['i'] = $to['s'] = 59;
1019 $to['d'] = $now['mday'];
1020 $to['M'] = $now['mon'];
1021 $to['Y'] = $now['year'];
1022 break;
e2c3163d 1023
1024 case 'ending_2':
1025 $to['d'] = $now['mday'];
1026 $to['M'] = $now['mon'];
1027 $to['Y'] = $now['year'];
1028 $to['H'] = 23;
1029 $to['i'] = $to['s'] = 59;
1030 $from = self::intervalAdd('year', -2, $to);
1031 $from = self::intervalAdd('second', 1, $from);
1032 break;
1033
1034 case 'ending_3':
1035 $to['d'] = $now['mday'];
1036 $to['M'] = $now['mon'];
1037 $to['Y'] = $now['year'];
1038 $to['H'] = 23;
1039 $to['i'] = $to['s'] = 59;
1040 $from = self::intervalAdd('year', -3, $to);
1041 $from = self::intervalAdd('second', 1, $from);
1042 break;
6a488035
TO
1043 }
1044 break;
1045
1046 case 'fiscal_year':
1047 $config = CRM_Core_Config::singleton();
1048 $from['d'] = $config->fiscalYearStart['d'];
1049 $from['M'] = $config->fiscalYearStart['M'];
1050 $fYear = self::calculateFiscalYear($from['d'], $from['M']);
1051 switch ($relativeTerm) {
1052 case 'this':
1053 $from['Y'] = $fYear;
1054 $fiscalYear = mktime(0, 0, 0, $from['M'], $form['d'], $from['Y'] + 1);
1055 $fiscalEnd = explode('-', date("Y-m-d", $fiscalYear));
1056
1057 $to['d'] = $fiscalEnd['2'];
1058 $to['M'] = $fiscalEnd['1'];
1059 $to['Y'] = $fiscalEnd['0'];
1060 break;
1061
1062 case 'previous':
1063 $from['Y'] = $fYear - 1;
1064 $fiscalYear = mktime(0, 0, 0, $from['M'], $form['d'], $from['Y'] + 1);
1065 $fiscalEnd = explode('-', date("Y-m-d", $fiscalYear));
1066
1067 $to['d'] = $fiscalEnd['2'];
1068 $to['M'] = $fiscalEnd['1'];
1069 $to['Y'] = $fiscalEnd['0'];
1070 break;
1071 }
1072 break;
1073
1074 case 'quarter':
1075 switch ($relativeTerm) {
1076 case 'this':
1077
1078 $quarter = ceil($now['mon'] / 3);
1079 $from['d'] = 1;
1080 $from['M'] = (3 * $quarter) - 2;
1081 $to['M'] = 3 * $quarter;
1082 $to['Y'] = $from['Y'] = $now['year'];
1083 $to['d'] = date('t', mktime(0, 0, 0, $to['M'], 1, $now['year']));
1084 break;
1085
1086 case 'previous':
1087 $difference = 1;
1088 $quarter = ceil($now['mon'] / 3);
1089 $quarter = $quarter - $difference;
1090 $subtractYear = 0;
1091 if ($quarter <= 0) {
1092 $subtractYear = 1;
1093 $quarter += 4;
1094 }
1095 $from['d'] = 1;
1096 $from['M'] = (3 * $quarter) - 2;
1097 $to['M'] = 3 * $quarter;
1098 $to['Y'] = $from['Y'] = $now['year'] - $subtractYear;
1099 $to['d'] = date('t', mktime(0, 0, 0, $to['M'], 1, $to['Y']));
1100 break;
1101
1102 case 'previous_before':
1103 $difference = 2;
1104 $quarter = ceil($now['mon'] / 3);
1105 $quarter = $quarter - $difference;
1106 if ($quarter <= 0) {
1107 $subtractYear = 1;
1108 $quarter += 4;
1109 }
1110 $from['d'] = 1;
1111 $from['M'] = (3 * $quarter) - 2;
1112 $to['M'] = 3 * $quarter;
1113 $to['Y'] = $from['Y'] = $now['year'] - $subtractYear;
1114 $to['d'] = date('t', mktime(0, 0, 0, $to['M'], 1, $to['Y']));
1115 break;
1116
1117 case 'previous_2':
1118 $difference = 2;
1119 $quarter = ceil($now['mon'] / 3);
1120 $current_quarter = $quarter;
1121 $quarter = $quarter - $difference;
1122 $subtractYear = 0;
1123 if ($quarter <= 0) {
1124 $subtractYear = 1;
1125 $quarter += 4;
1126 }
1127 $from['d'] = 1;
1128 $from['M'] = (3 * $quarter) - 2;
1129 switch ($current_quarter) {
1130 case 1:
1131 $to['M'] = (4 * $quarter);
1132 break;
1133
1134 case 2:
1135 $to['M'] = (4 * $quarter) + 3;
1136 break;
1137
1138 case 3:
1139 $to['M'] = (4 * $quarter) + 2;
1140 break;
1141
1142 case 4:
1143 $to['M'] = (4 * $quarter) + 1;
1144 break;
1145 }
1146 $to['Y'] = $from['Y'] = $now['year'] - $subtractYear;
1147 if ($to['M'] > 12) {
1148 $to['M'] = 3 * ($quarter - 3);
1149 $to['Y'] = $now['year'];
1150 }
1151 $to['d'] = date('t', mktime(0, 0, 0, $to['M'], 1, $to['Y']));
1152 break;
1153
1154 case 'earlier':
1155 $quarter = ceil($now['mon'] / 3) - 1;
1156 if ($quarter <= 0) {
1157 $subtractYear = 1;
1158 $quarter += 4;
1159 }
1160 $to['M'] = 3 * $quarter;
1161 $to['Y'] = $from['Y'] = $now['year'] - $subtractYear;
1162 $to['d'] = date('t', mktime(0, 0, 0, $to['M'], 1, $to['Y']));
1163 unset($from);
1164 break;
1165
1166 case 'greater':
1167 $quarter = ceil($now['mon'] / 3);
1168 $from['d'] = 1;
1169 $from['M'] = (3 * $quarter) - 2;
1170 $from['Y'] = $now['year'];
1171 unset($to);
1172 break;
1173
1174 case 'ending':
1175 $to['d'] = $now['mday'];
1176 $to['M'] = $now['mon'];
1177 $to['Y'] = $now['year'];
1178 $to['H'] = 23;
1179 $to['i'] = $to['s'] = 59;
1180 $from = self::intervalAdd('month', -3, $to);
1181 $from = self::intervalAdd('second', 1, $from);
1182 break;
e902edd1 1183
1184 case 'current':
1185 $quarter = ceil($now['mon'] / 3);
1186 $from['d'] = 1;
1187 $from['M'] = (3 * $quarter) - 2;
1188 $from['Y'] = $now['year'];
1189 $to['d'] = $now['mday'];
1190 $to['M'] = $now['mon'];
1191 $to['Y'] = $now['year'];
1192 $to['H'] = 23;
1193 $to['i'] = $to['s'] = 59;
1194 break;
6a488035
TO
1195 }
1196 break;
1197
1198 case 'month':
1199 switch ($relativeTerm) {
1200 case 'this':
1201 $from['d'] = 1;
1202 $to['d'] = date('t', mktime(0, 0, 0, $now['mon'], 1, $now['year']));
1203 $from['M'] = $to['M'] = $now['mon'];
1204 $from['Y'] = $to['Y'] = $now['year'];
1205 break;
1206
1207 case 'previous':
1208 $from['d'] = 1;
1209 if ($now['mon'] == 1) {
1210 $from['M'] = $to['M'] = 12;
1211 $from['Y'] = $to['Y'] = $now['year'] - 1;
1212 }
1213 else {
1214 $from['M'] = $to['M'] = $now['mon'] - 1;
1215 $from['Y'] = $to['Y'] = $now['year'];
1216 }
1217 $to['d'] = date('t', mktime(0, 0, 0, $to['M'], 1, $to['Y']));
1218 break;
1219
1220 case 'previous_before':
1221 $from['d'] = 1;
1222 if ($now['mon'] < 3) {
1223 $from['M'] = $to['M'] = 10 + $now['mon'];
1224 $from['Y'] = $to['Y'] = $now['year'] - 1;
1225 }
1226 else {
1227 $from['M'] = $to['M'] = $now['mon'] - 2;
1228 $from['Y'] = $to['Y'] = $now['year'];
1229 }
1230 $to['d'] = date('t', mktime(0, 0, 0, $to['M'], 1, $to['Y']));
1231 break;
1232
1233 case 'previous_2':
1234 $from['d'] = 1;
1235 if ($now['mon'] < 3) {
1236 $from['M'] = 10 + $now['mon'];
1237 $from['Y'] = $now['year'] - 1;
1238 }
1239 else {
1240 $from['M'] = $now['mon'] - 2;
1241 $from['Y'] = $now['year'];
1242 }
1243
1244 if ($now['mon'] == 1) {
1245 $to['M'] = 12;
1246 $to['Y'] = $now['year'] - 1;
1247 }
1248 else {
1249 $to['M'] = $now['mon'] - 1;
1250 $to['Y'] = $now['year'];
1251 }
1252
1253 $to['d'] = date('t', mktime(0, 0, 0, $to['M'], 1, $to['Y']));
1254 break;
1255
1256 case 'earlier':
1257 //before end of past month
1258 if ($now['mon'] == 1) {
1259 $to['M'] = 12;
1260 $to['Y'] = $now['year'] - 1;
1261 }
1262 else {
1263 $to['M'] = $now['mon'] - 1;
1264 $to['Y'] = $now['year'];
1265 }
1266
1267 $to['d'] = date('t', mktime(0, 0, 0, $to['M'], 1, $to['Y']));
1268 unset($from);
1269 break;
1270
1271 case 'greater':
1272 $from['d'] = 1;
1273 $from['M'] = $now['mon'];;
1274 $from['Y'] = $now['year'];
1275 unset($to);
1276 break;
1277
1278 case 'ending':
1279 $to['d'] = $now['mday'];
1280 $to['M'] = $now['mon'];
1281 $to['Y'] = $now['year'];
1282 $to['H'] = 23;
1283 $to['i'] = $to['s'] = 59;
1284 $from = self::intervalAdd('month', -1, $to);
1285 $from = self::intervalAdd('second', 1, $from);
1286 break;
e902edd1 1287
1288 case 'current':
1289 $from['d'] = 1;
1290 $from['M'] = $now['mon'];;
1291 $from['Y'] = $now['year'];
1292 $to['d'] = $now['mday'];
1293 $to['M'] = $now['mon'];
1294 $to['Y'] = $now['year'];
1295 $to['H'] = 23;
1296 $to['i'] = $to['s'] = 59;
1297 break;
6a488035
TO
1298 }
1299 break;
1300
1301 case 'week':
1302 switch ($relativeTerm) {
1303 case 'this':
1304 $from['d'] = $now['mday'];
1305 $from['M'] = $now['mon'];
1306 $from['Y'] = $now['year'];
1307 $from = self::intervalAdd('day', -1 * ($now['wday']), $from);
1308 $to = self::intervalAdd('day', 6, $from);
1309 break;
1310
1311 case 'previous':
1312 $from['d'] = $now['mday'];
1313 $from['M'] = $now['mon'];
1314 $from['Y'] = $now['year'];
1315 $from = self::intervalAdd('day', -1 * ($now['wday']) - 7, $from);
1316 $to = self::intervalAdd('day', 6, $from);
1317 break;
1318
1319 case 'previous_before':
1320 $from['d'] = $now['mday'];
1321 $from['M'] = $now['mon'];
1322 $from['Y'] = $now['year'];
1323 $from = self::intervalAdd('day', -1 * ($now['wday']) - 14, $from);
1324 $to = self::intervalAdd('day', 6, $from);
1325 break;
1326
1327 case 'previous_2':
1328 $from['d'] = $now['mday'];
1329 $from['M'] = $now['mon'];
1330 $from['Y'] = $now['year'];
1331 $from = self::intervalAdd('day', -1 * ($now['wday']) - 14, $from);
1332 $to = self::intervalAdd('day', 13, $from);
1333 break;
1334
1335 case 'earlier':
1336 $to['d'] = $now['mday'];
1337 $to['M'] = $now['mon'];
1338 $to['Y'] = $now['year'];
1339 $to = self::intervalAdd('day', -1 * ($now['wday']) - 1, $to);
1340 unset($from);
1341 break;
1342
1343 case 'greater':
1344 $from['d'] = $now['mday'];
1345 $from['M'] = $now['mon'];
1346 $from['Y'] = $now['year'];
1347 $from = self::intervalAdd('day', -1 * ($now['wday']), $from);
1348 unset($to);
1349 break;
1350
1351 case 'ending':
1352 $to['d'] = $now['mday'];
1353 $to['M'] = $now['mon'];
1354 $to['Y'] = $now['year'];
1355 $to['H'] = 23;
1356 $to['i'] = $to['s'] = 59;
1357 $from = self::intervalAdd('day', -7, $to);
1358 $from = self::intervalAdd('second', 1, $from);
1359 break;
e902edd1 1360
1361 case 'current':
1362 $from['d'] = $now['mday'];
1363 $from['M'] = $now['mon'];
1364 $from['Y'] = $now['year'];
1365 $from = self::intervalAdd('day', -1 * ($now['wday']), $from);
1366 $to['d'] = $now['mday'];
1367 $to['M'] = $now['mon'];
1368 $to['Y'] = $now['year'];
1369 $to['H'] = 23;
1370 $to['i'] = $to['s'] = 59;
1371 break;
6a488035
TO
1372 }
1373 break;
1374
1375 case 'day':
1376 switch ($relativeTerm) {
1377 case 'this':
1378 $from['d'] = $to['d'] = $now['mday'];
1379 $from['M'] = $to['M'] = $now['mon'];
1380 $from['Y'] = $to['Y'] = $now['year'];
1381 break;
1382
1383 case 'previous':
1384 $from['d'] = $now['mday'];
1385 $from['M'] = $now['mon'];
1386 $from['Y'] = $now['year'];
1387 $from = self::intervalAdd('day', -1, $from);
1388 $to['d'] = $from['d'];
1389 $to['M'] = $from['M'];
1390 $to['Y'] = $from['Y'];
1391 break;
1392
1393 case 'previous_before':
1394 $from['d'] = $now['mday'];
1395 $from['M'] = $now['mon'];
1396 $from['Y'] = $now['year'];
1397 $from = self::intervalAdd('day', -2, $from);
1398 $to['d'] = $from['d'];
1399 $to['M'] = $from['M'];
1400 $to['Y'] = $from['Y'];
1401 break;
1402
1403 case 'previous_2':
1404 $from['d'] = $to['d'] = $now['mday'];
1405 $from['M'] = $to['M'] = $now['mon'];
1406 $from['Y'] = $to['Y'] = $now['year'];
1407 $from = self::intervalAdd('day', -2, $from);
1408 $to = self::intervalAdd('day', -1, $to);
1409 break;
1410
1411 case 'earlier':
1412 $to['d'] = $now['mday'];
1413 $to['M'] = $now['mon'];
1414 $to['Y'] = $now['year'];
1415 unset($from);
1416 break;
1417
1418 case 'greater':
1419 $from['d'] = $now['mday'];
1420 $from['M'] = $now['mon'];;
1421 $from['Y'] = $now['year'];
1422 unset($to);
1423 break;
1424 }
1425 break;
1426 }
1427
1428 foreach (array(
1429 'from', 'to') as $item) {
1430 if (!empty($$item)) {
1431 $dateRange[$item] = self::format($$item);
1432 }
1433 else {
1434 $dateRange[$item] = NULL;
1435 }
1436 }
1437 return $dateRange;
1438 }
1439
1440 /**
1441 * Function to calculate current fiscal year based on the fiscal month and day
1442 *
1443 * @param int $fyDate Fiscal start date
1444 *
1445 * @param int $fyMonth Fiscal Start Month
1446 *
1447 * @return int $fy Current Fiscl Year
1448 * @access public
1449 * @static
1450 */
1451 static function calculateFiscalYear($fyDate, $fyMonth) {
1452 $date = date("Y-m-d");
1453 $currentYear = date("Y");
1454
1455 //recalculate the date because month 4::04 make the difference
1456 $fiscalYear = explode('-', date("Y-m-d", mktime(0, 0, 0, $fyMonth, $fyDate, $currentYear)));
1457 $fyDate = $fiscalYear[2];
1458 $fyMonth = $fiscalYear[1];
1459 $fyStartDate = date("Y-m-d", mktime(0, 0, 0, $fyMonth, $fyDate, $currentYear));
1460
1461 if ($fyStartDate > $date) {
1462 $fy = intval(intval($currentYear) - 1);
1463 }
1464 else {
1465 $fy = intval($currentYear);
1466 }
1467 return $fy;
1468 }
1469
1470 /**
1471 * Function to process date, convert to mysql format
1472 *
f4aaa82a
EM
1473 * @param string $date date string
1474 * @param string $time time string
1475 * @param bool|string $returnNullString 'null' needs to be returned
6a488035 1476 * so that db oject will set null in db
f4aaa82a 1477 * @param string $format expected return date format.( default is mysql )
6a488035 1478 *
f4aaa82a 1479 * @return string $mysqlDate date format that is excepted by mysql
6a488035
TO
1480 */
1481 static function processDate($date, $time = NULL, $returnNullString = FALSE, $format = 'YmdHis') {
1482 $mysqlDate = NULL;
1483
1484 if ($returnNullString) {
1485 $mysqlDate = 'null';
1486 }
1487
1488 if (trim($date)) {
1489 $mysqlDate = date($format, strtotime($date . ' ' . $time));
1490 }
1491
1492 return $mysqlDate;
1493 }
1494
1495 /**
1496 * Function to convert mysql to date plugin format
1497 *
f4aaa82a
EM
1498 * @param string $mysqlDate date string
1499 *
1500 * @param null $formatType
1501 * @param null $format
1502 * @param null $timeFormat
6a488035 1503 *
f4aaa82a 1504 * @return array $date and time
6a488035
TO
1505 */
1506 static function setDateDefaults($mysqlDate = NULL, $formatType = NULL, $format = NULL, $timeFormat = NULL) {
1507 // if date is not passed assume it as today
1508 if (!$mysqlDate) {
1509 $mysqlDate = date('Y-m-d G:i:s');
1510 }
1511
1512 $config = CRM_Core_Config::singleton();
1513 if ($formatType) {
1514 // get actual format
1515 $params = array('name' => $formatType);
1516 $values = array();
1517 CRM_Core_DAO::commonRetrieve('CRM_Core_DAO_PreferencesDate', $params, $values);
1518
1519 if ($values['date_format']) {
1520 $format = $values['date_format'];
1521 }
1522
1523 if (isset($values['time_format'])) {
1524 $timeFormat = $values['time_format'];
1525 }
1526 }
1527
1528 // now we set display date using js, hence we should always setdefault
1529 // 'm/d/Y' format. So that submitted value is alwats mm/dd/YY format
1530 // note that for date display we dynamically create text field
1531 /*
1532 if ( !$format ) {
1533 $format = $config->dateInputFormat;
1534 }
1535
1536 // get actual format
1537 $actualPHPFormats = CRM_Core_SelectValues::datePluginToPHPFormats( );
1538 $dateFormat = CRM_Utils_Array::value( $format, $actualPHPFormats );
1539 */
1540
1541
1542 $dateFormat = 'm/d/Y';
1543 $date = date($dateFormat, strtotime($mysqlDate));
1544
1545 if (!$timeFormat) {
1546 $timeFormat = $config->timeInputFormat;
1547 }
1548
1549 $actualTimeFormat = "g:iA";
1550 $appendZeroLength = 7;
1551 if ($timeFormat > 1) {
1552 $actualTimeFormat = "G:i";
1553 $appendZeroLength = 5;
1554 }
1555
1556 $time = date($actualTimeFormat, strtotime($mysqlDate));
1557
1558 // need to append zero for hours < 10
1559 if (strlen($time) < $appendZeroLength) {
1560 $time = '0' . $time;
1561 }
1562
1563 return array($date, $time);
1564 }
1565
1566 /**
1567 * Function get date format
1568 *
1569 * @param string $formatType Date name e.g. birth
1570 *
1571 * @return string $format
1572 */
1573 static function getDateFormat($formatType = NULL) {
1574 $format = NULL;
1575 if ($formatType) {
395d8dc6 1576 $format = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_PreferencesDate',
6a488035
TO
1577 $formatType, 'date_format', 'name'
1578 );
1579 }
1580
1581 if (!$format) {
1582 $config = CRM_Core_Config::singleton();
1583 $format = $config->dateInputFormat;
1584 }
1585 return $format;
1586 }
1587
cf142e47
DL
1588 /**
1589 * Get the time in UTC for the current time. You can optionally send an offset from the current time if needed
1590 *
1591 * @param $offset int the offset from the current time in seconds
1592 *
1593 * @return the time in UTC
1594 * @static
1595 * @public
1596 */
1597 static function getUTCTime($offset = 0) {
6a488035
TO
1598 $originalTimezone = date_default_timezone_get();
1599 date_default_timezone_set('UTC');
1600 $time = time() + $offset;
1601 $now = date('YmdHis', $time);
1602 date_default_timezone_set($originalTimezone);
1603 return $now;
1604 }
1605
1606
5bc392e6
EM
1607 /**
1608 * @param $date
1609 * @param $dateType
1610 *
1611 * @return null|string
1612 */
6a488035
TO
1613 static function formatDate($date, $dateType) {
1614 $formattedDate = NULL;
1615 if (empty($date)) {
1616 return $formattedDate;
1617 }
1618
1619 //1. first convert date to default format.
1620 //2. append time to default formatted date (might be removed during format)
1621 //3. validate date / date time.
1622 //4. If date and time then convert to default date time format.
1623
1624 $dateKey = 'date';
1625 $dateParams = array($dateKey => $date);
1626
1627 if (CRM_Utils_Date::convertToDefaultDate($dateParams, $dateType, $dateKey)) {
1628 $dateVal = $dateParams[$dateKey];
1629 $ruleName = 'date';
1630 if ($dateType == 1) {
1631 $matches = array();
1632 if (preg_match("/(\s(([01]\d)|[2][0-3]):([0-5]\d))$/", $date, $matches)) {
1633 $ruleName = 'dateTime';
1634 if (strpos($date, '-') !== FALSE) {
1635 $dateVal .= array_shift($matches);
1636 }
1637 }
1638 }
1639
1640 // validate date.
0e6e8724 1641 $valid = CRM_Utils_Rule::$ruleName($dateVal);
6a488035
TO
1642
1643 if ($valid) {
1644 //format date and time to default.
1645 if ($ruleName == 'dateTime') {
1646 $dateVal = CRM_Utils_Date::customFormat(preg_replace("/(:|\s)?/", "", $dateVal), '%Y%m%d%H%i');
1647 //hack to add seconds
1648 $dateVal .= '00';
1649 }
1650 $formattedDate = $dateVal;
1651 }
1652 }
1653
1654 return $formattedDate;
1655 }
1656
1657}
1658