aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/redbasic/php/config.php
blob: 4e736336296acb084133e5462d49ca0c3db79e8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<?php
/**
 * Theme settings
 */

function theme_content(&$a) {
	// Doesn't yet work for anyone other than the channel owner, and stupid mode isn't finished, so return both for now.
	if(!local_user()) { return;	}
	$font_size = get_pconfig(local_user(),'redbasic', 'font_size' );
	$line_height = get_pconfig(local_user(), 'redbasic', 'line_height' );
	$colour = get_pconfig(local_user(), 'redbasic', 'colour' );
	$shadow = get_pconfig(local_user(), 'redbasic', 'shadow' );
	$navcolour = get_pconfig(local_user(), 'redbasic', 'navcolour');
	$displaystyle = get_pconfig(local_user(), 'redbasic', 'displaystyle');
	$linkcolour = get_pconfig(local_user(), 'redbasic', 'linkcolour');
	$iconset = get_pconfig(local_user(), 'redbasic', 'iconset');
	$shiny = get_pconfig(local_user(), 'redbasic', 'shiny');
	$colour_scheme = get_pconfig(local_user(), 'redbasic', 'colour_scheme');
	$radius = get_pconfig(local_user(),'redbasic','radius');

	return redbasic_form($a, $font_size, $line_height, $colour, $shadow, $navcolour, $opaquenav, $displaystyle, $linkcolour, $iconset, $shiny, $colour_scheme,$radius);
}

function theme_post(&$a) {
	if(!local_user()) { return; }

	if (isset($_POST['redbasic-settings-submit'])) {
		set_pconfig(local_user(), 'redbasic', 'font_size', $_POST['redbasic_font_size']);
		set_pconfig(local_user(), 'redbasic', 'line_height', $_POST['redbasic_line_height']);
		set_pconfig(local_user(), 'redbasic', 'colour', $_POST['redbasic_colour']);	
		set_pconfig(local_user(), 'redbasic', 'shadow', $_POST['redbasic_shadow']);	
		set_pconfig(local_user(), 'redbasic', 'navcolour', $_POST['redbasic_navcolour']);
		set_pconfig(local_user(), 'redbasic', 'displaystyle', $_POST['redbasic_displaystyle']);
		set_pconfig(local_user(), 'redbasic', 'linkcolour', $_POST['redbasic_linkcolour']);
		set_pconfig(local_user(), 'redbasic', 'iconset', $_POST['redbasic_iconset']);
		set_pconfig(local_user(), 'redbasic', 'shiny', $_POST['redbasic_shiny']);
		set_pconfig(local_user(), 'redbasic', 'colour_scheme', $_POST['redbasic_colour_scheme']);
		set_pconfig(local_user(), 'redbasic', 'radius', $_POST['redbasic_radius']);
	}

}

// We probably don't want these if we're having global settings, but we'll comment out for now, just in case
//function theme_admin(&$a) {	$font_size = get_config('redbasic', 'font_size' );
//	$line_height = get_config('redbasic', 'line_height' );
//	$colour = get_config('redbasic', 'colour' );	
//	$shadow = get_config('redbasic', 'shadow' );	
//	$navcolour = get_config('redbasic', 'navcolour' );
//	$opaquenav = get_config('redbasic', 'opaquenav' );
//	$itemstyle = get_config('redbasic', 'itemstyle' );
//	$linkcolour = get_config('redbasic', 'linkcolour' );
//	$iconset = get_config('redbasic', 'iconset' );
//	$shiny = get_config('redbasic', 'shiny' );
//	
//	return redbasic_form($a, $font_size, $line_height, $colour, $shadow, $navcolour, $opaquenav, $itemstyle, $linkcolour, $iconset, $shiny);
//}

//function theme_admin_post(&$a) {
//	if (isset($_POST['redbasic-settings-submit'])) {
//		set_config('redbasic', 'font_size', $_POST['redbasic_font_size']);
//		set_config('redbasic', 'line_height', $_POST['redbasic_line_height']);
//		set_config('redbasic', 'colour', $_POST['redbasic_colour']);
//		set_config('redbasic', 'shadow', $_POST['redbasic_shadow']);
//		set_config('redbasic', 'navcolour', $_POST['redbasic_navcolour']);
//		set_config('redbasic', 'opaquenav', $_POST['redbasic_opaquenav']);
//		set_config('redbasic', 'itemstyle', $_POST['redbasic_itemstyle']);
//		set_config('redbasic', 'linkcolour', $_POST['redbasic_linkcolour']);
//		set_config('redbasic', 'iconset', $_POST['redbasic_iconset']);
//		set_config('redbasic', 'shiny', $_POST['redbasic_shiny']);
//	}
//}

