]> git.mxchange.org Git - friendica.git/blobdiff - mod/localtime.php
Merge branch 'develop' into rewrites/dbm_is_result
[friendica.git] / mod / localtime.php
index fc500f4dd9b0c6711206bcc5cacb0d9eaa81575c..00a7c59094ef6313ecf992476fe9be37e4235e20 100644 (file)
@@ -2,8 +2,8 @@
 
 require_once('include/datetime.php');
 
-if(! function_exists('localtime_post')) {
-function localtime_post(&$a) {
+
+function localtime_post(App &$a) {
 
        $t = $_REQUEST['time'];
        if(! $t)
@@ -13,11 +13,10 @@ function localtime_post(&$a) {
 
        if($_POST['timezone'])
                $a->data['mod-localtime'] = datetime_convert('UTC',$_POST['timezone'],$t,$bd_format);
-}
+
 }
 
-if(! function_exists('localtime_content')) {
-function localtime_content(&$a) {
+function localtime_content(App &$a) {
        $t = $_REQUEST['time'];
        if(! $t)
                $t = 'now';
@@ -37,14 +36,14 @@ function localtime_content(&$a) {
                $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 .= '<form action ="' . App::get_baseurl() . '/localtime?f=&time=' . $t . '" method="post" >';
 
-       $o .= '<p>' . t('Please select your timezone:') . '</p>';
+       $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