X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=view%2Ftheme%2Fduepuntozero%2Fconfig.php;h=a64f6f5fedaf0d7fd32ca24f6cf7782e8730999a;hb=35ca4961d21c807b85af97295961c5d513f5be50;hp=68d005d31876b744408ce03f841a477e53a9f473;hpb=5dfee31108fc92a7abca5f99b8fdf1b34aec5dd5;p=friendica.git diff --git a/view/theme/duepuntozero/config.php b/view/theme/duepuntozero/config.php index 68d005d318..a64f6f5fed 100644 --- a/view/theme/duepuntozero/config.php +++ b/view/theme/duepuntozero/config.php @@ -1,21 +1,35 @@ . + * */ use Friendica\App; -use Friendica\Core\Config; -use Friendica\Core\L10n; use Friendica\Core\Renderer; use Friendica\DI; function theme_content(App $a) { - if (!local_user()) { + if (!DI::userSession()->getLocalUserId()) { return; } - $colorset = DI::pConfig()->get(local_user(), 'duepuntozero', 'colorset'); + $colorset = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'duepuntozero', 'colorset'); $user = true; return clean_form($a, $colorset, $user); @@ -23,18 +37,18 @@ function theme_content(App $a) function theme_post(App $a) { - if (! local_user()) { + if (!DI::userSession()->getLocalUserId()) { return; } if (isset($_POST['duepuntozero-settings-submit'])) { - DI::pConfig()->set(local_user(), 'duepuntozero', 'colorset', $_POST['duepuntozero_colorset']); + DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'duepuntozero', 'colorset', $_POST['duepuntozero_colorset']); } } function theme_admin(App $a) { - $colorset = Config::get('duepuntozero', 'colorset'); + $colorset = DI::config()->get('duepuntozero', 'colorset'); $user = false; return clean_form($a, $colorset, $user); @@ -43,7 +57,7 @@ function theme_admin(App $a) function theme_admin_post(App $a) { if (isset($_POST['duepuntozero-settings-submit'])) { - Config::set('duepuntozero', 'colorset', $_POST['duepuntozero_colorset']); + DI::config()->set('duepuntozero', 'colorset', $_POST['duepuntozero_colorset']); } } @@ -61,9 +75,9 @@ function clean_form(App $a, &$colorset, $user) ]; if ($user) { - $color = DI::pConfig()->get(local_user(), 'duepuntozero', 'colorset'); + $color = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'duepuntozero', 'colorset'); } else { - $color = Config::get('duepuntozero', 'colorset'); + $color = DI::config()->get('duepuntozero', 'colorset'); } $t = Renderer::getMarkupTemplate("theme_settings.tpl");