]> git.mxchange.org Git - friendica.git/commitdiff
No need to set $a->theme_info = array() everywhere if you can define it in App
authorRoland Haeder <roland@mxchange.org>
Tue, 1 Mar 2016 13:27:38 +0000 (14:27 +0100)
committerRoland Haeder <roland@mxchange.org>
Tue, 1 Mar 2016 13:27:38 +0000 (14:27 +0100)
itself.

Signed-off-by: Roland Haeder <roland@mxchange.org>
boot.php
view/theme/decaf-mobile/theme.php
view/theme/duepuntozero/theme.php
view/theme/facepark/theme.php
view/theme/frost-mobile/theme.php
view/theme/frost/theme.php
view/theme/quattro/theme.php
view/theme/smoothly/theme.php
view/theme/vier/theme.php

index d82669f231a9fb12608d3855ea50ea78e7bb6ee2..4b2e83f18a5eff74d1913b3186c43e26976fb820 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -465,11 +465,12 @@ class App {
        public  $plugins;
        public  $apps = array();
        public  $identities;
-       public  $is_mobile;
-       public  $is_tablet;
+       public  $is_mobile = false;
+       public  $is_tablet = false;
        public  $is_friendica_app;
        public  $performance = array();
        public  $callstack = array();
+       public  $theme_info = array();
 
        public $nav_sel;
 
index 1a32fb724dc18a16acf6dae1aabf1dd47bbda7a4..9b1c1daa619f6284f628f5e577ed68395e1c5804 100644 (file)
@@ -10,7 +10,6 @@
  */
 
 function decaf_mobile_init(&$a) {
-       $a->theme_info = array();
        $a->sourcename = 'Friendica mobile web';
        $a->videowidth = 250;
        $a->videoheight = 200;
index ba3f25d3e26e002b461e8d97ac433d3ddca286e4..50d57f91e5759041f463284537ddcfcc1495ad9d 100644 (file)
@@ -2,7 +2,6 @@
 
 function duepuntozero_init(&$a) {
 
-$a->theme_info = array();
 set_template_engine($a, 'smarty3');
 
     $colorset = get_pconfig( local_user(), 'duepuntozero','colorset');
index e7203c66416b5ca17bb09d79ccf672c4681ac02d..e6255f118a60b9e5c3be8655bea40dc8d78cfd50 100644 (file)
@@ -1,7 +1,6 @@
 <?php
 
 function facepark_init(&$a) {
-$a->theme_info = array();
 set_template_engine($a, 'smarty3');
 
 $a->page['htmlhead'] .= <<< EOT
index beec9249348c70e15d43351bffc77cb32f019b60..29a990f7b8604c5bbbf3af20cd9c3d8e84710be4 100644 (file)
@@ -10,7 +10,6 @@
  */
 
 function frost_mobile_init(&$a) {
-       $a->theme_info = array();
        $a->sourcename = 'Friendica mobile web';
        $a->videowidth = 250;
        $a->videoheight = 200;
index 868a840dee0ed93a6f774f7074fb34bffa66f742..1093a04729c27be483097069bccd656044601849 100644 (file)
@@ -10,7 +10,6 @@
  */
 
 function frost_init(&$a) {
-       $a->theme_info = array();
        $a->videowidth = 400;
        $a->videoheight = 330;
        $a->theme_thread_allow = false;
index a1cd29ee72ad84c1ff2fe3da4850e46b9daec213..0b67c6b49a8282a023eeabd274b836f6aa1abcae 100644 (file)
@@ -8,8 +8,6 @@
  */
 
 function quattro_init(&$a) {
-       $a->theme_info = array();
-
        $a->page['htmlhead'] .= '<script src="'.$a->get_baseurl().'/view/theme/quattro/tinycon.min.js"></script>';
        $a->page['htmlhead'] .= '<script src="'.$a->get_baseurl().'/view/theme/quattro/js/quattro.js"></script>';;
 }
index d3ebbc1d159d3b7bc9092e1ce719d90019224a03..0dae3a6e473b606a3034bf6cd4f78a1cf49fa649 100644 (file)
@@ -11,7 +11,6 @@
  */
 
 function smoothly_init(&$a) {
-       $a->theme_info = array();
        set_template_engine($a, 'smarty3');
 
        $cssFile = null;
index 7f6ead079f4d9abce62e964edf297f375e260bb5..925ac76a1fe2284b4798a34268ceb95e7189b314 100644 (file)
@@ -19,8 +19,6 @@ function vier_init(&$a) {
 
        set_template_engine($a, 'smarty3');
 
-       $a->theme_info = array();
-
        if ($a->argv[0].$a->argv[1] === "profile".$a->user['nickname'] or $a->argv[0] === "network" && local_user()) {
                vier_community_info();