function check_data()
{
- if ($_POST['code'] == "" || $_POST['name'] == "" || $_POST['encoding'] == "")
+ if ($_POST['code'] == "" || $_POST['name'] == "" || $_POST['encoding'] == "") {
+ display_error(_("Language name, code nor encoding cannot be empty"));
return false;
+ }
return true;
}
function write_lang()
{
- global $path_to_root, $installed_languages;
+ global $path_to_root, $installed_languages, $dflt_lang;
include_once($path_to_root . "/lang/installed_languages.inc");
$conn = array_natsort($installed_languages, 'code', 'code');
else
$msg .= "),\n";
}
- $msg .= "\t);\n?>";
+
+ $msg .= "\t);\n";
+ $msg .= "\n\$dflt_lang = '$dflt_lang';\n?>\n";
$filename = $path_to_root . "/lang/installed_languages.inc";
// Check if the file exists and is writable first.
function handle_submit()
{
- global $path_to_root, $installed_languages;
+ global $path_to_root, $installed_languages, $dflt_lang;
if (!check_data())
return false;
$id = $_GET['id'];
+ if ($_POST['dflt']) {
+ $dflt_lang = $_POST['code'];
+ }
+
$installed_languages[$id]['code'] = $_POST['code'];
$installed_languages[$id]['name'] = $_POST['name'];
$installed_languages[$id]['encoding'] = $_POST['encoding'];
function handle_delete()
{
- global $path_to_root, $installed_languages;
+ global $path_to_root, $installed_languages, $dflt_lang;
$id = $_GET['id'];
$lang = $installed_languages[$id]['code'];
$filename = "$path_to_root/lang/$lang/LC_MESSAGES";
- if ($h = opendir($filename))
- {
- while (($file = readdir($h)) !== false)
- {
- if (is_file("$filename/$file"))
- unlink("$filename/$file");
- }
- closedir($h);
- }
- rmdir($filename);
- $filename = "$path_to_root/lang/$lang";
- if ($h = opendir($filename))
- {
- while (($file = readdir($h)) !== false)
- {
- if (is_file("$filename/$file"))
- unlink("$filename/$file");
- }
- closedir($h);
- }
- rmdir($filename);
+ if ($lang == $dflt_lang ) {
+ // on delete set default to current.
+ $dflt_lang = $_SESSION['language']->code;
+ }
+
unset($installed_languages[$id]);
- $conn = array_values($installed_languages);
- $installed_languages = $conn;
-
- //$$db_connections = array_values($db_connections);
+ $installed_languages = array_values($installed_languages);
if (!write_lang())
return;
+
+ $filename = "$path_to_root/lang/$lang";
+ flush_dir($filename);
+ rmdir($filename);
+
meta_forward($_SERVER['PHP_SELF']);
}
function display_languages()
{
- global $table_style, $installed_languages;
+ global $table_style, $installed_languages, $dflt_lang;
$lang = $_SESSION["language"]->code;
}
</script>";
start_table($table_style);
- $th = array(_("Language"), _("Name"), _("Encoding"), _("Right To Left"), "", "");
+ $th = array(_("Language"), _("Name"), _("Encoding"), _("Right To Left"), _("Default"), "", "");
table_header($th);
$k = 0;
else
$rtl = _("No");
label_cell($rtl);
+ label_cell($dflt_lang == $conn[$i]['code'] ? _("Yes") :_("No"));
$edit = _("Edit");
$delete = _("Delete");
if (user_graphic_links())
function display_language_edit($selected_id)
{
- global $installed_languages, $table_style2;
+ global $installed_languages, $table_style2, $dflt_lang;
if ($selected_id != -1)
$n = $selected_id;
$_POST['rtl'] = $conn['rtl'];
else
$_POST['rtl'] = false;
+ $_POST['dflt'] = $dflt_lang == $conn['code'];
hidden('selected_id', $selected_id);
}
- text_row_ex(_("Language"), 'code', 20);
- text_row_ex(_("Name"), 'name', 20);
+ text_row_ex(_("Language Code"), 'code', 20);
+ text_row_ex(_("Language Name"), 'name', 20);
text_row_ex(_("Encoding"), 'encoding', 20);
yesno_list_row(_("Right To Left"), 'rtl', null, "", "", false);
+ yesno_list_row(_("Default Language"), 'dflt', null, "", "", false);
label_row(_("Language File") . " (PO)", "<input name='uploadfile' type='file'>");
label_row(_("Language File") . " (MO)", "<input name='uploadfile2' type='file'>");