2014-09-07 12:48:23 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Theme settings
|
|
|
|
*/
|
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-11-07 03:22:52 +01:00
|
|
|
use Friendica\Core\Config;
|
2018-01-22 13:29:50 +01:00
|
|
|
use Friendica\Core\L10n;
|
2017-11-07 03:22:52 +01:00
|
|
|
use Friendica\Core\PConfig;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2018-01-22 13:29:50 +01:00
|
|
|
function theme_content(App $a)
|
|
|
|
{
|
2016-12-20 11:56:34 +01:00
|
|
|
if (!local_user()) {
|
|
|
|
return;
|
|
|
|
}
|
2014-09-07 12:48:23 +02:00
|
|
|
|
2018-01-22 13:29:50 +01:00
|
|
|
$colorset = PConfig::get(local_user(), 'duepuntozero', 'colorset');
|
2016-12-20 11:56:34 +01:00
|
|
|
$user = true;
|
2014-09-07 12:48:23 +02:00
|
|
|
|
2016-12-20 11:56:34 +01:00
|
|
|
return clean_form($a, $colorset, $user);
|
2014-09-07 12:48:23 +02:00
|
|
|
}
|
|
|
|
|
2018-01-22 13:29:50 +01:00
|
|
|
function theme_post(App $a)
|
|
|
|
{
|
2016-12-20 11:56:34 +01:00
|
|
|
if (! local_user()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-01-22 13:29:50 +01:00
|
|
|
if (isset($_POST['duepuntozero-settings-submit'])) {
|
2017-11-07 03:22:52 +01:00
|
|
|
PConfig::set(local_user(), 'duepuntozero', 'colorset', $_POST['duepuntozero_colorset']);
|
2016-12-20 11:56:34 +01:00
|
|
|
}
|
2014-09-07 12:48:23 +02:00
|
|
|
}
|
|
|
|
|
2018-01-22 13:29:50 +01:00
|
|
|
function theme_admin(App $a)
|
|
|
|
{
|
|
|
|
$colorset = Config::get('duepuntozero', 'colorset');
|
2016-12-20 11:56:34 +01:00
|
|
|
$user = false;
|
2014-09-07 12:48:23 +02:00
|
|
|
|
2016-12-20 11:56:34 +01:00
|
|
|
return clean_form($a, $colorset, $user);
|
2014-09-07 12:48:23 +02:00
|
|
|
}
|
|
|
|
|
2018-01-22 13:29:50 +01:00
|
|
|
function theme_admin_post(App $a)
|
|
|
|
{
|
|
|
|
if (isset($_POST['duepuntozero-settings-submit'])) {
|
2017-11-07 03:22:52 +01:00
|
|
|
Config::set('duepuntozero', 'colorset', $_POST['duepuntozero_colorset']);
|
2016-12-20 11:56:34 +01:00
|
|
|
}
|
2014-09-07 12:48:23 +02:00
|
|
|
}
|
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
/// @TODO $a is no longer used
|
2018-01-22 13:29:50 +01:00
|
|
|
function clean_form(App $a, &$colorset, $user)
|
|
|
|
{
|
2018-01-15 14:05:12 +01:00
|
|
|
$colorset = [
|
2018-01-22 13:29:50 +01:00
|
|
|
'default' => L10n::t('default'),
|
|
|
|
'greenzero' => L10n::t('greenzero'),
|
|
|
|
'purplezero' => L10n::t('purplezero'),
|
|
|
|
'easterbunny' => L10n::t('easterbunny'),
|
|
|
|
'darkzero' => L10n::t('darkzero'),
|
|
|
|
'comix' => L10n::t('comix'),
|
|
|
|
'slackr' => L10n::t('slackr'),
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2016-12-20 11:56:34 +01:00
|
|
|
|
|
|
|
if ($user) {
|
2017-11-07 03:22:52 +01:00
|
|
|
$color = PConfig::get(local_user(), 'duepuntozero', 'colorset');
|
2016-12-20 11:56:34 +01:00
|
|
|
} else {
|
2018-01-22 13:29:50 +01:00
|
|
|
$color = Config::get('duepuntozero', 'colorset');
|
2016-12-20 11:56:34 +01:00
|
|
|
}
|
|
|
|
|
2018-01-22 13:29:50 +01:00
|
|
|
$t = get_markup_template("theme_settings.tpl");
|
2018-02-12 16:50:05 +01:00
|
|
|
$o = replace_macros($t, [
|
2018-01-22 13:29:50 +01:00
|
|
|
'$submit' => L10n::t('Submit'),
|
2017-08-26 09:32:10 +02:00
|
|
|
'$baseurl' => System::baseUrl(),
|
2018-01-22 13:29:50 +01:00
|
|
|
'$title' => L10n::t("Theme settings"),
|
|
|
|
'$colorset' => ['duepuntozero_colorset', L10n::t('Variations'), $color, '', $colorset],
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2016-12-20 11:56:34 +01:00
|
|
|
|
|
|
|
return $o;
|
2014-09-07 12:48:23 +02:00
|
|
|
}
|