X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=view%2Ftheme%2Fduepuntozero%2Fconfig.php;h=381b0671676fe1a5fd9e86f9bde8f33aa79bcd8b;hb=6fdc219143b83c357a65179529752553a71b44f6;hp=edf12c35fa10c185f073381d7dadd6db108e9133;hpb=395be3dcde55d16c8e23dbe9137d1279b58442a4;p=friendica.git diff --git a/view/theme/duepuntozero/config.php b/view/theme/duepuntozero/config.php index edf12c35fa..381b067167 100644 --- a/view/theme/duepuntozero/config.php +++ b/view/theme/duepuntozero/config.php @@ -3,63 +3,66 @@ * Theme settings */ +function theme_content(App $a) { + if (!local_user()) { + return; + } + $colorset = get_pconfig( local_user(), 'duepuntozero', 'colorset'); + $user = true; -function theme_content(&$a){ - if(!local_user()) - return; - - $colorset = get_pconfig( local_user(), 'duepuntozero', 'colorset'); - $user = true; - - return clean_form($a, $colorset, $user); + return clean_form($a, $colorset, $user); } -function theme_post(&$a){ - if(! local_user()) - return; - - if (isset($_POST['duepuntozero-settings-submit'])){ - set_pconfig(local_user(), 'duepuntozero', 'colorset', $_POST['duepuntozero_colorset']); - } -} +function theme_post(App $a) { + if (! local_user()) { + return; + } + if (isset($_POST['duepuntozero-settings-submit'])){ + set_pconfig(local_user(), 'duepuntozero', 'colorset', $_POST['duepuntozero_colorset']); + } +} -function theme_admin(&$a){ - $colorset = get_config( 'duepuntozero', 'colorset'); - $user = false; +function theme_admin(App $a) { + $colorset = get_config( 'duepuntozero', 'colorset'); + $user = false; - return clean_form($a, $colorset, $user); + return clean_form($a, $colorset, $user); } -function theme_admin_post(&$a){ - if (isset($_POST['duepuntozero-settings-submit'])){ - set_config('duepuntozero', 'colorset', $_POST['duepuntozero_colorset']); - } +function theme_admin_post(App $a) { + if (isset($_POST['duepuntozero-settings-submit'])){ + set_config('duepuntozero', 'colorset', $_POST['duepuntozero_colorset']); + } } +/// @TODO $a is no longer used +function clean_form(App $a, &$colorset, $user) { + $colorset = array( + 'default' =>t('default'), + 'greenzero' =>t('greenzero'), + 'purplezero' =>t('purplezero'), + 'easterbunny' =>t('easterbunny'), + 'darkzero' =>t('darkzero'), + 'comix' =>t('comix'), + 'slackr' =>t('slackr'), + ); + + if ($user) { + $color = get_pconfig(local_user(), 'duepuntozero', 'colorset'); + } else { + $color = get_config( 'duepuntozero', 'colorset'); + } + + $t = get_markup_template("theme_settings.tpl" ); + /// @TODO No need for adding string here, $o is not defined + $o .= replace_macros($t, array( + '$submit' => t('Submit'), + '$baseurl' => App::get_baseurl(), + '$title' => t("Theme settings"), + '$colorset' => array('duepuntozero_colorset', t('Variations'), $color, '', $colorset), + )); -function clean_form(&$a, &$colorset, $user){ - $colorset = array( - 'default'=>t('default'), - 'greenzero'=>t('greenzero'), - 'purplezero'=>t('purplezero'), - 'easterbunny'=>t('easterbunny'), - 'darkzero'=>t('darkzero'), - 'comix'=>t('comix'), - 'slackr'=>t('slackr'), - ); - if ($user) { - $color = get_pconfig(local_user(), 'duepuntozero', 'colorset'); - } else { - $color = get_config( 'duepuntozero', 'colorset'); - } - $t = get_markup_template("theme_settings.tpl" ); - $o .= replace_macros($t, array( - '$submit' => t('Submit'), - '$baseurl' => $a->get_baseurl(), - '$title' => t("Theme settings"), - '$colorset' => array('duepuntozero_colorset', t('Variations'), $color, '', $colorset), - )); - return $o; + return $o; }