plugins/SpecialAdmin.php
author Dan Fuhry <dan@enanocms.org>
Fri, 01 Apr 2016 10:28:01 -0400
changeset 1383 198f5207119b
parent 1374 f99b9c5036d4
permissions -rwxr-xr-x
Fix new-reference behavior in diff renderer

<?php
/**!info**
{
	"Plugin Name"  : "plugin_specialadmin_title",
	"Plugin URI"   : "http://enanocms.org/",
	"Description"  : "plugin_specialadmin_desc",
	"Author"       : "Dan Fuhry",
	"Version"      : "1.1.6",
	"Author URI"   : "http://enanocms.org/"
}
**!*/

/*
 * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
 * Copyright (C) 2006-2009 Dan Fuhry
 *
 * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
 */
 
global $db, $session, $paths, $template, $plugins; // Common objects

// $plugins->attachHook('session_started', 'SpecialAdmin_paths_init();');

function SpecialAdmin_paths_init()
{
	global $paths;
	
	register_special_page('Administration', 'specialpage_administration');
}

$plugins->attachHook('base_classes_initted', 'SpecialAdmin_include();');

function SpecialAdmin_include()
{
	global $db, $session, $paths, $template, $plugins; // Common objects
	
	// Admin pages that were too enormous to be in this file were split off into the plugins/admin/ directory in 1.0.1.
	// Only load these files if we're looking to load the admin panel
	list($pid, $ns) = RenderMan::strToPageID($paths->get_pageid_from_url());
	if ( $ns == 'Admin' || ( $pid == 'Administration' && $ns == 'Special' ) )
	{
		require(ENANO_ROOT . '/plugins/admin/Home.php');
		require(ENANO_ROOT . '/plugins/admin/PageManager.php');
		require(ENANO_ROOT . '/plugins/admin/PageEditor.php');
		require(ENANO_ROOT . '/plugins/admin/PageGroups.php');
		require(ENANO_ROOT . '/plugins/admin/GroupManager.php');
		require(ENANO_ROOT . '/plugins/admin/SecurityLog.php');
		require(ENANO_ROOT . '/plugins/admin/UserManager.php');
		require(ENANO_ROOT . '/plugins/admin/UserRanks.php');
		require(ENANO_ROOT . '/plugins/admin/LangManager.php');
		require(ENANO_ROOT . '/plugins/admin/ThemeManager.php');
		require(ENANO_ROOT . '/plugins/admin/PluginManager.php');
		require(ENANO_ROOT . '/plugins/admin/CacheManager.php');
	}
}

// For convenience and nothing more.
function acp_start_form()
{
	global $db, $session, $paths, $template, $plugins; // Common objects
	echo '<form action="'.makeUrl($paths->nslist['Special'].'Administration', ( isset($_GET['sqldbg']) ? 'sqldbg&' : '' ) . ( isset($_GET['nocompress']) ? 'nocompress&' : '' ) . 'module='.$paths->cpage['module']).'" method="post" enctype="multipart/form-data">';
}

// function names are IMPORTANT!!! The name pattern is: page_<namespace ID>_<page URLname, without namespace>

