aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/cleanzero/config.php
blob: 7982a75c5b9ca61c8cf07e72e95464d1829b1738 (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
<?php
/**
 * Theme settings
 */



function theme_content(&$a){
	if(!local_user())
		return;		
	
	$resize = get_pconfig(local_user(), 'cleanzero', 'resize' );
	$color = get_pconfig(local_user(), 'cleanzero', 'color' );
       $font_size = get_pconfig(local_user(), 'cleanzero', 'font_size' );
	
	return cleanzero_form($a,$color,$font_size,$resize);
}

function theme_post(&$a){
	if(! local_user())
		return;
	
	if (isset($_POST['cleanzero-settings-submit'])){
		set_pconfig(local_user(), 'cleanzero', 'resize', $_POST['cleanzero_resize']);	
		set_pconfig(local_user(), 'cleanzero', 'color', $_POST['cleanzero_color']);
		set_pconfig(local_user(), 'cleanzero', 'font_size', $_POST['cleanzero_font_size']);
	}
}


function theme_admin(&$a){
	$resize = get_config('cleanzero', 'resize' );
	$color = get_config('cleanzero', 'color' );
	$font_size = get_config('cleanzero', 'font_size' );
	
	return cleanzero_form($a,$color,$font_size,$resize);
}

function theme_admin_post(&$a){
	if (isset($_POST['cleanzero-settings-submit'])){
		set_config('cleanzero', 'resize', $_POST['cleanzero_resize']);
		set_config('cleanzero', 'color', $_POST['cleanzero_color']);
		set_config('cleanzero', 'font_size', $_POST['cleanzero_font_size']);
	}
}


function cleanzero_form(&$a, $color,$font_size,$resize){
	$colors = array(
		"cleanzero"=>"cleanzero", 
		"cleanzero-green"=>"green",
		"cleanzero-purple"=>"purple"
	);
	$font_sizes = array(
		'12'=>'12',
		"---"=>"---",
		"16"=>"16",		
		"14"=>"14",
		'10'=>'10',
		);
	$resizes = array(
		"0"=>"0 (no resizing)",
		"600"=>"1 (600px)",
		"300"=>"2 (300px)",
		"250"=>"3 (250px)",
		"150"=>"4 (150px)",
	       );
	
	$t = file_get_contents( dirname(__file__). "/theme_settings.tpl" );
	$o .= replace_macros($t, array(
		'$submit' => t('Submit'),
		'$baseurl' => $a->get_baseurl(),
		'$title' => t("Theme settings"),
		'$resize' => array('cleanzero_resize',t ('Set resize level for images in posts and comments (width and height)'),$resize,'',$resizes),
		'$font_size' => array('cleanzero_font_size', t('Set font-size for posts and comments'), $font_size, '', $font_sizes),
		'$color' => array('cleanzero_color', t('Color scheme'), $color, '', $colors),
	));
	return $o;
}