X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=view%2Ftheme%2Fduepuntozero%2Fconfig.php;h=a64f6f5fedaf0d7fd32ca24f6cf7782e8730999a;hb=35ca4961d21c807b85af97295961c5d513f5be50;hp=6b111d6ad4e7df2073c90c24d3c90043035a9b97;hpb=56ee734b00aead633d5d213a6b140b75bc17ba96;p=friendica.git diff --git a/view/theme/duepuntozero/config.php b/view/theme/duepuntozero/config.php index 6b111d6ad4..a64f6f5fed 100644 --- a/view/theme/duepuntozero/config.php +++ b/view/theme/duepuntozero/config.php @@ -1,69 +1,91 @@ . + * */ -function theme_content(App $a) { - if (!local_user()) { +use Friendica\App; +use Friendica\Core\Renderer; +use Friendica\DI; + +function theme_content(App $a) +{ + if (!DI::userSession()->getLocalUserId()) { return; } - $colorset = get_pconfig( local_user(), 'duepuntozero', 'colorset'); + $colorset = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'duepuntozero', 'colorset'); $user = true; return clean_form($a, $colorset, $user); } -function theme_post(App $a) { - if (! local_user()) { +function theme_post(App $a) +{ + if (!DI::userSession()->getLocalUserId()) { return; } - if (isset($_POST['duepuntozero-settings-submit'])){ - set_pconfig(local_user(), 'duepuntozero', 'colorset', $_POST['duepuntozero_colorset']); + if (isset($_POST['duepuntozero-settings-submit'])) { + DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'duepuntozero', 'colorset', $_POST['duepuntozero_colorset']); } } -function theme_admin(App $a) { - $colorset = get_config( 'duepuntozero', 'colorset'); +function theme_admin(App $a) +{ + $colorset = DI::config()->get('duepuntozero', 'colorset'); $user = false; return clean_form($a, $colorset, $user); } -function theme_admin_post(App $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'])) { + DI::config()->set('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'), - ); +function clean_form(App $a, &$colorset, $user) +{ + $colorset = [ + 'default' => DI::l10n()->t('default'), + 'greenzero' => DI::l10n()->t('greenzero'), + 'purplezero' => DI::l10n()->t('purplezero'), + 'easterbunny' => DI::l10n()->t('easterbunny'), + 'darkzero' => DI::l10n()->t('darkzero'), + 'comix' => DI::l10n()->t('comix'), + 'slackr' => DI::l10n()->t('slackr'), + ]; if ($user) { - $color = get_pconfig(local_user(), 'duepuntozero', 'colorset'); + $color = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'duepuntozero', 'colorset'); } else { - $color = get_config( 'duepuntozero', 'colorset'); + $color = DI::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( - '$submit' => t('Submit'), - '$baseurl' => App::get_baseurl(), - '$title' => t("Theme settings"), - '$colorset' => array('duepuntozero_colorset', t('Variations'), $color, '', $colorset), - )); + $t = Renderer::getMarkupTemplate("theme_settings.tpl"); + $o = Renderer::replaceMacros($t, [ + '$submit' => DI::l10n()->t('Submit'), + '$title' => DI::l10n()->t("Theme settings"), + '$colorset' => ['duepuntozero_colorset', DI::l10n()->t('Variations'), $color, '', $colorset], + ]); return $o; }