mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-16 20:05:14 +02:00
added much more curly braces + space between "if" and brace
Signed-off-by: Roland Häder <roland@mxchange.org> Conflicts: mod/bookmarklet.php mod/community.php mod/contacts.php mod/crepair.php mod/events.php mod/network.php mod/suggest.php mod/uexport.php view/theme/duepuntozero/config.php view/theme/frio/config.php view/theme/quattro/config.php view/theme/vier/config.php
This commit is contained in:
parent
5f41375ad3
commit
ace8f753ac
50 changed files with 225 additions and 165 deletions
|
@ -6,60 +6,67 @@
|
|||
|
||||
|
||||
function theme_content(&$a){
|
||||
if(!local_user())
|
||||
return;
|
||||
if (!local_user()) {
|
||||
return;
|
||||
}
|
||||
|
||||
$colorset = get_pconfig( local_user(), 'duepuntozero', 'colorset');
|
||||
$user = true;
|
||||
$colorset = get_pconfig( local_user(), 'duepuntozero', 'colorset');
|
||||
$user = true;
|
||||
|
||||
return clean_form($a, $colorset, $user);
|
||||
return clean_form($a, $colorset, $user);
|
||||
}
|
||||
|
||||
function theme_post(&$a){
|
||||
if(! local_user())
|
||||
return;
|
||||
|
||||
if (isset($_POST['duepuntozero-settings-submit'])){
|
||||
set_pconfig(local_user(), 'duepuntozero', 'colorset', $_POST['duepuntozero_colorset']);
|
||||
}
|
||||
|
||||
if (! local_user()) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (isset($_POST['duepuntozero-settings-submit'])){
|
||||
set_pconfig(local_user(), 'duepuntozero', 'colorset', $_POST['duepuntozero_colorset']);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function theme_admin(&$a){
|
||||
$colorset = get_config( 'duepuntozero', 'colorset');
|
||||
$user = false;
|
||||
$colorset = get_config( 'duepuntozero', 'colorset');
|
||||
$user = false;
|
||||
|
||||
return clean_form($a, $colorset, $user);
|
||||
return clean_form($a, $colorset, $user);
|
||||
}
|
||||
|
||||
function theme_admin_post(&$a){
|
||||
if (isset($_POST['duepuntozero-settings-submit'])){
|
||||
set_config('duepuntozero', 'colorset', $_POST['duepuntozero_colorset']);
|
||||
}
|
||||
if (isset($_POST['duepuntozero-settings-submit'])){
|
||||
set_config('duepuntozero', 'colorset', $_POST['duepuntozero_colorset']);
|
||||
}
|
||||
}
|
||||
|
||||
/// @TODO $a is no longer used
|
||||
function clean_form(&$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'),
|
||||
);
|
||||
if ($user) {
|
||||
$color = get_pconfig(local_user(), 'duepuntozero', 'colorset');
|
||||
} else {
|
||||
$color = get_config( 'duepuntozero', 'colorset');
|
||||
}
|
||||
$t = get_markup_template("theme_settings.tpl" );
|
||||
$o .= replace_macros($t, array(
|
||||
'$submit' => t('Submit'),
|
||||
'$baseurl' => App::get_baseurl(),
|
||||
'$title' => t("Theme settings"),
|
||||
'$colorset' => array('duepuntozero_colorset', t('Variations'), $color, '', $colorset),
|
||||
));
|
||||
return $o;
|
||||
$colorset = array(
|
||||
'default'=>t('default'),
|
||||
'greenzero'=>t('greenzero'),
|
||||
'purplezero'=>t('purplezero'),
|
||||
'easterbunny'=>t('easterbunny'),
|
||||
'darkzero'=>t('darkzero'),
|
||||
'comix'=>t('comix'),
|
||||
'slackr'=>t('slackr'),
|
||||
);
|
||||
|
||||
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(),
|
||||
'$title'=> t("Theme settings"),
|
||||
'$colorset' => array('duepuntozero_colorset', t('Variations'), $color, '', $colorset),
|
||||
));
|
||||
|
||||
return $o;
|
||||
}
|
||||
|
|
|
@ -2,7 +2,9 @@
|
|||
require_once('view/theme/frio/php/Image.php');
|
||||
|
||||
function theme_content(&$a) {
|
||||
if(!local_user()) { return;}
|
||||
if (!local_user()) {
|
||||
return;
|
||||
}
|
||||
$arr = array();
|
||||
|
||||
$arr["schema"] = get_pconfig(local_user(),'frio', 'schema');
|
||||
|
@ -18,7 +20,10 @@ function theme_content(&$a) {
|
|||
}
|
||||
|
||||
function theme_post(&$a) {
|
||||
if(!local_user()) { return;}
|
||||
if (!local_user()) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (isset($_POST['frio-settings-submit'])) {
|
||||
set_pconfig(local_user(), 'frio', 'schema', $_POST["frio_schema"]);
|
||||
set_pconfig(local_user(), 'frio', 'nav_bg', $_POST["frio_nav_bg"]);
|
||||
|
|
|
@ -6,21 +6,23 @@
|
|||
|
||||
|
||||
function theme_content(&$a){
|
||||
if(!local_user())
|
||||
return;
|
||||
|
||||
if (!local_user()) {
|
||||
return;
|
||||
}
|
||||
|
||||
$align = get_pconfig(local_user(), 'quattro', 'align' );
|
||||
$color = get_pconfig(local_user(), 'quattro', 'color' );
|
||||
$tfs = get_pconfig(local_user(),"quattro","tfs");
|
||||
$pfs = get_pconfig(local_user(),"quattro","pfs");
|
||||
|
||||
$tfs = get_pconfig(local_user(),"quattro","tfs");
|
||||
$pfs = get_pconfig(local_user(),"quattro","pfs");
|
||||
|
||||
return quattro_form($a,$align, $color, $tfs, $pfs);
|
||||
}
|
||||
|
||||
function theme_post(&$a){
|
||||
if(! local_user())
|
||||
if (! local_user()) {
|
||||
return;
|
||||
|
||||
}
|
||||
|
||||
if (isset($_POST['quattro-settings-submit'])){
|
||||
set_pconfig(local_user(), 'quattro', 'align', $_POST['quattro_align']);
|
||||
set_pconfig(local_user(), 'quattro', 'color', $_POST['quattro_color']);
|
||||
|
|
|
@ -6,19 +6,23 @@
|
|||
|
||||
|
||||
function theme_content(&$a){
|
||||
if(!local_user())
|
||||
if (!local_user()) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!function_exists('get_vier_config'))
|
||||
if (!function_exists('get_vier_config')) {
|
||||
return;
|
||||
}
|
||||
|
||||
$style = get_pconfig(local_user(), 'vier', 'style');
|
||||
|
||||
if ($style == "")
|
||||
if ($style == "") {
|
||||
$style = get_config('vier', 'style');
|
||||
}
|
||||
|
||||
if ($style == "")
|
||||
if ($style == "") {
|
||||
$style = "plus";
|
||||
}
|
||||
|
||||
$show_pages = get_vier_config('show_pages', true);
|
||||
$show_profiles = get_vier_config('show_profiles', true);
|
||||
|
@ -32,8 +36,9 @@ function theme_content(&$a){
|
|||
}
|
||||
|
||||
function theme_post(&$a){
|
||||
if(! local_user())
|
||||
if (! local_user()) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (isset($_POST['vier-settings-submit'])){
|
||||
set_pconfig(local_user(), 'vier', 'style', $_POST['vier_style']);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue