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