diff options
author | friendica <info@friendica.com> | 2012-03-30 14:58:44 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-30 14:58:44 -0700 |
commit | 007d67a998eb8f26228ddd22bb0323d54af9af8c (patch) | |
tree | 01d8d450ccc447b50138f2fa5d7a15e953ac85f6 /view/theme/quattro/theme.php | |
parent | f50fb7d6ca47729c7cb464f84b768d56e35b62d6 (diff) | |
parent | be2005f146fc8d482734ca48ec594bc3f797360c (diff) | |
download | volse-hubzilla-007d67a998eb8f26228ddd22bb0323d54af9af8c.tar.gz volse-hubzilla-007d67a998eb8f26228ddd22bb0323d54af9af8c.tar.bz2 volse-hubzilla-007d67a998eb8f26228ddd22bb0323d54af9af8c.zip |
Merge pull request #188 from fabrixxm/master
Display settings tab and theme settings code
Diffstat (limited to 'view/theme/quattro/theme.php')
-rw-r--r-- | view/theme/quattro/theme.php | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/view/theme/quattro/theme.php b/view/theme/quattro/theme.php index 7e5ab1e62..be47a401c 100644 --- a/view/theme/quattro/theme.php +++ b/view/theme/quattro/theme.php @@ -1,33 +1,7 @@ <?php -$a->hooks[] = array('plugin_settings', 'view/theme/quattro/theme.php', 'quattro_settings'); -$a->hooks[] = array('plugin_settings_post', 'view/theme/quattro/theme.php', 'quattro_settings_post'); -function quattro_settings(&$a, &$o){ - if(!local_user()) - return; - - $align = get_pconfig(local_user(), 'quattro', 'align' ); - - $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'))), - )); -} - -function quattro_settings_post(&$a){ - if(! local_user()) - return; - if (isset($_POST['quattro-settings-submit'])){ - set_pconfig(local_user(), 'quattro', 'align', $_POST['quattro_align']); - } - goaway($a->get_baseurl()."/settings/addon"); -} - $quattro_align = get_pconfig(local_user(), 'quattro', 'align' ); |