]> git.mxchange.org Git - friendica.git/blob - mod/localtime.php
Merge pull request #3464 from beardyunixer/nginx
[friendica.git] / mod / localtime.php
1 <?php
2
3 use Friendica\App;
4
5 require_once('include/datetime.php');
6
7 function localtime_post(App $a) {
8
9         $t = $_REQUEST['time'];
10         if(! $t)
11                 $t = 'now';
12
13         $bd_format = t('l F d, Y \@ g:i A') ; // Friday January 18, 2011 @ 8 AM
14
15         if($_POST['timezone'])
16                 $a->data['mod-localtime'] = datetime_convert('UTC',$_POST['timezone'],$t,$bd_format);
17
18 }
19
20 function localtime_content(App $a) {
21         $t = $_REQUEST['time'];
22         if(! $t)
23                 $t = 'now';
24
25         $o .= '<h3>' . t('Time Conversion') . '</h3>';
26
27         $o .= '<p>' . t('Friendica provides this service for sharing events with other networks and friends in unknown timezones.') . '</p>';
28
29
30
31         $o .= '<p>' . sprintf( t('UTC time: %s'), $t) . '</p>';
32
33         if($_REQUEST['timezone'])
34                 $o .= '<p>' . sprintf( t('Current timezone: %s'), $_REQUEST['timezone']) . '</p>';
35
36         if(x($a->data,'mod-localtime'))
37                 $o .= '<p>' . sprintf( t('Converted localtime: %s'),$a->data['mod-localtime']) . '</p>';
38
39
40         $o .= '<form action ="' . App::get_baseurl() . '/localtime?f=&time=' . $t . '" method="post" >';
41
42         $o .= '<p>' . t('Please select your timezone:') . '</p>';
43
44         $o .= select_timezone(($_REQUEST['timezone']) ? $_REQUEST['timezone'] : 'America/Los_Angeles');
45
46         $o .= '<input type="submit" name="submit" value="' . t('Submit') . '" /></form>';
47
48         return $o;
49
50 }