\n"; $phpgw->common->phpgw_exit(); } unset($d1); $tmp_app_inc = $phpgw_info['server']['app_inc']; $phpgw_info['server']['app_inc'] = $phpgw->common->get_inc_dir('addressbook'); 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/'); // echo $today."\n"; $bdays = $c->read(0,15,$qfields,$today,'tid=n','','',$phpgw_info["user"]["account_id"]); while(list($key,$val) = @each($bdays)) { $tmp = "link("/addressbook/view.php","ab_id=" . $val["id"]) . "\">" . $val["n_given"] . " " . $val["n_family"].""; echo "" . lang("Today is x's birthday!", $tmp) . "\n"; } $tomorrow = $phpgw->common->show_date($now + 86400,'n/d/'); // echo $tomorrow."\n"; $bdays = $c->read(0,15,$qfields,$tomorrow,'tid=n','','',$phpgw_info["user"]["account_id"]); while(list($key,$val) = @each($bdays)) { $tmp = "link("/addressbook/view.php","ab_id=" . $val["id"]) . "\">" . $val["n_given"] . " " . $val["n_family"].""; echo "" . lang("Tomorrow is x's birthday.", $tmp) . "\n"; } echo "\n\n"; } $phpgw_info["server"]["app_inc"] = $tmp_app_inc; ?>