mirror of
https://github.com/e107inc/e107.git
synced 2025-01-18 21:18:04 +01:00
2471 lines
62 KiB
PHP
2471 lines
62 KiB
PHP
<?php
|
|
/*
|
|
* e107 website system
|
|
*
|
|
* Copyright (C) 2008-2013 e107 Inc (e107.org)
|
|
* Released under the terms and conditions of the
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
|
*
|
|
* Administration - Site Preferences
|
|
*
|
|
*/
|
|
require_once ("../class2.php");
|
|
|
|
if(isset($_POST['newver']))
|
|
{
|
|
header("location:http://e107.org/index.php");
|
|
exit();
|
|
}
|
|
|
|
if(! getperms("1"))
|
|
{
|
|
header("location:".e_BASE."index.php");
|
|
exit();
|
|
}
|
|
|
|
include_lan(e_LANGUAGEDIR.e_LANGUAGE.'/admin/lan_'.e_PAGE);
|
|
$e_sub_cat = 'prefs';
|
|
e107::lan('core','mailout','admin');
|
|
|
|
e107::js('inline',"
|
|
function disp(type)
|
|
{
|
|
if(type == 'smtp')
|
|
{
|
|
$('#smtp').show('slow');
|
|
$('#sendmail').hide('slow');
|
|
return;
|
|
}
|
|
|
|
if(type =='sendmail')
|
|
{
|
|
$('#smtp').hide('slow');
|
|
$('#sendmail').show('slow');
|
|
return;
|
|
}
|
|
|
|
$('#smtp').hide('slow');
|
|
$('#sendmail').hide('slow');
|
|
}
|
|
",'jquery');
|
|
|
|
|
|
require_once (e_ADMIN."auth.php");
|
|
|
|
$e_userclass = e107::getUserClass();
|
|
require_once (e_HANDLER."user_extended_class.php");
|
|
$ue = new e107_user_extended();
|
|
$core_pref = e107::getConfig();
|
|
|
|
if(!$core_pref->get('timezone'))
|
|
{
|
|
$core_pref->set('timezone', 'GMT');
|
|
}
|
|
|
|
$frm = e107::getForm(false, true); //enable inner tabindex counter
|
|
$mes = e107::getMessage();
|
|
$tp = e107::getParser();
|
|
|
|
/* RESET DISPLAY NAMES */
|
|
if(isset($_POST['submit_resetdisplaynames']))
|
|
{
|
|
e107::getDb()->db_Update('user', 'user_name=user_loginname');
|
|
$mes->addInfo(PRFLAN_157);
|
|
}
|
|
|
|
//echo '<pre>';
|
|
//var_dump($core_pref->getPref());
|
|
//echo '</pre>';
|
|
|
|
if (isset($_POST['testemail']))
|
|
{
|
|
sendTest();
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* UPDATE PREFERENCES */
|
|
if(isset($_POST['updateprefs']))
|
|
{
|
|
|
|
|
|
|
|
unset($_POST['updateprefs'], $_POST['sitelanguage']);
|
|
|
|
|
|
|
|
$_POST['cookie_name'] = str_replace(array(" ", "."), "_", $_POST['cookie_name']);
|
|
$_POST['cookie_name'] = preg_replace("#[^a-zA-Z0-9_]#", "", $_POST['cookie_name']);
|
|
|
|
$_POST['siteurl'] = trim($_POST['siteurl']) ? trim($_POST['siteurl']) : SITEURL;
|
|
$_POST['siteurl'] = substr($_POST['siteurl'], - 1) == "/" ? $_POST['siteurl'] : $_POST['siteurl']."/";
|
|
|
|
// If email verification or Email/Password Login Method - email address is required!
|
|
if (($_POST['user_reg_veri'] == 1 || $_POST['allowEmailLogin'] == 1) && $_POST['disable_emailcheck'])
|
|
{
|
|
$_POST['disable_emailcheck'] = 0;
|
|
$mes->addError(PRFLAN_211);
|
|
}
|
|
|
|
// Table of range checking values - min and max for numerics. Only do the important ones
|
|
$pref_limits = array('loginname_maxlength' => array('min' => 10, 'max' => 100, 'default' => 30),
|
|
'displayname_maxlength' => array('min' => 5, 'max' => 100, 'default' => 15),
|
|
'antiflood_timeout' => array('min' => 3, 'max' => 300, 'default' => 10),
|
|
'signup_pass_len' => array('min' => 2, 'max' => 100, 'default' => 4)
|
|
);
|
|
|
|
$pref['post_html'] = intval($_POST['post_html']); // This ensures the setting is reflected in set text
|
|
|
|
|
|
$smtp_opts = array();
|
|
|
|
if(!empty($_POST['smtp_options']))
|
|
{
|
|
|
|
switch (trim($_POST['smtp_options']))
|
|
{
|
|
case 'smtp_ssl' :
|
|
$smtp_opts[] = 'secure=SSL';
|
|
break;
|
|
case 'smtp_tls' :
|
|
$smtp_opts[] = 'secure=TLS';
|
|
break;
|
|
case 'smtp_pop3auth' :
|
|
$smtp_opts[] = 'pop3auth';
|
|
break;
|
|
}
|
|
|
|
if (!empty($_POST['smtp_keepalive']))
|
|
{
|
|
$smtp_opts[] = 'keepalive';
|
|
}
|
|
|
|
if (!empty($_POST['smtp_useVERP']))
|
|
{
|
|
$smtp_opts[] = 'useVERP';
|
|
}
|
|
|
|
$_POST['smtp_options'] = implode(',',$smtp_opts);
|
|
|
|
unset($_POST['smtp_keepalive'],$_POST['smtp_useVERP']);
|
|
|
|
// e107::getMessage()->addDebug(print_a($_POST['smtp_options'],true));
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$_POST['membersonly_exceptions'] = explode("\n",$_POST['membersonly_exceptions']);
|
|
|
|
// FIXME - automate - pref model & validation handler
|
|
$prefChanges = array();
|
|
$sessionRegenerate = false;
|
|
foreach($_POST as $key => $value)
|
|
{
|
|
if(isset($pref_limits[$key]))
|
|
{ // Its a numeric value to check
|
|
if(is_numeric($value))
|
|
{
|
|
if($value < $pref_limits[$key]['min'])
|
|
{
|
|
$value = $pref_limits[$key]['min'];
|
|
$mes->addWarning(str_replace(array('--FIELD--','--VALUE--'),array($key,$value),PRFLAN_213));
|
|
}
|
|
if($value > $pref_limits[$key]['max'])
|
|
{
|
|
$value = $pref_limits[$key]['max'];
|
|
$mes->addWarning(str_replace(array('--FIELD--','--VALUE--'),array($key,$value),PRFLAN_212));
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$value = $pref_limits[$key]['default'];
|
|
}
|
|
$newValue = $value;
|
|
}
|
|
elseif('cookie_name' == $key && $core_pref->get($key) != $value)
|
|
{
|
|
// special case
|
|
if(!preg_match('/^[\w\-]+$/', $value))
|
|
{
|
|
$newValue = e_COOKIE;
|
|
$mes->addWarning(PRFLAN_219);
|
|
}
|
|
else
|
|
{
|
|
$newValue = $value;
|
|
$sessionRegenerate = true;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$newValue = $tp->toDB($value);
|
|
}
|
|
|
|
$core_pref->update($key, $newValue);
|
|
/*if($newValue != $core_pref->get($key))
|
|
{ // Changed value
|
|
$core_pref->set($key, $newValue);
|
|
$prefChanges[$key] = $newValue;
|
|
}*/
|
|
}
|
|
$core_pref->save(false);
|
|
// special case, do session cleanup, logout, redirect to login screen
|
|
if($sessionRegenerate)
|
|
{
|
|
// reset cookie
|
|
cookie($core_pref->get('cookie_name'), $_COOKIE[e_COOKIE], (time() + 3600 * 24 * 30), e_HTTP, e107::getLanguage()->getCookieDomain());
|
|
cookie(e_COOKIE, null, null);
|
|
|
|
// regenerate session
|
|
$s = $_SESSION;
|
|
e107::getSession()->destroy();
|
|
$session = new e_core_session(array('name' => $core_pref->get('cookie_name')));
|
|
$_SESSION = $s;
|
|
}
|
|
}
|
|
|
|
if (e107::isInstalled('alt_auth'))
|
|
{
|
|
$authlist[] = "e107";
|
|
$handle = opendir(e_PLUGIN."alt_auth");
|
|
while($file = readdir($handle))
|
|
{
|
|
if(preg_match("/^(.*)_auth\.php/", $file, $match))
|
|
{
|
|
$authlist[] = $match[1];
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
function sendTest()
|
|
{
|
|
$log = e107::getAdminLog();
|
|
$mes = e107::getMessage();
|
|
|
|
if(trim($_POST['testaddress']) == '')
|
|
{
|
|
$mes->add(LAN_MAILOUT_19, E_MESSAGE_ERROR);
|
|
$subAction = 'error';
|
|
}
|
|
else
|
|
{
|
|
$mailheader_e107id = USERID;
|
|
$pref = e107::pref('core');
|
|
|
|
$add = ($pref['mailer']) ? " (".strtoupper($pref['mailer']).")" : ' (PHP)';
|
|
$sendto = trim($_POST['testaddress']);
|
|
|
|
|
|
$eml = array();
|
|
|
|
$eml['email_subject'] = LAN_MAILOUT_113." ".SITENAME.$add;
|
|
$eml['email_sender_email'] = null;
|
|
$eml['email_sender_name'] = null;
|
|
$eml['email_replyto'] = null;
|
|
$eml['email_replytonames'] = null;
|
|
$eml['send_html'] = true;
|
|
$eml['add_html_header'] = null;
|
|
$eml['email_body'] = str_replace("[br]", "<br>", LAN_MAILOUT_114);
|
|
$eml['email_attach'] = null;
|
|
$eml['template'] = 'default';
|
|
$eml['e107_header'] = USERID;
|
|
|
|
if (!e107::getEmail()->sendEmail($sendto, LAN_MAILOUT_189, $eml))
|
|
{
|
|
$mes->addError(($pref['mailer'] == 'smtp') ? LAN_MAILOUT_67 : LAN_MAILOUT_106);
|
|
}
|
|
// if (!sendemail($sendto, LAN_MAILOUT_113." ".SITENAME.$add, str_replace("[br]", "\n", LAN_MAILOUT_114),LAN_MAILOUT_189))
|
|
// {
|
|
// $mes->addError(($pref['mailer'] == 'smtp') ? LAN_MAILOUT_67 : LAN_MAILOUT_106);
|
|
// }
|
|
else
|
|
{
|
|
$mes->addSuccess(LAN_MAILOUT_81. ' ('.$sendto.')');
|
|
$log->log_event('MAIL_01',$sendto,E_LOG_INFORMATIVE,'');
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
if(e_QUERY == "u")
|
|
{
|
|
$ns->tablerender("", "<div style='text-align:center'><b>".PRFLAN_106."</b></div>");
|
|
}
|
|
*/
|
|
$handle = opendir(e_ADMIN.'includes/');
|
|
while($file = readdir($handle))
|
|
{
|
|
if($file != "." && $file != "..")
|
|
{
|
|
$file = str_replace(".php", "", $file);
|
|
$adminlist[] = $file;
|
|
}
|
|
}
|
|
closedir($handle);
|
|
|
|
$pref['membersonly_exceptions'] = implode("\n",$pref['membersonly_exceptions']);
|
|
|
|
$text = "
|
|
<div id='core-prefs'>
|
|
<form class='admin-menu' method='post' action='".e_SELF."'>
|
|
<fieldset id='core-prefs-main'>
|
|
<legend>".PRFLAN_1."</legend>
|
|
<table class='table adminform'>
|
|
<colgroup>
|
|
<col class='col-label' />
|
|
<col class='col-control' />
|
|
</colgroup>
|
|
<tbody>
|
|
<tr>
|
|
<td><label for='sitename'>".PRFLAN_2."</label></td>
|
|
<td>
|
|
".$frm->text('sitename', $pref['sitename'], 100, 'required=1&size=xxlarge')."
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='siteurl'>".PRFLAN_3."</label></td>
|
|
<td>
|
|
".$frm->text('siteurl', $pref['siteurl'], 150, 'required=1&size=xxlarge')."
|
|
".($pref['siteurl'] == SITEURL ? "" : "<div class='field-help'>".PRFLAN_159.": <strong>".SITEURL."</strong></div>")."
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='redirectsiteurl'>".PRFLAN_134."</label></td>
|
|
<td>";
|
|
/*
|
|
".$frm->radio('redirectsiteurl', 1, $pref['redirectsiteurl'], array('label'=>LAN_ENABLED))."
|
|
".$frm->radio('redirectsiteurl', 0, !$pref['redirectsiteurl'], array('label'=>LAN_DISABLED))."
|
|
*/
|
|
$text .= $frm->radio_switch('redirectsiteurl', $pref['redirectsiteurl'])."<div class='field-help'>".PRFLAN_135."</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='sitebutton'>".PRFLAN_4."</label></td>
|
|
<td>
|
|
";
|
|
/*
|
|
$parms = "name=sitebutton";
|
|
$parms .= "&path=".e_THEME.$pref['sitetheme']."/images/|".e_IMAGE;
|
|
$parms .= "&filter=0";
|
|
$parms .= "&fullpath=1";
|
|
$parms .= "&default=".urlencode($pref['sitebutton']);
|
|
//$parms .= "&width=128px";
|
|
//$parms .= "&height=128px";
|
|
$parms .= "&multiple=FALSE";
|
|
$parms .= "&label=-- No Image --";
|
|
$parms .= "&subdirs=1";
|
|
$parms .= "&tabindex=".$frm->getNext();
|
|
|
|
|
|
$text .= "<div class='field-section'>".$tp->parseTemplate("{IMAGESELECTOR={$parms}&scaction=select}")."</div>";
|
|
// $text .= "<div class='field-section'>".$frm->imagepicker('sitebutton',$pref['sitebutton'],'-- No Image --')."</div>";
|
|
|
|
//TODO make the preview update when image-picker is used.
|
|
$text .= "<div class='field-spacer'>".$tp->parseTemplate("{IMAGESELECTOR={$parms}&scaction=preview}")."</div>";
|
|
|
|
$sLogo = siteinfo_shortcodes::sc_logo();
|
|
*/
|
|
|
|
$text .= $frm->imagepicker('sitebutton',$pref['sitebutton'],'','help=Used by Facebook and others. Should be a square image of at least 144px in width and height.');
|
|
|
|
$text .= "
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='sitelogo'>".PRFLAN_214."</label></td>
|
|
<td>".$frm->imagepicker('sitelogo',$pref['sitelogo'],'','help=Used by some themes as the header image on some pages.')."</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='sitetag'>".PRFLAN_5."</label></td>
|
|
<td>
|
|
".$frm->textarea('sitetag', $tp->toForm($pref['sitetag']), 3, 59)."
|
|
<div class='field-help'>Used by some themes. Place 'SITETAG' in your theme to use this value.</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='sitedescription'>".PRFLAN_6."</label></td>
|
|
<td>
|
|
".$frm->textarea('sitedescription', $tp->toForm($pref['sitedescription']), 3, 80)."
|
|
<div class='field-help'>Used by some themes. Place 'SITEDESCRIPTION' in your theme to use this value.</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td><label for='sitedisclaimer'>".PRFLAN_9."</label></td>
|
|
<td>
|
|
".$frm->textarea('sitedisclaimer',$tp->toForm( $pref['sitedisclaimer']), 3, 80)."
|
|
<div class='field-help'>Used by some themes. Place 'SITEDISCLAIMER' in your theme to use this value.</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
".pref_submit('main')."
|
|
</fieldset>
|
|
";
|
|
|
|
|
|
// Email and Contact Information --------------
|
|
|
|
$text .= "<fieldset class='e-hideme' id='core-prefs-email'>
|
|
<legend>".PRFLAN_13."</legend>
|
|
<table class='table adminform'>
|
|
<colgroup>
|
|
<col class='col-label' />
|
|
<col class='col-control' />
|
|
</colgroup>
|
|
<tbody>
|
|
<tr>
|
|
<td><label for='siteadmin'>".PRFLAN_7."</label></td>
|
|
<td>
|
|
".$frm->text('siteadmin', SITEADMIN, 100)."
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='siteadminemail'>".PRFLAN_8."</label></td>
|
|
<td>
|
|
".$frm->text('siteadminemail', SITEADMINEMAIL, 100)."
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='replyto-name'>".PRFLAN_174."</label></td>
|
|
<td>
|
|
".$frm->text('replyto_name', $pref['replyto_name'], 100)."
|
|
<div class='smalltext field-help'>".PRFLAN_175."</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='replyto-email'>".PRFLAN_176."</label></td>
|
|
<td>
|
|
".$frm->text('replyto_email', $pref['replyto_email'], 100)."
|
|
<div class='smalltext field-help'>".PRFLAN_177."</div>
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td><label for='testaddress'>".LAN_MAILOUT_110."</label><br /></td>
|
|
<td class='form-inline'>".$frm->admin_button('testemail', LAN_MAILOUT_112,'other')."
|
|
<input name='testaddress' id='testaddress' class='tbox' placeholder='user@yoursite.com' type='text' size='40' maxlength='80' value=\"".(varset($_POST['testaddress']) ? $_POST['testaddress'] : USEREMAIL)."\" />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td style='vertical-align:top'><label for='mailer'>".LAN_MAILOUT_115."</label><br /></td>
|
|
<td>
|
|
<select class='tbox' name='mailer' id='mailer' onchange='disp(this.value)'>\n";
|
|
$mailers = array('php','smtp','sendmail');
|
|
foreach($mailers as $opt)
|
|
{
|
|
$sel = ($pref['mailer'] == $opt) ? "selected='selected'" : '';
|
|
$text .= "<option value='{$opt}' {$sel}>{$opt}</option>\n";
|
|
}
|
|
$text .="</select> <span class='field-help'>".LAN_MAILOUT_116."</span><br />";
|
|
|
|
|
|
|
|
// SMTP. -------------->
|
|
$smtp_opts = explode(',',varset($pref['smtp_options'],''));
|
|
|
|
|
|
$smtpdisp = ($pref['mailer'] != 'smtp') ? "style='display:none;'" : '';
|
|
$text .= "<div id='smtp' {$smtpdisp}>
|
|
<table class='table adminlist' style='margin-right:auto;margin-left:0px;border:0px'>
|
|
<colgroup>
|
|
<col class='col-label' />
|
|
<col class='col-control' />
|
|
</colgroup>
|
|
";
|
|
$text .= "
|
|
<tr>
|
|
<td><label for='smtp_server'>".LAN_MAILOUT_87.": </label></td>
|
|
<td>
|
|
<input class='tbox' type='text' name='smtp_server' id='smtp_server' size='40' value='".vartrue($pref['smtp_server'])."' maxlength='50' autocomplete='off' />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td><label for='smtp_username'>".LAN_MAILOUT_88.": (".LAN_OPTIONAL.") </label></td>
|
|
<td style='width:50%;' >
|
|
<input class='tbox' type='text' name='smtp_username' id='smtp_username' size='40' value=\"".vartrue($pref['smtp_username'])."\" maxlength='50' autocomplete='off' />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td><label for='smtp_password'>".LAN_MAILOUT_89.": (".LAN_OPTIONAL.") </label></td>
|
|
<td>
|
|
<input class='tbox' type='password' name='smtp_password' id='smtp_password' size='40' value='".vartrue($pref['smtp_password'])."' maxlength='50' autocomplete='off' />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td><label for='smtp_options'>".LAN_MAILOUT_90."</label></td><td>
|
|
";
|
|
|
|
$sslOpts = array(
|
|
'smtp_ssl' => LAN_MAILOUT_92,
|
|
'smtp_tls' => LAN_MAILOUT_93,
|
|
'smtp_pop3auth' => LAN_MAILOUT_91
|
|
);
|
|
|
|
// $text .= $frm->select('smtp_options', $sslOpts, $smtp_opts, '', LAN_MAILOUT_96);
|
|
|
|
|
|
$text .="<select class='tbox' name='smtp_options' id='smtp_options'>\n
|
|
<option value=''>".LAN_MAILOUT_96."</option>\n";
|
|
$selected = (in_array('secure=SSL',$smtp_opts) ? " selected='selected'" : '');
|
|
$text .= "<option value='smtp_ssl'{$selected}>".LAN_MAILOUT_92."</option>\n";
|
|
$selected = (in_array('secure=TLS',$smtp_opts) ? " selected='selected'" : '');
|
|
$text .= "<option value='smtp_tls'{$selected}>".LAN_MAILOUT_93."</option>\n";
|
|
$selected = (in_array('pop3auth',$smtp_opts) ? " selected='selected'" : '');
|
|
$text .= "<option value='smtp_pop3auth'{$selected}>".LAN_MAILOUT_91."</option>\n";
|
|
$text .= "</select>";
|
|
|
|
|
|
$text .= "<span class='field-help'>".LAN_MAILOUT_94."</span></td></tr>";
|
|
|
|
$text .= "<tr>
|
|
<td><label for='smtp_keepalive'>".LAN_MAILOUT_57."</label></td><td>\n";
|
|
|
|
$text .= $frm->radio_switch('smtp_keepalive', $pref['smtp_keepalive'])."
|
|
</td>
|
|
</tr>";
|
|
|
|
|
|
$text .= "<tr>
|
|
<td><label for='smtp_useVERP'>".LAN_MAILOUT_95."</label></td><td>".$frm->radio_switch('smtp_useVERP',(in_array('useVERP',$smtp_opts)))."
|
|
|
|
</td>
|
|
</tr>
|
|
</table></div>";
|
|
|
|
|
|
/* FIXME - posting SENDMAIL path triggers Mod-Security rules.
|
|
// Sendmail. -------------->
|
|
|
|
$text .= "<div id='sendmail' {$senddisp}><table style='margin-right:0px;margin-left:auto;border:0px'>";
|
|
$text .= "
|
|
<tr>
|
|
<td>".LAN_MAILOUT_20.": </td>
|
|
<td>
|
|
<input class='tbox' type='text' name='sendmail' size='60' value=\"".(!$pref['sendmail'] ? "/usr/sbin/sendmail -t -i -r ".$pref['siteadminemail'] : $pref['sendmail'])."\" maxlength='80' />
|
|
</td>
|
|
</tr>
|
|
|
|
</table></div>";
|
|
*/
|
|
$senddisp = (varset($pref['mailer']) != 'sendmail') ? "e-hideme" : '';
|
|
$text .= "<div class='s-message info {$senddisp}' id='sendmail' >
|
|
Not available in this release
|
|
</div>";
|
|
|
|
|
|
$text .="</td>
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td><label for='mail-sendstyle'>".LAN_MAILOUT_222."</label></td>
|
|
<td>";
|
|
|
|
$emFormat = array(
|
|
'textonly' => LAN_MAILOUT_125,
|
|
'texthtml' => LAN_MAILOUT_126,
|
|
'texttheme' => LAN_MAILOUT_127
|
|
);
|
|
$text .= $frm->select('mail_sendstyle', $emFormat, vartrue($pref['mail_sendstyle']));
|
|
$text .= "
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td><label for='sitecontactinfo'>".PRFLAN_162."</label></td>
|
|
<td>
|
|
".$frm->textarea('sitecontactinfo', $pref['sitecontactinfo'], 6, 59)."
|
|
<div class='smalltext field-help'>".PRFLAN_163."</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='sitecontacts'>".PRFLAN_168."</label></td>
|
|
<td>
|
|
".$e_userclass->uc_dropdown('sitecontacts', $pref['sitecontacts'], 'nobody,main,admin,classes', "tabindex='".$frm->getNext()."'")."
|
|
<div class='smalltext field-help'>".PRFLAN_169."</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='contact-emailcopy'>".PRFLAN_164."</label></td>
|
|
<td>";
|
|
/*
|
|
".$frm->radio('contact_emailcopy', 1, $pref['contact_emailcopy'])."
|
|
".$frm->label(LAN_ENABLED, 'contact_emailcopy', 1)."
|
|
".$frm->radio('contact_emailcopy', 0, !$pref['contact_emailcopy'])."
|
|
".$frm->label(LAN_DISABLED, 'contact_emailcopy', 0)."
|
|
<div class='smalltext field-help'>".PRFLAN_165."</div>
|
|
*/
|
|
$text .= $frm->radio_switch('contact_emailcopy', $pref['contact_emailcopy'])."<div class='smalltext field-help'>".PRFLAN_165."</div>
|
|
|
|
|
|
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
".pref_submit('email')."
|
|
</fieldset>";
|
|
|
|
|
|
$text .= "
|
|
<fieldset class='e-hideme' id='core-prefs-display'>
|
|
<legend>".PRFLAN_13."</legend>
|
|
<table class='table adminform'>
|
|
<colgroup>
|
|
<col class='col-label' />
|
|
<col class='col-control' />
|
|
</colgroup>
|
|
<tbody>
|
|
<tr>
|
|
<td><label for='displaythemeinfo'>".PRFLAN_14."</label></td>
|
|
<td>
|
|
".$frm->radio_switch('displaythemeinfo', $pref['displaythemeinfo'])."
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='displayrendertime'>".PRFLAN_15."</label></td>
|
|
<td>
|
|
".$frm->radio_switch('displayrendertime', $pref['displayrendertime'])."
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='displaysql'>".PRFLAN_16."</label></td>
|
|
<td>
|
|
".$frm->radio_switch('displaysql', $pref['displaysql'])."
|
|
</td>
|
|
</tr>
|
|
";
|
|
if(function_exists("memory_get_usage"))
|
|
{
|
|
$text .= "
|
|
<tr>
|
|
<td><label for='display-memory-usage'>".PRFLAN_137."</label></td>
|
|
<td>
|
|
".$frm->radio_switch('display_memory_usage', $pref['display_memory_usage'])."
|
|
</td>
|
|
</tr>
|
|
";
|
|
}
|
|
$text .= "
|
|
</tbody>
|
|
</table>
|
|
".pref_submit('display')."
|
|
</fieldset>
|
|
";
|
|
|
|
// Admin Display Areas
|
|
$text .= "
|
|
<fieldset class='e-hideme' id='core-prefs-admindisp'>
|
|
<legend>".PRFLAN_77."</legend>
|
|
<table class='table adminform'>
|
|
<colgroup>
|
|
<col class='col-label' />
|
|
<col class='col-control' />
|
|
</colgroup>
|
|
<tbody>
|
|
<tr>
|
|
<td><label for='admin-alerts-ok'>".PRFLAN_95."</label></td>
|
|
<td>
|
|
".$frm->radio_switch('admin_alerts_ok', $pref['admin_alerts_ok'])."
|
|
<div class='field-help'>".PRFLAN_96."</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='admin-alerts-uniquemenu'>".PRFLAN_97."</label></td>
|
|
<td>
|
|
".$frm->radio_switch('admin_alerts_uniquemenu', $pref['admin_alerts_uniquemenu'])."
|
|
<div class='field-help'>".PRFLAN_98."</div>
|
|
</td>
|
|
</tr>";
|
|
/*<tr>
|
|
<td>".PRFLAN_199."</td>
|
|
<td>
|
|
".$frm->radio_switch('admin_slidedown_subs', $pref['admin_slidedown_subs'])."
|
|
<div class='field-help'>".PRFLAN_200."</div>
|
|
</td>
|
|
</tr>*/
|
|
$text .= "
|
|
<tr>
|
|
<td><label for='admin-separate-plugins'>".PRFLAN_204."</label></td>
|
|
<td>
|
|
".$frm->radio_switch('admin_separate_plugins', $pref['admin_separate_plugins'])."
|
|
<div class='field-help'>".PRFLAN_205."</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
".pref_submit('admindisp')."
|
|
</fieldset>
|
|
|
|
";
|
|
|
|
// Date options.
|
|
$ga = new convert();
|
|
$date1 = $ga->convert_date(time(), "short");
|
|
$date2 = $ga->convert_date(time(), "long");
|
|
$date3 = $ga->convert_date(time(), "forum");
|
|
$date4 = e107::getDate()->convert(time(),"input");
|
|
|
|
$text .= "
|
|
<fieldset class='e-hideme' id='core-prefs-date'>
|
|
<legend>".PRFLAN_21."</legend>
|
|
<table class='table adminform'>
|
|
<colgroup>
|
|
<col class='col-label' />
|
|
<col class='col-control' />
|
|
</colgroup>
|
|
<tbody>
|
|
<tr>
|
|
<td><label for='shortdate'>".PRFLAN_22."</label></td>
|
|
<td>
|
|
".$frm->text('shortdate', $pref['shortdate'], 50)."
|
|
<div class='field-help'>".PRFLAN_83.": {$date1}</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='longdate'>".PRFLAN_23."</label></td>
|
|
<td>
|
|
".$frm->text('longdate', $pref['longdate'], 50)."
|
|
<div class='field-help'>".PRFLAN_83.": {$date2}</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='forumdate'>".PRFLAN_24."</label></td>
|
|
<td>
|
|
".$frm->text('forumdate', $pref['forumdate'], 50)."
|
|
<div class='field-help'>".PRFLAN_83.": {$date3}</div>
|
|
<div class='field-help'>".PRFLAN_25." <a href='http://www.php.net/manual/en/function.strftime.php' rel='external'>".PRFLAN_93."</a></div>
|
|
</td>
|
|
</tr>";
|
|
|
|
|
|
|
|
$def = strtotime('December 21, 2012 3:45pm');
|
|
|
|
$inputdate = array( // TODO add more formats
|
|
"%A, %d %B, %Y" => strftime("%A, %d %B, %Y",$def),
|
|
"%A, %d %b, %Y" => strftime("%A, %d %b, %Y",$def),
|
|
"%a, %d %B, %Y" => strftime("%a, %d %B, %Y",$def),
|
|
"%a, %d %b, %Y" => strftime("%a, %d %b, %Y",$def),
|
|
|
|
"%A, %B %d, %Y" => strftime("%A, %B %d, %Y",$def),
|
|
"%A, %b %d, %Y" => strftime("%A, %b %d, %Y",$def),
|
|
"%A, %b %d, %y" => strftime("%A, %b %d, %y",$def),
|
|
|
|
"%B %d, %Y" => strftime("%B %d, %Y",$def),
|
|
"%b %d, %Y" => strftime("%b %d, %Y",$def),
|
|
"%b %d, %y" => strftime("%b %d, %y",$def),
|
|
|
|
"%d %B, %Y" => strftime("%d %B, %Y",$def),
|
|
"%d %b, %Y" => strftime("%d %b, %Y",$def),
|
|
"%d %b, %y" => strftime("%d %b, %y",$def),
|
|
|
|
"%Y-%m-%d" => strftime("%Y-%m-%d",$def),
|
|
"%d-%m-%Y" => strftime("%d-%m-%Y",$def),
|
|
"%m/%d/%Y" => strftime("%m/%d/%Y",$def)
|
|
);
|
|
|
|
|
|
$inputtime = array();
|
|
|
|
|
|
|
|
|
|
$inputtime["%I:%M %p"] = strftime("%I:%M %p",$def);
|
|
if(e107::getDate()->supported('P'))
|
|
{
|
|
$inputtime["%I:%M %P"] = strftime("%I:%M %P",$def);
|
|
}
|
|
if(e107::getDate()->supported('l'))
|
|
{
|
|
$inputtime["%l:%M %p"] = strftime("%l:%M %p",$def);
|
|
$inputtime["%l:%M %P"] = strftime("%l:%M %P",$def);
|
|
}
|
|
|
|
$inputtime["%H:%M"] = strftime("%H:%M",$def);
|
|
$inputtime["%H:%M:%S"] = strftime("%H:%M:%S",$def);
|
|
|
|
|
|
|
|
|
|
|
|
// TODO LAN
|
|
$text .= "
|
|
<tr>
|
|
<td><label for='inputdate'>Date/Time Input-Field format</label></td>
|
|
<td>
|
|
".$frm->select('inputdate',$inputdate, e107::getPref('inputdate'));
|
|
|
|
$text .= $frm->select('inputtime',$inputtime, e107::getPref('inputtime'));
|
|
|
|
$text .= "
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='time-offset'>".PRFLAN_26."</label></td>
|
|
<td>
|
|
".$frm->select_open('time_offset', 'class=tbox select time-offset');//use form handler because of the tabindex
|
|
$toffset = array("-12", "-11", "-10", "-9", "-8", "-7", "-6", "-5", "-4", "-3", "-2", "-1", "0", "+1", "+2", "+3", "+4", "+5", "+6", "+7", "+8", "+9", "+10", "+11", "+12", "+13", "+14", "+15", "+16");
|
|
if(! isset($pref['time_offset']))
|
|
{
|
|
$pref['time_offset'] = "0";
|
|
}
|
|
|
|
|
|
//XXX TODO FIXME - Do we still need this?
|
|
|
|
foreach($toffset as $o)
|
|
{
|
|
$text .= "
|
|
".$frm->option($o, $o, ($o == $pref['time_offset']))."
|
|
";
|
|
}
|
|
|
|
|
|
|
|
$timeZones = array(
|
|
"Africa/Abidjan",
|
|
"Africa/Accra",
|
|
"Africa/Addis_Ababa",
|
|
"Africa/Algiers",
|
|
"Africa/Asmara",
|
|
"Africa/Asmera",
|
|
"Africa/Bamako",
|
|
"Africa/Bangui",
|
|
"Africa/Banjul",
|
|
"Africa/Bissau",
|
|
"Africa/Blantyre",
|
|
"Africa/Brazzaville",
|
|
"Africa/Bujumbura",
|
|
"Africa/Cairo",
|
|
"Africa/Casablanca",
|
|
"Africa/Ceuta",
|
|
"Africa/Conakry",
|
|
"Africa/Dakar",
|
|
"Africa/Dar_es_Salaam",
|
|
"Africa/Djibouti",
|
|
"Africa/Douala",
|
|
"Africa/El_Aaiun",
|
|
"Africa/Freetown",
|
|
"Africa/Gaborone",
|
|
"Africa/Harare",
|
|
"Africa/Johannesburg",
|
|
"Africa/Juba",
|
|
"Africa/Kampala",
|
|
"Africa/Khartoum",
|
|
"Africa/Kigali",
|
|
"Africa/Kinshasa",
|
|
"Africa/Lagos",
|
|
"Africa/Libreville",
|
|
"Africa/Lome",
|
|
"Africa/Luanda",
|
|
"Africa/Lubumbashi",
|
|
"Africa/Lusaka",
|
|
"Africa/Malabo",
|
|
"Africa/Maputo",
|
|
"Africa/Maseru",
|
|
"Africa/Mbabane",
|
|
"Africa/Mogadishu",
|
|
"Africa/Monrovia",
|
|
"Africa/Nairobi",
|
|
"Africa/Ndjamena",
|
|
"Africa/Niamey",
|
|
"Africa/Nouakchott",
|
|
"Africa/Ouagadougou",
|
|
"Africa/Porto-Novo",
|
|
"Africa/Sao_Tome",
|
|
"Africa/Timbuktu",
|
|
"Africa/Tripoli",
|
|
"Africa/Tunis",
|
|
"Africa/Windhoek",
|
|
"America/Adak",
|
|
"America/Anchorage",
|
|
"America/Anguilla",
|
|
"America/Antigua",
|
|
"America/Araguaina",
|
|
"America/Argentina/Buenos_Aires",
|
|
"America/Argentina/Catamarca",
|
|
"America/Argentina/ComodRivadavia",
|
|
"America/Argentina/Cordoba",
|
|
"America/Argentina/Jujuy",
|
|
"America/Argentina/La_Rioja",
|
|
"America/Argentina/Mendoza",
|
|
"America/Argentina/Rio_Gallegos",
|
|
"America/Argentina/Salta",
|
|
"America/Argentina/San_Juan",
|
|
"America/Argentina/San_Luis",
|
|
"America/Argentina/Tucuman",
|
|
"America/Argentina/Ushuaia",
|
|
"America/Aruba",
|
|
"America/Asuncion",
|
|
"America/Atikokan",
|
|
"America/Atka",
|
|
"America/Bahia",
|
|
"America/Bahia_Banderas",
|
|
"America/Barbados",
|
|
"America/Belem",
|
|
"America/Belize",
|
|
"America/Blanc-Sablon",
|
|
"America/Boa_Vista",
|
|
"America/Bogota",
|
|
"America/Boise",
|
|
"America/Buenos_Aires",
|
|
"America/Cambridge_Bay",
|
|
"America/Campo_Grande",
|
|
"America/Cancun",
|
|
"America/Caracas",
|
|
"America/Catamarca",
|
|
"America/Cayenne",
|
|
"America/Cayman",
|
|
"America/Chicago",
|
|
"America/Chihuahua",
|
|
"America/Coral_Harbour",
|
|
"America/Cordoba",
|
|
"America/Costa_Rica",
|
|
"America/Creston",
|
|
"America/Cuiaba",
|
|
"America/Curacao",
|
|
"America/Danmarkshavn",
|
|
"America/Dawson",
|
|
"America/Dawson_Creek",
|
|
"America/Denver",
|
|
"America/Detroit",
|
|
"America/Dominica",
|
|
"America/Edmonton",
|
|
"America/Eirunepe",
|
|
"America/El_Salvador",
|
|
"America/Ensenada",
|
|
"America/Fort_Wayne",
|
|
"America/Fortaleza",
|
|
"America/Glace_Bay",
|
|
"America/Godthab",
|
|
"America/Goose_Bay",
|
|
"America/Grand_Turk",
|
|
"America/Grenada",
|
|
"America/Guadeloupe",
|
|
"America/Guatemala",
|
|
"America/Guayaquil",
|
|
"America/Guyana",
|
|
"America/Halifax",
|
|
"America/Havana",
|
|
"America/Hermosillo",
|
|
"America/Indiana/Indianapolis",
|
|
"America/Indiana/Knox",
|
|
"America/Indiana/Marengo",
|
|
"America/Indiana/Petersburg",
|
|
"America/Indiana/Tell_City",
|
|
"America/Indiana/Vevay",
|
|
"America/Indiana/Vincennes",
|
|
"America/Indiana/Winamac",
|
|
"America/Indianapolis",
|
|
"America/Inuvik",
|
|
"America/Iqaluit",
|
|
"America/Jamaica",
|
|
"America/Jujuy",
|
|
"America/Juneau",
|
|
"America/Kentucky/Louisville",
|
|
"America/Kentucky/Monticello",
|
|
"America/Knox_IN",
|
|
"America/Kralendijk",
|
|
"America/La_Paz",
|
|
"America/Lima",
|
|
"America/Los_Angeles",
|
|
"America/Louisville",
|
|
"America/Lower_Princes",
|
|
"America/Maceio",
|
|
"America/Managua",
|
|
"America/Manaus",
|
|
"America/Marigot",
|
|
"America/Martinique",
|
|
"America/Matamoros",
|
|
"America/Mazatlan",
|
|
"America/Mendoza",
|
|
"America/Menominee",
|
|
"America/Merida",
|
|
"America/Metlakatla",
|
|
"America/Mexico_City",
|
|
"America/Miquelon",
|
|
"America/Moncton",
|
|
"America/Monterrey",
|
|
"America/Montevideo",
|
|
"America/Montreal",
|
|
"America/Montserrat",
|
|
"America/Nassau",
|
|
"America/New_York",
|
|
"America/Nipigon",
|
|
"America/Nome",
|
|
"America/Noronha",
|
|
"America/North_Dakota/Beulah",
|
|
"America/North_Dakota/Center",
|
|
"America/North_Dakota/New_Salem",
|
|
"America/Ojinaga",
|
|
"America/Panama",
|
|
"America/Pangnirtung",
|
|
"America/Paramaribo",
|
|
"America/Phoenix",
|
|
"America/Port-au-Prince",
|
|
"America/Port_of_Spain",
|
|
"America/Porto_Acre",
|
|
"America/Porto_Velho",
|
|
"America/Puerto_Rico",
|
|
"America/Rainy_River",
|
|
"America/Rankin_Inlet",
|
|
"America/Recife",
|
|
"America/Regina",
|
|
"America/Resolute",
|
|
"America/Rio_Branco",
|
|
"America/Rosario",
|
|
"America/Santa_Isabel",
|
|
"America/Santarem",
|
|
"America/Santiago",
|
|
"America/Santo_Domingo",
|
|
"America/Sao_Paulo",
|
|
"America/Scoresbysund",
|
|
"America/Shiprock",
|
|
"America/Sitka",
|
|
"America/St_Barthelemy",
|
|
"America/St_Johns",
|
|
"America/St_Kitts",
|
|
"America/St_Lucia",
|
|
"America/St_Thomas",
|
|
"America/St_Vincent",
|
|
"America/Swift_Current",
|
|
"America/Tegucigalpa",
|
|
"America/Thule",
|
|
"America/Thunder_Bay",
|
|
"America/Tijuana",
|
|
"America/Toronto",
|
|
"America/Tortola",
|
|
"America/Vancouver",
|
|
"America/Virgin",
|
|
"America/Whitehorse",
|
|
"America/Winnipeg",
|
|
"America/Yakutat",
|
|
"America/Yellowknife",
|
|
"Antarctica/Casey",
|
|
"Antarctica/Davis",
|
|
"Antarctica/DumontDUrville",
|
|
"Antarctica/Macquarie",
|
|
"Antarctica/Mawson",
|
|
"Antarctica/McMurdo",
|
|
"Antarctica/Palmer",
|
|
"Antarctica/Rothera",
|
|
"Antarctica/South_Pole",
|
|
"Antarctica/Syowa",
|
|
"Antarctica/Vostok",
|
|
"Arctic/Longyearbyen",
|
|
"Asia/Aden",
|
|
"Asia/Almaty",
|
|
"Asia/Amman",
|
|
"Asia/Anadyr",
|
|
"Asia/Aqtau",
|
|
"Asia/Aqtobe",
|
|
"Asia/Ashgabat",
|
|
"Asia/Ashkhabad",
|
|
"Asia/Baghdad",
|
|
"Asia/Bahrain",
|
|
"Asia/Baku",
|
|
"Asia/Bangkok",
|
|
"Asia/Beirut",
|
|
"Asia/Bishkek",
|
|
"Asia/Brunei",
|
|
"Asia/Calcutta",
|
|
"Asia/Choibalsan",
|
|
"Asia/Chongqing",
|
|
"Asia/Chungking",
|
|
"Asia/Colombo",
|
|
"Asia/Dacca",
|
|
"Asia/Damascus",
|
|
"Asia/Dhaka",
|
|
"Asia/Dili",
|
|
"Asia/Dubai",
|
|
"Asia/Dushanbe",
|
|
"Asia/Gaza",
|
|
"Asia/Harbin",
|
|
"Asia/Hebron",
|
|
"Asia/Ho_Chi_Minh",
|
|
"Asia/Hong_Kong",
|
|
"Asia/Hovd",
|
|
"Asia/Irkutsk",
|
|
"Asia/Istanbul",
|
|
"Asia/Jakarta",
|
|
"Asia/Jayapura",
|
|
"Asia/Jerusalem",
|
|
"Asia/Kabul",
|
|
"Asia/Kamchatka",
|
|
"Asia/Karachi",
|
|
"Asia/Kashgar",
|
|
"Asia/Kathmandu",
|
|
"Asia/Katmandu",
|
|
"Asia/Kolkata",
|
|
"Asia/Krasnoyarsk",
|
|
"Asia/Kuala_Lumpur",
|
|
"Asia/Kuching",
|
|
"Asia/Kuwait",
|
|
"Asia/Macao",
|
|
"Asia/Macau",
|
|
"Asia/Magadan",
|
|
"Asia/Makassar",
|
|
"Asia/Manila",
|
|
"Asia/Muscat",
|
|
"Asia/Nicosia",
|
|
"Asia/Novokuznetsk",
|
|
"Asia/Novosibirsk",
|
|
"Asia/Omsk",
|
|
"Asia/Oral",
|
|
"Asia/Phnom_Penh",
|
|
"Asia/Pontianak",
|
|
"Asia/Pyongyang",
|
|
"Asia/Qatar",
|
|
"Asia/Qyzylorda",
|
|
"Asia/Rangoon",
|
|
"Asia/Riyadh",
|
|
"Asia/Saigon",
|
|
"Asia/Sakhalin",
|
|
"Asia/Samarkand",
|
|
"Asia/Seoul",
|
|
"Asia/Shanghai",
|
|
"Asia/Singapore",
|
|
"Asia/Taipei",
|
|
"Asia/Tashkent",
|
|
"Asia/Tbilisi",
|
|
"Asia/Tehran",
|
|
"Asia/Tel_Aviv",
|
|
"Asia/Thimbu",
|
|
"Asia/Thimphu",
|
|
"Asia/Tokyo",
|
|
"Asia/Ujung_Pandang",
|
|
"Asia/Ulaanbaatar",
|
|
"Asia/Ulan_Bator",
|
|
"Asia/Urumqi",
|
|
"Asia/Vientiane",
|
|
"Asia/Vladivostok",
|
|
"Asia/Yakutsk",
|
|
"Asia/Yekaterinburg",
|
|
"Asia/Yerevan",
|
|
"Atlantic/Azores",
|
|
"Atlantic/Bermuda",
|
|
"Atlantic/Canary",
|
|
"Atlantic/Cape_Verde",
|
|
"Atlantic/Faeroe",
|
|
"Atlantic/Faroe",
|
|
"Atlantic/Jan_Mayen",
|
|
"Atlantic/Madeira",
|
|
"Atlantic/Reykjavik",
|
|
"Atlantic/South_Georgia",
|
|
"Atlantic/St_Helena",
|
|
"Atlantic/Stanley",
|
|
"Australia/ACT",
|
|
"Australia/Adelaide",
|
|
"Australia/Brisbane",
|
|
"Australia/Broken_Hill",
|
|
"Australia/Canberra",
|
|
"Australia/Currie",
|
|
"Australia/Darwin",
|
|
"Australia/Eucla",
|
|
"Australia/Hobart",
|
|
"Australia/LHI",
|
|
"Australia/Lindeman",
|
|
"Australia/Lord_Howe",
|
|
"Australia/Melbourne",
|
|
"Australia/NSW",
|
|
"Australia/North",
|
|
"Australia/Perth",
|
|
"Australia/Queensland",
|
|
"Australia/South",
|
|
"Australia/Sydney",
|
|
"Australia/Tasmania",
|
|
"Australia/Victoria",
|
|
"Australia/West",
|
|
"Australia/Yancowinna",
|
|
"Brazil/Acre",
|
|
"Brazil/DeNoronha",
|
|
"Brazil/East",
|
|
"Brazil/West",
|
|
"CET",
|
|
"CST6CDT",
|
|
"Canada/Atlantic",
|
|
"Canada/Central",
|
|
"Canada/East-Saskatchewan",
|
|
"Canada/Eastern",
|
|
"Canada/Mountain",
|
|
"Canada/Newfoundland",
|
|
"Canada/Pacific",
|
|
"Canada/Saskatchewan",
|
|
"Canada/Yukon",
|
|
"Chile/Continental",
|
|
"Chile/EasterIsland",
|
|
"Cuba",
|
|
"EET",
|
|
"EST",
|
|
"EST5EDT",
|
|
"Egypt",
|
|
"Eire",
|
|
"Europe/Amsterdam",
|
|
"Europe/Andorra",
|
|
"Europe/Athens",
|
|
"Europe/Belfast",
|
|
"Europe/Belgrade",
|
|
"Europe/Berlin",
|
|
"Europe/Bratislava",
|
|
"Europe/Brussels",
|
|
"Europe/Bucharest",
|
|
"Europe/Budapest",
|
|
"Europe/Chisinau",
|
|
"Europe/Copenhagen",
|
|
"Europe/Dublin",
|
|
"Europe/Gibraltar",
|
|
"Europe/Guernsey",
|
|
"Europe/Helsinki",
|
|
"Europe/Isle_of_Man",
|
|
"Europe/Istanbul",
|
|
"Europe/Jersey",
|
|
"Europe/Kaliningrad",
|
|
"Europe/Kiev",
|
|
"Europe/Lisbon",
|
|
"Europe/Ljubljana",
|
|
"Europe/London",
|
|
"Europe/Luxembourg",
|
|
"Europe/Madrid",
|
|
"Europe/Malta",
|
|
"Europe/Mariehamn",
|
|
"Europe/Minsk",
|
|
"Europe/Monaco",
|
|
"Europe/Moscow",
|
|
"Europe/Nicosia",
|
|
"Europe/Oslo",
|
|
"Europe/Paris",
|
|
"Europe/Podgorica",
|
|
"Europe/Prague",
|
|
"Europe/Riga",
|
|
"Europe/Rome",
|
|
"Europe/Samara",
|
|
"Europe/San_Marino",
|
|
"Europe/Sarajevo",
|
|
"Europe/Simferopol",
|
|
"Europe/Skopje",
|
|
"Europe/Sofia",
|
|
"Europe/Stockholm",
|
|
"Europe/Tallinn",
|
|
"Europe/Tirane",
|
|
"Europe/Tiraspol",
|
|
"Europe/Uzhgorod",
|
|
"Europe/Vaduz",
|
|
"Europe/Vatican",
|
|
"Europe/Vienna",
|
|
"Europe/Vilnius",
|
|
"Europe/Volgograd",
|
|
"Europe/Warsaw",
|
|
"Europe/Zagreb",
|
|
"Europe/Zaporozhye",
|
|
"Europe/Zurich",
|
|
"Factory",
|
|
"GB",
|
|
"GB-Eire",
|
|
"GMT",
|
|
"Greenwich",
|
|
"HST",
|
|
"Hongkong",
|
|
"Iceland",
|
|
"Indian/Antananarivo",
|
|
"Indian/Chagos",
|
|
"Indian/Christmas",
|
|
"Indian/Cocos",
|
|
"Indian/Comoro",
|
|
"Indian/Kerguelen",
|
|
"Indian/Mahe",
|
|
"Indian/Maldives",
|
|
"Indian/Mauritius",
|
|
"Indian/Mayotte",
|
|
"Indian/Reunion",
|
|
"Iran",
|
|
"Israel",
|
|
"Jamaica",
|
|
"Japan",
|
|
"Kwajalein",
|
|
"Libya",
|
|
"MET",
|
|
"MST",
|
|
"MST7MDT",
|
|
"Mexico/BajaNorte",
|
|
"Mexico/BajaSur",
|
|
"Mexico/General",
|
|
"NZ",
|
|
"NZ-CHAT",
|
|
"Navajo",
|
|
"PRC",
|
|
"PST8PDT",
|
|
"Pacific/Apia",
|
|
"Pacific/Auckland",
|
|
"Pacific/Chatham",
|
|
"Pacific/Chuuk",
|
|
"Pacific/Easter",
|
|
"Pacific/Efate",
|
|
"Pacific/Enderbury",
|
|
"Pacific/Fakaofo",
|
|
"Pacific/Fiji",
|
|
"Pacific/Funafuti",
|
|
"Pacific/Galapagos",
|
|
"Pacific/Gambier",
|
|
"Pacific/Guadalcanal",
|
|
"Pacific/Guam",
|
|
"Pacific/Honolulu",
|
|
"Pacific/Johnston",
|
|
"Pacific/Kiritimati",
|
|
"Pacific/Kosrae",
|
|
"Pacific/Kwajalein",
|
|
"Pacific/Majuro",
|
|
"Pacific/Marquesas",
|
|
"Pacific/Midway",
|
|
"Pacific/Nauru",
|
|
"Pacific/Niue",
|
|
"Pacific/Norfolk",
|
|
"Pacific/Noumea",
|
|
"Pacific/Pago_Pago",
|
|
"Pacific/Palau",
|
|
"Pacific/Pitcairn",
|
|
"Pacific/Pohnpei",
|
|
"Pacific/Ponape",
|
|
"Pacific/Port_Moresby",
|
|
"Pacific/Rarotonga",
|
|
"Pacific/Saipan",
|
|
"Pacific/Samoa",
|
|
"Pacific/Tahiti",
|
|
"Pacific/Tarawa",
|
|
"Pacific/Tongatapu",
|
|
"Pacific/Truk",
|
|
"Pacific/Wake",
|
|
"Pacific/Wallis",
|
|
"Pacific/Yap",
|
|
"Poland",
|
|
"Portugal",
|
|
"ROC",
|
|
"ROK",
|
|
"Singapore",
|
|
"Turkey",
|
|
"UCT" ,
|
|
"US/Alaska",
|
|
"US/Aleutian",
|
|
"US/Arizona",
|
|
"US/Central",
|
|
"US/East-Indiana",
|
|
"US/Eastern",
|
|
"US/Hawaii",
|
|
"US/Indiana-Starke",
|
|
"US/Michigan",
|
|
"US/Mountain",
|
|
"US/Pacific",
|
|
"US/Pacific-New",
|
|
"US/Samoa",
|
|
"UTC",
|
|
"Universal",
|
|
"W-SU",
|
|
"WET",
|
|
"Zulu");
|
|
|
|
|
|
|
|
|
|
$text .= "
|
|
</select>
|
|
<div class='smalltext field-help'>".PRFLAN_27."</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='timezone'>".PRFLAN_56."</label></td>
|
|
<td>
|
|
".$frm->select('timezone', $timeZones, vartrue($pref['timezone'],'GMT'), 'useValues=1')."
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
".pref_submit('date')."
|
|
</fieldset>
|
|
";
|
|
|
|
// =========== Registration Preferences. ==================
|
|
|
|
|
|
|
|
$elements = array(1=>'Register & Login', 2=> 'Login Only', 0=>LAN_DISABLED);
|
|
|
|
|
|
$text .= "
|
|
<fieldset class='e-hideme' id='core-prefs-registration'>
|
|
<legend>".PRFLAN_28."</legend>
|
|
<table class='table adminform'>
|
|
<colgroup>
|
|
<col class='col-label' />
|
|
<col class='col-control' />
|
|
</colgroup>
|
|
<tbody>
|
|
<tr>
|
|
<td><label for='user-reg'>".PRFLAN_224."</label></td>
|
|
<td>
|
|
".$frm->radio('user_reg', $elements, $pref['user_reg'])."
|
|
<div class='smalltext field-help'>".PRFLAN_30."</div>
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
|
|
<tr>
|
|
<td><label for='user-reg-veri'>".PRFLAN_154."</label></td>
|
|
<td>
|
|
".$frm->select_open('user_reg_veri');
|
|
$veri_list = array(PRFLAN_152,PRFLAN_31,PRFLAN_153);
|
|
|
|
foreach($veri_list as $v => $v_title)
|
|
{
|
|
$text .= $frm->option($v_title, $v, ($pref['user_reg_veri'] == $v));
|
|
}
|
|
|
|
$srch = array('[', ']');
|
|
$repl = array("<a href='".e_ADMIN_ABS."notify.php'>", '</a>');
|
|
|
|
$PRFLAN_154a = str_replace($srch,$repl, PRFLAN_154a);
|
|
|
|
$text .= "
|
|
</select>
|
|
<div class='field-help'>".$PRFLAN_154a."</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td><label for='allowemaillogin'>".PRFLAN_184."</label></td>
|
|
<td>".$frm->select_open('allowEmailLogin');
|
|
// $login_list = array(PRFLAN_201,PRFLAN_202,PRFLAN_203);
|
|
$login_list = array(
|
|
2 => PRFLAN_203,
|
|
1 => PRFLAN_202,
|
|
0 => PRFLAN_201
|
|
);
|
|
foreach($login_list as $l => $l_title)
|
|
{
|
|
$text .= $frm->option($l_title, $l, ($pref['allowEmailLogin'] == $l));
|
|
}
|
|
|
|
$text .= "
|
|
</select></td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='signup-remote-emailcheck'>".PRFLAN_160."</label></td>
|
|
<td>
|
|
".$frm->radio_switch('signup_remote_emailcheck', $pref['signup_remote_emailcheck'])."
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='disable-emailcheck'>".PRFLAN_167."</label></td>
|
|
<td>
|
|
".$frm->radio_switch('disable_emailcheck', $pref['disable_emailcheck'])."
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td><label for='use-coppa'>".PRFLAN_45."</label></td>
|
|
<td>
|
|
".$frm->radio_switch('use_coppa', $pref['use_coppa'])."
|
|
<div class='field-help'>".PRFLAN_46." <a href='http://www.ftc.gov/privacy/coppafaqs.shtm'>".PRFLAN_94."</a></div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='membersonly-enabled'>".PRFLAN_58."</label></td>
|
|
<td>";
|
|
|
|
$memDisp = !vartrue($pref['membersonly_enabled']) ? "e-hideme" : "";
|
|
|
|
$text .= $frm->radio_switch('membersonly_enabled', $pref['membersonly_enabled'],'', '', 'class=e-expandit')."
|
|
<div class='field-help'>".PRFLAN_59."</div>
|
|
<div class='e-expandit-container {$memDisp}' style='padding-top:10px'>".
|
|
$frm->textarea('membersonly_exceptions', $pref['membersonly_exceptions'], 3, 1, 'placeholder='.PRFLAN_206)."
|
|
<div class='field-help'>".PRFLAN_207."</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td><label for='autologinpostsignup'>".PRFLAN_197."</label></td>
|
|
<td>
|
|
".$frm->radio_switch('autologinpostsignup', $pref['autologinpostsignup'])."
|
|
<div class='smalltext field-help'>".PRFLAN_198."</div>
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td><label for='signup-maxip'>".PRFLAN_136."</label></td>
|
|
<td>
|
|
".$frm->number('signup_maxip', $pref['signup_maxip'], 3)."
|
|
<div class='field-help'>".PRFLAN_78."</div>
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
</tbody>
|
|
|
|
|
|
</table>
|
|
".pref_submit('registration')."
|
|
</fieldset>
|
|
|
|
";
|
|
|
|
|
|
// Key registration
|
|
// TODO LAN
|
|
|
|
|
|
|
|
|
|
// Signup options ===========================.
|
|
|
|
|
|
$text .= "
|
|
<fieldset class='e-hideme' id='core-prefs-signup'>
|
|
<legend>".PRFLAN_19."</legend>
|
|
<table class='table adminform'>
|
|
<colgroup>
|
|
<col class='col-label' />
|
|
<col class='col-control' />
|
|
</colgroup>
|
|
<tbody>";
|
|
|
|
$signup_option_names = array(
|
|
// "signup_option_loginname" => "Login Name",
|
|
"signup_option_email_confirm" => "Email Confirmation",
|
|
"signup_option_realname" => CUSTSIG_2,
|
|
"signup_option_signature" => CUSTSIG_6,
|
|
"signup_option_image" => CUSTSIG_7,
|
|
"signup_option_class" => CUSTSIG_17,
|
|
'signup_option_customtitle' => CUSTSIG_20,
|
|
'signup_option_hideemail' => 'Option to hide email'
|
|
);
|
|
|
|
foreach($signup_option_names as $value => $key)
|
|
{
|
|
$label_value = str_replace('_', '-', $value);
|
|
$text .= "
|
|
<tr>
|
|
<td><label for='".$label_value."'>".$key."</label></td>
|
|
<td>
|
|
".$frm->radio($value, 0, !$pref[$value], array('label' => CUSTSIG_12))."
|
|
".$frm->radio($value, 1, ($pref[$value] == 1), array('label' => CUSTSIG_14))."
|
|
".$frm->radio($value, 2, ($pref[$value] == 2), array('label' => CUSTSIG_15))."
|
|
</td>
|
|
</tr>
|
|
";
|
|
}
|
|
|
|
|
|
$text .= "
|
|
<tr>
|
|
<td><label for='signup-text'>".PRFLAN_126."</label></td>
|
|
<td>
|
|
".$frm->textarea('signup_text', $pref['signup_text'], 2, 1)."
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td><label for='signup-text-after'>".PRFLAN_140."</label></td>
|
|
<td>
|
|
".$frm->textarea('signup_text_after', $pref['signup_text_after'], 2, 1)."
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td><label for='predefinedloginname'>".PRFLAN_192.":</label></td>
|
|
<td>
|
|
".$frm->text('predefinedLoginName', $pref['predefinedLoginName'], 50)."
|
|
<div class='field-help'><div style='text-align:left'>".PRFLAN_193."<br />".str_replace("[br]","<br /> ",PRFLAN_194)."</div></div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='displayname-maxlength'>".PRFLAN_158.":</label></td>
|
|
<td>
|
|
".$frm->number('displayname_maxlength', $pref['displayname_maxlength'], 3)."
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='loginname-maxlength'>".PRFLAN_172.":</label></td>
|
|
<td>
|
|
".$frm->number('loginname_maxlength', $pref['loginname_maxlength'], 3)."
|
|
</td>
|
|
</tr>
|
|
";
|
|
|
|
/*
|
|
<!--
|
|
<tr>
|
|
<td>".CUSTSIG_13."</td>
|
|
<td>".CUSTSIG_14."</td>
|
|
</tr>
|
|
-->
|
|
*/
|
|
|
|
|
|
|
|
$text .= "
|
|
</tbody>
|
|
</table>
|
|
".pref_submit('signup')."
|
|
</fieldset>
|
|
";
|
|
|
|
// Custom Fields.
|
|
|
|
|
|
/* text render options */
|
|
|
|
if(!isset($pref['post_html']))
|
|
{
|
|
$pref['post_html'] = '250';
|
|
save_prefs();
|
|
}
|
|
|
|
$text .= "
|
|
<fieldset class='e-hideme' id='core-prefs-textpost'>
|
|
<legend>".PRFLAN_101."</legend>
|
|
<table class='table adminform'>
|
|
<colgroup>
|
|
<col class='col-label' />
|
|
<col class='col-control' />
|
|
</colgroup>
|
|
<tbody>
|
|
<tr>
|
|
<td><label for='make-clickable'>".PRFLAN_127.":</label></td>
|
|
<td>
|
|
".$frm->radio_switch('make_clickable', $pref['make_clickable'])."
|
|
<div class='smalltext field-help'>".PRFLAN_128."</div>
|
|
</td>
|
|
</tr>";
|
|
|
|
$replaceDisp = vartrue($pref['link_replace']) ? "" : "e-hideme";
|
|
|
|
$text .= "
|
|
<tr>
|
|
<td><label for='link-replace'>".PRFLAN_102."?:</label></td>
|
|
<td>
|
|
".$frm->radio_switch('link_replace', $pref['link_replace'],'', '', 'expandit=1')."
|
|
<div class='smalltext field-help'>".PRFLAN_103."</div>
|
|
<div class='e-expandit-container {$replaceDisp}'>
|
|
".$frm->text('link_text', $pref['link_text'], 200, 'placeholder='.PRFLAN_104)."
|
|
<div class='smalltext field-help'>".PRFLAN_105."</div>".
|
|
$frm->text('email_text', $tp->post_toForm($pref['email_text']), 200, 'placeholder='.PRFLAN_107)."
|
|
<div class='smalltext field-help'>".PRFLAN_108."</div>
|
|
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr >
|
|
<td><label for='links-new-window'>".PRFLAN_145."?:</label></td>
|
|
<td>
|
|
".$frm->radio_switch('links_new_window', $pref['links_new_window'])."
|
|
<div class='smalltext field-help'>".PRFLAN_146."</div>
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td><label for='profanity-filter'>".PRFLAN_40."</label></td>
|
|
<td>
|
|
".$frm->radio_switch('profanity_filter', $pref['profanity_filter'])."
|
|
<div class='smalltext field-help'>".PRFLAN_41."</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td><label for='profanity-replace'>".PRFLAN_42.":</label></td>
|
|
<td>
|
|
".$frm->text('profanity_replace', $pref['profanity_replace'], 20)."
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='profanity-words'>".PRFLAN_43.":</label></td>
|
|
<td>
|
|
".$frm->tags('profanity_words', $pref['profanity_words'])."
|
|
<div class='field-help'>".PRFLAN_44."</div>
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td><label for='main-wordwrap'>".PRFLAN_109.":</label></td>
|
|
<td>
|
|
".$frm->number('main_wordwrap', $pref['main_wordwrap'], 3)."
|
|
<div class='smalltext field-help'>".PRFLAN_110."</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='menu-wordwrap'>".PRFLAN_111.":</label></td>
|
|
<td>
|
|
".$frm->number('menu_wordwrap', $pref['menu_wordwrap'], 3)."
|
|
<div class='smalltext field-help'>".PRFLAN_110."</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td><label for='post-html'>".PRFLAN_116.":</label></td>
|
|
<td>
|
|
".$e_userclass->uc_dropdown('post_html', $pref['post_html'], 'nobody,public,member,admin,main,classes', "tabindex='".$frm->getNext()."'")."
|
|
<div class='smalltext field-help'>".PRFLAN_117."</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td><label for='post-script'>".PRFLAN_215.":</label></td>
|
|
<td>
|
|
".r_userclass('post_script',$pref['post_script'],'off','nobody,member,admin,main,classes')."
|
|
<div class='smalltext field-help'>".PRFLAN_216."</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='filter-script'>".PRFLAN_217.":</label></td>
|
|
<td>
|
|
".$frm->radio_switch('filter_script', varset($pref['filter_script'], 1))."
|
|
<div class='smalltext field-help'>".PRFLAN_218."</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='html-abuse'>".PRFLAN_220.":</label></td>
|
|
<td>
|
|
".$frm->radio_switch('html_abuse', varset($pref['html_abuse'], 1))."
|
|
<div class='smalltext field-help'>".PRFLAN_221."</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='wysiwyg'>".PRFLAN_122.":</label></td>
|
|
<td>
|
|
".$frm->radio_switch('wysiwyg', $pref['wysiwyg'])."
|
|
<div class='smalltext field-help'>".PRFLAN_123."</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='old_np'>".PRFLAN_124.":</label></td>
|
|
<td>
|
|
".$frm->radio_switch('old_np', $pref['old_np'])."
|
|
<div class='smalltext field-help'>".PRFLAN_125."</div>
|
|
</td>
|
|
</tr>
|
|
|
|
";
|
|
|
|
if(file_exists(e_PLUGIN."geshi/geshi.php"))
|
|
{
|
|
$text .= "
|
|
<tr>
|
|
<td><label for='usegeshi'>".PRFLAN_118."?:</label></td>
|
|
<td>
|
|
".$frm->radio_switch('useGeshi', $pref['useGeshi'])."
|
|
<div class='smalltext field-help'>".str_replace("[link]", "http://qbnz.com/highlighter/", PRFLAN_119)."</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='defaultlangeshi'>".PRFLAN_120."?:</label></td>
|
|
<td>
|
|
".$frm->text('defaultLanGeshi', ($pref['defaultLanGeshi'] ? $pref['defaultLanGeshi'] : "php"), 20)."
|
|
<div class='smalltext field-help'>".PRFLAN_121."</div>
|
|
</td>
|
|
</tr>
|
|
";
|
|
}
|
|
$text .= "
|
|
</tbody>
|
|
</table>
|
|
".pref_submit('textpost')."
|
|
</fieldset>
|
|
";
|
|
|
|
function multi_radio($name, $textsVals, $currentval = '')
|
|
{
|
|
$ret = '';
|
|
$gap = '';
|
|
foreach($textsVals as $v => $t)
|
|
{
|
|
$sel = ($v == $currentval) ? " checked='checked'" : "";
|
|
$ret .= $gap."<input type='radio' name='{$name}' value='{$v}'{$sel} /> ".$t."";
|
|
$gap = " ";
|
|
}
|
|
return $ret;
|
|
}
|
|
|
|
// Security Options. .
|
|
$hasGD = extension_loaded("gd");
|
|
|
|
$text .= "
|
|
<fieldset class='e-hideme' id='core-prefs-security'>
|
|
<legend>".PRFLAN_47."</legend>
|
|
<table class='table adminform'>
|
|
<colgroup>
|
|
<col class='col-label' />
|
|
<col class='col-control' />
|
|
</colgroup>
|
|
<tbody>
|
|
<tr>
|
|
<td><label for='ssl-enabled'>".PRFLAN_60."</label></td>
|
|
|
|
<td>
|
|
".$frm->radio_switch('ssl_enabled', $pref['ssl_enabled'])."
|
|
<div class='field-help'>".PRFLAN_61."</div>
|
|
</td>
|
|
</tr>
|
|
<!-- Secure Image -->
|
|
|
|
";
|
|
|
|
$secureImage = array('signcode'=>PRFLAN_76, 'logcode'=>PRFLAN_81, "fpwcode"=>PRFLAN_138,'admincode'=>PRFLAN_222);
|
|
|
|
foreach($secureImage as $key=>$label)
|
|
{
|
|
|
|
$label = str_replace($srch,$repl,$label);
|
|
|
|
$text .= "<tr><td><label for='".$key."'>".$label."</label></td><td>";
|
|
if($hasGD)
|
|
{
|
|
$text .= $frm->radio_switch($key, $pref[$key]);
|
|
}
|
|
else
|
|
{
|
|
$text .= PRFLAN_133;
|
|
}
|
|
|
|
$text .= "
|
|
<div class='field-help'>".PRFLAN_223."</div>
|
|
</td></tr>\n";
|
|
|
|
}
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
$text .= "
|
|
<tr>
|
|
<td>".PRFLAN_81.": </td>
|
|
<td>
|
|
";
|
|
|
|
if($hasGD)
|
|
{
|
|
$text .= $frm->radio_switch('logcode', $pref['logcode']);
|
|
}
|
|
else
|
|
{
|
|
$text .= PRFLAN_133;
|
|
}
|
|
$text .= "
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>".PRFLAN_138.": </td>
|
|
<td>
|
|
";
|
|
if($hasGD)
|
|
{
|
|
$text .= $frm->radio_switch('fpwcode', $pref['fpwcode']);
|
|
}
|
|
else
|
|
{
|
|
$text .= PRFLAN_133;
|
|
}
|
|
|
|
$text .= "
|
|
</td>
|
|
</tr>";
|
|
*
|
|
|
|
*/
|
|
$text .= " <tr>
|
|
<td><label for='user-reg-secureveri'>".PRFLAN_92.":</label></td>
|
|
<td>
|
|
".$frm->radio_switch('user_reg_secureveri', $pref['user_reg_secureveri'])."
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td><label for='disallowmultilogin'>".PRFLAN_129.":</label></td>
|
|
<td>
|
|
".$frm->radio_switch('disallowMultiLogin', $pref['disallowMultiLogin'], LAN_YES, LAN_NO)."
|
|
<div class='smalltext field-help'>".PRFLAN_130."</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td><label for='user-tracking-cookie'>".PRFLAN_48.":</label></td>
|
|
<td class='form-inline'>
|
|
".$frm->radio('user_tracking', array('cookie' => PRFLAN_49, 'session' => PRFLAN_50), $pref['user_tracking'])." ".PRFLAN_55.": ".$frm->text('cookie_name', $pref['cookie_name'], 20)."
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
|
|
<tr>
|
|
<td><label for='signup-disallow-text'>".CUSTSIG_18."</label></td>
|
|
<td>
|
|
".$frm->textarea('signup_disallow_text', $pref['signup_disallow_text'], 2, 1)."
|
|
<div class='field-help'>".CUSTSIG_19."</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td><label for='displayname_class'>".PRFLAN_155.":</label></td>
|
|
<td>
|
|
<div class='field-spacer'>".$e_userclass->uc_dropdown('displayname_class', $pref['displayname_class'], 'nobody,member,admin,classes', "tabindex='".$frm->getNext()."'")."</div>
|
|
".$frm->admin_button('submit_resetdisplaynames', PRFLAN_156)."
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
|
|
<tr>
|
|
<td><label for='signup-pass-len'>".CUSTSIG_16."</label></td>
|
|
<td>
|
|
".$frm->number('signup_pass_len', $pref['signup_pass_len'], 2)."
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
|
|
<tr>
|
|
<td><label for='passwordencoding'>".PRFLAN_188.":</label></td>
|
|
<td>
|
|
".$frm->radio_switch('passwordEncoding', varset($pref['passwordEncoding'], 0), PRFLAN_190, PRFLAN_189)."
|
|
<div class='smalltext field-help'>".PRFLAN_191."</div>
|
|
</td>
|
|
</tr>
|
|
<tr>";
|
|
|
|
$CHAP_list = array(PRFLAN_180, PRFLAN_181, PRFLAN_182);
|
|
|
|
$text .= "
|
|
<td><label for='password-chap'>".PRFLAN_178."</label></td>
|
|
<td>".$frm->select('password_CHAP',$CHAP_list,$pref['password_CHAP'] );
|
|
//." ".$frm->select_open('password_CHAP');
|
|
|
|
//TODO - user tracking session name - visible only if Cookie is enabled (JS)
|
|
|
|
$text .= "
|
|
<div class='smalltext field-help'>".PRFLAN_183."<br />".PRFLAN_179."</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td><label for='antiflood1'>".PRFLAN_35.":</label></td>
|
|
<td>
|
|
".$frm->radio_switch('antiflood1', $pref['antiflood1'])."
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='antiflood-timeout'>".PRFLAN_36.":</label></td>
|
|
<td>
|
|
".$frm->number('antiflood_timeout', $pref['antiflood_timeout'], 3)."
|
|
<div class='smalltext field-help'>".PRFLAN_38."</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='autoban'>".PRFLAN_37."</label></td>
|
|
<td>
|
|
".$frm->select_open('autoban');
|
|
|
|
$autoban_list = array(
|
|
PRFLAN_113,
|
|
PRFLAN_144,
|
|
PRFLAN_142,
|
|
PRFLAN_143
|
|
);
|
|
|
|
foreach($autoban_list as $ab => $ab_title)
|
|
{
|
|
$sel = ($pref['autoban'] == $ab) ? "selected='selected'" : "";
|
|
$text .= "
|
|
".$frm->option($ab_title, $ab, ($pref['autoban'] == $ab))."
|
|
";
|
|
}
|
|
|
|
$text .= "
|
|
</select>
|
|
<div class='field-help'>".PRFLAN_91."</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='failed-login-limit'>Maximum failed logins before ban:</label></td>
|
|
<td>
|
|
".$frm->number('failed_login_limit', varset($pref['failed_login_limit'],10), 3, array('max'=>10, 'min'=>0))."
|
|
<div class='smalltext field-help'>Failed logins from the same IP will be banned after this many attempts.</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for='adminpwordchange'>".PRFLAN_139.":</label></td>
|
|
<td>
|
|
".$frm->radio_switch('adminpwordchange', $pref['adminpwordchange'])."
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
".pref_submit('security')."
|
|
</fieldset>
|
|
";
|
|
|
|
$text .= "
|
|
<fieldset class='e-hideme' id='core-prefs-comments'>
|
|
<legend>".PRFLAN_87."</legend>
|
|
<table class='table adminform'>
|
|
<colgroup>
|
|
<col class='col-label' />
|
|
<col class='col-control' />
|
|
</colgroup>
|
|
<tbody>
|
|
<tr>
|
|
<td>".PRFLAN_161.":</td>
|
|
<td>
|
|
".$frm->radio_switch('comments_disabled', $pref['comments_disabled'], LAN_NO, LAN_YES,array('reverse'=>1))."
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>".PRFLAN_32."</td>
|
|
<td>
|
|
".$frm->radio_switch('anon_post', $pref['anon_post'], LAN_YES, LAN_NO)."
|
|
<div class='field-help'>".PRFLAN_33."</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>".PRFLAN_89.": </td>
|
|
<td>
|
|
".$frm->radio_switch('comments_icon', $pref['comments_icon'], LAN_YES, LAN_NO)."
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>".PRFLAN_88.": </td>
|
|
<td>
|
|
".$frm->radio_switch('nested_comments', $pref['nested_comments'], LAN_YES, LAN_NO)."
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>".PRFLAN_90.": </td>
|
|
<td>
|
|
".$frm->radio_switch('allowCommentEdit', $pref['allowCommentEdit'], LAN_YES, LAN_NO)."
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>".PRFLAN_166.": </td>
|
|
<td>
|
|
".$frm->radio_switch('comments_emoticons', $pref['comments_emoticons'], LAN_YES, LAN_NO)."
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>Moderate Comments made by: </td>
|
|
<td>
|
|
".
|
|
|
|
$frm->uc_select('comments_moderate', $pref['comments_moderate'],"nobody,guest,new,bots,public,admin,main,classes").
|
|
"
|
|
<div class='field-help'>Comments will require manual approval by an admin prior to being visible to other users</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Comment Sorting: </td>
|
|
<td>";
|
|
|
|
$comment_sort = array(
|
|
"desc" => "Most recent comments first", //default //TODO LAN
|
|
'asc' => "Most recent comments last"
|
|
);
|
|
|
|
$text .= $frm->select('comments_sort',$comment_sort, $pref['comments_moderate'])."
|
|
</td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|
|
|
|
<legend>".PRFLAN_209."</legend>
|
|
<table class='table adminform'>
|
|
<colgroup>
|
|
<col class='col-label' />
|
|
<col class='col-control' />
|
|
</colgroup>
|
|
<tbody>
|
|
|
|
<tr>
|
|
<td>".PRFLAN_208.":</td>
|
|
<td>
|
|
".$e_userclass->uc_dropdown('email_item_class',varset($pref['email_item_class'],e_UC_MEMBER),'nobody,admin,main,public,member,classes', "tabindex='".$frm->getNext()."'")."
|
|
</td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|
|
".pref_submit('comments')."
|
|
</fieldset>
|
|
";
|
|
|
|
// File Uploads
|
|
|
|
include_lan(e_LANGUAGEDIR.e_LANGUAGE."/admin/lan_upload.php");
|
|
require_once(e_HANDLER."upload_handler.php");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$text .= "
|
|
<fieldset class='e-hideme' id='core-prefs-uploads'>
|
|
<legend>File Uploading</legend>";
|
|
|
|
|
|
$upload_max_filesize = ini_get('upload_max_filesize');
|
|
$post_max_size = ini_get('post_max_size');
|
|
|
|
$maxINI = min($upload_max_filesize,$post_max_size);
|
|
|
|
if($maxINI < $pref['upload_maxfilesize'])
|
|
{
|
|
$text .= "<div class='alert-block alert alert-danger'>";
|
|
$text .= "The maximum upload size imposed by your php.ini settings is: ".$maxINI."</div>";
|
|
$pref['upload_maxfilesize'] = $maxINI;
|
|
}
|
|
|
|
|
|
|
|
|
|
$text .= "
|
|
<table class='table adminform'>
|
|
<colgroup>
|
|
<col class='col-label' />
|
|
<col class='col-control' />
|
|
</colgroup>
|
|
<tbody>
|
|
<tr>
|
|
<td>".UPLLAN_25."</td>
|
|
<td>".
|
|
|
|
$frm->radio_switch('upload_enabled', $pref['upload_enabled'], LAN_YES, LAN_NO)
|
|
."
|
|
<div class='field-help'>".UPLLAN_26."</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>".UPLLAN_33."<br />
|
|
</td>
|
|
<td>".
|
|
$frm->text('upload_maxfilesize', $pref['upload_maxfilesize'], 10)
|
|
."
|
|
<div class='field-help'>".UPLLAN_34."</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>".UPLLAN_37."</td>
|
|
<td>".r_userclass("upload_class", $pref['upload_class'],"off","nobody,public,guest,member,admin,classes")."
|
|
<div class='field-help'>".UPLLAN_38."</div>
|
|
</td>
|
|
</tr>
|
|
<tr><td>Filetype upload limits</td>
|
|
<td>
|
|
|
|
<table class='table table-striped table-bordered'>
|
|
<tr><th>".LAN_TYPE."</th><th>".UPLLAN_33."</th>
|
|
";
|
|
|
|
$fl = e107::getFile();
|
|
$data = $fl->getFiletypeLimits();
|
|
|
|
foreach($data as $k=>$v)
|
|
{
|
|
$text .= "<tr><td>".$k."</td>
|
|
<td>".$fl->file_size_encode($v)."</td>
|
|
</tr>";
|
|
|
|
|
|
}
|
|
// $text .= print_a($data,true);
|
|
|
|
|
|
|
|
$text .= "</table>
|
|
|
|
<div>** For security reasons these values may only be changed manually in the following file: <b>".str_replace("../",'',e_SYSTEM).e_READ_FILETYPES."</b></div>
|
|
</td>
|
|
|
|
|
|
</tbody>
|
|
</table>
|
|
".pref_submit('uploads');
|
|
|
|
|
|
|
|
$text .= "
|
|
</fieldset>";
|
|
|
|
|
|
|
|
|
|
|
|
// Javascript Control
|
|
//TODO LANS
|
|
$text .= "
|
|
<fieldset class='e-hideme' id='core-prefs-javascript'>
|
|
<legend>Javascript Frameworks (for testing purposes only)</legend>
|
|
<table class='table adminform'>
|
|
<colgroup>
|
|
<col class='col-label' />
|
|
<col class='col-control' />
|
|
</colgroup>
|
|
<tbody>";
|
|
|
|
$js_options = array(
|
|
'auto' => 'Auto (on-demand)', // load based on dependency
|
|
'admin' => 'Admin Area', // Always load in admin
|
|
'front' => 'Front-End', // Always load in front-end
|
|
'all' => "Both", // Always load in admin and front-end
|
|
'none' => 'Disabled' // disabled
|
|
);
|
|
|
|
|
|
//TODO FIXME
|
|
// ie. e107 Core Minimum: JS similar to e107 v1.0 should be loaded "e_js.php" (no framwork dependency)
|
|
// with basic functions like SyncWithServerTime() and expandit(), externalLinks() etc.
|
|
|
|
|
|
$js_types = array(
|
|
array('id' => 'jquery', 'name'=> 'jQuery (local)'),
|
|
array('id' => 'prototype', 'name'=> 'Prototype (local)'),
|
|
|
|
);
|
|
|
|
//TODO // separate switch for CDN.. or automatic fall-back.
|
|
|
|
|
|
|
|
foreach($js_types as $arr)
|
|
{
|
|
// $k = $arr['path'];
|
|
$k = $arr['id'];
|
|
$name = $arr['name'];
|
|
$text .= "<tr>
|
|
<td>".$name."</td>
|
|
<td>".$frm->radio("e_jslib_core[{$k}]", $js_options, $pref['e_jslib_core'][$k])."</td>
|
|
</tr>";
|
|
}
|
|
|
|
$text .= "
|
|
</tbody>
|
|
</table>
|
|
<table class='table adminform' style='margin-top: 20px'>
|
|
<colgroup>
|
|
<col class='col-label' />
|
|
<col class='col-control' />
|
|
</colgroup>
|
|
<tbody>
|
|
<tr>
|
|
<td>Disable scripts consolidation</td>
|
|
<td>
|
|
".$frm->radio_switch('e_jslib_nocombine', $pref['e_jslib_nocombine'], LAN_YES, LAN_NO)."
|
|
<div class='smalltext field-help'>If disabled, scripts will be loaded in one consolidated file</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Enable consolidated scripts zlib compression:</td>
|
|
<td>
|
|
".$frm->radio_switch('e_jslib_gzip', $pref['e_jslib_gzip'], LAN_YES, LAN_NO)."
|
|
<div class='smalltext field-help'>Used only when script consolidation is enabled</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Disable consolidated scripts server cache:</td>
|
|
<td>
|
|
".$frm->radio_switch('e_jslib_nocache', $pref['e_jslib_nocache'], LAN_YES, LAN_NO)."
|
|
<div class='smalltext field-help'>Used only when script consolidation is enabled</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Disable consolidated scripts browser cache:</td>
|
|
<td>
|
|
".$frm->radio_switch('e_jslib_nobcache', $pref['e_jslib_nobcache'], LAN_YES, LAN_NO)."
|
|
<div class='smalltext field-help'>Used only when script consolidation is enabled</div>
|
|
</td>
|
|
</tr>
|
|
";
|
|
|
|
$text .= "
|
|
</tbody></table>
|
|
".pref_submit('javascript')."
|
|
</fieldset>
|
|
|
|
";
|
|
|
|
/*
|
|
e107::js('inline',"
|
|
\$\$('#e-jslib-nocombine', '#e-jslib-nocombine-1').invoke('observe', 'change', function(event) {
|
|
var element = event.findElement('input'), check = !parseInt(element.value);
|
|
eHandleJsForm(check);
|
|
|
|
});
|
|
|
|
var eHandleJsForm = function(enable) {
|
|
var collection = \$w('e-jslib-gzip e-jslib-nocache e-jslib-nobcache');
|
|
collection.each(function(id) {
|
|
var method = enable ? 'enable' : 'disable';
|
|
\$\$('#' + id, '#' + id + '-1').invoke(method);
|
|
});
|
|
};
|
|
|
|
eHandleJsForm(".($pref['e_jslib_nocombine'] ? 'false' : 'true').");
|
|
|
|
","prototype");
|
|
*/
|
|
|
|
|
|
//Advanced Features
|
|
$text .= "
|
|
<fieldset class='e-hideme' id='core-prefs-advanced'>
|
|
<legend>".PRFLAN_149."</legend>
|
|
<table class='table adminform'>
|
|
<colgroup>
|
|
<col class='col-label' />
|
|
<col class='col-control' />
|
|
</colgroup>
|
|
<tbody>
|
|
<tr>
|
|
<td>".PRFLAN_147.":</td>
|
|
<td>
|
|
".$frm->radio_switch('developer', $pref['developer'])."
|
|
<div class='smalltext field-help'>".PRFLAN_148."</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>".PRFLAN_196."</td>
|
|
<td>
|
|
".$frm->radio_switch('log_page_accesses', $pref['log_page_accesses'])."
|
|
<div class='field-help'>".PRFLAN_196a." <strong>".e_LOG."</strong></div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>".PRFLAN_17."</td>
|
|
<td>
|
|
".$frm->radio_switch('compress_output', $pref['compress_output'])."
|
|
</td>
|
|
</tr>
|
|
";
|
|
|
|
$auth_dropdown = '';
|
|
if($authlist)
|
|
{
|
|
$auth_dropdown = "\n".$frm->select_open('auth_method')."\n";
|
|
foreach($authlist as $a)
|
|
{
|
|
$auth_dropdown .= $frm->option($a, $a, ($pref['auth_method'] == $a))."\n";
|
|
}
|
|
$auth_dropdown .= "</select>\n";
|
|
}
|
|
else
|
|
{
|
|
$auth_dropdown = "<input type='hidden' name='auth_method' value='' />".PRFLAN_151;
|
|
$pref['auth_method'] = "";
|
|
}
|
|
|
|
$text .= "
|
|
<tr>
|
|
<td>".PRFLAN_150."</td>
|
|
<td>
|
|
{$auth_dropdown}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>".PRFLAN_173."</td>
|
|
<td>
|
|
".$frm->radio_switch('check_updates', $pref['check_updates'])."
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
".pref_submit('advanced')."
|
|
</fieldset>
|
|
";
|
|
|
|
// END Advanced Features
|
|
|
|
|
|
$text .= "
|
|
</form>
|
|
</div>
|
|
";
|
|
|
|
$ns->tablerender(PRFLAN_53, $mes->render().$text);
|
|
|
|
require_once(e_ADMIN."footer.php");
|
|
|
|
function pref_submit($post_id = '')
|
|
{
|
|
global $frm;
|
|
if($post_id) $post_id = '-'.$post_id;
|
|
$text = "
|
|
<div class='buttons-bar center'>";
|
|
|
|
// ML
|
|
/* if(e_MLANG == 1){
|
|
//$text .="<input class='fcaption' type='submit' name='updateprefs' value='".PRFLAN_52."' />
|
|
$but_typ = array(""); // empty = submit
|
|
$but_nam = array("updateprefs"); // empty = autobutX with X autoincrement
|
|
$but_val = array("updateprefs"); // empty = Submit
|
|
$but_class = array("caption"); // empty = button
|
|
$butjs = array(""); // empty = ""
|
|
$buttitle = array(""); // empty = ""
|
|
$text .= e107ml_adpanel(1,$but_typ,$but_nam,$but_val,$but_class,$butjs,$buttitle);
|
|
}else{*/
|
|
$text .= $frm->admin_button('updateprefs', PRFLAN_52, 'update', '', "id=updateprefs{$post_id}");
|
|
// }
|
|
$text .= "\n</div>";
|
|
|
|
// END ML
|
|
return $text;
|
|
}
|
|
|
|
function prefs_adminmenu()
|
|
{
|
|
$var['core-prefs-main']['text'] = PRFLAN_1;
|
|
$var['core-prefs-email']['text'] = "Email & Contact Info";
|
|
$var['core-prefs-registration']['text'] = PRFLAN_28;
|
|
$var['core-prefs-signup']['text'] = PRFLAN_19;
|
|
// $var['core-prefs-sociallogin']['text'] = "Social Options"; // Moved into plugin.
|
|
|
|
$var['core-prefs-comments']['text'] = PRFLAN_210;
|
|
$var['core-prefs-uploads']['text'] = "File Uploading"; // TODO LAN
|
|
|
|
$var['core-prefs-header1']['header'] = "Advanced Options";
|
|
|
|
$var['core-prefs-display']['text'] = PRFLAN_13;
|
|
$var['core-prefs-admindisp']['text'] = PRFLAN_77;
|
|
$var['core-prefs-textpost']['text'] = PRFLAN_101;
|
|
$var['core-prefs-security']['text'] = PRFLAN_47;
|
|
$var['core-prefs-date']['text'] = PRFLAN_21;
|
|
$var['core-prefs-javascript']['text'] = "Javascript Framework"; // TODO LAN
|
|
$var['core-prefs-advanced']['text'] = PRFLAN_149;
|
|
|
|
e107::getNav()->admin("Basic ".LAN_OPTIONS.'--id--prev_nav', 'core-prefs-main', $var);
|
|
}
|
|
|