aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/redbasic/php/config.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-10-19 16:41:12 -0700
committerfriendica <info@friendica.com>2013-10-19 16:41:12 -0700
commit3d8cce4a27638333c020c3ee0621231ce73d3eda (patch)
treed9c5a09ddbd13175f20824b2fe7940e9f2749a5b /view/theme/redbasic/php/config.php
parent4d92cc05c33d935d88526a430ba2cc0445959302 (diff)
parent2db45695e8067e49eb4c8a6d8044cd9cac7f07e5 (diff)
downloadvolse-hubzilla-3d8cce4a27638333c020c3ee0621231ce73d3eda.tar.gz
volse-hubzilla-3d8cce4a27638333c020c3ee0621231ce73d3eda.tar.bz2
volse-hubzilla-3d8cce4a27638333c020c3ee0621231ce73d3eda.zip
Merge pull request #183 from cvogeley/master
Redbasic: Allow people to set the width of the main section of the theme
Diffstat (limited to 'view/theme/redbasic/php/config.php')
-rw-r--r--view/theme/redbasic/php/config.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/view/theme/redbasic/php/config.php b/view/theme/redbasic/php/config.php
index 90bd109ad..053940219 100644
--- a/view/theme/redbasic/php/config.php
+++ b/view/theme/redbasic/php/config.php
@@ -13,8 +13,9 @@ function theme_content(&$a) {
$font_colour = get_pconfig(local_user(),'redbasic', 'font_colour' );
$radius = get_pconfig(local_user(),'redbasic', 'radius' );
$shadow = get_pconfig(local_user(),'redbasic', 'photo_shadow' );
+ $section_width=get_pconfig(local_user(),"redbasic","section_width");
return redbasic_form($a, $schema, $nav_colour, $bgcolour, $background_image, $item_colour, $item_opacity,
- $font_size, $font_colour, $radius, $shadow);
+ $font_size, $font_colour, $radius, $shadow, $section_width);
}
function theme_post(&$a) {
@@ -31,11 +32,12 @@ function theme_post(&$a) {
set_pconfig(local_user(), 'redbasic', 'font_colour', $_POST['redbasic_font_colour']);
set_pconfig(local_user(), 'redbasic', 'radius', $_POST['redbasic_radius']);
set_pconfig(local_user(), 'redbasic', 'photo_shadow', $_POST['redbasic_shadow']);
+ set_pconfig(local_user(), 'redbasic', 'section_width', $_POST['redbasic_section_width']);
}
}
function redbasic_form(&$a, $schema, $nav_colour, $bgcolour, $background_image, $item_colour, $item_opacity,
- $font_size, $font_colour, $radius, $shadow) {
+ $font_size, $font_colour, $radius, $shadow, $section_width) {
$scheme_choices = array();
$scheme_choices["---"] = t("Default");
@@ -75,6 +77,7 @@ if(feature_enabled(local_user(),'expert'))
'$font_colour' => array('redbasic_font_colour', t('Set font-colour for posts and comments'), $font_colour),
'$radius' => array('redbasic_radius', t('Set radius of corners'), $radius),
'$shadow' => array('redbasic_shadow', t('Set shadow depth of photos'), $shadow),
+ '$section_width' => array('redbasic_section_width',t('Set width of main section'),$section_width),
));
return $o;