]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/duepuntozero/config.php
Merge pull request #4243 from MrPetovan/task/switch-to-array-new-style
[friendica.git] / view / theme / duepuntozero / config.php
index 55703474900bde34162288b7abf100611b18780e..1b299329bf43f4dcabfa06e9329831161c61eed7 100644 (file)
@@ -5,6 +5,8 @@
  */
 
 use Friendica\App;
+use Friendica\Core\Config;
+use Friendica\Core\PConfig;
 use Friendica\Core\System;
 
 function theme_content(App $a) {
@@ -12,7 +14,7 @@ function theme_content(App $a) {
                return;
        }
 
-       $colorset = get_pconfig( local_user(), 'duepuntozero', 'colorset');
+       $colorset = PConfig::get( local_user(), 'duepuntozero', 'colorset');
        $user = true;
 
        return clean_form($a, $colorset, $user);
@@ -24,12 +26,12 @@ function theme_post(App $a) {
        }
 
        if (isset($_POST['duepuntozero-settings-submit'])){
-               set_pconfig(local_user(), 'duepuntozero', 'colorset', $_POST['duepuntozero_colorset']);
+               PConfig::set(local_user(), 'duepuntozero', 'colorset', $_POST['duepuntozero_colorset']);
        }
 }
 
 function theme_admin(App $a) {
-       $colorset = get_config( 'duepuntozero', 'colorset');
+       $colorset = Config::get( 'duepuntozero', 'colorset');
        $user = false;
 
        return clean_form($a, $colorset, $user);
@@ -37,13 +39,13 @@ function theme_admin(App $a) {
 
 function theme_admin_post(App $a) {
        if (isset($_POST['duepuntozero-settings-submit'])){
-               set_config('duepuntozero', 'colorset', $_POST['duepuntozero_colorset']);
+               Config::set('duepuntozero', 'colorset', $_POST['duepuntozero_colorset']);
        }
 }
 
 /// @TODO $a is no longer used
 function clean_form(App $a, &$colorset, $user) {
-       $colorset = array(
+       $colorset = [
                'default'     =>t('default'),
                'greenzero'   =>t('greenzero'),
                'purplezero'  =>t('purplezero'),
@@ -51,22 +53,22 @@ function clean_form(App $a, &$colorset, $user) {
                'darkzero'    =>t('darkzero'),
                'comix'       =>t('comix'),
                'slackr'      =>t('slackr'),
-       );
+       ];
 
        if ($user) {
-               $color = get_pconfig(local_user(), 'duepuntozero', 'colorset');
+               $color = PConfig::get(local_user(), 'duepuntozero', 'colorset');
        } else {
-               $color = get_config( 'duepuntozero', 'colorset');
+               $color = Config::get( '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(
+       $o .= replace_macros($t, [
                '$submit'   => t('Submit'),
                '$baseurl'  => System::baseUrl(),
                '$title'    => t("Theme settings"),
-               '$colorset' => array('duepuntozero_colorset', t('Variations'), $color, '', $colorset),
-       ));
+               '$colorset' => ['duepuntozero_colorset', t('Variations'), $color, '', $colorset],
+       ]);
 
        return $o;
 }