mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 20:58:30 +01:00
466 lines
13 KiB
PHP
466 lines
13 KiB
PHP
<?php
|
|
/*
|
|
+ ----------------------------------------------------------------------------+
|
|
| e107 website system
|
|
|
|
|
| ©Steve Dunstan 2001-2002
|
|
| http://e107.org
|
|
| jalist@e107.org
|
|
|
|
|
| Released under the terms and conditions of the
|
|
| GNU General Public License (http://gnu.org).
|
|
|
|
|
| $Source: /cvs_backup/e107_0.8/e107_admin/language.php,v $
|
|
| $Revision: 1.1.1.1 $
|
|
| $Date: 2006-12-02 04:33:23 $
|
|
| $Author: mcfly_e107 $
|
|
+----------------------------------------------------------------------------+
|
|
*/
|
|
require_once("../class2.php");
|
|
if (!getperms("ML"))
|
|
{
|
|
header("location:".e_BASE."index.php");
|
|
exit;
|
|
}
|
|
|
|
$e_sub_cat = 'language';
|
|
|
|
require_once("auth.php");
|
|
require_once(e_HANDLER."form_handler.php");
|
|
$rs = new form;
|
|
|
|
$tabs = table_list(); // array("news","content","links");
|
|
$lanlist = explode(",",e_LANLIST);
|
|
$message = "";
|
|
|
|
if (e_QUERY) {
|
|
$tmp = explode('.', e_QUERY);
|
|
$action = $tmp[0];
|
|
$sub_action = $tmp[1];
|
|
$id = $tmp[2];
|
|
unset($tmp);
|
|
}
|
|
|
|
if (isset($_POST['submit_prefs']) && isset($_POST['mainsitelanguage'])) {
|
|
|
|
$pref['multilanguage'] = $_POST['multilanguage'];
|
|
if($_POST['multilanguage_subdomain']){
|
|
$pref['multilanguage_subdomain'] = ".".$_POST['multilanguage_subdomain'];
|
|
}else{
|
|
$pref['multilanguage_subdomain'] = "";
|
|
}
|
|
|
|
$pref['sitelanguage'] = $_POST['mainsitelanguage'];
|
|
|
|
save_prefs();
|
|
$ns->tablerender(LAN_SAVED, "<div style='text-align:center'>".LAN_SETSAVED."</div>");
|
|
|
|
}
|
|
|
|
|
|
// ----------------- delete tables ---------------------------------------------
|
|
if (isset($_POST['del_existing']) && $_POST['lang_choices']) {
|
|
|
|
$lang = strtolower($_POST['lang_choices']);
|
|
foreach ($tabs as $del_table) {
|
|
if (db_Table_exists($lang."_".$del_table)) {
|
|
$qry = "DROP TABLE ".$mySQLprefix."lan_".$lang."_".$del_table;
|
|
echo $qry;
|
|
$message .= (mysql_query($qry)) ? $_POST['lang_choices']." ".$del_table." deleted<br />" :
|
|
$_POST['lang_choices']." $del_table couldn't be deleted<br />";
|
|
}
|
|
}
|
|
global $cachevar;
|
|
unset($cachevar['table_list']);
|
|
|
|
}
|
|
|
|
// ----------create tables -----------------------------------------------------
|
|
|
|
if (isset($_POST['create_tables']) && $_POST['language']) {
|
|
|
|
$table_to_copy = array();
|
|
$lang_to_create = array();
|
|
|
|
|
|
foreach ($tabs as $value) {
|
|
$lang = strtolower($_POST['language']);
|
|
if (isset($_POST[$value])) {
|
|
$copdata = ($_POST['copydata_'.$value]) ? 1 : 0;
|
|
if (copy_table($value, "lan_".$lang."_".$value, $_POST['drop'],$copdata)) {
|
|
$message .= " ".$_POST['language']." ".$value." created<br />";
|
|
} else {
|
|
$message .= (!$_POST['drop'])? " ".$_POST['language']." ".$value." ".LANG_LAN_00."<br />" : $_POST['language']." ".$value." ".LANG_LAN_01."<br />";
|
|
}
|
|
} elseif(db_Table_exists($lang."_".$value)) {
|
|
if ($_POST['remove']) {
|
|
// Remove table.
|
|
$message .= (mysql_query("DROP TABLE ".$mySQLprefix."lan_".$lang."_".$value)) ? $_POST['language']." ".$value." ".LAN_DELETED."<br />" : $_POST['language']." $value ".LANG_LAN_02."<br />";
|
|
} else {
|
|
// leave table.
|
|
$message = $_POST['language']." ".$value." was disabled but left intact.";
|
|
}
|
|
}
|
|
}
|
|
global $cachevar;
|
|
unset($cachevar['table_list']);
|
|
}
|
|
|
|
|
|
|
|
if(isset($message) && $message){
|
|
$ns->tablerender(LAN_OK, $message);
|
|
}
|
|
|
|
|
|
|
|
unset($text);
|
|
|
|
|
|
if (!e_QUERY || $action == 'main' && !$_POST['language'] && !$_POST['edit_existing']) {
|
|
multilang_prefs();
|
|
}
|
|
|
|
if ($action == 'db') {
|
|
multilang_db();
|
|
}
|
|
|
|
if($action == "tools"){
|
|
show_tools();
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Grab Language configuration. ---
|
|
if ($_POST['edit_existing']) {
|
|
|
|
$text .= "
|
|
<form method='post' action='".e_SELF."?db' >
|
|
<div style='text-align:center'>
|
|
<table class='fborder' style='".ADMIN_WIDTH."'>\n";
|
|
|
|
foreach ($tabs as $table_name) {
|
|
$installed = strtolower($_POST['lang_choices'])."_".$table_name;
|
|
if (stristr($_POST['lang_choices'], $installed) === FALSE) {
|
|
$text .= "<tr>
|
|
<td style='width:30%' class='forumheader3'>".ucfirst(str_replace("_", " ", $table_name))."</td>\n
|
|
<td style='width:70%' class='forumheader3'>\n";
|
|
$selected = (db_Table_exists($installed)) ? "checked='checked'" : "";
|
|
$text .= "<input type=\"checkbox\" id='$table_name' name=\"$table_name\" value=\"1\" $selected onclick=\"if(document.getElementById('$table_name').checked){document.getElementById('datacopy_$table_name').style.display = '';} \" />";
|
|
$text .= "<span id='datacopy_$table_name' style='display:none'>".LANG_LAN_15."<input type=\"checkbox\" name=\"copydata_$table_name\" value=\"1\" /> </span>";
|
|
$text .= "</td></tr>\n";
|
|
}
|
|
}
|
|
|
|
$text .= "
|
|
<tr><td class='forumheader3' colspan='2'>
|
|
<input type='hidden' name='language' value='".$_POST['lang_choices']."' />
|
|
</td></tr>";
|
|
|
|
// ===========================================================================
|
|
|
|
// Drop tables ?
|
|
$text .= "<tr><td class='forumheader3'><b>".LANG_LAN_07."</b></td>
|
|
<td class='forumheader3'>".$rs->form_checkbox("drop", 1)."\n
|
|
<span class=\"smalltext\" >".LANG_LAN_08."</span></td></tr>\n
|
|
|
|
<tr>
|
|
<td class='forumheader3'><b>".LANG_LAN_10."</b></td>
|
|
<td class='forumheader3'>".$rs->form_checkbox("remove", 1)."\n
|
|
<span class=\"smalltext\" >".LANG_LAN_11."</span></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan='2' style='width:100%; text-align: center;' class='forumheader' >";
|
|
|
|
$button_capt = LANG_LAN_06. " / ". LAN_UPDATE;
|
|
$text .="<input type='submit' class='button' name='create_tables' value=\"".$button_capt."\" />";
|
|
|
|
$text .="</td>
|
|
</tr>
|
|
|
|
</table></div>\n";
|
|
|
|
$text .= $rs->form_close();
|
|
$ns->tablerender($_POST['lang_choices'], $text);
|
|
}
|
|
|
|
require_once(e_ADMIN."footer.php");
|
|
|
|
// ---------------------------------------------------------------------------
|
|
function multilang_prefs() {
|
|
global $ns, $pref,$lanlist;
|
|
|
|
$text = "<div style='text-align:center'>
|
|
<form method='post' action='".e_SELF."' id='linkform'>
|
|
<table style='".ADMIN_WIDTH."' class='fborder'>";
|
|
|
|
|
|
$text .= "<tr>
|
|
|
|
<td style='width:80%' class='forumheader3'>".LANG_LAN_14.": </td>
|
|
<td style='width:20%; text-align:center' class='forumheader3'>";
|
|
|
|
|
|
$text .= "
|
|
<select name='mainsitelanguage' class='tbox'>\n";
|
|
$sellan = preg_replace("/lan_*.php/i", "", $pref['sitelanguage']);
|
|
foreach($lanlist as $lan){
|
|
$sel = ($lan == $sellan) ? "selected='selected'" : "";
|
|
$text .= "<option value='{$lan}' {$sel}>".$lan."</option>\n";
|
|
}
|
|
|
|
$text .= "</select>
|
|
</td>
|
|
</tr>";
|
|
|
|
$text .= "
|
|
<tr>
|
|
<td style='width:80%' class='forumheader3'>".LANG_LAN_12.": </td>
|
|
<td style='width:20%;text-align:center' class='forumheader3'>";
|
|
$checked = ($pref['multilanguage'] == 1) ? "checked='checked'" : "";
|
|
$text .= "<input type='checkbox' name='multilanguage' value='1' $checked />
|
|
</td>
|
|
</tr>
|
|
";
|
|
|
|
$text .= "
|
|
<tr>
|
|
<td style='width:80%' class='forumheader3'>".LANG_LAN_18."<br />
|
|
<span class='smalltext'>".LANG_LAN_19."<br />".LANG_LAN_20."</span></td>
|
|
<td style='width:20%;text-align:center' class='forumheader3'>www.";
|
|
$text .= "<input class='tbox' type='text' name='multilanguage_subdomain' value=\"".substr($pref['multilanguage_subdomain'],1)."\" />
|
|
</td>
|
|
</tr>
|
|
";
|
|
|
|
|
|
$text .= "<tr style='vertical-align:top'>
|
|
<td colspan='2' style='text-align:center' class='forumheader'>";
|
|
$text .= "<input class='button' type='submit' name='submit_prefs' value='".LAN_SAVE."' />";
|
|
$text .= "</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>";
|
|
|
|
$caption = LANG_LAN_13; // "Language Preferences";
|
|
$ns->tablerender($caption, $text);
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
function db_Table_exists($table)
|
|
{
|
|
global $mySQLdefaultdb;
|
|
$tables = getcachedvars("table_list");
|
|
if(!$tables)
|
|
{
|
|
$tablist = mysql_list_tables($mySQLdefaultdb);
|
|
while($tmp = mysql_fetch_array($tablist))
|
|
{
|
|
$tables[] = $tmp[0];
|
|
}
|
|
cachevars("table_list", $tables);
|
|
}
|
|
return in_array(strtolower(MPREFIX."lan_".$table), $tables);
|
|
}
|
|
// ----------------------------------------------------------------------------
|
|
|
|
function copy_table($oldtable, $newtable, $drop = FALSE, $data = FALSE)
|
|
{
|
|
global $sql;
|
|
$old = MPREFIX.strtolower($oldtable);
|
|
$new = MPREFIX.strtolower($newtable);
|
|
if($drop)
|
|
{
|
|
$sql->db_Select_gen("DROP TABLE IF EXISTS {$new}");
|
|
}
|
|
|
|
//Get $old table structure
|
|
$sql->db_Select_gen('SET SQL_QUOTE_SHOW_CREATE = 1');
|
|
$qry = "SHOW CREATE TABLE {$old}";
|
|
if($sql->db_Select_gen($qry))
|
|
{
|
|
$row = $sql->db_Fetch();
|
|
$qry = $row[1];
|
|
$qry = str_replace($old, $new, $qry);
|
|
}
|
|
$result = mysql_query($qry);
|
|
if(!$result)
|
|
{
|
|
return FALSE;
|
|
}
|
|
if ($data) //We need to copy the data too
|
|
{
|
|
$qry = "INSERT INTO {$new} SELECT * FROM {$old}";
|
|
$sql->db_Select_gen($qry);
|
|
}
|
|
return TRUE;
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
function table_list() {
|
|
// grab default language lists.
|
|
global $mySQLdefaultdb;
|
|
|
|
$exclude[] = "banlist"; $exclude[] = "banner";
|
|
$exclude[] = "cache"; $exclude[] = "core";
|
|
$exclude[] = "online"; $exclude[] = "parser";
|
|
$exclude[] = "plugin"; $exclude[] = "user";
|
|
$exclude[] = "upload"; $exclude[] = "userclass_classes";
|
|
$exclude[] = "rbinary"; $exclude[] = "session";
|
|
$exclude[] = "tmp"; $exclude[] = "flood";
|
|
$exclude[] = "stat_info"; $exclude[] = "stat_last";
|
|
$exclude[] = "submit_news"; $exclude[] = "rate";
|
|
$exclude[] = "stat_counter";$exclude[] = "user_extended";
|
|
$exclude[] = "user_extended_struc";
|
|
$exclude[] = "pm_messages";
|
|
$exclude[] = "pm_blocks";
|
|
|
|
$tables = mysql_list_tables($mySQLdefaultdb);
|
|
|
|
while (list($temp) = mysql_fetch_array($tables))
|
|
{
|
|
if(strpos($temp, MPREFIX) === 0)
|
|
{
|
|
$e107tab = str_replace(MPREFIX, "", $temp);
|
|
if (!in_array($e107tab, $exclude) && stristr($e107tab, "lan_") === FALSE)
|
|
{
|
|
$tabs[] = $e107tab;
|
|
}
|
|
}
|
|
}
|
|
|
|
return $tabs;
|
|
}
|
|
|
|
|
|
// ------------- render form ---------------------------------------------------
|
|
function multilang_db(){
|
|
global $pref,$ns,$tp,$rs,$lanlist,$tabs;
|
|
|
|
if(isset($pref['multilanguage']) && $pref['multilanguage']){
|
|
$caption = LANG_LAN_16; // language
|
|
$text = MLAD_LAN_4."<br /><br />";
|
|
|
|
|
|
// Choose Language to Edit:
|
|
$text = "<div style='text-align:center'>
|
|
<div style='".ADMIN_WIDTH.";margin-left: auto; margin-right: auto;'>
|
|
<table class='fborder' style='width:99%; margin-top: 1px;'>
|
|
<tr><td class='fcaption'>".ADLAN_132."</td>
|
|
<td class='fcaption'>".LANG_LAN_03."</td>
|
|
<td class='fcaption'>".LAN_OPTIONS."</td>
|
|
</tr>\n\n";
|
|
sort($lanlist);
|
|
for($i = 0; $i < count($lanlist); $i++)
|
|
{
|
|
$installed = 0;
|
|
|
|
$text .= "<tr><td class='forumheader3' style='width:30%'>".$lanlist[$i]."</td><td class='forumheader3'>\n";
|
|
foreach ($tabs as $tab_name) {
|
|
if (db_Table_exists(strtolower($lanlist[$i])."_".$tab_name)) {
|
|
$text .= $tab_name.", ";
|
|
$installed++;
|
|
}
|
|
}
|
|
if($lanlist[$i] == $pref['sitelanguage']){
|
|
$text .= "<div style='text-align:center'><i>".LANG_LAN_17."</i></div>";
|
|
}else{
|
|
$text .= (!$installed)? "<div style='text-align:center'><i>".LANG_LAN_05."</i></div>" : "";
|
|
}
|
|
$text .= "</td><td class='forumheader3' style='width:20%;white-space:nowrap;text-align:right'>\n";
|
|
$text .= $rs->form_open("post", e_SELF."?modify", "lang_form_".str_replace(" ", "_", $lanlist[$i]));
|
|
$text .= "<div style='text-align: center'>\n";
|
|
if ($installed) {
|
|
$text .= " <input type='submit' class='button' name='edit_existing' value='".LAN_EDIT."' />\n";
|
|
$text .= " <input type='submit' class='button' name='del_existing' value='".LAN_DELETE."' onclick=\"return jsconfirm('Delete all tables in ".$lanlist[$i]." ?')\" />\n";
|
|
} elseif($lanlist[$i] != $pref['sitelanguage']) {
|
|
$text .= "<input type='submit' class='button' name='edit_existing' value='".LAN_CREATE."' />\n";
|
|
}
|
|
$text .= "<input type='hidden' name='lang_choices' value='".$lanlist[$i]."' />";
|
|
$text .= "</div>";
|
|
$text .= $rs->form_close();
|
|
$text .= "</td></tr>";
|
|
}
|
|
|
|
$text .= "</table></div></div>";
|
|
|
|
$ns->tablerender($caption, $text);
|
|
}
|
|
}
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
function show_tools()
|
|
{
|
|
global $ns;
|
|
|
|
include_lan(e_LANGUAGEDIR.e_LANGUAGE."/admin/lan_lancheck.php");
|
|
|
|
$text .= "
|
|
<form name='lancheck' method='post' action='".e_ADMIN."lancheck.php'>
|
|
<table class='fborder' style='".ADMIN_WIDTH."'>
|
|
<tr>
|
|
<td class='fcaption'>".LAN_CHECK_1."</td>
|
|
<td class='forumheader3' style='text-align:center'>
|
|
<select name='language' class='tbox'>
|
|
<option value=''>".LAN_SELECT."</option>";
|
|
|
|
$languages = explode(",",e_LANLIST);
|
|
sort($languages);
|
|
|
|
foreach($languages as $lang)
|
|
{
|
|
if($lang != "English")
|
|
{
|
|
$text .= "<option value='{$lang}' >{$lang}</option>\n";
|
|
}
|
|
}
|
|
|
|
$text .= "
|
|
</select>
|
|
<input type='submit' name='language_sel' value=\"".LAN_CHECK_2."\" class='button' />
|
|
</td></tr>
|
|
</table></form>";
|
|
|
|
$ns->tablerender(LANG_LAN_21, $text);
|
|
}
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
function language_adminmenu() {
|
|
global $action,$pref;
|
|
if ($action == "") {
|
|
$action = "main";
|
|
}
|
|
|
|
if($action == "modify"){
|
|
$action = "db";
|
|
}
|
|
$var['main']['text'] = LAN_PREFS;
|
|
$var['main']['link'] = e_SELF;
|
|
|
|
if(isset($pref['multilanguage']) && $pref['multilanguage']){
|
|
$var['db']['text'] = LANG_LAN_03;
|
|
$var['db']['link'] = e_SELF."?db";
|
|
}
|
|
|
|
$lcnt = explode(",",e_LANLIST);
|
|
if(count($lcnt) > 1)
|
|
{
|
|
$var['tools']['text'] = ADLAN_CL_6;
|
|
$var['tools']['link'] = e_SELF."?tools";
|
|
}
|
|
|
|
show_admin_menu(ADLAN_132, $action, $var);
|
|
}
|
|
|
|
?>
|