]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/frio/config.php
Merge pull request #3791 from annando/parse-fix
[friendica.git] / view / theme / frio / config.php
index 000ef26092fa43330d1dcdda24489ade8980f3f6..6e5aca1badd2c65029a4bd7f144929023d777faa 100644 (file)
@@ -1,7 +1,11 @@
 <?php
+
+use Friendica\App;
+use Friendica\Core\System;
+
 require_once('view/theme/frio/php/Image.php');
 
-function theme_content(App &$a) {
+function theme_content(App $a) {
        if (!local_user()) {
                return;
        }
@@ -16,10 +20,10 @@ function theme_content(App &$a) {
        $arr["background_image"] = get_pconfig(local_user(),'frio', 'background_image' );
        $arr["bg_image_option"] = get_pconfig(local_user(),'frio', 'bg_image_option' );
 
-       return frio_form($a, $arr);
+       return frio_form($arr);
 }
 
-function theme_post(App &$a) {
+function theme_post(App $a) {
        if (!local_user()) {
                return;
        }
@@ -36,9 +40,9 @@ function theme_post(App &$a) {
        }
 }
 
-function frio_form(&$a, $arr) {
+function frio_form($arr) {
        require_once("view/theme/frio/php/schema.php");
-       
+
        $scheme_info = get_schema_info($arr["schema"]);
        $disable = $scheme_info["overwrites"];
        if (!is_array($disable)) $disable = array();
@@ -62,7 +66,7 @@ function frio_form(&$a, $arr) {
        $t = get_markup_template('theme_settings.tpl');
        $o .= replace_macros($t, array(
                '$submit'               => t('Submit'),
-               '$baseurl'              => App::get_baseurl(),
+               '$baseurl'              => System::baseUrl(),
                '$title'                => t("Theme settings"),
                '$schema'               => array('frio_schema',         t("Select scheme"),                     $arr["schema"], '', $scheme_choices),
                '$nav_bg'               => array_key_exists("nav_bg", $disable) ? "" : array('frio_nav_bg',             t('Navigation bar background color'),   $arr['nav_bg']),