|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* @package acp
|
|
|
4c79b5 |
* @version $Id: acp_board.php 8911 2008-09-23 13:03:33Z acydburn $
|
|
|
4c79b5 |
* @copyright (c) 2005 phpBB Group
|
|
|
4c79b5 |
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* @todo add cron intervals to server settings? (database_gc, queue_interval, session_gc, search_gc, cache_gc, warnings_gc)
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* @ignore
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
if (!defined('IN_PHPBB'))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
exit;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* @package acp
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
class acp_board
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
var $u_action;
|
|
|
4c79b5 |
var $new_config = array();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
function main($id, $mode)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $db, $user, $auth, $template;
|
|
|
4c79b5 |
global $config, $phpbb_root_path, $phpbb_admin_path, $phpEx;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$user->add_lang('acp/board');
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$action = request_var('action', '');
|
|
|
4c79b5 |
$submit = (isset($_POST['submit'])) ? true : false;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$form_key = 'acp_board';
|
|
|
4c79b5 |
add_form_key($form_key);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Validation types are:
|
|
|
4c79b5 |
* string, int, bool,
|
|
|
4c79b5 |
* script_path (absolute path in url - beginning with / and no trailing slash),
|
|
|
4c79b5 |
* rpath (relative), rwpath (realtive, writable), path (relative path, but able to escape the root), wpath (writable)
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
switch ($mode)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
case 'settings':
|
|
|
4c79b5 |
$display_vars = array(
|
|
|
4c79b5 |
'title' => 'ACP_BOARD_SETTINGS',
|
|
|
4c79b5 |
'vars' => array(
|
|
|
4c79b5 |
'legend1' => 'ACP_BOARD_SETTINGS',
|
|
|
4c79b5 |
'sitename' => array('lang' => 'SITE_NAME', 'validate' => 'string', 'type' => 'text:40:255', 'explain' => false),
|
|
|
4c79b5 |
'site_desc' => array('lang' => 'SITE_DESC', 'validate' => 'string', 'type' => 'text:40:255', 'explain' => false),
|
|
|
4c79b5 |
'board_disable' => array('lang' => 'DISABLE_BOARD', 'validate' => 'bool', 'type' => 'custom', 'method' => 'board_disable', 'explain' => true),
|
|
|
4c79b5 |
'board_disable_msg' => false,
|
|
|
4c79b5 |
'default_lang' => array('lang' => 'DEFAULT_LANGUAGE', 'validate' => 'lang', 'type' => 'select', 'function' => 'language_select', 'params' => array('{CONFIG_VALUE}'), 'explain' => false),
|
|
|
4c79b5 |
'default_dateformat' => array('lang' => 'DEFAULT_DATE_FORMAT', 'validate' => 'string', 'type' => 'custom', 'method' => 'dateformat_select', 'explain' => true),
|
|
|
4c79b5 |
'board_timezone' => array('lang' => 'SYSTEM_TIMEZONE', 'validate' => 'string', 'type' => 'select', 'function' => 'tz_select', 'params' => array('{CONFIG_VALUE}', 1), 'explain' => false),
|
|
|
4c79b5 |
'board_dst' => array('lang' => 'SYSTEM_DST', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'default_style' => array('lang' => 'DEFAULT_STYLE', 'validate' => 'int', 'type' => 'select', 'function' => 'style_select', 'params' => array('{CONFIG_VALUE}', false), 'explain' => false),
|
|
|
4c79b5 |
'override_user_style' => array('lang' => 'OVERRIDE_STYLE', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'legend2' => 'WARNINGS',
|
|
|
4c79b5 |
'warnings_expire_days' => array('lang' => 'WARNINGS_EXPIRE', 'validate' => 'int', 'type' => 'text:3:4', 'explain' => true, 'append' => ' ' . $user->lang['DAYS']),
|
|
|
4c79b5 |
)
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
case 'features':
|
|
|
4c79b5 |
$display_vars = array(
|
|
|
4c79b5 |
'title' => 'ACP_BOARD_FEATURES',
|
|
|
4c79b5 |
'vars' => array(
|
|
|
4c79b5 |
'legend1' => 'ACP_BOARD_FEATURES',
|
|
|
4c79b5 |
'allow_privmsg' => array('lang' => 'BOARD_PM', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'allow_topic_notify' => array('lang' => 'ALLOW_TOPIC_NOTIFY', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'allow_forum_notify' => array('lang' => 'ALLOW_FORUM_NOTIFY', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'allow_namechange' => array('lang' => 'ALLOW_NAME_CHANGE', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'allow_attachments' => array('lang' => 'ALLOW_ATTACHMENTS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'allow_pm_attach' => array('lang' => 'ALLOW_PM_ATTACHMENTS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'allow_bbcode' => array('lang' => 'ALLOW_BBCODE', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'allow_smilies' => array('lang' => 'ALLOW_SMILIES', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'allow_sig' => array('lang' => 'ALLOW_SIG', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'allow_nocensors' => array('lang' => 'ALLOW_NO_CENSORS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'allow_bookmarks' => array('lang' => 'ALLOW_BOOKMARKS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'allow_birthdays' => array('lang' => 'ALLOW_BIRTHDAYS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'legend2' => 'ACP_LOAD_SETTINGS',
|
|
|
4c79b5 |
'load_birthdays' => array('lang' => 'YES_BIRTHDAYS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'load_moderators' => array('lang' => 'YES_MODERATORS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'load_jumpbox' => array('lang' => 'YES_JUMPBOX', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'load_cpf_memberlist' => array('lang' => 'LOAD_CPF_MEMBERLIST', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'load_cpf_viewprofile' => array('lang' => 'LOAD_CPF_VIEWPROFILE', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'load_cpf_viewtopic' => array('lang' => 'LOAD_CPF_VIEWTOPIC', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
)
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
case 'avatar':
|
|
|
4c79b5 |
$display_vars = array(
|
|
|
4c79b5 |
'title' => 'ACP_AVATAR_SETTINGS',
|
|
|
4c79b5 |
'vars' => array(
|
|
|
4c79b5 |
'legend1' => 'ACP_AVATAR_SETTINGS',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'avatar_min_width' => array('lang' => 'MIN_AVATAR_SIZE', 'validate' => 'int:0', 'type' => false, 'method' => false, 'explain' => false,),
|
|
|
4c79b5 |
'avatar_min_height' => array('lang' => 'MIN_AVATAR_SIZE', 'validate' => 'int:0', 'type' => false, 'method' => false, 'explain' => false,),
|
|
|
4c79b5 |
'avatar_max_width' => array('lang' => 'MAX_AVATAR_SIZE', 'validate' => 'int:0', 'type' => false, 'method' => false, 'explain' => false,),
|
|
|
4c79b5 |
'avatar_max_height' => array('lang' => 'MAX_AVATAR_SIZE', 'validate' => 'int:0', 'type' => false, 'method' => false, 'explain' => false,),
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'allow_avatar_local' => array('lang' => 'ALLOW_LOCAL', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'allow_avatar_remote' => array('lang' => 'ALLOW_REMOTE', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'allow_avatar_upload' => array('lang' => 'ALLOW_UPLOAD', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'avatar_filesize' => array('lang' => 'MAX_FILESIZE', 'validate' => 'int:0', 'type' => 'text:4:10', 'explain' => true, 'append' => ' ' . $user->lang['BYTES']),
|
|
|
4c79b5 |
'avatar_min' => array('lang' => 'MIN_AVATAR_SIZE', 'validate' => 'int:0', 'type' => 'dimension:3:4', 'explain' => true, 'append' => ' ' . $user->lang['PIXEL']),
|
|
|
4c79b5 |
'avatar_max' => array('lang' => 'MAX_AVATAR_SIZE', 'validate' => 'int:0', 'type' => 'dimension:3:4', 'explain' => true, 'append' => ' ' . $user->lang['PIXEL']),
|
|
|
4c79b5 |
'avatar_path' => array('lang' => 'AVATAR_STORAGE_PATH', 'validate' => 'rwpath', 'type' => 'text:20:255', 'explain' => true),
|
|
|
4c79b5 |
'avatar_gallery_path' => array('lang' => 'AVATAR_GALLERY_PATH', 'validate' => 'rpath', 'type' => 'text:20:255', 'explain' => true)
|
|
|
4c79b5 |
)
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
case 'message':
|
|
|
4c79b5 |
$display_vars = array(
|
|
|
4c79b5 |
'title' => 'ACP_MESSAGE_SETTINGS',
|
|
|
4c79b5 |
'lang' => 'ucp',
|
|
|
4c79b5 |
'vars' => array(
|
|
|
4c79b5 |
'legend1' => 'GENERAL_SETTINGS',
|
|
|
4c79b5 |
'allow_privmsg' => array('lang' => 'BOARD_PM', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'pm_max_boxes' => array('lang' => 'BOXES_MAX', 'validate' => 'int:0', 'type' => 'text:4:4', 'explain' => true),
|
|
|
4c79b5 |
'pm_max_msgs' => array('lang' => 'BOXES_LIMIT', 'validate' => 'int:0', 'type' => 'text:4:4', 'explain' => true),
|
|
|
4c79b5 |
'full_folder_action' => array('lang' => 'FULL_FOLDER_ACTION', 'validate' => 'int', 'type' => 'select', 'method' => 'full_folder_select', 'explain' => true),
|
|
|
4c79b5 |
'pm_edit_time' => array('lang' => 'PM_EDIT_TIME', 'validate' => 'int:0', 'type' => 'text:5:5', 'explain' => true, 'append' => ' ' . $user->lang['MINUTES']),
|
|
|
4c79b5 |
'pm_max_recipients' => array('lang' => 'PM_MAX_RECIPIENTS', 'validate' => 'int:0', 'type' => 'text:5:5', 'explain' => true),
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'legend2' => 'GENERAL_OPTIONS',
|
|
|
4c79b5 |
'allow_mass_pm' => array('lang' => 'ALLOW_MASS_PM', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'auth_bbcode_pm' => array('lang' => 'ALLOW_BBCODE_PM', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'auth_smilies_pm' => array('lang' => 'ALLOW_SMILIES_PM', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'allow_pm_attach' => array('lang' => 'ALLOW_PM_ATTACHMENTS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'allow_sig_pm' => array('lang' => 'ALLOW_SIG_PM', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'print_pm' => array('lang' => 'ALLOW_PRINT_PM', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'forward_pm' => array('lang' => 'ALLOW_FORWARD_PM', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'auth_img_pm' => array('lang' => 'ALLOW_IMG_PM', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'auth_flash_pm' => array('lang' => 'ALLOW_FLASH_PM', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'enable_pm_icons' => array('lang' => 'ENABLE_PM_ICONS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false)
|
|
|
4c79b5 |
)
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
case 'post':
|
|
|
4c79b5 |
$display_vars = array(
|
|
|
4c79b5 |
'title' => 'ACP_POST_SETTINGS',
|
|
|
4c79b5 |
'vars' => array(
|
|
|
4c79b5 |
'legend1' => 'GENERAL_OPTIONS',
|
|
|
4c79b5 |
'allow_topic_notify' => array('lang' => 'ALLOW_TOPIC_NOTIFY', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'allow_forum_notify' => array('lang' => 'ALLOW_FORUM_NOTIFY', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'allow_bbcode' => array('lang' => 'ALLOW_BBCODE', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'allow_post_flash' => array('lang' => 'ALLOW_POST_FLASH', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'allow_smilies' => array('lang' => 'ALLOW_SMILIES', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'allow_post_links' => array('lang' => 'ALLOW_POST_LINKS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'allow_nocensors' => array('lang' => 'ALLOW_NO_CENSORS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'allow_bookmarks' => array('lang' => 'ALLOW_BOOKMARKS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'enable_post_confirm' => array('lang' => 'VISUAL_CONFIRM_POST', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'legend2' => 'POSTING',
|
|
|
4c79b5 |
'enable_queue_trigger' => array('lang' => 'ENABLE_QUEUE_TRIGGER', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'queue_trigger_posts' => array('lang' => 'QUEUE_TRIGGER_POSTS', 'validate' => 'int:0:250', 'type' => 'text:4:4', 'explain' => true),
|
|
|
4c79b5 |
'bump_type' => false,
|
|
|
4c79b5 |
'edit_time' => array('lang' => 'EDIT_TIME', 'validate' => 'int:0', 'type' => 'text:5:5', 'explain' => true, 'append' => ' ' . $user->lang['MINUTES']),
|
|
|
4c79b5 |
'display_last_edited' => array('lang' => 'DISPLAY_LAST_EDITED', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'flood_interval' => array('lang' => 'FLOOD_INTERVAL', 'validate' => 'int:0', 'type' => 'text:3:10', 'explain' => true, 'append' => ' ' . $user->lang['SECONDS']),
|
|
|
4c79b5 |
'bump_interval' => array('lang' => 'BUMP_INTERVAL', 'validate' => 'int:0', 'type' => 'custom', 'method' => 'bump_interval', 'explain' => true),
|
|
|
4c79b5 |
'topics_per_page' => array('lang' => 'TOPICS_PER_PAGE', 'validate' => 'int:1', 'type' => 'text:3:4', 'explain' => false),
|
|
|
4c79b5 |
'posts_per_page' => array('lang' => 'POSTS_PER_PAGE', 'validate' => 'int:1', 'type' => 'text:3:4', 'explain' => false),
|
|
|
4c79b5 |
'hot_threshold' => array('lang' => 'HOT_THRESHOLD', 'validate' => 'int:0', 'type' => 'text:3:4', 'explain' => true),
|
|
|
4c79b5 |
'max_poll_options' => array('lang' => 'MAX_POLL_OPTIONS', 'validate' => 'int:2:127', 'type' => 'text:4:4', 'explain' => false),
|
|
|
4c79b5 |
'max_post_chars' => array('lang' => 'CHAR_LIMIT', 'validate' => 'int:0', 'type' => 'text:4:6', 'explain' => true),
|
|
|
4c79b5 |
'max_post_smilies' => array('lang' => 'SMILIES_LIMIT', 'validate' => 'int:0', 'type' => 'text:4:4', 'explain' => true),
|
|
|
4c79b5 |
'max_post_urls' => array('lang' => 'MAX_POST_URLS', 'validate' => 'int:0', 'type' => 'text:5:4', 'explain' => true),
|
|
|
4c79b5 |
'max_post_font_size' => array('lang' => 'MAX_POST_FONT_SIZE', 'validate' => 'int:0', 'type' => 'text:5:4', 'explain' => true, 'append' => ' %'),
|
|
|
4c79b5 |
'max_quote_depth' => array('lang' => 'QUOTE_DEPTH_LIMIT', 'validate' => 'int:0', 'type' => 'text:4:4', 'explain' => true),
|
|
|
4c79b5 |
'max_post_img_width' => array('lang' => 'MAX_POST_IMG_WIDTH', 'validate' => 'int:0', 'type' => 'text:5:4', 'explain' => true, 'append' => ' ' . $user->lang['PIXEL']),
|
|
|
4c79b5 |
'max_post_img_height' => array('lang' => 'MAX_POST_IMG_HEIGHT', 'validate' => 'int:0', 'type' => 'text:5:4', 'explain' => true, 'append' => ' ' . $user->lang['PIXEL']),
|
|
|
4c79b5 |
)
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
case 'signature':
|
|
|
4c79b5 |
$display_vars = array(
|
|
|
4c79b5 |
'title' => 'ACP_SIGNATURE_SETTINGS',
|
|
|
4c79b5 |
'vars' => array(
|
|
|
4c79b5 |
'legend1' => 'GENERAL_OPTIONS',
|
|
|
4c79b5 |
'allow_sig' => array('lang' => 'ALLOW_SIG', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'allow_sig_bbcode' => array('lang' => 'ALLOW_SIG_BBCODE', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'allow_sig_img' => array('lang' => 'ALLOW_SIG_IMG', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'allow_sig_flash' => array('lang' => 'ALLOW_SIG_FLASH', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'allow_sig_smilies' => array('lang' => 'ALLOW_SIG_SMILIES', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'allow_sig_links' => array('lang' => 'ALLOW_SIG_LINKS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'legend2' => 'GENERAL_SETTINGS',
|
|
|
4c79b5 |
'max_sig_chars' => array('lang' => 'MAX_SIG_LENGTH', 'validate' => 'int:0', 'type' => 'text:5:4', 'explain' => true),
|
|
|
4c79b5 |
'max_sig_urls' => array('lang' => 'MAX_SIG_URLS', 'validate' => 'int:0', 'type' => 'text:5:4', 'explain' => true),
|
|
|
4c79b5 |
'max_sig_font_size' => array('lang' => 'MAX_SIG_FONT_SIZE', 'validate' => 'int:0', 'type' => 'text:5:4', 'explain' => true, 'append' => ' %'),
|
|
|
4c79b5 |
'max_sig_smilies' => array('lang' => 'MAX_SIG_SMILIES', 'validate' => 'int:0', 'type' => 'text:5:4', 'explain' => true),
|
|
|
4c79b5 |
'max_sig_img_width' => array('lang' => 'MAX_SIG_IMG_WIDTH', 'validate' => 'int:0', 'type' => 'text:5:4', 'explain' => true, 'append' => ' ' . $user->lang['PIXEL']),
|
|
|
4c79b5 |
'max_sig_img_height' => array('lang' => 'MAX_SIG_IMG_HEIGHT', 'validate' => 'int:0', 'type' => 'text:5:4', 'explain' => true, 'append' => ' ' . $user->lang['PIXEL']),
|
|
|
4c79b5 |
)
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
case 'registration':
|
|
|
4c79b5 |
$display_vars = array(
|
|
|
4c79b5 |
'title' => 'ACP_REGISTER_SETTINGS',
|
|
|
4c79b5 |
'vars' => array(
|
|
|
4c79b5 |
'legend1' => 'GENERAL_SETTINGS',
|
|
|
4c79b5 |
'max_name_chars' => array('lang' => 'USERNAME_LENGTH', 'validate' => 'int:8:180', 'type' => false, 'method' => false, 'explain' => false,),
|
|
|
4c79b5 |
'max_pass_chars' => array('lang' => 'PASSWORD_LENGTH', 'validate' => 'int:8:255', 'type' => false, 'method' => false, 'explain' => false,),
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'require_activation' => array('lang' => 'ACC_ACTIVATION', 'validate' => 'int', 'type' => 'custom', 'method' => 'select_acc_activation', 'explain' => true),
|
|
|
4c79b5 |
'min_name_chars' => array('lang' => 'USERNAME_LENGTH', 'validate' => 'int:1', 'type' => 'custom:5:180', 'method' => 'username_length', 'explain' => true),
|
|
|
4c79b5 |
'min_pass_chars' => array('lang' => 'PASSWORD_LENGTH', 'validate' => 'int:1', 'type' => 'custom', 'method' => 'password_length', 'explain' => true),
|
|
|
4c79b5 |
'allow_name_chars' => array('lang' => 'USERNAME_CHARS', 'validate' => 'string', 'type' => 'select', 'method' => 'select_username_chars', 'explain' => true),
|
|
|
4c79b5 |
'pass_complex' => array('lang' => 'PASSWORD_TYPE', 'validate' => 'string', 'type' => 'select', 'method' => 'select_password_chars', 'explain' => true),
|
|
|
4c79b5 |
'chg_passforce' => array('lang' => 'FORCE_PASS_CHANGE', 'validate' => 'int:0', 'type' => 'text:3:3', 'explain' => true, 'append' => ' ' . $user->lang['DAYS']),
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'legend2' => 'GENERAL_OPTIONS',
|
|
|
4c79b5 |
'allow_namechange' => array('lang' => 'ALLOW_NAME_CHANGE', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'allow_emailreuse' => array('lang' => 'ALLOW_EMAIL_REUSE', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'enable_confirm' => array('lang' => 'VISUAL_CONFIRM_REG', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'max_login_attempts' => array('lang' => 'MAX_LOGIN_ATTEMPTS', 'validate' => 'int:0', 'type' => 'text:3:3', 'explain' => true),
|
|
|
4c79b5 |
'max_reg_attempts' => array('lang' => 'REG_LIMIT', 'validate' => 'int:0', 'type' => 'text:4:4', 'explain' => true),
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'legend3' => 'COPPA',
|
|
|
4c79b5 |
'coppa_enable' => array('lang' => 'ENABLE_COPPA', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'coppa_mail' => array('lang' => 'COPPA_MAIL', 'validate' => 'string', 'type' => 'textarea:5:40', 'explain' => true),
|
|
|
4c79b5 |
'coppa_fax' => array('lang' => 'COPPA_FAX', 'validate' => 'string', 'type' => 'text:25:100', 'explain' => false),
|
|
|
4c79b5 |
)
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
case 'cookie':
|
|
|
4c79b5 |
$display_vars = array(
|
|
|
4c79b5 |
'title' => 'ACP_COOKIE_SETTINGS',
|
|
|
4c79b5 |
'vars' => array(
|
|
|
4c79b5 |
'legend1' => 'ACP_COOKIE_SETTINGS',
|
|
|
4c79b5 |
'cookie_domain' => array('lang' => 'COOKIE_DOMAIN', 'validate' => 'string', 'type' => 'text::255', 'explain' => false),
|
|
|
4c79b5 |
'cookie_name' => array('lang' => 'COOKIE_NAME', 'validate' => 'string', 'type' => 'text::16', 'explain' => false),
|
|
|
4c79b5 |
'cookie_path' => array('lang' => 'COOKIE_PATH', 'validate' => 'string', 'type' => 'text::255', 'explain' => false),
|
|
|
4c79b5 |
'cookie_secure' => array('lang' => 'COOKIE_SECURE', 'validate' => 'bool', 'type' => 'radio:disabled_enabled', 'explain' => true)
|
|
|
4c79b5 |
)
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
case 'load':
|
|
|
4c79b5 |
$display_vars = array(
|
|
|
4c79b5 |
'title' => 'ACP_LOAD_SETTINGS',
|
|
|
4c79b5 |
'vars' => array(
|
|
|
4c79b5 |
'legend1' => 'GENERAL_SETTINGS',
|
|
|
4c79b5 |
'limit_load' => array('lang' => 'LIMIT_LOAD', 'validate' => 'string', 'type' => 'text:4:4', 'explain' => true),
|
|
|
4c79b5 |
'session_length' => array('lang' => 'SESSION_LENGTH', 'validate' => 'int:60', 'type' => 'text:5:10', 'explain' => true, 'append' => ' ' . $user->lang['SECONDS']),
|
|
|
4c79b5 |
'active_sessions' => array('lang' => 'LIMIT_SESSIONS', 'validate' => 'int:0', 'type' => 'text:4:4', 'explain' => true),
|
|
|
4c79b5 |
'load_online_time' => array('lang' => 'ONLINE_LENGTH', 'validate' => 'int:0', 'type' => 'text:4:3', 'explain' => true, 'append' => ' ' . $user->lang['MINUTES']),
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'legend2' => 'GENERAL_OPTIONS',
|
|
|
4c79b5 |
'load_db_track' => array('lang' => 'YES_POST_MARKING', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'load_db_lastread' => array('lang' => 'YES_READ_MARKING', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'load_anon_lastread' => array('lang' => 'YES_ANON_READ_MARKING', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'load_online' => array('lang' => 'YES_ONLINE', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'load_online_guests' => array('lang' => 'YES_ONLINE_GUESTS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'load_onlinetrack' => array('lang' => 'YES_ONLINE_TRACK', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'load_birthdays' => array('lang' => 'YES_BIRTHDAYS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'load_moderators' => array('lang' => 'YES_MODERATORS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'load_jumpbox' => array('lang' => 'YES_JUMPBOX', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'load_user_activity' => array('lang' => 'LOAD_USER_ACTIVITY', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'load_tplcompile' => array('lang' => 'RECOMPILE_STYLES', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'legend3' => 'CUSTOM_PROFILE_FIELDS',
|
|
|
4c79b5 |
'load_cpf_memberlist' => array('lang' => 'LOAD_CPF_MEMBERLIST', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'load_cpf_viewprofile' => array('lang' => 'LOAD_CPF_VIEWPROFILE', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
'load_cpf_viewtopic' => array('lang' => 'LOAD_CPF_VIEWTOPIC', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
|
|
4c79b5 |
)
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
case 'auth':
|
|
|
4c79b5 |
$display_vars = array(
|
|
|
4c79b5 |
'title' => 'ACP_AUTH_SETTINGS',
|
|
|
4c79b5 |
'vars' => array(
|
|
|
4c79b5 |
'legend1' => 'ACP_AUTH_SETTINGS',
|
|
|
4c79b5 |
'auth_method' => array('lang' => 'AUTH_METHOD', 'validate' => 'string', 'type' => 'select', 'method' => 'select_auth_method', 'explain' => false)
|
|
|
4c79b5 |
)
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
case 'server':
|
|
|
4c79b5 |
$display_vars = array(
|
|
|
4c79b5 |
'title' => 'ACP_SERVER_SETTINGS',
|
|
|
4c79b5 |
'vars' => array(
|
|
|
4c79b5 |
'legend1' => 'ACP_SERVER_SETTINGS',
|
|
|
4c79b5 |
'gzip_compress' => array('lang' => 'ENABLE_GZIP', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'legend2' => 'PATH_SETTINGS',
|
|
|
4c79b5 |
'smilies_path' => array('lang' => 'SMILIES_PATH', 'validate' => 'rpath', 'type' => 'text:20:255', 'explain' => true),
|
|
|
4c79b5 |
'icons_path' => array('lang' => 'ICONS_PATH', 'validate' => 'rpath', 'type' => 'text:20:255', 'explain' => true),
|
|
|
4c79b5 |
'upload_icons_path' => array('lang' => 'UPLOAD_ICONS_PATH', 'validate' => 'rpath', 'type' => 'text:20:255', 'explain' => true),
|
|
|
4c79b5 |
'ranks_path' => array('lang' => 'RANKS_PATH', 'validate' => 'rpath', 'type' => 'text:20:255', 'explain' => true),
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'legend3' => 'SERVER_URL_SETTINGS',
|
|
|
4c79b5 |
'force_server_vars' => array('lang' => 'FORCE_SERVER_VARS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'server_protocol' => array('lang' => 'SERVER_PROTOCOL', 'validate' => 'string', 'type' => 'text:10:10', 'explain' => true),
|
|
|
4c79b5 |
'server_name' => array('lang' => 'SERVER_NAME', 'validate' => 'string', 'type' => 'text:40:255', 'explain' => true),
|
|
|
4c79b5 |
'server_port' => array('lang' => 'SERVER_PORT', 'validate' => 'int:0', 'type' => 'text:5:5', 'explain' => true),
|
|
|
4c79b5 |
'script_path' => array('lang' => 'SCRIPT_PATH', 'validate' => 'script_path', 'type' => 'text::255', 'explain' => true),
|
|
|
4c79b5 |
)
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
case 'security':
|
|
|
4c79b5 |
$display_vars = array(
|
|
|
4c79b5 |
'title' => 'ACP_SECURITY_SETTINGS',
|
|
|
4c79b5 |
'vars' => array(
|
|
|
4c79b5 |
'legend1' => 'ACP_SECURITY_SETTINGS',
|
|
|
4c79b5 |
'allow_autologin' => array('lang' => 'ALLOW_AUTOLOGIN', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'max_autologin_time' => array('lang' => 'AUTOLOGIN_LENGTH', 'validate' => 'int:0', 'type' => 'text:5:5', 'explain' => true, 'append' => ' ' . $user->lang['DAYS']),
|
|
|
4c79b5 |
'ip_check' => array('lang' => 'IP_VALID', 'validate' => 'int', 'type' => 'custom', 'method' => 'select_ip_check', 'explain' => true),
|
|
|
4c79b5 |
'browser_check' => array('lang' => 'BROWSER_VALID', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'forwarded_for_check' => array('lang' => 'FORWARDED_FOR_VALID', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'referer_validation' => array('lang' => 'REFERER_VALID', 'validate' => 'int:0:3','type' => 'custom', 'method' => 'select_ref_check', 'explain' => true),
|
|
|
4c79b5 |
'check_dnsbl' => array('lang' => 'CHECK_DNSBL', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'email_check_mx' => array('lang' => 'EMAIL_CHECK_MX', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'pass_complex' => array('lang' => 'PASSWORD_TYPE', 'validate' => 'string', 'type' => 'select', 'method' => 'select_password_chars', 'explain' => true),
|
|
|
4c79b5 |
'chg_passforce' => array('lang' => 'FORCE_PASS_CHANGE', 'validate' => 'int:0', 'type' => 'text:3:3', 'explain' => true, 'append' => ' ' . $user->lang['DAYS']),
|
|
|
4c79b5 |
'max_login_attempts' => array('lang' => 'MAX_LOGIN_ATTEMPTS', 'validate' => 'int:0', 'type' => 'text:3:3', 'explain' => true),
|
|
|
4c79b5 |
'tpl_allow_php' => array('lang' => 'TPL_ALLOW_PHP', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'form_token_lifetime' => array('lang' => 'FORM_TIME_MAX', 'validate' => 'int:-1', 'type' => 'text:5:5', 'explain' => true, 'append' => ' ' . $user->lang['SECONDS']),
|
|
|
4c79b5 |
'form_token_sid_guests' => array('lang' => 'FORM_SID_GUESTS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
|
|
|
4c79b5 |
)
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
case 'email':
|
|
|
4c79b5 |
$display_vars = array(
|
|
|
4c79b5 |
'title' => 'ACP_EMAIL_SETTINGS',
|
|
|
4c79b5 |
'vars' => array(
|
|
|
4c79b5 |
'legend1' => 'GENERAL_SETTINGS',
|
|
|
4c79b5 |
'email_enable' => array('lang' => 'ENABLE_EMAIL', 'validate' => 'bool', 'type' => 'radio:enabled_disabled', 'explain' => true),
|
|
|
4c79b5 |
'board_email_form' => array('lang' => 'BOARD_EMAIL_FORM', 'validate' => 'bool', 'type' => 'radio:enabled_disabled', 'explain' => true),
|
|
|
4c79b5 |
'email_function_name' => array('lang' => 'EMAIL_FUNCTION_NAME', 'validate' => 'string', 'type' => 'text:20:50', 'explain' => true),
|
|
|
4c79b5 |
'email_package_size' => array('lang' => 'EMAIL_PACKAGE_SIZE', 'validate' => 'int:0', 'type' => 'text:5:5', 'explain' => true),
|
|
|
4c79b5 |
'board_contact' => array('lang' => 'CONTACT_EMAIL', 'validate' => 'string', 'type' => 'text:25:100', 'explain' => true),
|
|
|
4c79b5 |
'board_email' => array('lang' => 'ADMIN_EMAIL', 'validate' => 'string', 'type' => 'text:25:100', 'explain' => true),
|
|
|
4c79b5 |
'board_email_sig' => array('lang' => 'EMAIL_SIG', 'validate' => 'string', 'type' => 'textarea:5:30', 'explain' => true),
|
|
|
4c79b5 |
'board_hide_emails' => array('lang' => 'BOARD_HIDE_EMAILS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'legend2' => 'SMTP_SETTINGS',
|
|
|
4c79b5 |
'smtp_delivery' => array('lang' => 'USE_SMTP', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
|
|
4c79b5 |
'smtp_host' => array('lang' => 'SMTP_SERVER', 'validate' => 'string', 'type' => 'text:25:50', 'explain' => false),
|
|
|
4c79b5 |
'smtp_port' => array('lang' => 'SMTP_PORT', 'validate' => 'int:0', 'type' => 'text:4:5', 'explain' => true),
|
|
|
4c79b5 |
'smtp_auth_method' => array('lang' => 'SMTP_AUTH_METHOD', 'validate' => 'string', 'type' => 'select', 'method' => 'mail_auth_select', 'explain' => true),
|
|
|
4c79b5 |
'smtp_username' => array('lang' => 'SMTP_USERNAME', 'validate' => 'string', 'type' => 'text:25:255', 'explain' => true),
|
|
|
4c79b5 |
'smtp_password' => array('lang' => 'SMTP_PASSWORD', 'validate' => 'string', 'type' => 'password:25:255', 'explain' => true)
|
|
|
4c79b5 |
)
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
default:
|
|
|
4c79b5 |
trigger_error('NO_MODE', E_USER_ERROR);
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (isset($display_vars['lang']))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$user->add_lang($display_vars['lang']);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$this->new_config = $config;
|
|
|
4c79b5 |
$cfg_array = (isset($_REQUEST['config'])) ? utf8_normalize_nfc(request_var('config', array('' => ''), true)) : $this->new_config;
|
|
|
4c79b5 |
$error = array();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// We validate the complete config if whished
|
|
|
4c79b5 |
validate_config_vars($display_vars['vars'], $cfg_array, $error);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($submit && !check_form_key($form_key))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$error[] = $user->lang['FORM_INVALID'];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
// Do not write values if there is an error
|
|
|
4c79b5 |
if (sizeof($error))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$submit = false;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// We go through the display_vars to make sure no one is trying to set variables he/she is not allowed to...
|
|
|
4c79b5 |
foreach ($display_vars['vars'] as $config_name => $null)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if (!isset($cfg_array[$config_name]) || strpos($config_name, 'legend') !== false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
continue;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($config_name == 'auth_method')
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
continue;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$this->new_config[$config_name] = $config_value = $cfg_array[$config_name];
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($config_name == 'email_function_name')
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->new_config['email_function_name'] = trim(str_replace(array('(', ')'), array('', ''), $this->new_config['email_function_name']));
|
|
|
4c79b5 |
$this->new_config['email_function_name'] = (empty($this->new_config['email_function_name']) || !function_exists($this->new_config['email_function_name'])) ? 'mail' : $this->new_config['email_function_name'];
|
|
|
4c79b5 |
$config_value = $this->new_config['email_function_name'];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($submit)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
set_config($config_name, $config_value);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($mode == 'auth')
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// Retrieve a list of auth plugins and check their config values
|
|
|
4c79b5 |
$auth_plugins = array();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$dp = @opendir($phpbb_root_path . 'includes/auth');
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($dp)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
while (($file = readdir($dp)) !== false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if (preg_match('#^auth_(.*?)\.' . $phpEx . '$#', $file))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$auth_plugins[] = basename(preg_replace('#^auth_(.*?)\.' . $phpEx . '$#', '\1', $file));
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
closedir($dp);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
sort($auth_plugins);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$updated_auth_settings = false;
|
|
|
4c79b5 |
$old_auth_config = array();
|
|
|
4c79b5 |
foreach ($auth_plugins as $method)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if ($method && file_exists($phpbb_root_path . 'includes/auth/auth_' . $method . '.' . $phpEx))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
include_once($phpbb_root_path . 'includes/auth/auth_' . $method . '.' . $phpEx);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$method = 'acp_' . $method;
|
|
|
4c79b5 |
if (function_exists($method))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if ($fields = $method($this->new_config))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// Check if we need to create config fields for this plugin and save config when submit was pressed
|
|
|
4c79b5 |
foreach ($fields['config'] as $field)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if (!isset($config[$field]))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
set_config($field, '');
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (!isset($cfg_array[$field]) || strpos($field, 'legend') !== false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
continue;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$old_auth_config[$field] = $this->new_config[$field];
|
|
|
4c79b5 |
$config_value = $cfg_array[$field];
|
|
|
4c79b5 |
$this->new_config[$field] = $config_value;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($submit)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$updated_auth_settings = true;
|
|
|
4c79b5 |
set_config($field, $config_value);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
unset($fields);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($submit && (($cfg_array['auth_method'] != $this->new_config['auth_method']) || $updated_auth_settings))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$method = basename($cfg_array['auth_method']);
|
|
|
4c79b5 |
if ($method && in_array($method, $auth_plugins))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
include_once($phpbb_root_path . 'includes/auth/auth_' . $method . '.' . $phpEx);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$method = 'init_' . $method;
|
|
|
4c79b5 |
if (function_exists($method))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if ($error = $method())
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
foreach ($old_auth_config as $config_name => $config_value)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
set_config($config_name, $config_value);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
trigger_error($error . adm_back_link($this->u_action), E_USER_WARNING);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
set_config('auth_method', basename($cfg_array['auth_method']));
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
trigger_error('NO_AUTH_PLUGIN', E_USER_ERROR);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($submit)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
add_log('admin', 'LOG_CONFIG_' . strtoupper($mode));
|
|
|
4c79b5 |
|
|
|
4c79b5 |
trigger_error($user->lang['CONFIG_UPDATED'] . adm_back_link($this->u_action));
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$this->tpl_name = 'acp_board';
|
|
|
4c79b5 |
$this->page_title = $display_vars['title'];
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$template->assign_vars(array(
|
|
|
4c79b5 |
'L_TITLE' => $user->lang[$display_vars['title']],
|
|
|
4c79b5 |
'L_TITLE_EXPLAIN' => $user->lang[$display_vars['title'] . '_EXPLAIN'],
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'S_ERROR' => (sizeof($error)) ? true : false,
|
|
|
4c79b5 |
'ERROR_MSG' => implode(' ', $error),
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'U_ACTION' => $this->u_action)
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Output relevant page
|
|
|
4c79b5 |
foreach ($display_vars['vars'] as $config_key => $vars)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if (!is_array($vars) && strpos($config_key, 'legend') === false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
continue;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (strpos($config_key, 'legend') !== false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$template->assign_block_vars('options', array(
|
|
|
4c79b5 |
'S_LEGEND' => true,
|
|
|
4c79b5 |
'LEGEND' => (isset($user->lang[$vars])) ? $user->lang[$vars] : $vars)
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
continue;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$type = explode(':', $vars['type']);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$l_explain = '';
|
|
|
4c79b5 |
if ($vars['explain'] && isset($vars['lang_explain']))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$l_explain = (isset($user->lang[$vars['lang_explain']])) ? $user->lang[$vars['lang_explain']] : $vars['lang_explain'];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else if ($vars['explain'])
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$l_explain = (isset($user->lang[$vars['lang'] . '_EXPLAIN'])) ? $user->lang[$vars['lang'] . '_EXPLAIN'] : '';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$content = build_cfg_template($type, $config_key, $this->new_config, $config_key, $vars);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (empty($content))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
continue;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$template->assign_block_vars('options', array(
|
|
|
4c79b5 |
'KEY' => $config_key,
|
|
|
4c79b5 |
'TITLE' => (isset($user->lang[$vars['lang']])) ? $user->lang[$vars['lang']] : $vars['lang'],
|
|
|
4c79b5 |
'S_EXPLAIN' => $vars['explain'],
|
|
|
4c79b5 |
'TITLE_EXPLAIN' => $l_explain,
|
|
|
4c79b5 |
'CONTENT' => $content,
|
|
|
4c79b5 |
)
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
unset($display_vars['vars'][$config_key]);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($mode == 'auth')
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$template->assign_var('S_AUTH', true);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
foreach ($auth_plugins as $method)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if ($method && file_exists($phpbb_root_path . 'includes/auth/auth_' . $method . '.' . $phpEx))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$method = 'acp_' . $method;
|
|
|
4c79b5 |
if (function_exists($method))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$fields = $method($this->new_config);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($fields['tpl'])
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$template->assign_block_vars('auth_tpl', array(
|
|
|
4c79b5 |
'TPL' => $fields['tpl'])
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
unset($fields);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Select auth method
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function select_auth_method($selected_method, $key = '')
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $phpbb_root_path, $phpEx;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$auth_plugins = array();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$dp = @opendir($phpbb_root_path . 'includes/auth');
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (!$dp)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
return '';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
while (($file = readdir($dp)) !== false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if (preg_match('#^auth_(.*?)\.' . $phpEx . '$#', $file))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$auth_plugins[] = preg_replace('#^auth_(.*?)\.' . $phpEx . '$#', '\1', $file);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
closedir($dp);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
sort($auth_plugins);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$auth_select = '';
|
|
|
4c79b5 |
foreach ($auth_plugins as $method)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$selected = ($selected_method == $method) ? ' selected="selected"' : '';
|
|
|
4c79b5 |
$auth_select .= '<option value="' . $method . '"' . $selected . '>' . ucfirst($method) . '</option>';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return $auth_select;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Select mail authentication method
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function mail_auth_select($selected_method, $key = '')
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $user;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$auth_methods = array('PLAIN', 'LOGIN', 'CRAM-MD5', 'DIGEST-MD5', 'POP-BEFORE-SMTP');
|
|
|
4c79b5 |
$s_smtp_auth_options = '';
|
|
|
4c79b5 |
|
|
|
4c79b5 |
foreach ($auth_methods as $method)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$s_smtp_auth_options .= '<option value="' . $method . '"' . (($selected_method == $method) ? ' selected="selected"' : '') . '>' . $user->lang['SMTP_' . str_replace('-', '_', $method)] . '</option>';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return $s_smtp_auth_options;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Select full folder action
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function full_folder_select($value, $key = '')
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $user;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return '<option value="1"' . (($value == 1) ? ' selected="selected"' : '') . '>' . $user->lang['DELETE_OLDEST_MESSAGES'] . '</option><option value="2"' . (($value == 2) ? ' selected="selected"' : '') . '>' . $user->lang['HOLD_NEW_MESSAGES_SHORT'] . '</option>';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Select ip validation
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function select_ip_check($value, $key = '')
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$radio_ary = array(4 => 'ALL', 3 => 'CLASS_C', 2 => 'CLASS_B', 0 => 'NO_IP_VALIDATION');
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return h_radio('config[ip_check]', $radio_ary, $value, $key);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Select referer validation
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function select_ref_check($value, $key = '')
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$radio_ary = array(REFERER_VALIDATE_PATH => 'REF_PATH', REFERER_VALIDATE_HOST => 'REF_HOST', REFERER_VALIDATE_NONE => 'NO_REF_VALIDATION');
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return h_radio('config[referer_validation]', $radio_ary, $value, $key);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Select account activation method
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function select_acc_activation($value, $key = '')
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $user, $config;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$radio_ary = array(USER_ACTIVATION_DISABLE => 'ACC_DISABLE', USER_ACTIVATION_NONE => 'ACC_NONE');
|
|
|
4c79b5 |
if ($config['email_enable'])
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$radio_ary += array(USER_ACTIVATION_SELF => 'ACC_USER', USER_ACTIVATION_ADMIN => 'ACC_ADMIN');
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return h_radio('config[require_activation]', $radio_ary, $value, $key);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Maximum/Minimum username length
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function username_length($value, $key = '')
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $user;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return '<input id="' . $key . '" type="text" size="3" maxlength="3" name="config[min_name_chars]" value="' . $value . '" /> ' . $user->lang['MIN_CHARS'] . ' <input type="text" size="3" maxlength="3" name="config[max_name_chars]" value="' . $this->new_config['max_name_chars'] . '" /> ' . $user->lang['MAX_CHARS'];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Allowed chars in usernames
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function select_username_chars($selected_value, $key)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $user;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$user_char_ary = array('USERNAME_CHARS_ANY', 'USERNAME_ALPHA_ONLY', 'USERNAME_ALPHA_SPACERS', 'USERNAME_LETTER_NUM', 'USERNAME_LETTER_NUM_SPACERS', 'USERNAME_ASCII');
|
|
|
4c79b5 |
$user_char_options = '';
|
|
|
4c79b5 |
foreach ($user_char_ary as $user_type)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$selected = ($selected_value == $user_type) ? ' selected="selected"' : '';
|
|
|
4c79b5 |
$user_char_options .= '<option value="' . $user_type . '"' . $selected . '>' . $user->lang[$user_type] . '</option>';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return $user_char_options;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Maximum/Minimum password length
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function password_length($value, $key)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $user;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return '<input id="' . $key . '" type="text" size="3" maxlength="3" name="config[min_pass_chars]" value="' . $value . '" /> ' . $user->lang['MIN_CHARS'] . ' <input type="text" size="3" maxlength="3" name="config[max_pass_chars]" value="' . $this->new_config['max_pass_chars'] . '" /> ' . $user->lang['MAX_CHARS'];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Required chars in passwords
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function select_password_chars($selected_value, $key)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $user;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$pass_type_ary = array('PASS_TYPE_ANY', 'PASS_TYPE_CASE', 'PASS_TYPE_ALPHA', 'PASS_TYPE_SYMBOL');
|
|
|
4c79b5 |
$pass_char_options = '';
|
|
|
4c79b5 |
foreach ($pass_type_ary as $pass_type)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$selected = ($selected_value == $pass_type) ? ' selected="selected"' : '';
|
|
|
4c79b5 |
$pass_char_options .= '<option value="' . $pass_type . '"' . $selected . '>' . $user->lang[$pass_type] . '</option>';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return $pass_char_options;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Select bump interval
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function bump_interval($value, $key)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $user;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$s_bump_type = '';
|
|
|
4c79b5 |
$types = array('m' => 'MINUTES', 'h' => 'HOURS', 'd' => 'DAYS');
|
|
|
4c79b5 |
foreach ($types as $type => $lang)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$selected = ($this->new_config['bump_type'] == $type) ? ' selected="selected"' : '';
|
|
|
4c79b5 |
$s_bump_type .= '<option value="' . $type . '"' . $selected . '>' . $user->lang[$lang] . '</option>';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return '<input id="' . $key . '" type="text" size="3" maxlength="4" name="config[bump_interval]" value="' . $value . '" /> <select name="config[bump_type]">' . $s_bump_type . '</select>';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Board disable option and message
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function board_disable($value, $key)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $user;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$radio_ary = array(1 => 'YES', 0 => 'NO');
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return h_radio('config[board_disable]', $radio_ary, $value) . ' <input id="' . $key . '" type="text" name="config[board_disable_msg]" maxlength="255" size="40" value="' . $this->new_config['board_disable_msg'] . '" />';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Select default dateformat
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function dateformat_select($value, $key)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $user, $config;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Let the format_date function operate with the acp values
|
|
|
4c79b5 |
$old_tz = $user->timezone;
|
|
|
4c79b5 |
$old_dst = $user->dst;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$user->timezone = $config['board_timezone'];
|
|
|
4c79b5 |
$user->dst = $config['board_dst'];
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$dateformat_options = '';
|
|
|
4c79b5 |
|
|
|
4c79b5 |
foreach ($user->lang['dateformats'] as $format => $null)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$dateformat_options .= '<option value="' . $format . '"' . (($format == $value) ? ' selected="selected"' : '') . '>';
|
|
|
4c79b5 |
$dateformat_options .= $user->format_date(time(), $format, false) . ((strpos($format, '|') !== false) ? $user->lang['VARIANT_DATE_SEPARATOR'] . $user->format_date(time(), $format, true) : '');
|
|
|
4c79b5 |
$dateformat_options .= '</option>';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$dateformat_options .= '
|
|
|
4c79b5 |
if (!isset($user->lang['dateformats'][$value]))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$dateformat_options .= ' selected="selected"';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
$dateformat_options .= '>' . $user->lang['CUSTOM_DATEFORMAT'] . '</option>';
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Reset users date options
|
|
|
4c79b5 |
$user->timezone = $old_tz;
|
|
|
4c79b5 |
$user->dst = $old_dst;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return "<select name=\"dateoptions\" id=\"dateoptions\" onchange=\"if (this.value == 'custom') { document.getElementById('" . addslashes($key) . "').value = '" . addslashes($value) . "'; } else { document.getElementById('" . addslashes($key) . "').value = this.value; }\">$dateformat_options</select>
|
|
|
4c79b5 |
<input type=\"text\" name=\"config[$key]\" id=\"$key\" value=\"$value\" maxlength=\"30\" />";
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
?>
|