aboutsummaryrefslogblamecommitdiffstats
path: root/view/theme/quattro/config.php
blob: c9ab3a4a149f461293ff717804bfaa1075827c42 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                




                                                                






                                                                                                                                
                                                                                           






                          
        

                                                                                       
                                                                                       


         
<?php
/**
 * Theme settings
 */



function theme_content(&$a){
	if(!local_user())
		return;		
	
	$align = get_pconfig(local_user(), 'quattro', 'align' );
	$color = get_pconfig(local_user(), 'quattro', 'color' );
	$colors = array(
		"dark"=>"Quattro", 
		"green"=>"Green"
	);
	
	$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"),
		'$align' => array('quattro_align', t('Alignment'), $align, '', array('left'=>t('Left'), 'center'=>t('Center'))),
		'$color' => array('quattro_color', t('Color scheme'), $color, '', $colors),
	));
	return $o;
}

function theme_post(&$a){
	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']);
	}
}