]> git.mxchange.org Git - friendica.git/commitdiff
Continued a bit:
authorRoland Häder <roland@mxchange.org>
Fri, 27 Jan 2017 10:58:40 +0000 (11:58 +0100)
committerRoland Haeder <roland@mxchange.org>
Sat, 18 Mar 2017 23:52:02 +0000 (00:52 +0100)
- converted some else if to elseif (only PHP)
- converted some space -> tab (intending)

Signed-off-by: Roland Häder <roland@mxchange.org>
include/Core/PConfig.php
include/template_processor.php
mod/notifications.php
mod/pubsubhubbub.php
view/theme/duepuntozero/theme.php
view/theme/frio/php/PHPColors/Color.php

index 6ced9fc7553fc6fa1198848c123db0405490f5c9..421a1d5fac4ca2ddde0d1d9e376991cc890945fb 100644 (file)
@@ -44,7 +44,7 @@ class PConfig {
                                $a->config[$uid][$family][$k] = $rr['v'];
                                self::$in_db[$uid][$family][$k] = true;
                        }
-               } else if ($family != 'config') {
+               } elseif ($family != 'config') {
                        // Negative caching
                        $a->config[$uid][$family] = "!<unset>!";
                }
index 252375a0605270a934236d9cb9a2cc5c7b09ee6f..6c1b16592d71065a0ffe593247a632b0ce4ddae2 100644 (file)
@@ -53,8 +53,9 @@ class Template implements ITemplateEngine {
 
        private function _get_var($name, $retNoKey = false) {
                $keys = array_map('trim', explode(".", $name));
-               if ($retNoKey && !array_key_exists($keys[0], $this->r))
+               if ($retNoKey && !array_key_exists($keys[0], $this->r)) {
                        return KEY_NOT_EXISTS;
+               }
                $val = $this->r;
                foreach ($keys as $k) {
                        $val = (isset($val[$k]) ? $val[$k] : null);
@@ -73,14 +74,16 @@ class Template implements ITemplateEngine {
                if (strpos($args[2], "==") > 0) {
                        list($a, $b) = array_map("trim", explode("==", $args[2]));
                        $a = $this->_get_var($a);
-                       if ($b[0] == "$")
+                       if ($b[0] == "$") {
                                $b = $this->_get_var($b);
+                       }
                        $val = ($a == $b);
-               } else if (strpos($args[2], "!=") > 0) {
+               } elseif (strpos($args[2], "!=") > 0) {
                        list($a, $b) = array_map("trim", explode("!=", $args[2]));
                        $a = $this->_get_var($a);
-                       if ($b[0] == "$")
+                       if ($b[0] == "$") {
                                $b = $this->_get_var($b);
+                       }
                        $val = ($a != $b);
                } else {
                        $val = $this->_get_var($args[2]);
@@ -138,8 +141,9 @@ class Template implements ITemplateEngine {
                        $newctx = null;
                }
 
-               if ($tplfile[0] == "$")
+               if ($tplfile[0] == "$") {
                        $tplfile = $this->_get_var($tplfile);
+               }
 
                $this->_push_stack();
                $r = $this->r;
index d27228b8fe8df3d645acd046f113aab3ff91475c..e9e5081cbccf58f4d7e292c6b1f8bbbbc5c93dd1 100644 (file)
@@ -100,25 +100,25 @@ function notifications_content(App $a) {
                $notifs = $nm->introNotifs($all, $startrec, $perpage);
 
        // Get the network notifications
-       } else if (($a->argc > 1) && ($a->argv[1] == 'network')) {
+       } elseif (($a->argc > 1) && ($a->argv[1] == 'network')) {
 
                $notif_header = t('Network Notifications');
                $notifs = $nm->networkNotifs($show, $startrec, $perpage);
 
        // Get the system notifications
-       } else if (($a->argc > 1) && ($a->argv[1] == 'system')) {
+       } elseif (($a->argc > 1) && ($a->argv[1] == 'system')) {
 
                $notif_header = t('System Notifications');
                $notifs = $nm->systemNotifs($show, $startrec, $perpage);
 
        // Get the personal notifications
-       } else if (($a->argc > 1) && ($a->argv[1] == 'personal')) {
+       } elseif (($a->argc > 1) && ($a->argv[1] == 'personal')) {
 
                $notif_header = t('Personal Notifications');
                $notifs = $nm->personalNotifs($show, $startrec, $perpage);
 
        // Get the home notifications
-       } else if (($a->argc > 1) && ($a->argv[1] == 'home')) {
+       } elseif (($a->argc > 1) && ($a->argv[1] == 'home')) {
 
                $notif_header = t('Home Notifications');
                $notifs = $nm->homeNotifs($show, $startrec, $perpage);
index 0f797d55b0209476e6c5bbb8f9a1907072b7c3b9..97f1c98209b1a30799a1ef7ad18cd8cad4c8707c 100644 (file)
@@ -32,7 +32,7 @@ function pubsubhubbub_init(App $a) {
                // check for valid hub_mode
                if ($hub_mode === 'subscribe') {
                        $subscribe = 1;
-               } else if ($hub_mode === 'unsubscribe') {
+               } elseif ($hub_mode === 'unsubscribe') {
                        $subscribe = 0;
                } else {
                        logger("pubsubhubbub: invalid hub_mode=$hub_mode, ignoring.");
index c674a99d99ad848bb250c72667a8372860f80c97..d3378e49b8ac8dee1a78ce7c881346c9430d765c 100644 (file)
@@ -4,23 +4,30 @@ function duepuntozero_init(App $a) {
 
 set_template_engine($a, 'smarty3');
 
-    $colorset = get_pconfig( local_user(), 'duepuntozero','colorset');
-    if (!$colorset)
-       $colorset = get_config('duepuntozero', 'colorset');          // user setting have priority, then node settings
-    if ($colorset) {
-        if ($colorset == 'greenzero')
-            $a->page['htmlhead'] .= '<link rel="stylesheet" href="view/theme/duepuntozero/deriv/greenzero.css" type="text/css" media="screen" />'."\n";
-        if ($colorset == 'purplezero')
-            $a->page['htmlhead'] .= '<link rel="stylesheet" href="view/theme/duepuntozero/deriv/purplezero.css" type="text/css" media="screen" />'."\n";
-        if ($colorset == 'easterbunny')
-            $a->page['htmlhead'] .= '<link rel="stylesheet" href="view/theme/duepuntozero/deriv/easterbunny.css" type="text/css" media="screen" />'."\n";
-        if ($colorset == 'darkzero')
-            $a->page['htmlhead'] .= '<link rel="stylesheet" href="view/theme/duepuntozero/deriv/darkzero.css" type="text/css" media="screen" />'."\n";
-        if ($colorset == 'comix')
-            $a->page['htmlhead'] .= '<link rel="stylesheet" href="view/theme/duepuntozero/deriv/comix.css" type="text/css" media="screen" />'."\n";
-        if ($colorset == 'slackr')
-            $a->page['htmlhead'] .= '<link rel="stylesheet" href="view/theme/duepuntozero/deriv/slackr.css" type="text/css" media="screen" />'."\n";
-    }
+$colorset = get_pconfig( local_user(), 'duepuntozero','colorset');
+if (!$colorset) {
+       $colorset = get_config('duepuntozero', 'colorset');          // user setting have priority, then node settings
+}
+if ($colorset) {
+       if ($colorset == 'greenzero') {
+               $a->page['htmlhead'] .= '<link rel="stylesheet" href="view/theme/duepuntozero/deriv/greenzero.css" type="text/css" media="screen" />'."\n";
+       }
+       if ($colorset == 'purplezero') {
+               $a->page['htmlhead'] .= '<link rel="stylesheet" href="view/theme/duepuntozero/deriv/purplezero.css" type="text/css" media="screen" />'."\n";
+       }
+       if ($colorset == 'easterbunny') {
+               $a->page['htmlhead'] .= '<link rel="stylesheet" href="view/theme/duepuntozero/deriv/easterbunny.css" type="text/css" media="screen" />'."\n";
+       }
+       if ($colorset == 'darkzero') {
+               $a->page['htmlhead'] .= '<link rel="stylesheet" href="view/theme/duepuntozero/deriv/darkzero.css" type="text/css" media="screen" />'."\n";
+       }
+       if ($colorset == 'comix') {
+               $a->page['htmlhead'] .= '<link rel="stylesheet" href="view/theme/duepuntozero/deriv/comix.css" type="text/css" media="screen" />'."\n";
+       }
+       if ($colorset == 'slackr') {
+               $a->page['htmlhead'] .= '<link rel="stylesheet" href="view/theme/duepuntozero/deriv/slackr.css" type="text/css" media="screen" />'."\n";
+       }
+}
 $a->page['htmlhead'] .= <<< EOT
 <script>
 function insertFormatting(BBcode, id) {
index 91b0180f280e8d949dc1e8ebcfcd7b46b6228000..e6937221a1c4723da15031224b99a088d55b60ac 100644 (file)
@@ -9,6 +9,7 @@
 
 /**
  * A color utility that helps manipulate HEX colors
+ * @todo convert space -> tab
  */
 class Color {
 
@@ -35,7 +36,7 @@ class Color {
         // Make sure it's 6 digits
         if ( strlen($color) === 3 ) {
             $color = $color[0].$color[0].$color[1].$color[1].$color[2].$color[2];
-        } else if ( strlen($color) != 6 ) {
+        } elseif ( strlen($color) != 6 ) {
             throw new Exception("HEX color needs to be 6 or 3 digits long");
         }
 
@@ -483,7 +484,7 @@ class Color {
         // Make sure it's 6 digits
         if ( strlen($color) == 3 ) {
             $color = $color[0].$color[0].$color[1].$color[1].$color[2].$color[2];
-        } else if ( strlen($color) != 6 ) {
+        } elseif ( strlen($color) != 6 ) {
             throw new Exception("HEX color needs to be 6 or 3 digits long");
         }