mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/12408] Add quick setting for "default guest style" to ACP
PHPBB3-12408
This commit is contained in:
parent
9ef01e7f82
commit
265c621c9e
2 changed files with 58 additions and 1 deletions
|
@ -65,7 +65,8 @@ class acp_board
|
||||||
'default_lang' => array('lang' => 'DEFAULT_LANGUAGE', 'validate' => 'lang', 'type' => 'select', 'function' => 'language_select', 'params' => array('{CONFIG_VALUE}'), 'explain' => false),
|
'default_lang' => array('lang' => 'DEFAULT_LANGUAGE', 'validate' => 'lang', 'type' => 'select', 'function' => 'language_select', 'params' => array('{CONFIG_VALUE}'), 'explain' => false),
|
||||||
'default_dateformat' => array('lang' => 'DEFAULT_DATE_FORMAT', 'validate' => 'string', 'type' => 'custom', 'method' => 'dateformat_select', 'explain' => true),
|
'default_dateformat' => array('lang' => 'DEFAULT_DATE_FORMAT', 'validate' => 'string', 'type' => 'custom', 'method' => 'dateformat_select', 'explain' => true),
|
||||||
'board_timezone' => array('lang' => 'SYSTEM_TIMEZONE', 'validate' => 'timezone', 'type' => 'custom', 'method' => 'timezone_select', 'explain' => true),
|
'board_timezone' => array('lang' => 'SYSTEM_TIMEZONE', 'validate' => 'timezone', 'type' => 'custom', 'method' => 'timezone_select', 'explain' => true),
|
||||||
'default_style' => array('lang' => 'DEFAULT_STYLE', 'validate' => 'int', 'type' => 'select', 'function' => 'style_select', 'params' => array('{CONFIG_VALUE}', false), 'explain' => false),
|
'default_style' => array('lang' => 'DEFAULT_STYLE', 'validate' => 'int', 'type' => 'select', 'function' => 'style_select', 'params' => array('{CONFIG_VALUE}', false), 'explain' => true),
|
||||||
|
'default_guest_style' => array('lang' => 'DEFAULT_GUEST_STYLE', 'validate' => 'int', 'type' => 'select', 'function' => 'style_select', 'params' => array($this->guest_style_get(), false), 'explain' => true),
|
||||||
'override_user_style' => array('lang' => 'OVERRIDE_STYLE', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
'override_user_style' => array('lang' => 'OVERRIDE_STYLE', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
||||||
|
|
||||||
'legend2' => 'WARNINGS',
|
'legend2' => 'WARNINGS',
|
||||||
|
@ -509,6 +510,14 @@ class acp_board
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($config_name == 'default_guest_style')
|
||||||
|
{
|
||||||
|
if (isset($cfg_array[$config_name])) {
|
||||||
|
$this->guest_style_set($cfg_array[$config_name]);
|
||||||
|
}
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
$this->new_config[$config_name] = $config_value = $cfg_array[$config_name];
|
$this->new_config[$config_name] = $config_value = $cfg_array[$config_name];
|
||||||
|
|
||||||
if ($config_name == 'email_function_name')
|
if ($config_name == 'email_function_name')
|
||||||
|
@ -912,6 +921,51 @@ class acp_board
|
||||||
return '<select name="config[' . $key . ']" id="' . $key . '">' . $timezone_select['tz_select'] . '</select>';
|
return '<select name="config[' . $key . ']" id="' . $key . '">' . $timezone_select['tz_select'] . '</select>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get default guest style
|
||||||
|
*/
|
||||||
|
function guest_style_get()
|
||||||
|
{
|
||||||
|
global $db;
|
||||||
|
|
||||||
|
$style = false;
|
||||||
|
|
||||||
|
$sql_array = array(
|
||||||
|
'SELECT' => 'u.user_style',
|
||||||
|
'FROM' => array(
|
||||||
|
USERS_TABLE => 'u',
|
||||||
|
),
|
||||||
|
'WHERE' => 'u.user_id = ' . ANONYMOUS,
|
||||||
|
);
|
||||||
|
|
||||||
|
$sql = $db->sql_build_query('SELECT', $sql_array);
|
||||||
|
$result = $db->sql_query_limit($sql, 1);
|
||||||
|
|
||||||
|
while ($row = $db->sql_fetchrow($result))
|
||||||
|
{
|
||||||
|
$style = (isset($row['user_style'])) ? $row['user_style'] : false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $style;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set default guest style
|
||||||
|
*/
|
||||||
|
function guest_style_set($style_id)
|
||||||
|
{
|
||||||
|
global $db;
|
||||||
|
|
||||||
|
$sql_ary = array(
|
||||||
|
'user_style' => $style_id,
|
||||||
|
);
|
||||||
|
|
||||||
|
$sql = 'UPDATE ' . USERS_TABLE . '
|
||||||
|
SET ' . $db->sql_build_array('UPDATE', $sql_ary) . '
|
||||||
|
WHERE user_id = ' . ANONYMOUS;
|
||||||
|
$db->sql_query($sql);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select default dateformat
|
* Select default dateformat
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -46,6 +46,9 @@ $lang = array_merge($lang, array(
|
||||||
'DEFAULT_DATE_FORMAT_EXPLAIN' => 'The date format is the same as the PHP <code>date</code> function.',
|
'DEFAULT_DATE_FORMAT_EXPLAIN' => 'The date format is the same as the PHP <code>date</code> function.',
|
||||||
'DEFAULT_LANGUAGE' => 'Default language',
|
'DEFAULT_LANGUAGE' => 'Default language',
|
||||||
'DEFAULT_STYLE' => 'Default style',
|
'DEFAULT_STYLE' => 'Default style',
|
||||||
|
'DEFAULT_STYLE_EXPLAIN' => 'The default board style for logged in users.',
|
||||||
|
'DEFAULT_GUEST_STYLE' => 'Default guest style',
|
||||||
|
'DEFAULT_GUEST_STYLE_EXPLAIN' => 'The default board style for guests.',
|
||||||
'DISABLE_BOARD' => 'Disable board',
|
'DISABLE_BOARD' => 'Disable board',
|
||||||
'DISABLE_BOARD_EXPLAIN' => 'This will make the board unavailable to users who are neither administrators nor moderators. You can also enter a short (255 character) message to display if you wish.',
|
'DISABLE_BOARD_EXPLAIN' => 'This will make the board unavailable to users who are neither administrators nor moderators. You can also enter a short (255 character) message to display if you wish.',
|
||||||
'DISPLAY_LAST_SUBJECT' => 'Display subject of last added post on forum list',
|
'DISPLAY_LAST_SUBJECT' => 'Display subject of last added post on forum list',
|
||||||
|
|
Loading…
Add table
Reference in a new issue