]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/duepuntozero/config.php
Cleanup /format pre-move
[friendica.git] / view / theme / duepuntozero / config.php
index 485e4c233e0a01a35858390a1361ccf2b9348c43..6b111d6ad4e7df2073c90c24d3c90043035a9b97 100644 (file)
@@ -1,11 +1,10 @@
 <?php
+
 /**
  * Theme settings
  */
 
-
-
-function theme_content(App &$a){
+function theme_content(App $a) {
        if (!local_user()) {
                return;
        }
@@ -16,7 +15,7 @@ function theme_content(App &$a){
        return clean_form($a, $colorset, $user);
 }
 
-function theme_post(App &$a){
+function theme_post(App $a) {
        if (! local_user()) {
                return;
        }
@@ -26,30 +25,29 @@ function theme_post(App &$a){
        }
 }
 
-
-function theme_admin(App &$a){
+function theme_admin(App $a) {
        $colorset = get_config( 'duepuntozero', 'colorset');
        $user = false;
 
        return clean_form($a, $colorset, $user);
 }
 
-function theme_admin_post(App &$a){
+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(&$a, &$colorset, $user){
+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'),
+               'default'     =>t('default'),
+               'greenzero'   =>t('greenzero'),
+               'purplezero'  =>t('purplezero'),
+               'easterbunny' =>t('easterbunny'),
+               'darkzero'    =>t('darkzero'),
+               'comix'       =>t('comix'),
+               'slackr'      =>t('slackr'),
        );
 
        if ($user) {
@@ -63,7 +61,7 @@ function clean_form(&$a, &$colorset, $user){
        $o .= replace_macros($t, array(
                '$submit'   => t('Submit'),
                '$baseurl'  => App::get_baseurl(),
-               '$title'=> t("Theme settings"),
+               '$title'    => t("Theme settings"),
                '$colorset' => array('duepuntozero_colorset', t('Variations'), $color, '', $colorset),
        ));