diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-09-05 09:09:34 +0200 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-09-05 09:09:34 +0200 |
commit | 0283cbfcd35a29b5689ffbf16439d448de0c7254 (patch) | |
tree | 9fa9aa4b7fb3454ab60d63ad584aafaf20850999 /mod/localtime.php | |
parent | 058e329dfbc2678fa7e3cb2ce130fb9ffd69b84d (diff) | |
parent | 7e8100d2cd27227435ba6ff421dd3c3d8689930f (diff) | |
download | volse-hubzilla-0283cbfcd35a29b5689ffbf16439d448de0c7254.tar.gz volse-hubzilla-0283cbfcd35a29b5689ffbf16439d448de0c7254.tar.bz2 volse-hubzilla-0283cbfcd35a29b5689ffbf16439d448de0c7254.zip |
Merge remote-tracking branch 'friendika/master' into newui
Diffstat (limited to 'mod/localtime.php')
-rw-r--r-- | mod/localtime.php | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/mod/localtime.php b/mod/localtime.php new file mode 100644 index 000000000..f5ecf3a96 --- /dev/null +++ b/mod/localtime.php @@ -0,0 +1,44 @@ +<?php + +require_once('include/datetime.php'); + + +function localtime_post(&$a) { + + $t = $_REQUEST['time']; + if(! $t) + $t = 'now'; + + $bd_format = t('l F d, Y \@ g:i A') ; // Friday January 18, 2011 @ 8 AM + + if($_POST['timezone']) + $a->data['mod-localtime'] = datetime_convert('UTC',$_POST['timezone'],$t,$bd_format); + +} + +function localtime_content(&$a) { + $t = $_REQUEST['time']; + if(! $t) + $t = 'now'; + + $o .= '<h3>' . t('Time Conversion') . '</h3>'; + + $o .= '<p>' . t('Friendika provides this service for sharing events with other networks and friends in unknown timezones.') . '</p>'; + + + if(x($a->data,'mod-localtime')) + $o .= '<p>' . sprintf( t('Converted localtime: %s'),$a->data['mod-localtime']) . '</p>'; + + $o .= '<p>' . sprintf( t('UTC time: %s'), $t) . '</p>'; + + $o .= '<form action ="' . $a->get_baseurl() . '/localtime?f=&time=' . $t . '" method="post" >'; + + $o .= '<p>' . t('Please select your timezone:') . '</p>'; + + $o .= select_timezone(); + + $o .= '<input type="submit" name="submit" value="' . t('Submit') . '" /></form>'; + + return $o; + +}
\ No newline at end of file |