function page_Admin_GeneralConfig()
{
	global $db, $session, $paths, $template, $plugins; // Common objects
	global $lang;
	global $cache;
	
	if ( $session->auth_level < USER_LEVEL_ADMIN || $session->user_level < USER_LEVEL_ADMIN )
	{
		$login_link = makeUrlNS('Special', 'Login/' . $paths->nslist['Special'] . 'Administration', 'level=' . USER_LEVEL_ADMIN, true);
		echo '<h3>' . $lang->get('adm_err_not_auth_title') . '</h3>';
		echo '<p>' . $lang->get('adm_err_not_auth_body', array( 'login_link' => $login_link )) . '</p>';
		return;
	}
	
	// FIXME: is this a bad place for this? I couldn't think of anything much better. Not helped by the fact that I hate misc scripts.
	if ( isset($_POST['act']) && $_POST['act'] === 'gzip_check' )
	{
		global $is_https;
		header('Content-type: application/json');
		require(ENANO_ROOT . '/includes/http.php');
		try
		{
			if ( !isset($_SERVER['SERVER_ADDR']) )
				throw new Exception('No SERVER_ADDR support - can\'t test server environment');
			
			$server_addr = $_SERVER['SERVER_ADDR'];
			// cheap ipv6 test
			if ( strstr($server_addr, ":") )
				$server_addr = "[$server_addr]";
			
			$req = new Request_HTTP($server_addr, makeUrlNS('System', 'GzipTest', 'disable_builtin_gzip'), 'GET', intval($_SERVER['SERVER_PORT']), $is_https);
			$req->add_header('Accept-Encoding', 'gzip,deflate');
			$headers = $req->get_response_headers_array();
			$send = array(
					'server_does_it' => ( isset($headers['Content-encoding']) && in_array($headers['Content-encoding'], array('gzip', 'deflate')) ),
					'php_supports_gzip' => function_exists('gzdeflate')
				);
		}
		catch ( Exception $e )
		{
			$send = array(
				'mode' => 'error',
				'error' => "HTTP request exception: <pre>$e</pre>"
				);
		}
		echo enano_json_encode($send);
		return;
	}
	
	if(isset($_POST['submit']) && !defined('ENANO_DEMO_MODE') )
	{
		
		// Global site options
		setConfig('site_name', $_POST['site_name']);
		setConfig('site_desc', $_POST['site_desc']);
		setConfig('main_page', sanitize_page_id($_POST['main_page']));
		setConfig('copyright_notice', $_POST['copyright']);
		setConfig('contact_email', $_POST['contact_email']);
		
		setConfig('main_page_alt_enable', ( isset($_POST['main_page_alt_enable']) && $_POST['main_page_alt_enable'] === '1' ? '1' : '0' ));
		if ( !empty($_POST['main_page_alt']) )
		{
			setConfig('main_page_alt', sanitize_page_id($_POST['main_page_alt']));
		}
		
		// Wiki mode
		if(isset($_POST['wikimode']))                setConfig('wiki_mode', '1');
		else                                         setConfig('wiki_mode', '0');
		if(isset($_POST['wiki_mode_require_login'])) setConfig('wiki_mode_require_login', '1');
		else                                         setConfig('wiki_mode_require_login', '0');
		if(isset($_POST['editmsg']))                 setConfig('wiki_edit_notice', '1');
		else                                         setConfig('wiki_edit_notice', '0');
		setConfig('wiki_edit_notice_text', $_POST['editmsg_text']);
		$cache->purge('wiki_edit_notice');
		if(isset($_POST['guest_edit_require_captcha'])) setConfig('guest_edit_require_captcha', '1');
		else                                         setConfig('guest_edit_require_captcha', '0');
		
		// Stats
		if(isset($_POST['log_hits']))                setConfig('log_hits', '1');
		else                                         setConfig('log_hits', '0');
		
		// Disablement
		if(isset($_POST['site_disabled'])) {         setConfig('site_disabled', '1'); setConfig('site_disabled_notice', $_POST['site_disabled_notice']); }
		else                                         setConfig('site_disabled', '0');
		
		// Account activation
		setConfig('account_activation', $_POST['account_activation']);
		
		// W3C compliance buttons
		if(isset($_POST['w3c-vh32']))     setConfig("w3c_vh32", "1");
		else                              setConfig("w3c_vh32", "0");
		if(isset($_POST['w3c-vh40']))     setConfig("w3c_vh40", "1");
		else                              setConfig("w3c_vh40", "0");
		if(isset($_POST['w3c-vh401']))    setConfig("w3c_vh401", "1");
		else                              setConfig("w3c_vh401", "0");
		if(isset($_POST['w3c-vxhtml10'])) setConfig("w3c_vxhtml10", "1");
		else                              setConfig("w3c_vxhtml10", "0");
		if(isset($_POST['w3c-vxhtml11'])) setConfig("w3c_vxhtml11", "1");
		else                              setConfig("w3c_vxhtml11", "0");
		if(isset($_POST['w3c-vcss']))     setConfig("w3c_vcss", "1");
		else                              setConfig("w3c_vcss", "0");
		
		// SourceForge.net logo
		if(isset($_POST['showsf'])) setConfig('sflogo_enabled', '1');
		else                        setConfig('sflogo_enabled', '0');
		setConfig('sflogo_groupid', $_POST['sfgroup']);
		setConfig('sflogo_type', $_POST['sflogo']);
		
		// Comment options
		if(isset($_POST['comment-approval'])) setConfig('approve_comments', '1');
		else                                  setConfig('approve_comments', '0');
		if(isset($_POST['enable-comments']))  setConfig('enable_comments', '1');
		else                                  setConfig('enable_comments', '0');
		setConfig('comments_need_login', $_POST['comments_need_login']);
		if ( in_array($_POST['comment_spam_policy'], array('moderate', 'reject', 'accept')) )
		{
			setConfig('comment_spam_policy', $_POST['comment_spam_policy']);
		}
		
		// Powered by link
		if ( isset($_POST['enano_powered_link']) ) setConfig('powered_btn', '1');
		else                                       setConfig('powered_btn', '0');    
		
		if(isset($_POST['dbdbutton']))        setConfig('dbd_button', '1');
		else                                  setConfig('dbd_button', '0');
		
		if($_POST['emailmethod'] == 'phpmail') setConfig('smtp_enabled', '0');
		else                                   setConfig('smtp_enabled', '1');
		
		setConfig('smtp_server', $_POST['smtp_host']);
		setConfig('smtp_user', $_POST['smtp_user']);
		if($_POST['smtp_pass'] != 'XXXXXXXXXXXX') setConfig('smtp_password', $_POST['smtp_pass']);
		
		// Password strength
		if ( isset($_POST['pw_strength_enable']) ) setConfig('pw_strength_enable', '1');
		else                                       setConfig('pw_strength_enable', '0');
		
		$strength = intval($_POST['pw_strength_minimum']);
		if ( $strength >= -10 && $strength <= 30 )
		{
			$strength = strval($strength);
			setConfig('pw_strength_minimum', $strength);
		}
		
		// Default theme
		$default_theme = ( isset($template->named_theme_list[@$_POST['default_theme']]) ) ? $_POST['default_theme'] : $template->theme_list[0]['theme_id'];
		setConfig('theme_default', $default_theme);
		
		// Breadcrumb mode
		if ( in_array($_POST['breadcrumb_mode'], array('subpages', 'always', 'never')) )
		{
			setConfig('breadcrumb_mode', $_POST['breadcrumb_mode']);
		}
		
		// CDN path
		if ( preg_match('/^http:\/\//', $_POST['cdn_path']) || $_POST['cdn_path'] === '' )
		{
			// trim off a trailing slash
			setConfig('cdn_path', preg_replace('#/$#', '', $_POST['cdn_path']));
		}
		
		setConfig('register_tou', RenderMan::preprocess_text($_POST['register_tou'], true, false));
		
		// Account lockout policy
		if ( ctype_digit($_POST['lockout_threshold']) )
			setConfig('lockout_threshold', $_POST['lockout_threshold']);
		
		if ( ctype_digit($_POST['lockout_duration']) )
			setConfig('lockout_duration', $_POST['lockout_duration']);
		
		if ( in_array($_POST['lockout_policy'], array('disable', 'captcha', 'lockout')) )
			setConfig('lockout_policy', $_POST['lockout_policy']);
		
		// Session time
		foreach ( array('session_short_time', 'session_remember_time') as $k )
		{
			if ( strval(intval($_POST[$k])) === $_POST[$k] && intval($_POST[$k]) >= 0 )
			{
				setConfig($k, $_POST[$k]);
			}
		}
		
		// Avatar settings
		setConfig('avatar_enable', ( isset($_POST['avatar_enable']) ? '1' : '0' ));
		// for these next three values, set the config value if it's a valid integer; this is
		// done by using strval(intval($foo)) === $foo, which flattens $foo to an integer and
		// then converts it back to a string. This effectively verifies that var $foo is both
		// set and that it's a valid string representing an integer.
		setConfig('avatar_max_size', ( strval(intval($_POST['avatar_max_size'])) === $_POST['avatar_max_size'] ? $_POST['avatar_max_size'] : '10240' ));
		setConfig('avatar_max_width', ( strval(intval($_POST['avatar_max_width'])) === $_POST['avatar_max_width'] ? $_POST['avatar_max_width'] : '96' ));
		setConfig('avatar_max_height', ( strval(intval($_POST['avatar_max_height'])) === $_POST['avatar_max_height'] ? $_POST['avatar_max_height'] : '96' ));
		setConfig('avatar_enable_anim', ( isset($_POST['avatar_enable_anim']) ? '1' : '0' ));
		setConfig('avatar_upload_file', ( isset($_POST['avatar_upload_file']) ? '1' : '0' ));
		setConfig('avatar_upload_http', ( isset($_POST['avatar_upload_http']) ? '1' : '0' ));
		setConfig('avatar_upload_gravatar', ( isset($_POST['avatar_upload_gravatar']) ? '1' : '0' ));
		if ( in_array($_POST['gravatar_rating'], array('g', 'pg', 'r', 'x')) )
		{
			setConfig('gravatar_rating', $_POST['gravatar_rating']);
		}
		
		setConfig('avatar_directory', 'files/avatars');
		
		setConfig('userpage_grant_acl', ( isset($_POST['userpage_grant_acl']) ? '1' : '0' ));
		setConfig('autofill_username_for_guests', ( isset($_POST['autofill_username_for_guests']) ? '1' : '0' ));
		setConfig('gzip_output', ( isset($_POST['gzip_output']) ? '1' : '0' ));
		
		if ( isset($_POST['trust_xff']) )
		{
			setConfig('trust_xff', $_POST['trust_xff_type']);
		}
		else
		{
			setConfig('trust_xff', 'none');
		}
		
		// Allow plugins to save their changes
		$code = $plugins->setHook('acp_general_save');
		foreach ( $code as $cmd )
		{
			eval($cmd);
		}
		
		echo '<div class="info-box">' . $lang->get('acpgc_msg_save_success') . '</div><br />';
		
	}
	else if ( isset($_POST['submit']) && defined('ENANO_DEMO_MODE') )
	{
		echo '<div class="error-box">Saving the general site configuration is blocked in the administration demo.</div>';
	}
	echo('<form name="main" action="'.htmlspecialchars(makeUrl($paths->nslist['Special'].'Administration', 'module='.$paths->cpage['module'])).'" method="post" onsubmit="if(!submitAuthorized) return false;">');
	?>
	<div class="tblholder">
		<table border="0" width="100%" cellspacing="1" cellpadding="4">
			
		<!-- Global options -->
		
			<tr><th colspan="2"><?php echo $lang->get('acpgc_heading_main'); ?></th></tr>
			
			<tr>
				<th colspan="2" class="subhead"><?php echo $lang->get('acpgc_heading_submain'); ?></th>
			</tr>
			
			<!-- site name -->
			
			<tr>
				<td class="row1" style="width: 50%;">
					<?php echo $lang->get('acpgc_field_site_name'); ?>
				</td>
				<td class="row1" style="width: 50%;">
					<input type="text" name="site_name" size="30" value="<?php echo htmlspecialchars(getConfig('site_name')); ?>" />
				</td>
			</tr>
			
			<!-- site tagline -->
			<tr>
				<td class="row2">
					<?php echo $lang->get('acpgc_field_site_desc'); ?>
				</td>
				<td class="row2">
					<input type="text" name="site_desc" size="30" value="<?php echo htmlspecialchars(getConfig('site_desc')); ?>" />
				</td>
			</tr>
			
			<!-- main page -->
			<tr>
				<td class="row1">
					<?php echo $lang->get('acpgc_field_main_page'); ?></td>
				<td class="row1">
					<?php echo $template->pagename_field('main_page', sanitize_page_id(getConfig('main_page', 'Main_Page'))); ?><br />
						<label><input type="radio" name="main_page_alt_enable" value="0" onclick="$('#main_page_alt_tr').hide();" <?php if ( getConfig('main_page_alt_enable', '0') == '0' ) echo 'checked="checked" '; ?>/> <?php echo $lang->get('acpgc_field_main_page_option_same'); ?></label><br />
						<label><input type="radio" name="main_page_alt_enable" value="1" onclick="$('#main_page_alt_tr').show();" <?php if ( getConfig('main_page_alt_enable', '0') == '1' ) echo 'checked="checked" '; ?>/> <?php echo $lang->get('acpgc_field_main_page_option_members'); ?></label>
				</td>
			</tr>
			<tr id="main_page_alt_tr"<?php if ( getConfig('main_page_alt_enable', '0') == '0' ) echo ' style="display: none;"'; ?>>
				<td class="row3">
					<?php echo $lang->get('acpgc_field_main_page_members'); ?>
				</td>
				<td class="row3">
					<?php echo $template->pagename_field('main_page_alt', sanitize_page_id(getConfig('main_page_alt', /* default alt to current main page */ getConfig('main_page', 'Main_Page')))); ?>
				</td>
			</tr>
			
			<!-- copyright notice -->
			<tr>
				<td class="row2">
						<?php echo $lang->get('acpgc_field_copyright'); ?>
				</td>
				<td class="row2">
					<input type="text" name="copyright" size="30" value="<?php echo htmlspecialchars(getConfig('copyright_notice')); ?>" />
				</td>
			</tr>
			<tr>
				<td class="row1" colspan="2">
					<?php echo $lang->get('acpgc_field_copyright_hint'); ?>
				</td>
			</tr>
			
			<!-- contact e-mail -->
			<tr>
				<td class="row2">
					<?php echo $lang->get('acpgc_field_contactemail'); ?><br />
					<small><?php echo $lang->get('acpgc_field_contactemail_hint'); ?></small>
				</td>
				<td class="row2">
					<input name="contact_email" type="text" size="40" value="<?php echo htmlspecialchars(getConfig('contact_email')); ?>" />
				</td>
			</tr>
			
		<!-- Wiki mode -->
			
			<tr><th class="subhead" colspan="2"><?php echo $lang->get('acpgc_heading_wikimode'); ?></th></tr>
			
			<tr>
				<td class="row3" rowspan="2">
					<?php echo $lang->get('acpgc_field_wikimode_intro'); ?><br /><br />
					<?php echo $lang->get('acpgc_field_wikimode_info_sanitize'); ?><br /><br />
					<?php echo $lang->get('acpgc_field_wikimode_info_history'); ?>
				</td>
				<td class="row1">
					<input type="checkbox" name="wikimode" id="wikimode" <?php if(getConfig('wiki_mode')=='1') echo('CHECKED '); ?> /><label for="wikimode"><?php echo $lang->get('acpgc_field_wikimode'); ?></label>
				</td>
			</tr>
			
			<tr><td class="row2"><label><input type="checkbox" name="wiki_mode_require_login"<?php if(getConfig('wiki_mode_require_login')=='1') echo('CHECKED '); ?>/> Only for logged in users</label></td></tr>
			
			<tr>
				<td class="row3" rowspan="2">
					<b><?php echo $lang->get('acpgc_field_editnotice_title'); ?></b><br />
					<?php echo $lang->get('acpgc_field_editnotice_info'); ?>
				</td>
				<td class="row1">
					<input onclick="if(this.checked) document.getElementById('editmsg_text').style.display='block'; else document.getElementById('editmsg_text').style.display='none';" type="checkbox" name="editmsg" id="editmsg" <?php if(getConfig('wiki_edit_notice', '0')=='1') echo('CHECKED '); ?>/>
					<label for="editmsg"><?php echo $lang->get('acpgc_field_editnotice'); ?></label>
				</td>
			</tr>
			
			<tr>
				<td class="row2">
					<textarea <?php if(getConfig('wiki_edit_notice', '0')!='1') echo('style="display:none" '); ?>rows="5" cols="30" name="editmsg_text" id="editmsg_text"><?php echo getConfig('wiki_edit_notice_text'); ?></textarea>
				</td>
			</tr>
			
			<tr>
				<td class="row1">
					<b><?php echo $lang->get('acpgc_field_edit_require_captcha_title'); ?></b><br />
					<?php echo $lang->get('acpgc_field_edit_require_captcha_hint'); ?>
				</td>
				<td class="row1">
					<label>
						<input type="checkbox" name="guest_edit_require_captcha" <?php if ( getConfig('guest_edit_require_captcha') == '1' ) echo 'checked="checked" '; ?>/>
						<?php echo $lang->get('acpgc_field_edit_require_captcha'); ?>
					</label>
				</td>
			</tr>
			
		<!-- Site statistics -->
		
			<tr><th class="subhead" colspan="2"><?php echo $lang->get('acpgc_heading_stats'); ?></th></tr>
			
			<tr>
				<td class="row1">
					<?php echo $lang->get('acpgc_stats_intro'); ?><br /><br />
					<?php echo $lang->get('acpgc_stats_hint_privacy'); ?>
				</td>
				<td class="row1">
					<label>
						<input type="checkbox" name="log_hits" <?php if(getConfig('log_hits') == '1') echo 'checked="checked" '; ?>/>
						<?php echo $lang->get('acpgc_field_stats_enable'); ?>
					</label><br />
					<small><?php echo $lang->get('acpgc_field_stats_hint'); ?></small>
				</td>
			</tr>
			
		<!-- Comment options -->
			
			<tr>
				<th class="subhead" colspan="2">
					<?php echo $lang->get('acpgc_heading_comments'); ?>
				</th>
			</tr>
			
			<tr>
				<td class="row1">
					<label for="enable-comments">
						<b><?php echo $lang->get('acpgc_field_enable_comments'); ?></b>
					</label>
				</td>
				<td class="row1">
					<input name="enable-comments"  id="enable-comments"  type="checkbox" <?php if(getConfig('enable_comments', '1')=='1')  echo('CHECKED '); ?>/>
				</td>
			</tr>
			
			<tr>
				<td class="row2">
					<label for="comment-approval">
						<?php echo $lang->get('acpgc_field_approve_comments'); ?>
					</label>
				</td>
				<td class="row2">
					<input name="comment-approval" id="comment-approval" type="checkbox" <?php if(getConfig('approve_comments', '0')=='1') echo('CHECKED '); ?>/>
				</td>
			</tr>
			
			<tr>
				<td class="row1">
					<?php echo $lang->get('acpgc_field_comment_allow_guests'); ?>
				</td>
				<td class="row1">
					<label>
						<input name="comments_need_login" type="radio" value="0" <?php if(getConfig('comments_need_login')=='0') echo 'checked="checked" '; ?>/>
						<?php echo $lang->get('acpgc_field_comment_allow_guests_yes'); ?>
					</label>
					<label>
						<input name="comments_need_login" type="radio" value="1" <?php if(getConfig('comments_need_login')=='1') echo 'checked="checked" '; ?>/>
						<?php echo $lang->get('acpgc_field_comment_allow_guests_captcha'); ?>
					</label>
					<label>
						<input name="comments_need_login" type="radio" value="2" <?php if(getConfig('comments_need_login')=='2') echo 'checked="checked" '; ?>/>
						<?php echo $lang->get('acpgc_field_comment_allow_guests_no'); ?>
					</label>
				</td>
			</tr>
			
			<tr>
				<td class="row2">
					<?php echo $lang->get('acpgc_field_comment_spam_policy'); ?><br />
					<small><?php echo $lang->get('acpgc_field_comment_spam_policy_hint'); ?></small>
				</td>
				<td class="row2">
					<label>
						<input name="comment_spam_policy" type="radio" value="moderate" <?php if ( getConfig('comment_spam_policy', 'moderate') == 'moderate' ) echo 'checked="checked"'; ?>/>
						<?php echo $lang->get('acpgc_field_comment_spam_policy_moderate'); ?>
					</label><br /> 
					<label>
						<input name="comment_spam_policy" type="radio" value="reject" <?php if ( getConfig('comment_spam_policy', 'moderate') == 'reject' ) echo 'checked="checked"'; ?>/>
						<?php echo $lang->get('acpgc_field_comment_spam_policy_reject'); ?>
					</label><br />
					<label>
						<input name="comment_spam_policy" type="radio" value="accept" <?php if ( getConfig('comment_spam_policy', 'moderate') == 'accept' ) echo 'checked="checked"'; ?>/>
						<?php echo $lang->get('acpgc_field_comment_spam_policy_accept'); ?>
					</label>
				</td>
			</tr>
						
		<!-- Site disablement -->
		
			<tr><th class="subhead" colspan="2"><?php echo $lang->get('acpgc_heading_disablesite'); ?></th></tr>
			
			<tr>
				<td class="row3" rowspan="2">
					<?php echo $lang->get('acpgc_field_disablesite_hint'); ?>
				</td>
				<td class="row1">
					<label>
						<input onclick="if(this.checked) document.getElementById('site_disabled_notice').style.display='block'; else document.getElementById('site_disabled_notice').style.display='none';" type="checkbox" name="site_disabled" <?php if(getConfig('site_disabled') == '1') echo 'checked="checked" '; ?>/>
						<?php echo $lang->get('acpgc_field_disablesite'); ?>
					</label>
				</td>
			</tr>
			<tr>
				<td class="row2">
					<div id="site_disabled_notice"<?php if(getConfig('site_disabled')!='1') echo(' style="display:none"'); ?>>
						<?php echo $lang->get('acpgc_field_disablesite_message'); ?><br />
						<textarea name="site_disabled_notice" rows="7" cols="30"><?php echo getConfig('site_disabled_notice'); ?></textarea>
					</div>
				</td>
			</tr>
			
		<!-- Default theme -->
		
			<tr><th class="subhead" colspan="2"><?php echo $lang->get('acpgc_heading_default_theme'); ?></th></tr>
			
			<tr>
				<td class="row2">
					<?php echo $lang->get('acpgc_field_default_theme'); ?>
				</td>
				<td class="row2">
					<select name="default_theme">
					<?php
							foreach ( $template->named_theme_list as $theme_id => $theme_data )
							{
								if ( !isset($theme_data['theme_name']) )
									// probably a system theme
									continue;
									
								$theme_name = htmlspecialchars($theme_data['theme_name']);
								$selected = ( $theme_id === getConfig('theme_default') ) ? ' selected="selected"' : '';
								echo "  <option value=\"$theme_id\"$selected>$theme_name</option>\n          ";
							}
						?>
					</select>
				</td>
			</tr>
			
		<!-- Breadcrumbs -->
		
			<tr>
				<td class="row1">
					<?php echo $lang->get('acpgc_field_breadcrumb_mode'); ?>
				</td>
				<td class="row1">
					<select name="breadcrumb_mode">
					<?php
						foreach ( array('subpages', 'always', 'never') as $mode )
						{
							$str = $lang->get("acpgc_field_breadcrumb_mode_$mode");
							$sel = ( getConfig('breadcrumb_mode') == $mode ) ? ' selected="selected"' : '';
							echo "  <option value=\"$mode\"$sel>$str</option>\n          ";
						}
					?>
					</select>
				</td>
			</tr>
		
		<!-- CDN URL -->
		
			<tr><th class="subhead" colspan="2"><?php echo $lang->get('acpgc_heading_server_settings'); ?></th></tr>
		
			<tr>
				<td class="row2">
					<p>
						<?php echo $lang->get('acpgc_field_cdn_path'); ?><br />
						<small><?php echo $lang->get('acpgc_field_cdn_path_hint'); ?></small>
					</p>
					<p>
						<small><?php echo $lang->get('acpgc_field_cdn_path_example'); ?></small>
					</p>
				</td>
				<td class="row2">
					<input type="text" name="cdn_path" value="<?php echo htmlspecialchars(getConfig('cdn_path', '')); ?>" style="width: 98%;" />
				</td>
			</tr>
			
		<!-- Gzip -->
		
			<tr>
				<td class="row1">
					<b><?php echo $lang->get('acpgc_field_gzip'); ?></b><br />
					<small><?php echo $lang->get('acpgc_field_gzip_hint'); ?></small><br />
					<br />
					<a href="#" onclick="ajaxGzipCheck(); return false;"><?php echo $lang->get('acpgc_field_gzip_btn_check'); ?></a>
				</td>
				<td class="row1">
					<div id="gzip_check_result"></div>
					<label>
						<input type="checkbox" name="gzip_output" <?php if ( getConfig('gzip_output', false) == 1 ) echo 'checked="checked" '; ?>/>
						<?php echo $lang->get('acpgc_field_gzip_lbl'); ?>
					</label>
				</td>
			</tr>
			
		<!-- XFF -->
		
			<tr>
				<td class="row2">
					<b><?php echo $lang->get('acpgc_field_xff'); ?></b><br />
					<small><?php echo $lang->get('acpgc_field_xff_hint'); ?></small>
				</td>
				<td class="row2">
					<label>
						<input type="checkbox" name="trust_xff" onclick="$('#trust_xff_body').toggle('blind');"<?php if ( in_array(getConfig('trust_xff', 'none'), array('ipv4', 'ipv6', 'both'))) echo ' checked="checked"'; ?> />
						<?php echo $lang->get('acpgc_field_xff_checkbox'); ?>
					</label>
					<div id="trust_xff_body" style="margin: 5px 0 0 10px; display: <?php echo ( in_array(getConfig('trust_xff', 'none'), array('ipv4', 'ipv6', 'both')) ) ? "block" : "none"; ?>;">
						<label>
							<input type="radio" name="trust_xff_type" value="both"<?php if ( getConfig('trust_xff', 'none') == 'both' || getConfig('trust_xff', 'none') == 'none' ) echo ' checked="checked"'; ?> />
							<?php echo $lang->get('acpgc_field_xff_radio_both'); ?>
						</label>
						<br />
						<label>
							<input type="radio" name="trust_xff_type" value="ipv4"<?php if ( getConfig('trust_xff', 'none') == 'ipv4' ) echo ' checked="checked"'; ?> />
							<?php echo $lang->get('acpgc_field_xff_radio_ipv4'); ?>
						</label>
						<br />
						<label>
							<input type="radio" name="trust_xff_type" value="ipv6"<?php if ( getConfig('trust_xff', 'none') == 'ipv6' ) echo ' checked="checked"'; ?> />
							<?php echo $lang->get('acpgc_field_xff_radio_ipv6'); ?>
						</label>
					</div>
				</td>
			</tr>
			
		<!-- Allow plugins to add code -->
			<?php
			$code = $plugins->setHook('acp_general_basic');
			foreach ( $code as $cmd )
			{
				eval($cmd);
			}
			?>
			
		</table>
		</div>
				
		<div class="tblholder">
		<table border="0" width="100%" cellspacing="1" cellpadding="4">
		
		<tr>
			<th colspan="2"><?php echo $lang->get('acpgc_heading_users'); ?></th>
		</tr>
		
		<!-- Account activation -->
			
			<tr><th class="subhead" colspan="2"><?php echo $lang->get('acpgc_heading_activate'); ?></th></tr>
			
			<tr>
				<td class="row3" colspan="2">
					<?php echo $lang->get('acpgc_activate_intro_line1'); ?><br /><br />
					<?php echo $lang->get('acpgc_activate_intro_line2'); ?><br /><br />
					<b><?php echo $lang->get('acpgc_activate_intro_sfnet_warning'); ?></b>
				</td>
			</tr>
			
			<tr>
			<td class="row1" style="width: 50%;"><?php echo $lang->get('acpgc_field_activate'); ?></td><td class="row1">
					<?php
					echo '<label><input'; if(getConfig('account_activation') == 'disable') echo ' checked="checked"'; echo ' type="radio" name="account_activation" value="disable" /> ' . $lang->get('acpgc_field_activate_disable') . '</label><br />';
					echo '<label><input'; if(getConfig('account_activation') != 'user' && getConfig('account_activation') != 'admin' && getConfig('account_activation') != 'disable') echo ' checked="checked"'; echo ' type="radio" name="account_activation" value="none" /> ' . $lang->get('acpgc_field_activate_none') . '</label>';
					echo '<label><input'; if(getConfig('account_activation') == 'user') echo ' checked="checked"'; echo ' type="radio" name="account_activation" value="user" /> ' . $lang->get('acpgc_field_activate_user') . '</label>';
					echo '<label><input'; if(getConfig('account_activation') == 'admin') echo ' checked="checked"'; echo ' type="radio" name="account_activation" value="admin" /> ' . $lang->get('acpgc_field_activate_admin') . '</label>';
					?>
				</td>
			</tr>
			
		<!-- Terms of Use -->
		
			<tr>
				<th class="subhead" colspan="2">
					<?php echo $lang->get('acpgc_heading_tou'); ?>
				</th>
			</tr>
			
			<tr>
				<td class="row2">
					<b><?php echo $lang->get('acpgc_field_tou'); ?></b><br />
					<small><?php echo $lang->get('acpgc_field_tou_hint'); ?></small>
				</td>
				<td class="row2">
					<?php
						$terms = getConfig('register_tou');
						echo $template->tinymce_textarea('register_tou', $terms, 10, 40);
					?>
				</td>
			</tr>
			
		<!-- Account lockout -->
		
			<tr><th class="subhead" colspan="2"><?php echo $lang->get('acpgc_heading_lockout'); ?></th></tr>
			
			<tr><td class="row3" colspan="2"><?php echo $lang->get('acpgc_lockout_intro'); ?></td></tr>
			
			<tr>
				<td class="row2"><?php echo $lang->get('acpgc_field_lockout_threshold'); ?><br />
					<small><?php echo $lang->get('acpgc_field_lockout_threshold_hint'); ?></small>
				</td>
				<td class="row2">
					<input type="text" name="lockout_threshold" value="<?php echo ( $_ = getConfig('lockout_threshold') ) ? $_ : '5' ?>" />
				</td>
			</tr>
			
			<tr>
				<td class="row1"><?php echo $lang->get('acpgc_field_lockout_duration'); ?><br />
					<small><?php echo $lang->get('acpgc_field_lockout_duration_hint'); ?></small>
				</td>
				<td class="row1">
					<input type="text" name="lockout_duration" value="<?php echo ( $_ = getConfig('lockout_duration') ) ? $_ : '15' ?>" />
				</td>
			</tr>
			
			<tr>
				<td class="row2"><?php echo $lang->get('acpgc_field_lockout_policy'); ?><br />
					<small><?php echo $lang->get('acpgc_field_lockout_policy_hint'); ?></small>
				</td>
				<td class="row2">
					<label><input type="radio" name="lockout_policy" value="disable" <?php if ( getConfig('lockout_policy') == 'disable' ) echo 'checked="checked"'; ?> /> <?php echo $lang->get('acpgc_field_lockout_policy_nothing'); ?></label><br />
					<label><input type="radio" name="lockout_policy" value="captcha" <?php if ( getConfig('lockout_policy') == 'captcha' ) echo 'checked="checked"'; ?> /> <?php echo $lang->get('acpgc_field_lockout_policy_captcha'); ?></label><br />
					<label><input type="radio" name="lockout_policy" value="lockout" <?php if ( getConfig('lockout_policy') == 'lockout' || !getConfig('lockout_policy') ) echo 'checked="checked"'; ?> /> <?php echo $lang->get('acpgc_field_lockout_policy_lockout'); ?></label>
				</td>
			</tr>
			
		<!-- Password strength -->
			
			<tr><th class="subhead" colspan="2"><?php echo $lang->get('acpgc_heading_passstrength'); ?></th></tr>
			
			<tr>
				<td class="row2">
					<b><?php echo $lang->get('acpgc_field_passstrength_title'); ?></b><br />
					<small><?php echo $lang->get('acpgc_field_passstrength_hint'); ?></small>
				</td>
				<td class="row2">
					<label><input type="checkbox" name="pw_strength_enable" <?php if ( getConfig('pw_strength_enable') == '1' ) echo 'checked="checked" '; ?>/> <?php echo $lang->get('acpgc_field_passstrength'); ?></label>
				</td>
			</tr>
			
			<tr>
				<td class="row1">
					<b><?php echo $lang->get('acpgc_field_passminimum_title'); ?></b><br />
					<small><?php echo $lang->get('acpgc_field_passminimum_hint'); ?></small>
				</td>
				<td class="row1">
					<input type="text" name="pw_strength_minimum" value="<?php echo strval(getConfig('pw_strength_minimum', -10)); ?>" />
				</td>
			</tr>
			
		<!-- E-mail options -->
		
			<tr>
				<th class="subhead" colspan="2">
					<?php echo $lang->get('acpgc_heading_email'); ?>
				</th>
			</tr>
			
			<tr>
				<td class="row1">
					<?php echo $lang->get('acpgc_field_email_method'); ?><br />
					<small><?php echo $lang->get('acpgc_field_email_method_hint'); ?></small>
				</td>
				<td class="row1">
					<label>
						<input <?php if(getConfig('smtp_enabled') != '1') echo 'checked="checked"'; ?> type="radio" name="emailmethod" value="phpmail" />
						<?php echo $lang->get('acpgc_field_email_method_builtin'); ?>
					</label>
					
					<br />
					
					<label>
						<input <?php if(getConfig('smtp_enabled') == '1') echo 'checked="checked"'; ?> type="radio" name="emailmethod" value="smtp" />
						<?php echo $lang->get('acpgc_field_email_method_smtp'); ?>
					</label>
				</td>
			</tr>
			
			<tr>
				<td class="row2">
					<?php echo $lang->get('acpgc_field_email_smtp_hostname'); ?><br />
					<small><?php echo $lang->get('acpgc_field_email_smtp_hostname_hint'); ?></small>
				</td>
				<td class="row2">
					<input value="<?php echo getConfig('smtp_server'); ?>" name="smtp_host" type="text" size="30" />
				</td>
			</tr>
			
			<tr>
				<td class="row1">
					<?php echo $lang->get('acpgc_field_email_smtp_auth'); ?><br />
					<small><?php echo $lang->get('acpgc_field_email_smtp_hostname_hint'); ?></small>
				</td>
				<td class="row1">
					<?php echo $lang->get('acpgc_field_email_smtp_username'); ?> <input value="<?php echo getConfig('smtp_user'); ?>" name="smtp_user" type="text" size="30" /><br />
					<?php echo $lang->get('acpgc_field_email_smtp_password'); ?> <input value="<?php if(getConfig('smtp_password') != false) echo 'XXXXXXXXXXXX'; ?>" name="smtp_pass" type="password" size="30" />
				</td>
			</tr>
			
		<!-- Session length -->
		
			<tr>
				<th class="subhead" colspan="2"><?php echo $lang->get('acpgc_heading_sessions'); ?></th>
			</tr>
			
			<tr>
				<td class="row3" colspan="2"><?php echo $lang->get('acpgc_hint_sessions_noelev'); ?></td>
			</tr>
			
			<tr>
				<td class="row1">
					<?php echo $lang->get('acpgc_field_short_time'); ?><br />
					<small><?php echo $lang->get('acpgc_field_short_time_hint'); ?></small>
				</td>
				<td class="row1">
					<input type="text" name="session_short_time" value="<?php echo getConfig('session_short_time', '720'); ?>" size="4" />
				</td>
			</tr>
			
			<tr>
				<td class="row2">
					<?php echo $lang->get('acpgc_field_long_time'); ?><br />
					<small><?php echo $lang->get('acpgc_field_long_time_hint'); ?></small>
				</td>
				<td class="row2">
					<input type="text" name="session_remember_time" value="<?php echo getConfig('session_remember_time', '30'); ?>" size="4" />
				</td>
			</tr>
				
		<!-- Avatar support -->
		
			<tr>
				<th class="subhead" colspan="2"><?php echo $lang->get('acpgc_heading_avatars'); ?></th>
			</tr>
			
			<tr>
				<td class="row3" colspan="2">
					<?php echo $lang->get('acpgc_avatars_intro'); ?>
				</th>
			</tr>
			
			<tr>
				<td class="row1">
					<?php echo $lang->get('acpgc_field_avatar_enable'); ?><br />
					<small><?php echo $lang->get('acpgc_field_avatar_enable_hint'); ?></small>
				</td>
				<td class="row1">
					<label><input type="checkbox" name="avatar_enable" <?php if ( getConfig('avatar_enable') == '1' ) echo 'checked="checked" '; ?>/> <?php echo $lang->get('acpgc_field_avatar_enable_label'); ?></label>
				</td>
			</tr>
			
			<tr>
				<td class="row2">
					<?php echo $lang->get('acpgc_field_avatar_max_filesize'); ?><br />
					<small><?php echo $lang->get('acpgc_field_avatar_max_filesize_hint'); ?></small>
				</td>
				<td class="row2">
					<input type="text" name="avatar_max_size" size="7" <?php if ( ($x = getConfig('avatar_max_size')) !== false ) echo "value=\"$x\" "; else echo "value=\"10240\" "; ?>/> <?php echo $lang->get('etc_unit_bytes'); ?>
				</td>
			</tr>
			
			<tr>
				<td class="row1">
					<?php echo $lang->get('acpgc_field_avatar_max_dimensions'); ?><br />
					<small><?php echo $lang->get('acpgc_field_avatar_max_dimensions_hint'); ?></small>
				</td>
				<td class="row1">
					<input type="text" name="avatar_max_width" size="7" <?php if ( $x = getConfig('avatar_max_width') ) echo "value=\"$x\" "; else echo "value=\"150\" "; ?>/> &#215;
					<input type="text" name="avatar_max_height" size="7" <?php if ( $x = getConfig('avatar_max_height') ) echo "value=\"$x\" "; else echo "value=\"150\" "; ?>/> <?php echo $lang->get('etc_unit_pixels'); ?>
				</td>
			</tr>
			
			<tr>
				<td class="row2">
					<?php echo $lang->get('acpgc_field_avatar_allow_anim_title'); ?><br />
					<small><?php echo $lang->get('acpgc_field_avatar_allow_anim_hint'); ?></small>
				</td>
				<td class="row2">
					<label><input type="checkbox" name="avatar_enable_anim" <?php if ( getConfig('avatar_enable_anim') == '1' ) echo 'checked="checked" '; ?>/> <?php echo $lang->get('acpgc_field_avatar_allow_anim'); ?></label>
				</td>
			</tr>
			
			<tr>
				<td class="row1">
					<?php echo $lang->get('acpgc_field_avatar_upload_methods'); ?><br />
					<small></small>
				</td>
				<td class="row1">
					<label>
						<input type="checkbox" name="avatar_upload_file" <?php if ( getConfig('avatar_upload_file', 1) == 1 ) echo 'checked="checked" '; ?>/>
						<?php echo $lang->get('acpgc_field_avatar_upload_file'); ?>
					</label>
					
					<br />
					
					<label>
						<input type="checkbox" name="avatar_upload_http" <?php if ( getConfig('avatar_upload_http', 1) == 1 ) echo 'checked="checked" '; ?>/>
						<?php echo $lang->get('acpgc_field_avatar_upload_http'); ?>
					</label>
					
					<br />
					
					<label>
					<input type="checkbox" name="avatar_upload_gravatar" <?php if ( getConfig('avatar_upload_gravatar', 1) == 1 ) echo 'checked="checked" '; ?>onclick="document.getElementById('acp_gravatar_rating').style.display = ( this.checked ) ? 'block' : 'none';" />
						<?php echo $lang->get('acpgc_field_avatar_upload_gravatar'); ?>
					</label>
					
					<br />
					
					<fieldset id="acp_gravatar_rating" style="margin-top: 10px; <?php if ( getConfig('avatar_upload_gravatar', 1) == 0 ) echo ' display: none;'; ?>">
					
						<?php /* The four ratings are g, pg, r, and x - loop through each and output a localized string and a radiobutton */ ?>
						<legend><?php echo $lang->get('acpgc_field_avatar_gravatar_rating'); ?></legend>
						
						<?php foreach ( array('g', 'pg', 'r', 'x') as $rating ): ?>
						
						<label>
						
							<input type="radio" name="gravatar_rating" value="<?php echo $rating; ?>"<?php
								// Check the button if this is the current selection *or* if we're on "G" and the current configuration value is unset
								if ( getConfig('gravatar_rating', 'g') == $rating )
									echo ' checked="checked"';
								?> />
								
							<?php /* The localized string */ ?>
							<?php echo $lang->get("acpgc_field_avatar_gravatar_rating_$rating"); ?>
							
						</label>
						
						<br />
						
						<?php endforeach; ?>
					</fieldset>
				</td>
			</tr>
			
		<!-- Misc. options -->
		
			<tr>
				<th class="subhead" colspan="2"><?php echo $lang->get('acpgc_heading_usermisc'); ?></th>
			</tr>
			
			<tr>
				<td class="row1">
					<b><?php echo $lang->get('acpgc_field_userpage_acl_title'); ?></b><br />
					<small>
						<?php echo $lang->get('acpgc_field_userpage_acl_hint'); ?>
					</small>
				</td>
				<td class="row1">
					<label>
						<input type="checkbox" name="userpage_grant_acl" <?php if ( getConfig('userpage_grant_acl', '1') == '1' ) echo 'checked="checked" '; ?>/>
						<?php echo $lang->get('acpgc_field_userpage_acl'); ?>
					</label>
				</td>
			</tr>
			
			<tr>
				<td class="row1">
					<b><?php echo $lang->get('acpgc_field_guest_autofill_title'); ?></b><br />
					<small>
						<?php echo $lang->get('acpgc_field_guest_autofill_hint'); ?>
					</small>
				</td>
				<td class="row1">
					<label>
						<input type="checkbox" name="autofill_username_for_guests" <?php if ( getConfig('autofill_username_for_guests', 0) == '1' ) echo 'checked="checked" '; ?>/>
						<?php echo $lang->get('acpgc_field_guest_autofill'); ?>
					</label>
				</td>
			</tr>
			
		<!-- Allow plugins to add code -->
			<?php
			$code = $plugins->setHook('acp_general_users');
			foreach ( $code as $cmd )
			{
				eval($cmd);
			}
			?>
				
		</table>
		</div>
		
		<div class="tblholder">
		<table border="0" width="100%" cellspacing="1" cellpadding="4">
		
		<tr>
			<th colspan="2"><?php echo $lang->get('acpgc_heading_sidebar'); ?></th>
		</tr>
		
		<!-- enanocms.org link -->
		
		<tr>
			<th colspan="2" class="subhead"><?php echo $lang->get('acpgc_heading_promoteenano'); ?></th>
		</tr>                      
		<tr>
			<td class="row3" style="width: 50%;">
				<b><?php echo $lang->get('acpgc_field_enano_link_title'); ?></b><br />
				<small><?php echo $lang->get('acpgc_field_enano_link_hint'); ?></small>
			</td>
			<td class="row1">
				<label>
					<input name="enano_powered_link" type="checkbox" <?php if(getConfig('powered_btn', '1') == '1') echo 'checked="checked"'; ?> />&nbsp;&nbsp;<?php echo $lang->get('acpgc_field_enano_link'); ?>
				</label>
			</td>
		</tr>
			
		<!-- SourceForge.net logo -->
			
			<tr><th class="subhead" colspan="2"><?php echo $lang->get('acpgc_heading_sfnet_logo'); ?></th></tr>
			
			<tr>
				<td colspan="2" class="row3">
					<?php echo $lang->get('acpgc_sfnet_intro'); ?>
				</td>
			</tr>
			
			<?php
			if ( getConfig("sflogo_enabled") == '1' )
				$c='checked="checked" ';
			else
				$c='';
				
			if ( getConfig("sflogo_groupid") )
				$g = getConfig("sflogo_groupid");
			else
				$g = '';
				
			if ( getConfig("sflogo_type") )
				$t = getConfig("sflogo_type");
			else
				$t = '1';
			?>
			
			<tr>
				<td class="row1"><?php echo $lang->get('acpgc_field_sfnet_display'); ?></td>
				<td class="row1"><input type=checkbox name="showsf" id="showsf" <?php echo $c; ?> /></td>
			</tr>
			
			<tr>
				<td class="row2"><?php echo $lang->get('acpgc_field_sfnet_group_id'); ?></td>
				<td class="row2"><input value="<?php echo $g; ?>" type=text size=15 name=sfgroup /></td>
			</tr>
			
			<tr>
				<td class="row1"><?php echo $lang->get('acpgc_field_sfnet_logo_style'); ?></td>
				<td class="row1">
					<select name="sflogo">
						<option <?php if($t=='1') echo('selected="selected" '); ?>value=1><?php echo $lang->get('acpgc_field_sfnet_logo_style_1'); ?></option>
						<option <?php if($t=='2') echo('selected="selected" '); ?>value=2><?php echo $lang->get('acpgc_field_sfnet_logo_style_2'); ?></option>
						<option <?php if($t=='3') echo('selected="selected" '); ?>value=3><?php echo $lang->get('acpgc_field_sfnet_logo_style_3'); ?></option>
						<option <?php if($t=='4') echo('selected="selected" '); ?>value=4><?php echo $lang->get('acpgc_field_sfnet_logo_style_4'); ?></option>
						<option <?php if($t=='5') echo('selected="selected" '); ?>value=5><?php echo $lang->get('acpgc_field_sfnet_logo_style_5'); ?></option>
						<option <?php if($t=='6') echo('selected="selected" '); ?>value=6><?php echo $lang->get('acpgc_field_sfnet_logo_style_6'); ?></option>
						<option <?php if($t=='7') echo('selected="selected" '); ?>value=7><?php echo $lang->get('acpgc_field_sfnet_logo_style_7'); ?></option>
					</select>
				</td>
			</tr>
			
		<!-- W3C validator buttons -->
			
			<tr><th class="subhead" colspan="2"><?php echo $lang->get('acpgc_heading_w3clogos'); ?></th></tr>
			<tr><td colspan="2" class="row3"><?php echo $lang->get('acpgc_w3clogos_intro'); ?></th></tr>
			
			<tr><td class="row1"><label for="w3c-vh32"><?php     echo $lang->get('acpgc_w3clogos_btn_html32');  ?></label></td><td class="row1"><input type="checkbox" <?php if(getConfig('w3c_vh32')=='1')     echo('checked="checked" '); ?> id="w3c-vh32"     name="w3c-vh32"     /></td></tr>
			<tr><td class="row2"><label for="w3c-vh40"><?php     echo $lang->get('acpgc_w3clogos_btn_html40');  ?></label></td><td class="row2"><input type="checkbox" <?php if(getConfig('w3c_vh40')=='1')     echo('checked="checked" '); ?> id="w3c-vh40"     name="w3c-vh40"     /></td></tr>
			<tr><td class="row1"><label for="w3c-vh401"><?php    echo $lang->get('acpgc_w3clogos_btn_html401'); ?></label></td><td class="row1"><input type="checkbox" <?php if(getConfig('w3c_vh401')=='1')    echo('checked="checked" '); ?> id="w3c-vh401"    name="w3c-vh401"    /></td></tr>
			<tr><td class="row2"><label for="w3c-vxhtml10"><?php echo $lang->get('acpgc_w3clogos_btn_xhtml10'); ?></label></td><td class="row2"><input type="checkbox" <?php if(getConfig('w3c_vxhtml10')=='1') echo('checked="checked" '); ?> id="w3c-vxhtml10" name="w3c-vxhtml10" /></td></tr>
			<tr><td class="row1"><label for="w3c-vxhtml11"><?php echo $lang->get('acpgc_w3clogos_btn_xhtml11'); ?></label></td><td class="row1"><input type="checkbox" <?php if(getConfig('w3c_vxhtml11')=='1') echo('checked="checked" '); ?> id="w3c-vxhtml11" name="w3c-vxhtml11" /></td></tr>
			<tr><td class="row2"><label for="w3c-vcss"><?php     echo $lang->get('acpgc_w3clogos_btn_css');     ?></label></td><td class="row2"><input type="checkbox" <?php if(getConfig('w3c_vcss')=='1')     echo('checked="checked" '); ?> id="w3c-vcss"     name="w3c-vcss"     /></td></tr>

		<!-- DefectiveByDesign.org ad -->      
			
			<tr>
				<th class="subhead" colspan="2">
					<?php echo $lang->get('acpgc_heading_dbd'); ?>
				</th>
			</tr>
			
			<tr>
				<td colspan="2" class="row3">
					<b><?php echo $lang->get('acpgc_dbd_intro'); ?></b>
					<?php echo $lang->get('acpgc_dbd_explain'); ?>
				</td>
			</tr>
			
			<tr>
				<td class="row1">
					<label for="dbdbutton">
						<?php echo $lang->get('acpgc_field_stopdrm'); ?>
					</label>
				</td>
				<td class="row1">
					<input type="checkbox" name="dbdbutton" id="dbdbutton" <?php if(getConfig('dbd_button')=='1')  echo('checked="checked" '); ?>/>
				</td>
			</tr>
			
		<!-- Allow plugins to add code -->
			<?php
			$code = $plugins->setHook('acp_general_sidebar');
			foreach ( $code as $cmd )
			{
				eval($cmd);
			}
			?>
			
		<!-- Save button -->
		
		</table>
		</div>
		
		<!-- Allow plugins to add code -->
			<?php
			$code = $plugins->setHook('acp_general_tail');
			foreach ( $code as $cmd )
			{
				eval($cmd);
			}
			?>
				
		<div class="tblholder">
		<table border="0" width="100%" cellspacing="1" cellpadding="4">
			
			<tr><th colspan="2"><input type="submit" name="submit" value="<?php echo $lang->get('acpgc_btn_save_changes'); ?>" /></th></tr>
			
		</table>
	</div>
</form>

<script type="text/javascript">addOnloadHook(function() { admin_table_onload(namespace_list['Admin'] + 'GeneralConfig') });</script>
	<?php
}

