]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/quattro/config.php
*much* more usage of App::get_baseurl() instead of $a->get_baseurl() (coding conventi...
[friendica.git] / view / theme / quattro / config.php
index 0f2fc53ca08eb4f105a0c97bf3686ea5d45d3d37..2a32b9f05a7cf851c8f1cc4d8c03f9094b71669a 100644 (file)
@@ -48,7 +48,7 @@ function theme_admin_post(&$a){
        }
 }
 
-
+/// @TODO $a is no longer used here
 function quattro_form(&$a, $align, $color, $tfs, $pfs){
        $colors = array(
                "dark"=>"Quattro", 
@@ -59,10 +59,10 @@ function quattro_form(&$a, $align, $color, $tfs, $pfs){
     if ($tfs===false) $tfs="20";
     if ($pfs===false) $pfs="12";
     
-       $t = file_get_contents( dirname(__file__). "/theme_settings.tpl" );
+       $t = get_markup_template("theme_settings.tpl" );
        $o .= replace_macros($t, array(
                '$submit' => t('Submit'),
-               '$baseurl' => $a->get_baseurl(),
+               '$baseurl' => App::get_baseurl(),
                '$title' => t("Theme settings"),
                '$align' => array('quattro_align', t('Alignment'), $align, '', array('left'=>t('Left'), 'center'=>t('Center'))),
                '$color' => array('quattro_color', t('Color scheme'), $color, '', $colors),