aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/admin/admin_board.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-09-09 23:56:04 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-09-09 23:56:04 +0000
commit6e81d5fd96738f555b6e24ecf892864b304c0b08 (patch)
treed5f5ca33a95d734d4785120128ffef5690fecb50 /phpBB/admin/admin_board.php
parentc342a3c365fdf1a2d7f7bf8f83b4ed7719f715c1 (diff)
downloadforums-6e81d5fd96738f555b6e24ecf892864b304c0b08.tar
forums-6e81d5fd96738f555b6e24ecf892864b304c0b08.tar.gz
forums-6e81d5fd96738f555b6e24ecf892864b304c0b08.tar.bz2
forums-6e81d5fd96738f555b6e24ecf892864b304c0b08.tar.xz
forums-6e81d5fd96738f555b6e24ecf892864b304c0b08.zip
Modified for modification to templates/themes
git-svn-id: file:///svn/phpbb/trunk@1020 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/admin/admin_board.php')
-rw-r--r--phpBB/admin/admin_board.php52
1 files changed, 36 insertions, 16 deletions
diff --git a/phpBB/admin/admin_board.php b/phpBB/admin/admin_board.php
index a981de6c1a..cb75105dd7 100644
--- a/phpBB/admin/admin_board.php
+++ b/phpBB/admin/admin_board.php
@@ -36,33 +36,56 @@ if(!$result = $db->sql_query($sql))
}
else
{
- while($row = $db->sql_fetchrow($result))
+ while( $row = $db->sql_fetchrow($result) )
{
$config_name = $row['config_name'];
$config_value = $row['config_value'];
$default_config[$config_name] = $config_value;
- $new[$config_name] = (isset($HTTP_POST_VARS[$config_name])) ? $HTTP_POST_VARS[$config_name] : $default_config[$config_name];
-
- if($HTTP_POST_VARS['submit'])
+ $new[$config_name] = ( isset($HTTP_POST_VARS[$config_name]) ) ? $HTTP_POST_VARS[$config_name] : $default_config[$config_name];
+
+ if( isset($HTTP_POST_VARS['submit']) )
{
- $sql = "UPDATE " . CONFIG_TABLE . " SET
- config_value = '".$new[$config_name]."'
- WHERE config_name = '$config_name'";
- if( !$db->sql_query($sql) )
+ if( isset($HTTP_POST_VARS['board_style']) )
+ {
+ $default_template = substr($HTTP_POST_VARS['board_style'], 0, strrpos($HTTP_POST_VARS['board_style'], "_"));
+ $default_theme = substr($HTTP_POST_VARS['board_style'], strrpos($HTTP_POST_VARS['board_style'], "_") + 1);
+
+ $sql = "UPDATE " . CONFIG_TABLE . " SET
+ config_value = '$default_template'
+ WHERE config_name = 'board_template'";
+ if( !$db->sql_query($sql) )
+ {
+ message_die(GENERAL_ERROR, "Failed to update general configuration for board_template", "", __LINE__, __FILE__, $sql);
+ }
+ $sql = "UPDATE " . CONFIG_TABLE . " SET
+ config_value = '$default_theme'
+ WHERE config_name = 'default_theme'";
+ if( !$db->sql_query($sql) )
+ {
+ message_die(GENERAL_ERROR, "Failed to update general configuration for default_theme", "", __LINE__, __FILE__, $sql);
+ }
+ }
+ else
{
- message_die(GENERAL_ERROR, "Failed to update general configuration for $config_name", "", __LINE__, __FILE__, $sql);
+ $sql = "UPDATE " . CONFIG_TABLE . " SET
+ config_value = '".$new[$config_name]."'
+ WHERE config_name = '$config_name'";
+ if( !$db->sql_query($sql) )
+ {
+ message_die(GENERAL_ERROR, "Failed to update general configuration for $config_name", "", __LINE__, __FILE__, $sql);
+ }
}
}
}
+
if($HTTP_POST_VARS['submit'])
{
message_die(GENERAL_MESSAGE, $lang['Config_updated']);
}
}
-$template_select = template_select($new['board_template'], 'board_template', "../templates");
-$theme_select = theme_select($new['default_theme'], 'default_theme');
+$style_select = style_select($new['board_template'], $new['default_theme'], 'board_style', "../templates");
$lang_select = language_select($new['default_lang'], 'default_lang', "../language");
$timezone_select = tz_select($new['board_timezone'], 'board_timezone');
@@ -89,8 +112,6 @@ $avatars_upload_no = (!$new['allow_avatar_upload']) ? "checked=\"checked\"" : ""
$smtp_yes = ($new['smtp_delivery']) ? "checked=\"checked\"" : "";
$smtp_no = (!$new['smtp_delivery']) ? "checked=\"checked\"" : "";
-
-
$template->set_filenames(array(
"body" => "admin/admin_config_body.tpl")
);
@@ -104,8 +125,7 @@ $template->assign_vars(array(
"TOPICS_PER_PAGE" => $new['topics_per_page'],
"POSTS_PER_PAGE" => $new['posts_per_page'],
"HOT_TOPIC" => $new['hot_threshold'],
- "TEMPLATE_SELECT" => $template_select,
- "THEME_SELECT" => $theme_select,
+ "STYLE_SELECT" => $style_select,
"LANG_SELECT" => $lang_select,
"L_DATE_FORMAT_EXPLAIN" => $lang['Date_format_explain'],
"DEFAULT_DATEFORMAT" => $new['default_dateformat'],
@@ -143,4 +163,4 @@ $template->pparse("body");
include('page_footer_admin.'.$phpEx);
-?> \ No newline at end of file
+?>