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