public function entryPostProcessing($r, $a)
{
// Setup the accounts anniversary date
+ $current_date = mktime( 0, 0, 0, date( 'd' ), date( 'n' ), date( 'Y' ) );
if ( $r['anniversary_date'] ) {
// Need to find the next (current) date for this account's
// anniversary
- $anniversary_date = new DateTime( $r['anniversary_date']['mysql_date'] );
- if ( $r['anniversary_date']['timestamp'] > time() ) {
+ if ( $r['anniversary_date']['timestamp'] >= time() ) {
$r['next_anniversary_date'] = $r['anniversary_date']['date'];
} else {
- // Add one year to the anniversary date
- $anniversary_date->modify('+1 year');
- $r['next_anniversary_date'] = $anniversary_date->format('m/d/Y');
+ // Need to get the next occurrence of the date.
+ $anniversary = strtotime( $r['anniversary_date']['mysql_date'] );
+ // Make the year current year.
+ $year = date( 'Y' );
+ // If the month and day have already occurred then add a year.
+ $test_date = mktime( 0, 0, 0, date( 'n', $anniversary ), date( 'd', $anniversary ), $year );
+ if ( $test_date <= $current_date ) {
+ $test_date = mktime( 0, 0, 0, date( 'n', $anniversary ), date( 'd', $anniversary ), $year );
+ }
+ $r['next_anniversary_date'] = date( 'm/d/Y', $test_date);
+ // $anniversary_date = new DateTime( $r['anniversary_date']['mysql_date'] );
+ // $anniversary_date->modify('+1 year');
+ // $r['next_anniversary_date'] = $anniversary_date->format('m/d/Y');
}
}
return $r;