]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/quattro/config.php
Merge pull request #3239 from Hypolite/issue/#3194-2
[friendica.git] / view / theme / quattro / config.php
index db4356ccc887698b17a559a64355546d2cbf5031..5af58a18da612ac9aa98dcec19628c408e7805ce 100644 (file)
@@ -3,24 +3,24 @@
  * Theme settings
  */
 
+function theme_content(App $a) {
+       if (!local_user()) {
+               return;
+       }
 
-
-function theme_content(&$a){
-       if(!local_user())
-               return;         
-       
        $align = get_pconfig(local_user(), 'quattro', 'align' );
        $color = get_pconfig(local_user(), 'quattro', 'color' );
-    $tfs = get_pconfig(local_user(),"quattro","tfs");
-    $pfs = get_pconfig(local_user(),"quattro","pfs");    
-    
+       $tfs = get_pconfig(local_user(),"quattro","tfs");
+       $pfs = get_pconfig(local_user(),"quattro","pfs");
+
        return quattro_form($a,$align, $color, $tfs, $pfs);
 }
 
-function theme_post(&$a){
-       if(! local_user())
+function theme_post(App $a) {
+       if (! local_user()) {
                return;
-       
+       }
+
        if (isset($_POST['quattro-settings-submit'])){
                set_pconfig(local_user(), 'quattro', 'align', $_POST['quattro_align']);
                set_pconfig(local_user(), 'quattro', 'color', $_POST['quattro_color']);
@@ -29,45 +29,48 @@ 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");
-    $pfs = get_config("quattro","pfs");    
+       $tfs = get_config("quattro","tfs");
+       $pfs = get_config("quattro","pfs");
 
        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']);
-        set_config('quattro', 'tfs', $_POST['quattro_tfs']);
+               set_config('quattro', 'tfs', $_POST['quattro_tfs']);
                set_config('quattro', 'pfs', $_POST['quattro_pfs']);
        }
 }
 
-
-function quattro_form(&$a, $align, $color, $tfs, $pfs){
+/// @TODO $a is no longer used here
+function quattro_form(App $a, $align, $color, $tfs, $pfs) {
        $colors = array(
-               "dark"=>"Quattro", 
-               "lilac"=>"Lilac", 
-               "green"=>"Green"
+               "dark"  => "Quattro",
+               "lilac" => "Lilac",
+               "green" => "Green",
        );
-    
-    if ($tfs===false) $tfs="20";
-    if ($pfs===false) $pfs="12";
-    
+
+       if ($tfs === false) {
+               $tfs = "20";
+       }
+       if ($pfs === false) {
+               $pfs = "12";
+       }
+
        $t = get_markup_template("theme_settings.tpl" );
        $o .= replace_macros($t, array(
-               '$submit' => t('Submit'),
-               '$baseurl' => $a->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),
-        '$pfs' => array('quattro_pfs', t('Posts font size'), $pfs),
-        '$tfs' => array('quattro_tfs',t('Textareas font size'), $tfs),
+               '$submit'  => t('Submit'),
+               '$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),
+               '$pfs'     => array('quattro_pfs', t('Posts font size'), $pfs),
+               '$tfs'     => array('quattro_tfs',t('Textareas font size'), $tfs),
        ));
        return $o;
 }