function page_Admin_UploadConfig()
{
	global $db, $session, $paths, $template, $plugins; // Common objects
	global $lang;
	if ( $session->auth_level < USER_LEVEL_ADMIN || $session->user_level < USER_LEVEL_ADMIN )
	{
		$login_link = makeUrlNS('Special', 'Login/' . $paths->nslist['Special'] . 'Administration', 'level=' . USER_LEVEL_ADMIN, true);
		echo '<h3>' . $lang->get('adm_err_not_auth_title') . '</h3>';
		echo '<p>' . $lang->get('adm_err_not_auth_body', array( 'login_link' => $login_link )) . '</p>';
		return;
	}
	
	if ( isset($_GET['act']) && $_GET['act'] == 'verify_path' )
	{
		$path = $_POST['path'];
		$result = @file_exists($path) && @is_file($path) && @is_executable($path);
		echo $result ? 'true' : 'false';
		return;
	}
	
	if(isset($_POST['save']))
	{
		if(isset($_POST['enable_uploads']) && getConfig('enable_uploads') != '1')
		{
			$q = $db->sql_query('INSERT INTO '.table_prefix.'logs(log_type,action,time_id,edit_summary,author,author_uid) VALUES(\'security\',\'upload_enable\',' . time() . ',\'' . $db->escape($_SERVER['REMOTE_ADDR']) . '\',\'' . $db->escape($session->username) . '\', ' . $session->user_id . ');');
			if ( !$q )
				$db->_die();
			setConfig('enable_uploads', '1');
		}
		else if ( !isset($_POST['enable_uploads']) && getConfig('enable_uploads') == '1' )
		{
			$q = $db->sql_query('INSERT INTO '.table_prefix.'logs(log_type,action,time_id,edit_summary,author,author_uid) VALUES(\'security\',\'upload_disable\',' . time() . ',\'' . $db->escape($_SERVER['REMOTE_ADDR']) . '\',\'' . $db->escape($session->username) . '\', ' . $session->user_id . ');');
			if ( !$q )
				$db->_die();
			setConfig('enable_uploads', '0');
		}
		if(isset($_POST['enable_imagemagick']) && getConfig('enable_imagemagick') != '1')
		{
			$q = $db->sql_query('INSERT INTO '.table_prefix.'logs(log_type,action,time_id,edit_summary,author,author_uid) VALUES(\'security\',\'magick_enable\',' . time() . ',\'' . $db->escape($_SERVER['REMOTE_ADDR']) . '\',\'' . $db->escape($session->username) . '\', ' . $session->user_id . ');');
			if ( !$q )
				$db->_die();
			setConfig('enable_imagemagick', '1');
		}
		else if ( !isset($_POST['enable_imagemagick']) && getConfig('enable_imagemagick') == '1' )
		{
			$q = $db->sql_query('INSERT INTO '.table_prefix.'logs(log_type,action,time_id,edit_summary,author,author_uid) VALUES(\'security\',\'magick_disable\',' . time() . ',\'' . $db->escape($_SERVER['REMOTE_ADDR']) . '\',\'' . $db->escape($session->username) . '\', ' . $session->user_id . ');');
			if ( !$q )
				$db->_die();
			setConfig('enable_imagemagick', '0');
		}
		if(isset($_POST['cache_thumbs']))
		{
			setConfig('cache_thumbs', '1');
		}
		else
		{
			setConfig('cache_thumbs', '0');
		}
		if(isset($_POST['file_history']) && getConfig('file_history') != '1' )
		{
			$q = $db->sql_query('INSERT INTO '.table_prefix.'logs(log_type,action,time_id,edit_summary,author,author_uid) VALUES(\'security\',\'filehist_enable\',' . time() . ',\'' . $db->escape($_SERVER['REMOTE_ADDR']) . '\',\'' . $db->escape($session->username) . '\',' . $session->user_id . ');');
			if ( !$q )
				$db->_die();
			setConfig('file_history', '1');
		}
		else if ( !isset($_POST['file_history']) && getConfig('file_history') == '1' )
		{
			$q = $db->sql_query('INSERT INTO '.table_prefix.'logs(log_type,action,time_id,edit_summary,author,author_uid) VALUES(\'security\',\'filehist_disable\',' . time() . ',\'' . $db->escape($_SERVER['REMOTE_ADDR']) . '\',\'' . $db->escape($session->username) . '\',' . $session->user_id . ');');
			if ( !$q )
				$db->_die();
			setConfig('file_history', '0');
		}
		$path = $_POST['imagemagick_path'];
		$result = @file_exists($path) && @is_file($path) && @is_executable($path);
		if ( $path !== getConfig('imagemagick_path', '/usr/bin/convert') )
		{
			if ( !$result )
			{
				echo '<div class="error-box-mini">' . $lang->get('acpup_err_magick_not_found', array('magick_path' => $path)) . '</div>';
			}
				
			if ( defined('ENANO_DEMO_MODE') )
				// Hackish but safe.
				$path = '/usr/bin/convert';
			$old = getConfig('imagemagick_path', '/usr/bin/convert');
			$oldnew = "{$old}||{$path}";
			$q = $db->sql_query('INSERT INTO ' . table_prefix . 'logs(log_type,action,time_id,edit_summary,author,author_uid,page_text) VALUES(\'security\',\'magick_path\',' . time() . ',\'' . $db->escape($_SERVER['REMOTE_ADDR']) . '\',\'' . $db->escape($session->username) . '\',' . $session->user_id . ',\'' . $db->escape($oldnew) . '\');');
			if ( !$q )
				$db->_die();
			setConfig('imagemagick_path', $path);
		}
		$max_upload = floor((float)$_POST['max_file_size'] * (int)$_POST['fs_units']);
		if ( $max_upload > 1048576 && defined('ENANO_DEMO_MODE') )
		{
			echo '<div class="error-box">Wouldn\'t want the server DoS\'ed now. Stick to under a megabyte for the demo, please.</div>';
		}
		else
		{
			setConfig('max_file_size', $max_upload.'');
		}
	}
	acp_start_form();
	?>
	<h3><?php echo $lang->get('acpup_heading_main'); ?></h3>
	
	<p>
		<?php echo $lang->get('acpup_intro'); ?>
	</p>
	<p>
		<label>
			<input type="checkbox" name="enable_uploads" <?php if(getConfig('enable_uploads')=='1') echo 'checked="checked"'; ?> />
			<b><?php echo $lang->get('acpup_field_enable'); ?></b>
		</label>
	</p>
	<div class="info-box-mini">
	<?php
	// Get the maximum sizes for post and uploaded files, and return the smaller of the two.
	// Ideally, any smart admin would always make upload_max_filesize less than post_max_size, but
	// in practice I've found this is not the case.
	$size = humanize_filesize(min(
					array(
						php_filesize_to_int(ini_get('upload_max_filesize')),
						php_filesize_to_int(ini_get('post_max_size')
					)
				)));
	echo $lang->get('acpup_info_max_server_size', array('size' => $size));
	?>
	</div>
	<p>
		<?php echo $lang->get('acpup_field_max_size'); ?>
		<input name="max_file_size" onkeyup="if(!this.value.match(/^([0-9\.]+)$/ig)) this.value = this.value.substr(0,this.value.length-1);" value="<?php echo getConfig('max_file_size', '256000'); ?>" />
		<select name="fs_units">
			<option value="1" selected="selected"><?php echo $lang->get('etc_unit_bytes'); ?></option>
			<option value="1024"><?php echo $lang->get('etc_unit_kilobytes_short'); ?></option>
			<option value="1048576"><?php echo $lang->get('etc_unit_megabytes_short'); ?></option>
		</select>
	</p>
	
	<p><?php echo $lang->get('acpup_info_magick'); ?></p>
	<p>
		<label>
			<input type="checkbox" name="enable_imagemagick" <?php if(getConfig('enable_imagemagick')=='1') echo 'checked="checked"'; ?> />
			<?php echo $lang->get('acpup_field_magick_enable'); ?>
		</label>
		<br />
		<?php echo $lang->get('acpup_field_magick_path'); ?> <input type="text" name="imagemagick_path" value="<?php echo htmlspecialchars(getConfig('imagemagick_path', '/usr/bin/convert')); ?>" onkeyup="ajaxVerifyFilePath(this);" /><br />
		<?php echo $lang->get('acpup_field_magick_path_hint'); ?>
	</p>
 		
	<p><?php echo $lang->get('acpup_info_cache'); ?></p>
	<p>
		<?php echo $lang->get('acpup_info_cache_chmod'); ?>
	
		<?php
			if(!is_writable(ENANO_ROOT.'/cache/'))
				echo $lang->get('acpup_msg_cache_not_writable');
		?>
	</p>
	
	<p>
		<label>
			<input type="checkbox" name="cache_thumbs" <?php if(getConfig('cache_thumbs')=='1' && is_writable(ENANO_ROOT.'/cache/')) echo 'checked="checked"'; else if ( ! is_writable(ENANO_ROOT . '/cache/') ) echo 'readonly="readonly"'; ?> />
			<?php echo $lang->get('acpup_field_cache'); ?>
		</label>
	</p>
	
	<p><?php echo $lang->get('acpup_info_history'); ?></p>
	<p>
		<label>
			<input type="checkbox" name="file_history" <?php if(getConfig('file_history')=='1') echo 'checked="checked"'; ?> />
			<?php echo $lang->get('acpup_field_history'); ?>
		</label>
	</p>
	
	<hr style="margin-left: 1em;" />
	<p><input type="submit" name="save" value="<?php echo $lang->get('acpup_btn_save'); ?>" style="font-weight: bold;" /></p>
	<?php
	echo '</form>';
}

