]> git.mxchange.org Git - friendica.git/commitdiff
changed to this:
authorRoland Häder <roland@mxchange.org>
Tue, 20 Dec 2016 09:59:06 +0000 (10:59 +0100)
committerRoland Häder <roland@mxchange.org>
Tue, 20 Dec 2016 09:59:06 +0000 (10:59 +0100)
---------------------
function bla (App &$a) {
$a->bla = 'stuff';
}
---------------------

Signed-off-by: Roland Häder <roland@mxchange.org>
12 files changed:
view/theme/duepuntozero/config.php
view/theme/duepuntozero/theme.php
view/theme/frio/config.php
view/theme/frio/php/frio_boot.php
view/theme/frio/theme.php
view/theme/frost-mobile/theme.php
view/theme/frost/theme.php
view/theme/quattro/config.php
view/theme/quattro/theme.php
view/theme/smoothly/theme.php
view/theme/vier/config.php
view/theme/vier/theme.php

index 2c798962278ced9ee30ddd4223973c36883fd0c8..7d52bc55bb384bfb393b7a35dec7faed59b545df 100644 (file)
@@ -5,7 +5,7 @@
 
 
 
-function theme_content(&$a){
+function theme_content(App &$a){
     if(!local_user())
         return;                
 
@@ -15,7 +15,7 @@ function theme_content(&$a){
     return clean_form($a, $colorset, $user);
 }
 
-function theme_post(&$a){
+function theme_post(App &$a){
     if(! local_user())
         return;
     
@@ -25,14 +25,14 @@ function theme_post(&$a){
 }
 
 
-function theme_admin(&$a){
+function theme_admin(App &$a){
     $colorset = get_config( 'duepuntozero', 'colorset');
     $user = false;
 
     return clean_form($a, $colorset, $user);
 }
 
-function theme_admin_post(&$a){
+function theme_admin_post(App &$a){
     if (isset($_POST['duepuntozero-settings-submit'])){
         set_config('duepuntozero', 'colorset', $_POST['duepuntozero_colorset']);
     }
index 50d57f91e5759041f463284537ddcfcc1495ad9d..bf1d031def9367c1d5128315313fab16e1ab1c66 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-function duepuntozero_init(&$a) {
+function duepuntozero_init(App &$a) {
 
 set_template_engine($a, 'smarty3');
 
index 589f1591a0dee3b345ecd3989f028773b1bef64e..cb2683aa0bc6a112bb2073a2fba3ca6fd1d5f958 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 require_once('view/theme/frio/php/Image.php');
 
-function theme_content(&$a) {
+function theme_content(App &$a) {
        if(!local_user()) { return;}
        $arr = array();
 
@@ -17,7 +17,7 @@ function theme_content(&$a) {
        return frio_form($a, $arr);
 }
 
-function theme_post(&$a) {
+function theme_post(App &$a) {
        if(!local_user()) { return;}
        if (isset($_POST['frio-settings-submit'])) {
                set_pconfig(local_user(), 'frio', 'schema',             $_POST["frio_schema"]);
index 827874d7e1628ac60247ed14a3a30f8b122210c1..0e221f5337db55a38c6f9623128824b332a9e13d 100644 (file)
@@ -13,7 +13,7 @@
  * 
  * @todo Check if this is really needed.
  */
-function load_page(&$a) {
+function load_page(App &$a) {
        if(isset($_GET["mode"]) AND ($_GET["mode"] == "minimal")) {
                require "view/theme/frio/minimal.php";
        } elseif((isset($_GET["mode"]) AND ($_GET["mode"] == "none"))) {
index 5bc5140bf1db2b5a97b3d8d56934add6a026df3b..664881a4a8947995ca3fe18e01496d87694f5124 100644 (file)
@@ -11,7 +11,7 @@ $frio = "view/theme/frio";
 
 global $frio;
 
-function frio_init(&$a) {
+function frio_init(App &$a) {
 
        // disable the events module link in the profile tab
        $a->theme_events_in_profile = false;
index 24d5e9e52e0c3e3ec2e76cd32e2408522bad4db0..7fe17ce7e148d75171a1b44b871dd17026d54a88 100644 (file)
@@ -9,7 +9,7 @@
  * Maintainer: Zach P <techcity@f.shmuz.in>
  */
 
-function frost_mobile_init(&$a) {
+function frost_mobile_init(App &$a) {
        $a->sourcename = 'Friendica mobile web';
        $a->videowidth = 250;
        $a->videoheight = 200;
@@ -18,7 +18,7 @@ function frost_mobile_init(&$a) {
        set_template_engine($a, 'smarty3');
 }
 
-function frost_mobile_content_loaded(&$a) {
+function frost_mobile_content_loaded(App &$a) {
 
        // I could do this in style.php, but by having the CSS in a file the browser will cache it,
        // making pages load faster
index 464c14d4703ad6b5e10778b3f131d4c796455502..964ea88ec4ed01edb08272b4a3b7e21ce6f4d640 100644 (file)
@@ -9,14 +9,14 @@
  * Maintainer: Zach P <techcity@f.shmuz.in>
  */
 
-function frost_init(&$a) {
+function frost_init(App &$a) {
        $a->videowidth = 400;
        $a->videoheight = 330;
        $a->theme_thread_allow = false;
        set_template_engine($a, 'smarty3');
 }
 
-function frost_content_loaded(&$a) {
+function frost_content_loaded(App &$a) {
 
        // I could do this in style.php, but by having the CSS in a file the browser will cache it,
        // making pages load faster
index 2a32b9f05a7cf851c8f1cc4d8c03f9094b71669a..11e6f6cbce0d48513ddec68cde31412d29dffa14 100644 (file)
@@ -5,7 +5,7 @@
 
 
 
-function theme_content(&$a){
+function theme_content(App &$a){
        if(!local_user())
                return;         
        
@@ -17,7 +17,7 @@ function theme_content(&$a){
        return quattro_form($a,$align, $color, $tfs, $pfs);
 }
 
-function theme_post(&$a){
+function theme_post(App &$a){
        if(! local_user())
                return;
        
@@ -30,7 +30,7 @@ function theme_post(&$a){
 }
 
 
-function theme_admin(&$a){
+function theme_admin(App &$a){
        $align = get_config('quattro', 'align' );
        $color = get_config('quattro', 'color' );
     $tfs = get_config("quattro","tfs");
@@ -39,7 +39,7 @@ function theme_admin(&$a){
        return quattro_form($a,$align, $color, $tfs, $pfs);
 }
 
-function theme_admin_post(&$a){
+function theme_admin_post(App &$a){
        if (isset($_POST['quattro-settings-submit'])){
                set_config('quattro', 'align', $_POST['quattro_align']);
                set_config('quattro', 'color', $_POST['quattro_color']);
index f316323fd31cf60a6ecf9cb0e67f510873998a71..ae8f4f906594b0d73f5dcad03dd78d7af708907e 100644 (file)
@@ -7,7 +7,7 @@
  * Maintainer: Tobias <https://diekershoff.homeunix.net/friendica/profile/tobias>
  */
 
-function quattro_init(&$a) {
+function quattro_init(App &$a) {
        $a->page['htmlhead'] .= '<script src="'.App::get_baseurl().'/view/theme/quattro/tinycon.min.js"></script>';
        $a->page['htmlhead'] .= '<script src="'.App::get_baseurl().'/view/theme/quattro/js/quattro.js"></script>';;
 }
index 189110a952d21813a26d7bbadf279d91501922da..32c48fffa4bf3b0d19b554861fbd31899d0ec790 100644 (file)
@@ -10,7 +10,7 @@
  * Screenshot: <a href="screenshot.png">Screenshot</a>
  */
 
-function smoothly_init(&$a) {
+function smoothly_init(App &$a) {
        set_template_engine($a, 'smarty3');
 
        $cssFile = null;
index 0f07ff9a1eac023b157c8088932d1e9d6eefcda3..55ef2654f1baa9639dfc071e3bd17a38dfdbaf85 100644 (file)
@@ -5,7 +5,7 @@
 
 
 
-function theme_content(&$a){
+function theme_content(App &$a){
        if(!local_user())
                return;
 
@@ -31,7 +31,7 @@ function theme_content(&$a){
                        $show_services, $show_friends, $show_lastusers);
 }
 
-function theme_post(&$a){
+function theme_post(App &$a){
        if(! local_user())
                return;
 
@@ -47,7 +47,7 @@ function theme_post(&$a){
 }
 
 
-function theme_admin(&$a){
+function theme_admin(App &$a){
 
        if (!function_exists('get_vier_config'))
                return;
@@ -76,7 +76,7 @@ function theme_admin(&$a){
        return $o;
 }
 
-function theme_admin_post(&$a){
+function theme_admin_post(App &$a){
        if (isset($_POST['vier-settings-submit'])){
                set_config('vier', 'style', $_POST['vier_style']);
                set_config('vier', 'show_pages', $_POST['vier_show_pages']);
index 45dde5f44987b2a64ab20d592e46ef5697bdee48..46921dc1c58818316982291d00296186454a2f62 100644 (file)
@@ -13,7 +13,7 @@ require_once("include/plugin.php");
 require_once("include/socgraph.php");
 require_once("mod/proxy.php");
 
-function vier_init(&$a) {
+function vier_init(App &$a) {
 
        $a->theme_events_in_profile = false;