3 require_once('include/datetime.php');
6 function localtime_post(&$a) {
8 $t = $_REQUEST['time'];
12 $bd_format = t('l F d, Y \@ g:i A') ; // Friday January 18, 2011 @ 8 AM
14 if($_POST['timezone'])
15 $a->data['mod-localtime'] = datetime_convert('UTC',$_POST['timezone'],$t,$bd_format);
19 function localtime_content(&$a) {
20 $t = $_REQUEST['time'];
24 $o .= '<h3>' . t('Time Conversion') . '</h3>';
26 $o .= '<p>' . t('Friendika provides this service for sharing events with other networks and friends in unknown timezones.') . '</p>';
30 $o .= '<p>' . sprintf( t('UTC time: %s'), $t) . '</p>';
32 if($_REQUEST['timezone'])
33 $o .= '<p>' . sprintf( t('Current timezone: %s'), $_REQUEST['timezone']) . '</p>';
35 if(x($a->data,'mod-localtime'))
36 $o .= '<p>' . sprintf( t('Converted localtime: %s'),$a->data['mod-localtime']) . '</p>';
39 $o .= '<form action ="' . $a->get_baseurl() . '/localtime?f=&time=' . $t . '" method="post" >';
41 $o .= '<p>' . t('Please select your timezone:') . '</p>';
43 $o .= select_timezone(($_REQUEST['timezone']) ? $_REQUEST['timezone'] : 'America/Los_Angeles');
45 $o .= '<input type="submit" name="submit" value="' . t('Submit') . '" /></form>';