function page_Admin_UploadAllowedMimeTypes()
{
	global $db, $session, $paths, $template, $plugins; // Common objects
	global $lang;
	if ( $session->auth_level < USER_LEVEL_ADMIN || $session->user_level < USER_LEVEL_ADMIN )
	{
		$login_link = makeUrlNS('Special', 'Login/' . $paths->nslist['Special'] . 'Administration', 'level=' . USER_LEVEL_ADMIN, true);
		echo '<h3>' . $lang->get('adm_err_not_auth_title') . '</h3>';
		echo '<p>' . $lang->get('adm_err_not_auth_body', array( 'login_link' => $login_link )) . '</p>';
		return;
	}
	
	global $mime_types, $mimetype_exps, $mimetype_extlist;
	if(isset($_POST['save']) && !defined('ENANO_DEMO_MODE'))
	{
		$bits = '';
		$keys = array_keys($mime_types);
		foreach($keys as $i => $k)
		{
			if(isset($_POST['ext_'.$k])) $bits .= '1';
			else $bits .= '0';
		}
		$bits = compress_bitfield($bits);
		setConfig('allowed_mime_types', $bits);
		echo '<div class="info-box">' . $lang->get('acpft_msg_saved') . '</div>';
	}
	else if ( isset($_POST['save']) && defined('ENANO_DEMO_MODE') )
	{
		echo '<div class="error-box">' . $lang->get('acpft_msg_demo_mode') . '</div>';
	}
	$allowed = fetch_allowed_extensions();
	?>
	<h3><?php echo $lang->get('acpft_heading_main'); ?></h3>
 	<p><?php echo $lang->get('acpft_hint'); ?></p>
	<?php
	acp_start_form();
		$c = -1;
		$t = -1;
		$cl = 'row1';
		echo "\n".'    <div class="tblholder">'."\n".'      <table cellspacing="1" cellpadding="2" style="margin: 0; padding: 0;" border="0">'."\n".'        <tr>'."\n        ";
		ksort($mime_types);
		foreach($mime_types as $e => $m)
		{
			$c++;
			$t++;
			if($c == 3)
			{
				$c = 0;
				$cl = ( $cl == 'row1' ) ? 'row2' : 'row1';
				echo '</tr>'."\n".'        <tr>'."\n        ";
			}
			$seed = "extchkbx_{$e}_".md5(microtime() . mt_rand());
			$chk = (!empty($allowed[$e])) ? ' checked="checked"' : '';
			echo "  <td class='$cl'>\n            <label><input id='{$seed}' type='checkbox' name='ext_{$e}'{$chk} />.{$e}\n            ({$m})</label>\n          </td>\n        ";
		}
		while($c < 2)
		{
			$c++;
			echo "  <td class='{$cl}'></td>\n        ";
		}
		echo '<tr><th class="subhead" colspan="3"><input type="submit" name="save" value="' . $lang->get('etc_save_changes') . '" /></th></tr>';
		echo '</tr>'."\n".'      </table>'."\n".'    </div>';
		echo '</form>';
	?>
	<?php
}

