From db59a45030c0c5790062565f0ceea00625f21ad3 Mon Sep 17 00:00:00 2001 From: Fabio Comuni Date: Fri, 30 Mar 2012 15:45:23 +0200 Subject: quattro: add config.php --- view/theme/quattro/config.php | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 view/theme/quattro/config.php (limited to 'view/theme/quattro/config.php') diff --git a/view/theme/quattro/config.php b/view/theme/quattro/config.php new file mode 100644 index 000000000..02fcaf57e --- /dev/null +++ b/view/theme/quattro/config.php @@ -0,0 +1,31 @@ + t('Submit'), + '$baseurl' => $a->get_baseurl(), + '$title' => t("Theme settings"), + '$align' => array('quattro_align', t('Alignment'), $align, '', array('left'=>t('Left'), 'center'=>t('Center'))), + )); + 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']); + } +} + -- cgit v1.2.3