diff options
author | Friendika <info@friendika.com> | 2011-09-04 00:48:45 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-09-04 00:48:45 -0700 |
commit | 9ff1a3444e9029c94541a7c84f0ed5ba764adef3 (patch) | |
tree | 67e131f721979a80268e947886514d8fbc9c1641 /mod | |
parent | 59a6a04e26bf6baec4b7ad62419e9d335db249df (diff) | |
download | volse-hubzilla-9ff1a3444e9029c94541a7c84f0ed5ba764adef3.tar.gz volse-hubzilla-9ff1a3444e9029c94541a7c84f0ed5ba764adef3.tar.bz2 volse-hubzilla-9ff1a3444e9029c94541a7c84f0ed5ba764adef3.zip |
add timezone convert module, several other minor or in progress fixes
Diffstat (limited to 'mod')
-rw-r--r-- | mod/localtime.php | 44 | ||||
-rw-r--r-- | mod/parse_url.php | 2 |
2 files changed, 46 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 diff --git a/mod/parse_url.php b/mod/parse_url.php index 9bb0bc464..b10d11c4b 100644 --- a/mod/parse_url.php +++ b/mod/parse_url.php @@ -119,6 +119,8 @@ function parse_url_content(&$a) { $text = '<br /><br /><blockquote>' . $text . '</blockquote><br />'; } + $title = str_replace("\n",'',$title); + echo sprintf($template,$url,($title) ? $title : $url,$text); killme(); } |