function page_Admin_DBBackup()
{
	global $db, $session, $paths, $template, $plugins; // Common objects
	global $lang;
	if ( $session->auth_level < USER_LEVEL_ADMIN || $session->user_level < USER_LEVEL_ADMIN )
	{
		$login_link = makeUrlNS('Special', 'Login/' . $paths->nslist['Special'] . 'Administration', 'level=' . USER_LEVEL_ADMIN, true);
		echo '<h3>' . $lang->get('adm_err_not_auth_title') . '</h3>';
		echo '<p>' . $lang->get('adm_err_not_auth_body', array( 'login_link' => $login_link )) . '</p>';
		return;
	}
	
	if ( ENANO_DBLAYER != 'MYSQL' )
		die('<h3>' . $lang->get('acpdb_err_not_supported_title') . '</h3>
					<p>' . $lang->get('acpdb_err_not_supported_desc') . '</p>');
	
	if(isset($_GET['submitting']) && $_GET['submitting'] == 'yes' && defined('ENANO_DEMO_MODE') )
	{
		redirect(makeUrlComplete('Special', 'Administration'), $lang->get('acpdb_err_demo_mode_title'), $lang->get('acpdb_err_demo_mode_desc'), 5);
	}
	
	global $system_table_list;
	if(isset($_GET['submitting']) && $_GET['submitting'] == 'yes')
	{
		
		if(defined('SQL_BACKUP_CRYPT'))
			// Try to increase our time limit
			@set_time_limit(0);
		// Do the actual export
		$aesext = ( defined('SQL_BACKUP_CRYPT') ) ? '.tea' : '';
		$filename = 'enano_backup_' . enano_date('ymd') . '.sql' . $aesext;
		ob_start();
		// Spew some headers
		$headdate = enano_date(ED_DATE | ED_TIME);
		echo <<<HEADER
-- Enano CMS SQL backup
-- Generated on {$headdate} by {$session->username}

HEADER;
		// build the table list
		$base = ( isset($_POST['do_system_tables']) ) ? $system_table_list : Array();
		$add  = ( isset($_POST['additional_tables'])) ? $_POST['additional_tables'] : Array();
		$tables = array_merge($base, $add);
		
		// Log it!
		$e = $db->sql_query('INSERT INTO '.table_prefix.'logs(log_type,action,time_id,date_string,author,author_uid,edit_summary,page_text) VALUES(\'security\', \'db_backup\', '.time().', \''.enano_date(ED_DATE | ED_TIME).'\', \''.$db->escape($session->username).'\',' . $session->user_id . ', \''.$db->escape($_SERVER['REMOTE_ADDR']).'\', \'' . $db->escape(implode(', ', $tables)) . '\')');
		if ( !$e )
			$db->_die();
		
		foreach($tables as $i => $t)
		{
			if(!preg_match('#^([a-z0-9_]+)$#i', $t))
				die('Hacking attempt');
			// if($t == table_prefix.'files' && isset($_POST['do_data']))
			//   unset($tables[$i]);
		}
		foreach($tables as $t)
		{
			// THE FOLLOWING COMMENT DOES NOT APPLY AS OF 1.0.
			// Sorry folks - this script CAN'T backup enano_files and enano_search_index due to the sheer size of the tables.
			// If encryption is enabled the log data will be excluded too.
			$result = export_table(
				$t,
				isset($_POST['do_struct']),
				( isset($_POST['do_data']) ),
				false
				) . "\n";
			if ( !$result )
			{
				$db->_die();
			}
			echo $result;
		}
		$data = ob_get_contents();
		ob_end_clean();
		if(defined('SQL_BACKUP_CRYPT'))
		{
			// Free some memory, we don't need this stuff any more
			$db->close();
			unset($paths, $db, $template, $plugins);
			$tea = new TEACrypt();
			$data = $tea->encrypt($data, $session->private_key);
		}
		header('Content-disposition: attachment; filename='.$filename.'');
		header('Content-type: application/octet-stream');
		header('Content-length: '.strlen($data));
		echo $data;
		exit;
	}
	else
	{
		// Show the UI
		echo '<form action="'.makeUrlNS('Admin', 'DBBackup', 'submitting=yes', true).'" method="post" enctype="multipart/form-data">';
		?>
		<p><?php echo $lang->get('acpdb_intro'); ?></p>
		<p><label><input type="checkbox" name="do_system_tables" checked="checked" /> <?php echo $lang->get('acpdb_lbl_system_tables'); ?></label><p>
		<p><?php echo $lang->get('acpdb_lbl_additional_tables'); ?></p>
		<p><select name="additional_tables[]" multiple="multiple">
 			<?php
 				if ( ENANO_DBLAYER == 'MYSQL' )
 				{
 					$q = $db->sql_query('SHOW TABLES;') or $db->_die('Somehow we were denied the request to get the list of tables.');
 				}
 				else if ( ENANO_DBLAYER == 'PGSQL' )
 				{
 					$q = $db->sql_query('SELECT relname FROM pg_stat_user_tables ORDER BY relname;') or $db->_die('Somehow we were denied the request to get the list of tables.');
 				}
 				while($row = $db->fetchrow_num())
 				{
 					if(!in_array($row[0], $system_table_list)) echo '<option value="'.$row[0].'">'.$row[0].'</option>';
 				}
 			?>
 			</select>
 			</p>
		<p><label><input type="checkbox" name="do_struct" checked="checked" /> <?php echo $lang->get('acpdb_lbl_include_structure'); ?></label><br />
 			<label><input type="checkbox" name="do_data"   checked="checked" /> <?php echo $lang->get('acpdb_lbl_include_data'); ?></label>
 			</p>
		<p><input type="submit" value="<?php echo $lang->get('acpdb_btn_create_backup'); ?>" /></p>
		<?php
		echo '</form>';
	}
}

/*
 * Admin:PageManager sources are in /plugins/admin/PageManager.php.
 */

/*
 * Admin:PageEditor sources are in /plugins/admin/PageEditor.php.
 */

/*
 * Admin:ThemeManager sources are in /plugins/admin/ThemeManager.php.
 */

/*
 * Admin:GroupManager sources are in /plugins/admin/GroupManager.php.
 */

function page_Admin_COPPA()
{
	global $db, $session, $paths, $template, $plugins; // Common objects
	global $lang;
	if ( $session->auth_level < USER_LEVEL_ADMIN || $session->user_level < USER_LEVEL_ADMIN )
	{
		$login_link = makeUrlNS('Special', 'Login/' . $paths->nslist['Special'] . 'Administration', 'level=' . USER_LEVEL_ADMIN, true);
		echo '<h3>' . $lang->get('adm_err_not_auth_title') . '</h3>';
		echo '<p>' . $lang->get('adm_err_not_auth_body', array( 'login_link' => $login_link )) . '</p>';
		return;
	}
	
	echo '<h2>' . $lang->get('acpcp_heading_main') . '</h2>';
	echo '<p>
					' . $lang->get('acpcp_intro') . '
				</p>';
	
	// Start form
	
	if ( isset($_POST['coppa_address']) )
	{
		// Saving changes
		$enable_coppa = ( isset($_POST['enable_coppa']) ) ? '1' : '0';
		setConfig('enable_coppa', $enable_coppa);
		
		$address = $_POST['coppa_address']; // RenderMan::preprocess_text($_POST['coppa_address'], true, false);
		setConfig('coppa_address', $address);
		
		echo '<div class="info-box">' . $lang->get('acpcp_msg_save_success') . '</div>';
	}
	
	acp_start_form();
	
	echo '<div class="tblholder">';
	echo '<table border="0" cellspacing="1" cellpadding="4">';
	echo '<tr>
					<th colspan="2">
						' . $lang->get('acpcp_th_form') . '
					</th>
				</tr>';
				
	echo '<tr>
					<td class="row1">
						' . $lang->get('acpcp_field_enable_title') . '
					</td>
					<td class="row2">
						<label><input type="checkbox" name="enable_coppa" ' . ( ( getConfig('enable_coppa') == '1' ) ? 'checked="checked"' : '' ) . ' /> ' . $lang->get('acpcp_field_enable') . '</label><br />
						<small>' . $lang->get('acpcp_field_enable_hint') . '</small>
					</td>
				</tr>';
				
	echo '<tr>
					<td class="row1">
						' . $lang->get('acpcp_field_address') . '<br />
						<small>' . $lang->get('acpcp_field_address_hint') . '</small>
					</td>
					<td class="row2">
						<textarea name="coppa_address" rows="7" cols="40">' . getConfig('coppa_address') . '</textarea>
					</td>
				</tr>';
				
	echo '<tr>
					<th colspan="2" class="subhead">
						<input type="submit" value="' . $lang->get('etc_save_changes') . '" />
					</th>
				</tr>';
				
	echo '</table>';
	
	echo '</form>';
	
}

function page_Admin_MassEmail()
{
	global $db, $session, $paths, $template, $plugins; // Common objects
	global $lang;
	if ( $session->auth_level < USER_LEVEL_ADMIN || $session->user_level < USER_LEVEL_ADMIN )
	{
		$login_link = makeUrlNS('Special', 'Login/' . $paths->nslist['Special'] . 'Administration', 'level=' . USER_LEVEL_ADMIN, true);
		echo '<h3>' . $lang->get('adm_err_not_auth_title') . '</h3>';
		echo '<p>' . $lang->get('adm_err_not_auth_body', array( 'login_link' => $login_link )) . '</p>';
		return;
	}
	
	global $enano_config;
	if ( isset($_POST['do_send']) && !defined('ENANO_DEMO_MODE') )
	{
		$use_smtp = getConfig('smtp_enabled') == '1';
		
		// init errors array
		$errors = array();
		
		//
		// Let's do some checking to make sure that mass mail functions
		// are working in win32 versions of php. (copied from phpBB)
		//
		if ( preg_match('/[c-z]:\\\.*/i', getenv('PATH')) && !$use_smtp)
		{
			$ini_val = ( @phpversion() >= '4.0.0' ) ? 'ini_get' : 'get_cfg_var';

			// We are running on windows, force delivery to use our smtp functions
			// since php's are broken by default
			$use_smtp = true;
			$enano_config['smtp_server'] = @$ini_val('SMTP');
		}
		
		$mail = new emailer( !empty($use_smtp) );
		
		// Validate subject/message body
		$subject = stripslashes(trim($_POST['subject']));
		$message = stripslashes(trim($_POST['message']));
		
		if ( empty($subject) )
			$errors[] = $lang->get('acpmm_err_need_subject');
		if ( empty($message) )
			$errors[] = $lang->get('acpmm_err_need_message');
		
		// Get list of members
		if ( !empty($_POST['userlist']) )
		{
			$userlist = str_replace(', ', ',', $_POST['userlist']);
			$userlist = explode(',', $userlist);
			foreach ( $userlist as $k => $u )
			{
				if ( $u == $session->username )
				{
					// Message is automatically sent to the sender
					unset($userlist[$k]);
				}
				else
				{
					$userlist[$k] = $db->escape($u);
				}
			}
			$userlist = 'WHERE username=\'' . implode('\' OR username=\'', $userlist) . '\'';
			
			$q = $db->sql_query('SELECT email FROM '.table_prefix.'users ' . $userlist . ';');
			if ( !$q )
				$db->_die();
			
			if ( $row = $db->fetchrow() )
			{
				do {
					$mail->cc($row['email']);
				} while ( $row = $db->fetchrow() );
			}
			
			$db->free_result();
			
		}
		else
		{
			// Sending to a usergroup
			
			$group_id = intval($_POST['group_id']);
			if ( $group_id < 1 )
			{
				$errors[] = 'Invalid group ID';
			}
			else
			{
				$q = $db->sql_query('SELECT u.email FROM '.table_prefix.'group_members AS g
 															LEFT JOIN '.table_prefix.'users AS u
 																ON (u.user_id=g.user_id)
 															WHERE g.group_id=' . $group_id . ';');
				if ( !$q )
					$db->_die();
				
				if ( $row = $db->fetchrow() )
				{
					do {
						$mail->cc($row['email']);
					} while ( $row = $db->fetchrow() );
				}
				
				$db->free_result();
			}
		}
		
		if ( empty($errors) )
		{
		
			$mail->from(getConfig('contact_email'));
			$mail->replyto(getConfig('contact_email'));
			$mail->set_subject($subject);
			$mail->email_address(getConfig('contact_email'));
			
			// Copied/modified from phpBB
			$email_headers = 'X-AntiAbuse: Website server name - ' . $_SERVER['SERVER_NAME'] . "\n";
			$email_headers .= 'X-AntiAbuse: User_id - ' . $session->user_id . "\n";
			$email_headers .= 'X-AntiAbuse: Username - ' . $session->username . "\n";
			$email_headers .= 'X-AntiAbuse: User IP - ' . $_SERVER['REMOTE_ADDR'] . "\n";
			
			$mail->extra_headers($email_headers);
			
			// FIXME: how to handle l10n with this?
			$tpl = 'The following message was mass-mailed by {SENDER}, one of the administrators from {SITE_NAME}. If this message contains spam or any comments which you find abusive or offensive, please contact the administration team at:
	
{CONTACT_EMAIL}

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
{MESSAGE}
';
	
			$mail->use_template($tpl);
			
			$mail->assign_vars(array(
					'SENDER' => $session->username,
					'SITE_NAME' => getConfig('site_name'),
					'CONTACT_EMAIL' => getConfig('contact_email'),
					'MESSAGE' => $message
				));
			
			//echo '<pre>'.print_r($mail,true).'</pre>';
			
			// All done
			$mail->send();
			$mail->reset();
			
			echo '<div class="info-box">' . $lang->get('acpmm_msg_send_success') . '</div>';
			
		}
		else
		{
			echo '<div class="warning-box">' . $lang->get('acpmm_err_send_fail') . '<ul><li>' . implode('</li><li>', $errors) . '</li></ul></div>';
		}
		
	}
	else if ( isset($_POST['do_send']) && defined('ENANO_DEMO_MODE') )
	{
		echo '<div class="error-box">' . $lang->get('acpmm_err_demo') . '</div>';
	}
	acp_start_form();
	?>
	<div class="tblholder">
		<table border="0" cellspacing="1" cellpadding="4">
			<tr>
				<th colspan="2"><?php echo $lang->get('acpmm_heading_main'); ?></th>
			</tr>
			<tr>
				<td class="row2" rowspan="2" style="width: 30%; min-width: 200px;">
					<?php echo $lang->get('acpmm_field_group_to'); ?><br />
					<small>
						<?php echo $lang->get('acpmm_field_group_to_hint'); ?>
					</small>
				</td>
				<td class="row1">
					<select name="group_id">
						<?php
						$q = $db->sql_query('SELECT group_name,group_id FROM '.table_prefix.'groups ORDER BY group_name ASC;');
						if ( !$q )
							$db->_die();
						while ( $row = $db->fetchrow() )
						{
							list($g_name) = array_values($row);
							$g_name_langstr = 'groupcp_grp_' . strtolower($g_name);
							if ( ($g_langstr = $lang->get($g_name_langstr)) != $g_name_langstr )
							{
								$g_name = $g_langstr;
							}
							echo '<option value="' . $row['group_id'] . '">' . htmlspecialchars($g_name) . '</option>';
						}
						?>
					</select>
				</td>
			</tr>
			<tr>
				<td class="row1">
					<?php echo $lang->get('acpmm_field_username'); ?> <input type="text" name="userlist" size="50" />
				</td>
			</tr>
			<tr>
				<td class="row2" style="width: 30%; min-width: 200px;">
					<?php echo $lang->get('acpmm_field_subject'); ?>
				</td>
				<td class="row1">
					<input name="subject" type="text" size="50" />
				</td>
			</tr>
			<tr>
				<td class="row2"  style="width: 30%; min-width: 200px;">
					<?php echo $lang->get('acpmm_field_message'); ?>
				</td>
				<td class="row1">
					<textarea name="message" rows="30" cols="60" style="width: 100%;"></textarea>
				</td>
			</tr>
			<tr>
				<th class="subhead" colspan="2" style="text-align: left;" valign="middle">
					<div style="float: right;"><input type="submit" name="do_send" value="<?php echo $lang->get('acpmm_btn_send'); ?>" /></div>
					<small style="font-weight: normal;"><?php echo $lang->get('acpmm_msg_send_takeawhile'); ?></small>
				</th>
			</tr>
			
		</table>
	</div>
	<?php
	echo '</form>';
}

function page_Admin_BanControl()
{
	global $db, $session, $paths, $template, $plugins; // Common objects
	global $lang;
	if ( $session->auth_level < USER_LEVEL_ADMIN || $session->user_level < USER_LEVEL_ADMIN )
	{
		$login_link = makeUrlNS('Special', 'Login/' . $paths->nslist['Special'] . 'Administration', 'level=' . USER_LEVEL_ADMIN, true);
		echo '<h3>' . $lang->get('adm_err_not_auth_title') . '</h3>';
		echo '<p>' . $lang->get('adm_err_not_auth_body', array( 'login_link' => $login_link )) . '</p>';
		return;
	}
	
	if(isset($_GET['action']) && $_GET['action'] == 'delete' && isset($_GET['id']) && $_GET['id'] != '')
	{
		$e = $db->sql_query('DELETE FROM '.table_prefix.'banlist WHERE ban_id=' . intval($_GET['id']) . '');
		if ( !$e )
			$db->_die('The ban list entry was not deleted.');
	}
	if(isset($_POST['create']) && !defined('ENANO_DEMO_MODE'))
	{
		$type = intval($_POST['type']);
		$value = trim($_POST['value']);
		if ( !in_array($type, array(BAN_IP, BAN_USER, BAN_EMAIL)) )
		{
			echo '<div class="error-box">Hacking attempt.</div>';
		}
		else if ( empty($value) )
		{
			echo '<div class="error-box">' . $lang->get('acpbc_err_empty') . '</div>';
		}
		else
		{
			$entries = array();
			$input = explode(',', $_POST['value']);
			$error = false;
			foreach ( $input as $entry )
			{
				$entry = trim($entry);
				if ( empty($entry) )
				{
					echo '<div class="error-box">' . $lang->get('acpbc_err_invalid_ip_range') . '</div>';
					$error = true;
					break;
				}
				if ( $type == BAN_IP )
				{
					if ( !isset($_POST['regex']) )
					{
						// as of 1.0.2 parsing is done at runtime
						$entries[] = $entry;
					}
					else
					{
						$entries[] = $entry;
					}
				}
				else
				{
					$entries[] = $entry;
				}
			}
			if ( !$error )
			{
				$regex = ( isset($_POST['regex']) ) ? '1' : '0';
				$to_insert = array();                                                         
				$reason = $db->escape($_POST['reason']);
				foreach ( $entries as $entry )
				{
					$entry = $db->escape($entry);
					$to_insert[] = "($type, '$entry', '$reason', $regex)";
				}
				$q = 'INSERT INTO '.table_prefix."banlist(ban_type, ban_value, reason, is_regex)\n  VALUES" . implode(",\n  ", $to_insert) . ';';
				@set_time_limit(0);
				$e = $db->sql_query($q);
				if(!$e) $db->_die('The banlist could not be updated.');
			}
		}
	}
	else if ( isset($_POST['create']) && defined('ENANO_DEMO_MODE') )
	{
		echo '<div class="error-box">' . $lang->get('acpbc_err_demo', array('ban_target' => htmlspecialchars($_POST['value']))) . '</div>';
	}
	$q = $db->sql_query('SELECT ban_id,ban_type,ban_value,is_regex FROM '.table_prefix.'banlist ORDER BY ban_type;');
	if ( !$q )
		$db->_die('The banlist data could not be selected.');
	echo '<div class="tblholder" style="max-height: 800px; clip: rect(0px,auto,auto,0px); overflow: auto;">
					<table border="0" cellspacing="1" cellpadding="4">';
	echo '<tr>
					<th>' . $lang->get('acpbc_col_type') . '</th>
					<th>' . $lang->get('acpbc_col_value') . '</th>
					<th>' . $lang->get('acpbc_col_regex') . '</th>
					<th></th>
				</tr>';
	if ( $db->numrows() < 1 )
	{
		echo '<td class="row1" colspan="4">' . $lang->get('acpbc_msg_no_rules') . '</td>';
	}
	$cls = 'row2';
	while ( $r = $db->fetchrow() )
	{
		$cls = ( $cls == 'row1' ) ? 'row2' : 'row1';
		if ( $r['ban_type'] == BAN_IP )
			$t = $lang->get('acpbc_ban_type_ip');
		else if ( $r['ban_type'] == BAN_USER )
			$t = $lang->get('acpbc_ban_type_username');
		else if ( $r['ban_type'] == BAN_EMAIL )
			$t = $lang->get('acpbc_ban_type_email');
		$g = ( $r['is_regex'] ) ? '<b>' . $lang->get('acpbc_ban_regex_yes') . '</b>' : $lang->get('acpbc_ban_regex_no');
		echo '<tr>
						<td class="'.$cls.'">'.$t.'</td>
						<td class="'.$cls.'">'.htmlspecialchars($r['ban_value']).'</td>
						<td class="'.$cls.'">'.$g.'</td>
						<td class="'.$cls.'"><a href="'.makeUrlNS('Special', 'Administration', 'module='.$paths->nslist['Admin'].'BanControl&amp;action=delete&amp;id='.$r['ban_id']).'">' . $lang->get('acpbc_btn_delete') . '</a></td>
					</tr>';
	}
	$db->free_result();
	echo '</table></div>';
	echo '<h3>' . $lang->get('acpbc_heading_create_new') . '</h3>';
	acp_start_form();
	?>
	
	<?php echo $lang->get('acpbc_field_type'); ?>
		<select name="type">
			<option value="<?php echo BAN_IP; ?>"><?php echo $lang->get('acpbc_ban_type_ip'); ?></option>
			<option value="<?php echo BAN_USER; ?>"><?php echo $lang->get('acpbc_ban_type_username'); ?></option>
			<option value="<?php echo BAN_EMAIL; ?>"><?php echo $lang->get('acpbc_ban_type_email'); ?></option>
		</select>
		<br />
		
	<?php echo $lang->get('acpbc_field_rule'); ?>
		<input type="text" name="value" size="30" /><br />
		<small><?php echo $lang->get('acpbc_field_rule_hint'); ?></small><br />
		
	<?php echo $lang->get('acpbc_field_reason'); ?>
		<textarea name="reason" rows="7" cols="40"></textarea><br />
		
	<label><input type="checkbox" name="regex" id="regex" /> <?php echo $lang->get('acpbc_field_regex'); ?></label>
		<?php echo $lang->get('acpbc_field_regex_hint'); ?><br />
		
	<input type="submit" style="font-weight: bold;" name="create" value="<?php echo $lang->get('acpbc_btn_create'); ?>" />
	<?php
	echo '</form>';
}

function page_Admin_AdminLogout()
{
	global $db, $session, $paths, $template, $plugins; // Common objects
	global $lang;
	if ( $session->auth_level < USER_LEVEL_ADMIN || $session->user_level < USER_LEVEL_ADMIN )
	{
		$login_link = makeUrlNS('Special', 'Login/' . $paths->nslist['Special'] . 'Administration', 'level=' . USER_LEVEL_ADMIN, true);
		echo '<h3>' . $lang->get('adm_err_not_auth_title') . '</h3>';
		echo '<p>' . $lang->get('adm_err_not_auth_body', array( 'login_link' => $login_link )) . '</p>';
		return;
	}
	
	$session->logout(USER_LEVEL_ADMIN);
	echo '<h3>' . $lang->get('acplo_heading_main') . '</h3>
 				<p>' . $lang->get('acplo_msg_logout_complete', array('mainpage_link' => makeUrl(get_main_page()))) . '</p>';
}

function page_Special_Administration()
{
	global $db, $session, $paths, $template, $plugins; // Common objects
	global $lang;
	global $output;
	
	if ( $session->auth_level < USER_LEVEL_ADMIN )
	{
		$query_string = 'level=' . USER_LEVEL_ADMIN;
		if ( !empty($_SERVER['QUERY_STRING']) )
		{
			$query_string .= '&' . trim(preg_replace('/(?:&|^)title=.+?(?:&|$)/', '&', $_SERVER['QUERY_STRING']), '&');
		}
		redirect(makeUrlNS('Special', 'Login/'.$paths->page, $query_string), 'Not authorized', 'You need an authorization level of '.USER_LEVEL_ADMIN.' to use this page, your auth level is: ' . $session->auth_level, 0);
		exit;
	}
	else
	{
		$template->set_theme('admin', 'default');
		$template->preload_js('fat');
		$template->preload_js('ajax');
		$template->preload_js('l10n');
		$template->preload_js('jquery');
		$template->preload_js('jquery-ui');
		$template->preload_js('autofill');
		$template->preload_js('admin-menu');
		$template->add_header('<script type="text/javascript" src="'.cdnPath.'/includes/clientside/sbedit.js"></script>');
		
		$output->header();
		
		echo $lang->get('adm_page_tagline');
		?>
		<script type="text/javascript">
		function ajaxPage(t, qs)
		{
			if ( KILL_SWITCH )
			{
				document.getElementById('ajaxPageContainer').innerHTML = '<div class="error-box">Because of the lack of AJAX support, support for Internet Explorer versions less than 6.0 has been disabled in Runt. You can download and use Mozilla Firefox (or Seamonkey under Windows 95); both have an up-to-date standards-compliant rendering engine that has been tested thoroughly with Enano.</div>';
				return false;
			}
			if ( t == namespace_list.Admin + 'AdminLogout' )
			{
				load_component('messagebox');
				miniPromptMessage({
						title: $lang.get('user_logout_confirm_title_elev'),
						message: $lang.get('user_logout_confirm_body_elev'),
						buttons: [
							{
								text: $lang.get('user_logout_confirm_btn_logout'),
								color: 'red',
								style: {
									fontWeight: 'bold'
								},
								onclick: function()
								{
									var tigraentry = document.getElementById('i_div0_0').parentNode;
									var tigraobj = $dynano(tigraentry);
									var div = document.createElement('div');
									div.style.backgroundColor = '#FFFFFF';
									domObjChangeOpac(70, div);
									div.style.position = 'absolute';
									var top = tigraobj.Top();
									var left = tigraobj.Left();
									var width = tigraobj.Width();
									var height = tigraobj.Height();
									div.style.top = top + 'px';
									div.style.left = left + 'px';
									div.style.width = width + 'px';
									div.style.height = height + 'px';
									var body = document.getElementsByTagName('body')[0];
									miniPromptDestroy(this);
									body.appendChild(div);
									ajaxPageBin(namespace_list.Admin + 'AdminLogout');
								}
							},
							{
								text: $lang.get('etc_cancel'),
								onclick: function()
								{
									miniPromptDestroy(this);
								}
							}
						]
					});
				return;
			}
			ajaxPageBin(t, qs);
		}
		function ajaxPageBin(t, qs)
		{
			if ( KILL_SWITCH )
			{
				document.getElementById('ajaxPageContainer').innerHTML = '<div class="error-box">Because of the lack of AJAX support, support for Internet Explorer versions less than 6.0 has been disabled in Runt. You can download and use Mozilla Firefox (or Seamonkey under Windows 95); both have an up-to-date standards-compliant rendering engine that has been tested thoroughly with Enano.</div>';
				return false;
			}
			document.getElementById('ajaxPageContainer').innerHTML = '<div class="wait-box">Loading page...</div>';
			qs = qs ? '&' + qs : '';
			ajaxGet(makeUrl(t, 'noheaders' + qs), function(ajax)
				{
					if ( ajax.readyState == 4 && ajax.status == 200 )
					{
						var response = String(ajax.responseText + '');
						if ( check_json_response(response) )
						{
							response = parseJSON(response);
							if ( response.mode == 'error' )
							{
								if ( response.error == 'need_auth_to_admin' )
								{
									load_component('login');
									ajaxDynamicReauth(t);
								}
								else
								{
									alert(response.error);
								}
							}
						}
						else
						{
							document.getElementById('ajaxPageContainer').innerHTML = ajax.responseText;
							fadeInfoBoxes();
							autofill_onload();
							admin_table_onload(t);
							// allow JS hooks
							eval(setHook('admin_page_onload'));
						}
					}
				});
		}
		<?php
		if ( !isset($_GET['module']) )
		{
			echo <<<EOF
		var _enanoAdminOnload = function() { ajaxPage('{$paths->nslist['Admin']}Home'); };
		addOnloadHook(_enanoAdminOnload);
		
EOF;
		}
		?>
		var TREE_TPL = {
			'target'  : '_self',  // name of the frame links will be opened in
									// other possible values are: _blank, _parent, _search, _self and _top
		
			'icon_e'  : '<?php echo cdnPath; ?>/images/icons/empty.gif',      // empty image
			'icon_l'  : '<?php echo cdnPath; ?>/images/icons/line.gif',       // vertical line
			'icon_32' : '<?php echo cdnPath; ?>/images/spacer.gif',           // root leaf icon normal
			'icon_36' : '<?php echo cdnPath; ?>/images/spacer.gif',           // root leaf icon selected
			'icon_48' : '<?php echo cdnPath; ?>/images/spacer.gif',           // root icon normal
			'icon_52' : '<?php echo cdnPath; ?>/images/spacer.gif',           // root icon selected
			'icon_56' : '<?php echo cdnPath; ?>/images/spacer.gif',           // root icon opened
			'icon_60' : '<?php echo cdnPath; ?>/images/spacer.gif',           // root icon selected
			'icon_16' : '<?php echo cdnPath; ?>/images/spacer.gif',           // node icon normal
			'icon_20' : '<?php echo cdnPath; ?>/images/spacer.gif',           // node icon selected
			'icon_24' : '<?php echo cdnPath; ?>/images/spacer.gif',           // node icon opened
			'icon_28' : '<?php echo cdnPath; ?>/images/spacer.gif',           // node icon selected opened
			'icon_0'  : '<?php echo cdnPath; ?>/images/icons/page.gif',       // leaf icon normal
			'icon_4'  : '<?php echo cdnPath; ?>/images/icons/page.gif',       // leaf icon selected
			'icon_8'  : '<?php echo cdnPath; ?>/images/icons/page.gif',       // leaf icon opened
			'icon_12' : '<?php echo cdnPath; ?>/images/icons/page.gif',       // leaf icon selected
			'icon_2'  : '<?php echo cdnPath; ?>/images/icons/joinbottom.gif', // junction for leaf
			'icon_3'  : '<?php echo cdnPath; ?>/images/icons/join.gif',       // junction for last leaf
			'icon_18' : '<?php echo cdnPath; ?>/images/icons/plusbottom.gif', // junction for closed node
			'icon_19' : '<?php echo cdnPath; ?>/images/icons/plus.gif',       // junction for last closed node
			'icon_26' : '<?php echo cdnPath; ?>/images/icons/minusbottom.gif',// junction for opened node
			'icon_27' : '<?php echo cdnPath; ?>/images/icons/minus.gif'       // junction for last opended node
		};
		
		<?php
		echo $paths->parseAdminTree(); // Make a Javascript array that defines the tree
		?>
		
		addOnloadHook(function()
			{
				new tree(TREE_ITEMS, TREE_TPL, 'admin_tree');
				keepalive_onload();
			});
		</script>
		<table border="0" width="100%">
			<tr>
				<td class="holder" valign="top">
					<div class="pad" style="padding-right: 20px;" id="admin_tree">
					</div>
				</td>
				<td width="100%" valign="top">
					<div class="pad" id="ajaxPageContainer">
					<?php
					if ( isset($_GET['module']) ) 
					{
						list($module) = explode('/', $_GET['module']);
						list($page_id, $namespace) = RenderMan::strToPageID($module);
						if ( $namespace != 'Admin' )
						{
							echo '<div class="error-box">Module must be in the Admin namespace</div>';
						}
						else
						{
							$paths->fullpage = $_GET['module'];
							$paths->cpage['module'] = $_GET['module'];
							$page = new PageProcessor($page_id, $namespace);
							$page->send_headers = false;
							$page->send();
							$paths->fullpage = $paths->page;
						}
					} 
					else 
					{
						echo '<script type="text/javascript">document.write(\'<div class="wait-box">Please wait while the administration panel loads. You need to be using a recent browser with AJAX support in order to use Runt.</div>\');</script><noscript><div class="error-box">It looks like Javascript isn\'t enabled in your browser. Please enable Javascript or use a different browser to continue.</div></noscript>';
					}
					?>
					</div>
					<script type="text/javascript">
						addOnloadHook(function()
							{
								if ( KILL_SWITCH )
								{
									document.getElementById('ajaxPageContainer').innerHTML = '<div class="error-box">Because of the lack of AJAX support, support for Internet Explorer versions less than 6.0 has been disabled in Runt. You can download and use Mozilla Firefox (or Seamonkey under Windows 95); both have an up-to-date standards-compliant rendering engine that has been tested thoroughly with Enano.</div>';
								}
							}
						);
				</script>
				</td>
			</tr>
		</table>
	
		<?php
		$output->footer();
	}
}

function page_Admin_EditSidebar()
{
	global $db, $session, $paths, $template, $plugins; // Common objects
	global $lang;
	global $cache;
	
	if ( $session->auth_level < USER_LEVEL_ADMIN || $session->user_level < USER_LEVEL_ADMIN )
	{
		$login_link = makeUrlNS('Special', 'Login/' . $paths->nslist['Special'] . 'Administration', 'level=' . USER_LEVEL_ADMIN, true);
		echo '<h3>' . $lang->get('adm_err_not_auth_title') . '</h3>';
		echo '<p>' . $lang->get('adm_err_not_auth_body', array( 'login_link' => $login_link )) . '</p>';
		return;
	}
	
	if ( isset($_GET['update_order']) )
	{
		header('Content-type: text/javascript');
		$order = @$_POST['order'];
		try
		{
			$order = enano_json_decode($order);
		}
		catch ( Zend_Json_Exception $e )
		{
			return print enano_json_encode(array(
					'mode' => 'error',
					'error' => 'bad order'
				));
		}
		
		foreach ( $order as $sidebar_id => $blocks )
		{
			foreach ( $blocks as $order => $block_id )
			{
				$sbid = intval($sidebar_id);
				$order = intval($order);
				$block_id = intval($block_id);
				$q = $db->sql_query('UPDATE ' . table_prefix . "sidebar SET sidebar_id = $sbid, item_order = $order WHERE item_id = $block_id;");
				if ( !$q )
					$db->die_json();
			}
		}
		
		return print enano_json_encode(array(
				'mode' => 'success'
			));
	}
	
	// $template->preload_js(array('l10n', 'jquery', 'jquery-ui'));
	// $template->add_header('<script type="text/javascript" src="'.cdnPath.'/includes/clientside/sbedit.js"></script>');
	
	// $template->header();
	
	if(isset($_POST['save']))
	{
		// Write the new block order to the database
		// The only way to do this is with tons of queries (one per block + one select query at the start to count everything) but afaik its safe...
		// Anyone know a better way to do this?
		$q = $db->sql_query('SELECT item_order,item_id,sidebar_id FROM '.table_prefix.'sidebar ORDER BY sidebar_id ASC, item_order ASC;');
		if ( !$q )
		{
			$db->_die('The sidebar order data could not be selected.');
		}
		$orders = Array();
		while($row = $db->fetchrow())
		{
			$orders[] = Array(
					count($orders),
					$row['item_id'],
					$row['sidebar_id'],
				);
		}
		$db->free_result();
		
		// We now have an array with each sidebar ID in its respective order. Explode the order string in $_POST['order_(left|right)'] and use it to build a set of queries.
		$ol = explode(',', $_POST['order_left']);
		$odr = explode(',', $_POST['order_right']);
		$om = array_merge($ol, $odr);
		unset($ol, $odr);
		$queries = Array();
		foreach($orders as $k => $v)
		{
			$queries[] = 'UPDATE '.table_prefix.'sidebar SET item_order='.intval($om[$k]).' WHERE item_id='.intval($v[1]).';';
		}
		foreach($queries as $sql)
		{
			$q = $db->sql_query($sql);
			if(!$q)
			{
				$t = $db->get_error();
				echo $t;
				
				exit;
			}
		}
		$cache->purge('anon_sidebar');
		echo '<div class="info-box" style="margin: 10px 0;">' . $lang->get('sbedit_msg_order_update_success') . '</div>';
	}
	elseif(isset($_POST['create']))
	{
		switch((int)$_POST['type'])
		{
			case BLOCK_WIKIFORMAT:
				$content = $_POST['wikiformat_content'];
				break;
			case BLOCK_TEMPLATEFORMAT:
				$content = $_POST['templateformat_content'];
				break;
			case BLOCK_HTML:
				$content = $_POST['html_content'];
				break;
			case BLOCK_PHP:
				$content = $_POST['php_content'];
				break;
			case BLOCK_PLUGIN:
				$content = $_POST['plugin_id'];
				break;
		}
		
		if ( defined('ENANO_DEMO_MODE') )
		{
			// Sanitize the HTML
			$content = sanitize_html($content, true);
		}
		
		if ( defined('ENANO_DEMO_MODE') && intval($_POST['type']) == BLOCK_PHP )
		{
			echo '<div class="error-box" style="margin: 10px 0 10px 0;">' . $lang->get('sbedit_err_demo_php_disable') . '</div>';
			$_POST['php_content'] = '?>&lt;Nulled&gt;';
			$content = $_POST['php_content'];
		}
		
		// Get the value of item_order
		
		$q = $db->sql_query('SELECT * FROM '.table_prefix.'sidebar WHERE sidebar_id='.intval($_POST['sidebar_id']).';');
		if(!$q) $db->_die('The order number could not be selected');
		$io = $db->numrows();
		
		$db->free_result();
		
		$q = 'INSERT INTO '.table_prefix.'sidebar(block_name, block_type, sidebar_id, block_content, item_order) VALUES ( \''.$db->escape($_POST['title']).'\', \''.$db->escape($_POST['type']).'\', \''.$db->escape($_POST['sidebar_id']).'\', \''.$db->escape($content).'\', '.$io.' );';
		$result = $db->sql_query($q);
		if(!$result)
		{
			echo $db->get_error();
			
			exit;
		}
	
		$cache->purge('anon_sidebar');
		echo '<div class="info-box" style="margin: 10px 0;">' . $lang->get('sbedit_msg_item_added') . '</div>';
		
	}
	
	if(isset($_GET['action']) && isset($_GET['id']))
	{
		if(!preg_match('#^([0-9]*)$#', $_GET['id']))
		{
			echo '<div class="warning-box">Error with action: $_GET["id"] was not an integer, aborting to prevent SQL injection</div>';
		}
		switch($_GET['action'])
		{
			case 'new':
				
				// template needs to be initialized for this
				$template->init_vars();
				
				?>
				
				<?php acp_start_form(); ?>
				
					<p>
						<?php echo $lang->get('sbedit_create_intro'); ?>
					</p>
					<p>
						<select name="type" onchange="setType(this)" id="sbedit_create_select_type"> <?php /* (NOT WORKING, at least in firefox 2) onload="var thingy = this; setTimeout('setType(thingy)', 500);" */ ?>
							<option value="<?php echo BLOCK_WIKIFORMAT; ?>"><?php echo $lang->get('sbedit_block_type_wiki'); ?></option>
							<option value="<?php echo BLOCK_TEMPLATEFORMAT; ?>"><?php echo $lang->get('sbedit_block_type_tpl'); ?></option>
							<option value="<?php echo BLOCK_HTML; ?>"><?php echo $lang->get('sbedit_block_type_html'); ?></option>
							<option value="<?php echo BLOCK_PHP; ?>"><?php echo $lang->get('sbedit_block_type_php'); ?></option>
							<option value="<?php echo BLOCK_PLUGIN; ?>"><?php echo $lang->get('sbedit_block_type_plugin'); ?></option>
						</select>
					</p>
					
					<p>
					
						<?php echo $lang->get('sbedit_field_block_title'); ?> <input name="title" type="text" size="40" /><br />
						<?php echo $lang->get('sbedit_field_block_sidebar'); ?>
							<select name="sidebar_id">
								<option value="<?php echo SIDEBAR_LEFT; ?>"><?php echo $lang->get('sbedit_field_block_sidebar_left'); ?></option>
								<option value="<?php echo SIDEBAR_RIGHT; ?>"><?php echo $lang->get('sbedit_field_block_sidebar_right'); ?></option>
							</select>
					
					</p>
					
					<div class="sbadd_block" id="blocktype_<?php echo BLOCK_WIKIFORMAT; ?>">
						<?php echo $lang->get('sbedit_field_wikitext'); ?>
						<p>
							<textarea style="width: 98%;" name="wikiformat_content" rows="15" cols="50"></textarea>
						</p>
					</div>
					
					<div class="sbadd_block" id="blocktype_<?php echo BLOCK_TEMPLATEFORMAT; ?>">
						<?php echo $lang->get('sbedit_field_tplcode'); ?>
						<p>
							<textarea style="width: 98%;" name="templateformat_content" rows="15" cols="50"></textarea>
						</p>
					</div>
					
					<div class="sbadd_block" id="blocktype_<?php echo BLOCK_HTML; ?>">
						<?php echo $lang->get('sbedit_field_html'); ?>
						<p>
							<textarea style="width: 98%;" name="html_content" rows="15" cols="50"></textarea>
						</p>
					</div>
					
					<div class="sbadd_block" id="blocktype_<?php echo BLOCK_PHP; ?>">
						<?php if ( defined('ENANO_DEMO_MODE') ) { ?>
							<p><?php echo $lang->get('sbedit_field_php_disabled'); ?></p>
						<?php } else { ?>
						<?php echo $lang->get('sbedit_field_php'); ?>
						
						<p>
							<textarea style="width: 98%;" name="php_content" rows="15" cols="50"></textarea>
						</p>
						<?php } ?>
					</div>
					
					<div class="sbadd_block" id="blocktype_<?php echo BLOCK_PLUGIN; ?>">
						<?php echo $lang->get('sbedit_field_plugin'); ?>
						<p>
							<select name="plugin_id">
							<?php
								foreach($template->plugin_blocks as $k => $c)
								{
									echo '<option value="'.$k.'">'.$lang->get($k).'</option>';
								}
							?>
							</select>
						</p>
					</div>
					
					<p>
					
						<input type="submit" name="create" value="<?php echo $lang->get('sbedit_btn_create_block'); ?>" style="font-weight: bold;" />&nbsp;
						<input type="submit" name="cancel" value="<?php echo $lang->get('etc_cancel'); ?>" />
					
					</p>
					
				</form>
				
				<script type="text/javascript">
					addOnloadHook(function()
						{
							var divs = getElementsByClassName(document, 'div', 'sbadd_block');
							for(var i in divs)
							{
								if(divs[i].id != 'blocktype_<?php echo BLOCK_WIKIFORMAT; ?>') setTimeout("document.getElementById('"+divs[i].id+"').style.display = 'none';", 500);
							}
						});
				</script>
				
				<?php
				
				return;
				break;
			case 'move':
				$cache->purge('anon_sidebar');
				if( !isset($_GET['side']) || ( isset($_GET['side']) && !preg_match('#^([0-9]+)$#', $_GET['side']) ) )
				{
					echo '<div class="warning-box" style="margin: 10px 0;">$_GET[\'side\'] contained an SQL injection attempt</div>';
					break;
				}
				$query = $db->sql_query('UPDATE '.table_prefix.'sidebar SET sidebar_id=' . $db->escape($_GET['side']) . ' WHERE item_id=' . intval($_GET['id']) . ';');
				if(!$query)
				{
					echo $db->get_error();
					
					exit;
				}
				echo '<div class="info-box" style="margin: 10px 0;">' . $lang->get('sbedit_msg_block_moved') . '</div>';
				break;
			case 'delete':
				$query = $db->sql_query('DELETE FROM '.table_prefix.'sidebar WHERE item_id=' . intval($_GET['id']) . ';'); // Already checked for injection attempts ;-)
				if(!$query)
				{
					echo $db->get_error();
					
					exit;
				}
				$cache->purge('anon_sidebar');
				if(isset($_GET['ajax']))
				{
					die('GOOD');
				}
				echo '<div class="error-box" style="margin: 10px 0;">' . $lang->get('sbedit_msg_block_deleted') . '</div>';
				break;
			case 'disenable';
				$q = $db->sql_query('SELECT item_enabled FROM '.table_prefix.'sidebar WHERE item_id=' . intval($_GET['id']) . ';');
				if(!$q)
				{
					echo $db->get_error();
					
					exit;
				}
				$r = $db->fetchrow();
				$db->free_result();
				$e = ( $r['item_enabled'] == 1 ) ? '0' : '1';
				$q = $db->sql_query('UPDATE '.table_prefix.'sidebar SET item_enabled='.$e.' WHERE item_id=' . intval($_GET['id']) . ';');
				if(!$q)
				{
					echo $db->get_error();
					
					exit;
				}
				if(isset($_GET['ajax']))
				{
					die('GOOD');
				}
				break;
			case 'rename';
				$newname = $db->escape($_POST['newname']);
				$q = $db->sql_query('UPDATE '.table_prefix.'sidebar SET block_name=\''.$newname.'\' WHERE item_id=' . intval($_GET['id']) . ';');
				if(!$q)
				{
					echo $db->get_error();
					
					exit;
				}
				if(isset($_GET['ajax']))
				{
					die('GOOD');
				}
				break;
			case 'getsource':
				$q = $db->sql_query('SELECT block_content,block_type FROM '.table_prefix.'sidebar WHERE item_id=' . intval($_GET['id']) . ';');
				if(!$q)
				{
					echo $db->get_error();
					
					exit;
				}
				$r = $db->fetchrow();
				$db->free_result();
				$cache->purge('anon_sidebar');
				
				if($r['block_type'] == BLOCK_PLUGIN) die('HOUSTON_WE_HAVE_A_PLUGIN');
				die($r['block_content']);
				break;
			case 'save':
				if ( defined('ENANO_DEMO_MODE') )
				{
					$q = $db->sql_query('SELECT block_type FROM '.table_prefix.'sidebar WHERE item_id=' . intval($_GET['id']) . ';');
					if(!$q)
					{
						echo 'var status=unescape(\''.hexencode($db->get_error()).'\');';
						exit;
					}
					$row = $db->fetchrow();
					if ( $row['block_type'] == BLOCK_PHP )
					{
						$_POST['content'] = '?>&lt;Nulled&gt;';
					}
					else
					{
						$_POST['content'] = sanitize_html($_POST['content'], true);
					}
				}
				$q = $db->sql_query('UPDATE '.table_prefix.'sidebar SET block_content=\''.$db->escape(rawurldecode($_POST['content'])).'\' WHERE item_id=' . intval($_GET['id']) . ';');
				if(!$q)
				{
					echo 'var status=unescape(\''.hexencode($db->get_error()).'\');';
					exit;
				}
				echo 'GOOD';
				return;
				
				break;
		}
	}
	
	?>
		<p>
			<?php echo $lang->get('sbedit_header_msg', array( 'create_link' => makeUrlNS('Admin', 'EditSidebar', 'action=new&id=0', true) )); ?>
		</p>
	<?php
	
	$q = $db->sql_query('SELECT item_id, sidebar_id, block_name, block_type, block_content, item_enabled FROM ' . table_prefix . "sidebar ORDER BY sidebar_id ASC, item_order ASC;");
	if ( !$q )
		$db->_die();
	
	$switched_to_right = false;
	
	echo '<table border="0" cellspacing="4" cellpadding="0"><tr><td class="sbedit-column">';
	while ( $row = $db->fetchrow() )
	{
		if ( $row['sidebar_id'] == SIDEBAR_RIGHT && !$switched_to_right )
		{
			echo '</td><td class="sbedit-column">';
			$switched_to_right = true;
		}
		$disabled_class = ( $row['item_enabled'] ) ? '' : ' disabled';
		echo '<div class="sbedit-block' . $disabled_class . '" id="block:' . $row['item_id'] . '">
						<div class="sbedit-handle">
							<span>' . htmlspecialchars($template->compile_template_text_post($row['block_name'])) . '</span>
							<input type="text" id="block_name:' . $row['item_id'] . '" value="' . htmlspecialchars($row['block_name']) . '" />
						</div>';
		?>
		<div class="sbedit-metainfo">
			<?php
			if ( !$template->theme )
				$template->load_theme('admin', 'default');
			
			$toolbarvars = $template->extract_vars('toolbar.tpl');
			$parser_start = $template->makeParserText($toolbarvars['toolbar_vert_start']);
			echo $parser_start->run();
			
			$button = $template->makeParserText($toolbarvars['toolbar_vert_button']);
			$label = $template->makeParserText($toolbarvars['toolbar_vert_label']);
			
			$type = '<b>';
			switch($row['block_type'])
			{
				case BLOCK_WIKIFORMAT: $type .= $lang->get('sbedit_block_type_wiki'); break;
				case BLOCK_TEMPLATEFORMAT: $type .= $lang->get('sbedit_block_type_tpl'); break;
				case BLOCK_HTML: $type .= $lang->get('sbedit_block_type_html'); break;
				case BLOCK_PHP: $type .= $lang->get('sbedit_block_type_php'); break;
				case BLOCK_PLUGIN: $type .= $lang->get('sbedit_block_type_plugin'); break;
				default: $type .= '$&#@'; break;
			}
			$type .= '</b>';
			if ( $row['block_type'] == BLOCK_PLUGIN )
			{
				$type .= ': ' . $lang->get($row['block_content']);
			}
			
			$label->assign_vars(array(
					'TITLE' => $type
				));
			echo $label->run();
			
			// edit
			if ( $row['block_type'] != BLOCK_PLUGIN )
			{
				$button->assign_vars(array(
						'TITLE' => $lang->get('sbedit_tip_edit'),
						'FLAGS' => 'href="#" onclick="sbedit_open_editor(this); return false;"',
						'IMAGE' => cdnPath . '/images/edit.png'
					));
				echo $button->run();
			}
			
			// delete
			$button->assign_vars(array(
					'TITLE' => $lang->get('sbedit_tip_delete'),
					'FLAGS' => 'href="#" onclick="sbedit_delete_block(this); return false;"',
					'IMAGE' => cdnPath . '/images/delete.png'
				));
			echo $button->run();
			
			// rename
			$button->assign_vars(array(
					'TITLE' => $lang->get('sbedit_tip_rename'),
					'FLAGS' => 'href="#" onclick="sbedit_rename_block(this); return false;"',
					'IMAGE' => cdnPath . '/images/rename.png'
				));
			echo $button->run();
			
			// disenable
			$button->assign_vars(array(
					'TITLE' => $lang->get('sbedit_tip_disenable'),
					'FLAGS' => 'href="#" onclick="sbedit_disenable_block(this); return false;"',
					'IMAGE' => cdnPath . '/images/disenable.png'
				));
			echo $button->run();
			
			$parser_end = $template->makeParserText($toolbarvars['toolbar_vert_end']);
			echo $parser_end->run();
			?>
		</div>
		<?php
		echo '</div>';
	}
	
	if ( !$switched_to_right )
		echo '</td><td class="sbedit-column">';
	
	echo '</td></tr></table>';
}