// These aren't all used yet, but they're not bloat - we'll use drop down menus in idiot mode.
function redbasic_form(&$a, $font_size, $line_height, $colour, $shadow, $navcolour, $opaquenav, $displaystyle, $linkcolour, $iconset, $shiny, $colour_scheme,$radius) {
	$line_heights = array(
		"1.3" => "1.3",
		"---" => "---",
		"1.6" => "1.6",				
		"1.5" => "1.5",		
		"1.4" => "1.4",
		"1.2" => "1.2",
		"1.1" => "1.1",
	);	
	$font_sizes = array(
		'12' => '12',
		'14' => '14',
		"---" => "---",
		"16" => "16",		
		"15" => "15",
		'13.5' => '13.5',
		'13' => '13',		
		'12.5' => '12.5',
		'12' => '12',
	);
	$colours = array(
		'light' => 'light',		
		'dark' => 'dark',						
	);

	$colour_schemes = array(
		'redbasic' => 'redbasic',		
		'fancyred' => 'fancyred',						
		'dark' => 'dark',	
	);
	$shadows = array(
		  'true' => 'Yes',
		  'false' => 'No',
	);

	$navcolours = array (
		  'red' => 'red',
		  'black' => 'black',	
	);
	
	$displaystyles = array (
		    'fancy' => 'fancy',
		    'classic' => 'classic',
	);
	
	$linkcolours = array (
		    'blue' => 'blue',
		    'red' => 'red',
	);
	
	$iconsets = array (
		    'default' => 'default',
	);
	
	$shinys = array (
		    'none' => 'none',
		    'opaque' => 'opaque',
	);
	if(feature_enabled(local_user(),'expert')) {
	  $t = get_markup_template('theme_settings.tpl');
	  $o .= replace_macros($t, array(
		'$submit' => t('Submit'),
		'$baseurl' => $a->get_baseurl(),
		'$title' => t("Theme settings"),
		'$font_size' => array('redbasic_font_size', t('Set font-size for posts and comments'), $font_size, '', $font_sizes),
		'$line_height' => array('redbasic_line_height', t('Set line-height for posts and comments'), $line_height, '', $line_heights),
		'$colour' => array('redbasic_colour', t('Set colour scheme'), $colour, '', $colours),	
		'$shadow' => array('redbasic_shadow', t('Draw shadows'), $shadow, '', $shadows),
		'$navcolour' => array('redbasic_navcolour', t('Navigation bar colour'), $navcolour, '', $navcolours),
		'$displaystyle' => array('redbasic_displaystyle', t('Display style'), $displaystyle, '', $displaystyles),
		'$linkcolour' => array('redbasic_linkcolour', t('Display colour of links - hex value, do not include the #'), $linkcolour, '', $linkcolours),
		'$iconset' => array('redbasic_iconset', t('Icons'), $iconset, '', $iconsets),
		'$shiny' => array('redbasic_shiny', t('Shiny style'), $shiny, '', $shinys),
		'$radius' => array('redbasic_radius', t('Corner radius'), $radius, t('0-99 default: 5')),
	  ));}
	 
	 if(! feature_enabled(local_user(),'expert')) {
	    $t = get_markup_template('basic_theme_settings.tpl');
	    $o .= replace_macros($t, array(
		'$submit' => t('Submit'),
		'$baseurl' => $a->get_baseurl(),
		'$title' => t("Theme settings"),
		'$font_size' => array('redbasic_font_size', t('Set font-size for posts and comments'), $font_size, '', $font_sizes),
		'$line_height' => array('redbasic_line_height', t('Set line-height for posts and comments'), $line_height, '', $line_heights),
		'$colour_scheme' => array('redbasic_colour_scheme', t('Set colour scheme'), $colour_scheme, '', $colour_schemes),	
	 ));}
	 
	return $o;
}