\n"; $phpgw->common->phpgw_exit(); } unset($d1); if ($phpgw_info['user']['apps']['addressbook'] && $phpgw_info['user']['preferences']['addressbook']['mainscreen_showbirthdays']) { echo "\n\n"; $c = CreateObject('phpgwapi.contacts'); $qfields = array( 'n_given' => 'n_given', 'n_family' => 'n_family', 'bday' => 'bday' ); $now = time() - ((60 * 60) * intval($phpgw_info['user']['preferences']['common']['tz_offset'])); $today = $phpgw->common->show_date($now,'n/d/'); $bdays = $c->read(0,15,$qfields,$today,'tid=n','','',$phpgw_info['user']['account_id']); while(list($key,$val) = @each($bdays)) { $tmp = '' . $val['n_given'] . ' ' . $val['n_family'] . ''; echo '' . lang("Today is x's birthday!", $tmp) . '' . "\n"; } $tomorrow = $phpgw->common->show_date($now + 86400,'n/d/'); $bdays = $c->read(0,15,$qfields,$tomorrow,'tid=n','','',$phpgw_info['user']['account_id']); while(list($key,$val) = @each($bdays)) { $tmp = '' . $val['n_given'] . ' ' . $val["n_family"] . ''; echo '' . lang("Tomorrow is x's birthday.", $tmp) . '' . "\n"; } echo "\n\n"; } ?>