2014-09-07 06:48:23 -04:00
|
|
|
<?php
|
2017-04-30 00:01:26 -04:00
|
|
|
|
2014-09-07 06:48:23 -04:00
|
|
|
/**
|
|
|
|
* Theme settings
|
|
|
|
*/
|
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
|
|
|
|
2017-01-09 07:06:08 -05:00
|
|
|
function theme_content(App $a) {
|
2016-12-20 05:56:34 -05:00
|
|
|
if (!local_user()) {
|
|
|
|
return;
|
|
|
|
}
|
2014-09-07 06:48:23 -04:00
|
|
|
|
2016-12-20 05:56:34 -05:00
|
|
|
$colorset = get_pconfig( local_user(), 'duepuntozero', 'colorset');
|
|
|
|
$user = true;
|
2014-09-07 06:48:23 -04:00
|
|
|
|
2016-12-20 05:56:34 -05:00
|
|
|
return clean_form($a, $colorset, $user);
|
2014-09-07 06:48:23 -04:00
|
|
|
}
|
|
|
|
|
2017-01-09 07:06:08 -05:00
|
|
|
function theme_post(App $a) {
|
2016-12-20 05:56:34 -05:00
|
|
|
if (! local_user()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($_POST['duepuntozero-settings-submit'])){
|
|
|
|
set_pconfig(local_user(), 'duepuntozero', 'colorset', $_POST['duepuntozero_colorset']);
|
|
|
|
}
|
2014-09-07 06:48:23 -04:00
|
|
|
}
|
|
|
|
|
2017-01-09 07:06:08 -05:00
|
|
|
function theme_admin(App $a) {
|
2016-12-20 05:56:34 -05:00
|
|
|
$colorset = get_config( 'duepuntozero', 'colorset');
|
|
|
|
$user = false;
|
2014-09-07 06:48:23 -04:00
|
|
|
|
2016-12-20 05:56:34 -05:00
|
|
|
return clean_form($a, $colorset, $user);
|
2014-09-07 06:48:23 -04:00
|
|
|
}
|
|
|
|
|
2017-01-09 07:06:08 -05:00
|
|
|
function theme_admin_post(App $a) {
|
2016-12-20 05:56:34 -05:00
|
|
|
if (isset($_POST['duepuntozero-settings-submit'])){
|
|
|
|
set_config('duepuntozero', 'colorset', $_POST['duepuntozero_colorset']);
|
|
|
|
}
|
2014-09-07 06:48:23 -04:00
|
|
|
}
|
|
|
|
|
2016-12-19 08:26:13 -05:00
|
|
|
/// @TODO $a is no longer used
|
2017-01-09 07:06:08 -05:00
|
|
|
function clean_form(App $a, &$colorset, $user) {
|
2016-12-20 05:56:34 -05:00
|
|
|
$colorset = array(
|
2017-01-09 07:06:08 -05:00
|
|
|
'default' =>t('default'),
|
2016-12-19 08:26:13 -05:00
|
|
|
'greenzero' =>t('greenzero'),
|
|
|
|
'purplezero' =>t('purplezero'),
|
|
|
|
'easterbunny' =>t('easterbunny'),
|
|
|
|
'darkzero' =>t('darkzero'),
|
|
|
|
'comix' =>t('comix'),
|
|
|
|
'slackr' =>t('slackr'),
|
2016-12-20 05:56:34 -05:00
|
|
|
);
|
|
|
|
|
|
|
|
if ($user) {
|
|
|
|
$color = get_pconfig(local_user(), 'duepuntozero', 'colorset');
|
|
|
|
} else {
|
|
|
|
$color = get_config( '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(),
|
2016-12-19 08:26:13 -05:00
|
|
|
'$title' => t("Theme settings"),
|
2016-12-20 05:56:34 -05:00
|
|
|
'$colorset' => array('duepuntozero_colorset', t('Variations'), $color, '', $colorset),
|
|
|
|
));
|
|
|
|
|
|
|
|
return $o;
|
2014-09-07 06:48:23 -04:00
|
|
|
}
|