]> 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 1a5a9c02132938bb5839467b05735a8e2272c7ec..5af58a18da612ac9aa98dcec19628c408e7805ce 100644 (file)
@@ -3,9 +3,7 @@
  * Theme settings
  */
 
-
-
-function theme_content(App &$a){
+function theme_content(App $a) {
        if (!local_user()) {
                return;
        }
@@ -18,7 +16,7 @@ function theme_content(App &$a){
        return quattro_form($a,$align, $color, $tfs, $pfs);
 }
 
-function theme_post(App &$a){
+function theme_post(App $a) {
        if (! local_user()) {
                return;
        }
@@ -31,45 +29,48 @@ function theme_post(App &$a){
        }
 }
 
-
-function theme_admin(App &$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(App &$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']);
        }
 }
 
 /// @TODO $a is no longer used here
-function quattro_form(&$a, $align, $color, $tfs, $pfs){
+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'),
+               '$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),
+               '$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;
 }