\n"; $GLOBALS['phpgw']->common->phpgw_exit(); } unset($d1); $tmp_app_inc = PHPGW_APP_INC; define('PHPGW_APP_INC',$GLOBALS['phpgw']->common->get_inc_dir('addressbook')); if($GLOBALS['phpgw_info']['user']['apps']['addressbook'] && $GLOBALS['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) * (int)$GLOBALS['phpgw_info']['user']['preferences']['common']['tz_offset']); $today = $GLOBALS['phpgw']->common->show_date($now,'n/d/'); // echo $today."\n"; $bdays = $c->read(0,15,$qfields,$today,'tid=n','','',$GLOBALS['phpgw_info']['user']['account_id']); while(list($key,$val) = @each($bdays)) { $tmp = '' . $val['n_given'] . ' ' . $val['n_family'] . ''; echo '' . lang("Today is %1's birthday!", $tmp) . "\n"; } $tomorrow = $GLOBALS['phpgw']->common->show_date($now + 86400,'n/d/'); // echo $tomorrow."\n"; $bdays = $c->read(0,15,$qfields,$tomorrow,'tid=n','','',$GLOBALS['phpgw_info']['user']['account_id']); while(list($key,$val) = @each($bdays)) { $tmp = '' . $val['n_given'] . ' ' . $val['n_family'] . ''; echo '' . lang("Tomorrow is %1's birthday.", $tmp) . "\n"; } echo "\n\n"; } define('PHPGW_APP_INC',$tmp_app_inc); ?>