aboutsummaryrefslogtreecommitdiffstats
path: root/mod/localtime.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-08-29 23:03:03 -0700
committerfriendica <info@friendica.com>2012-08-29 23:03:03 -0700
commitf6d198ce5dcd9fe416975ff760439dfacbb83812 (patch)
tree77be24f7ab74dfcd62c2e621eb6f7568a78d8de6 /mod/localtime.php
parentda49a27aa24b6a85b2623134884d933dc04e201b (diff)
downloadvolse-hubzilla-f6d198ce5dcd9fe416975ff760439dfacbb83812.tar.gz
volse-hubzilla-f6d198ce5dcd9fe416975ff760439dfacbb83812.tar.bz2
volse-hubzilla-f6d198ce5dcd9fe416975ff760439dfacbb83812.zip
trim a bit of fat
Diffstat (limited to 'mod/localtime.php')
-rw-r--r--mod/localtime.php49
1 files changed, 0 insertions, 49 deletions
diff --git a/mod/localtime.php b/mod/localtime.php
deleted file mode 100644
index c03eae1b0..000000000
--- a/mod/localtime.php
+++ /dev/null
@@ -1,49 +0,0 @@
-<?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>';
-
-
-
- $o .= '<p>' . sprintf( t('UTC time: %s'), $t) . '</p>';
-
- if($_REQUEST['timezone'])
- $o .= '<p>' . sprintf( t('Current timezone: %s'), $_REQUEST['timezone']) . '</p>';
-
- if(x($a->data,'mod-localtime'))
- $o .= '<p>' . sprintf( t('Converted localtime: %s'),$a->data['mod-localtime']) . '</p>';
-
-
- $o .= '<form action ="' . $a->get_baseurl() . '/localtime?f=&time=' . $t . '" method="post" >';
-
- $o .= '<p>' . t('Please select your timezone:') . '</p>';
-
- $o .= select_timezone(($_REQUEST['timezone']) ? $_REQUEST['timezone'] : 'America/Los_Angeles');
-
- $o .= '<input type="submit" name="submit" value="' . t('Submit') . '" /></form>';
-
- return $o;
-
-} \ No newline at end of file