X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Finst_lang.php;h=aa259f92ecc7785dcae40aec1aae54dd927346ac;hb=16ba695b81cd7283faa18372a74670415b562eb5;hp=e5eae2e79f727338021d532a3bcf2dfd123f1c04;hpb=da8311619dd73feae101d246a1957b972e00cbd2;p=fa-stable.git diff --git a/admin/inst_lang.php b/admin/inst_lang.php index e5eae2e7..aa259f92 100644 --- a/admin/inst_lang.php +++ b/admin/inst_lang.php @@ -1,6 +1,15 @@ . +***********************************************************************/ +$page_security = 20; $path_to_root=".."; include_once($path_to_root . "/includes/session.inc"); @@ -16,7 +25,7 @@ include_once($path_to_root . "/includes/ui.inc"); if (isset($_GET['selected_id'])) { $selected_id = $_GET['selected_id']; -} +} elseif (isset($_POST['selected_id'])) { $selected_id = $_POST['selected_id']; @@ -28,6 +37,8 @@ else function check_data() { + if ($_POST['code'] == "" || $_POST['name'] == "" || $_POST['encoding'] == "") + return false; return true; } @@ -45,15 +56,15 @@ function array_natsort($aryData, $strIndex, $strSortBy, $strSortType=false) if (!is_array($aryData) || !$strIndex || !$strSortBy) // return the array return $aryData; - + // create our temporary arrays $arySort = $aryResult = array(); - + // loop through the array foreach ($aryData as $aryRow) // set up the value in the array $arySort[$aryRow[$strIndex]] = $aryRow[$strSortBy]; - + // apply the natural sort natsort($arySort); @@ -61,7 +72,7 @@ function array_natsort($aryData, $strIndex, $strSortBy, $strSortType=false) if ($strSortType=="desc") // reverse the array arsort($arySort); - + // loop through the sorted and original data foreach ($arySort as $arySortKey => $arySorted) foreach ($aryData as $aryOriginal) @@ -72,7 +83,7 @@ function array_natsort($aryData, $strIndex, $strSortBy, $strSortType=false) // return the return return $aryResult; -} +} function write_lang() { @@ -82,9 +93,9 @@ function write_lang() $conn = array_natsort($installed_languages, 'code', 'code'); $installed_languages = $conn; //reset($installed_languages); - $n = count($installed_languages); + $n = count($installed_languages); $msg = " ')\n"; $msg .= "-- 'code' should match the name of the directory for the language under \\lang\n"; @@ -93,7 +104,8 @@ function write_lang() $msg .= "*/\n\n\n"; $msg .= "\$installed_languages = array (\n"; - $msg .= "\t0 => "; + if ($n > 0) + $msg .= "\t0 => "; for ($i = 0; $i < $n; $i++) { if ($i > 0) @@ -112,16 +124,16 @@ function write_lang() $filename = $path_to_root . "/lang/installed_languages.inc"; // Check if the file exists and is writable first. - if (file_exists($filename) && is_writable($filename)) + if (file_exists($filename) && is_writable($filename)) { - if (!$zp = fopen($filename, 'w')) + if (!$zp = fopen($filename, 'w')) { display_error(_("Cannot open the languages file - ") . $filename); return false; - } - else + } + else { - if (!fwrite($zp, $msg)) + if (!fwrite($zp, $msg)) { display_error(_("Cannot write to the language file - ") . $filename); fclose($zp); @@ -130,8 +142,8 @@ function write_lang() // Close file fclose($zp); } - } - else + } + else { display_error(_("The language file ") . $filename . _(" is not writable. Change its permissions so it is, then re-run the operation.")); return false; @@ -156,15 +168,23 @@ function handle_submit() $installed_languages[$id]['rtl'] = (bool)$_POST['rtl']; if (!write_lang()) return false; - $directory = $path_to_root . "/lang/" . $_POST['code']; + $directory = $path_to_root . "/lang/" . $_POST['code']; if (!file_exists($directory)) { mkdir($directory); mkdir($directory . "/LC_MESSAGES"); - } + } if (is_uploaded_file($_FILES['uploadfile']['tmp_name'])) { $file1 = $_FILES['uploadfile']['tmp_name']; + $file2 = $directory . "/LC_MESSAGES/".$_POST['code'].".po"; + if (file_exists($file2)) + unlink($file2); + move_uploaded_file($file1, $file2); + } + if (is_uploaded_file($_FILES['uploadfile2']['tmp_name'])) + { + $file1 = $_FILES['uploadfile2']['tmp_name']; $file2 = $directory . "/LC_MESSAGES/".$_POST['code'].".mo"; if (file_exists($file2)) unlink($file2); @@ -179,13 +199,13 @@ function handle_delete() { global $path_to_root, $installed_languages; - $id = $_GET['id']; + $id = $_GET['id']; $lang = $installed_languages[$id]['code']; - $filename = "$path_to_root/lang/$lang/LC_MESSAGES"; - if ($h = opendir($filename)) + $filename = "$path_to_root/lang/$lang/LC_MESSAGES"; + if ($h = opendir($filename)) { - while (($file = readdir($h)) !== false) + while (($file = readdir($h)) !== false) { if (is_file("$filename/$file")) unlink("$filename/$file"); @@ -193,10 +213,10 @@ function handle_delete() closedir($h); } rmdir($filename); - $filename = "$path_to_root/lang/$lang"; - if ($h = opendir($filename)) + $filename = "$path_to_root/lang/$lang"; + if ($h = opendir($filename)) { - while (($file = readdir($h)) !== false) + while (($file = readdir($h)) !== false) { if (is_file("$filename/$file")) unlink("$filename/$file"); @@ -223,7 +243,7 @@ function display_languages() global $table_style, $installed_languages; $lang = $_SESSION["language"]->code; - + echo " "; - + start_table($table_style2); - if ($selected_id != -1) + if ($selected_id != -1) { $conn = $installed_languages[$selected_id]; $_POST['code'] = $conn['code']; @@ -298,18 +325,19 @@ function display_language_edit($selected_id) else $_POST['rtl'] = false; hidden('selected_id', $selected_id); - } + } text_row_ex(_("Language"), 'code', 20); text_row_ex(_("Name"), 'name', 20); text_row_ex(_("Encoding"), 'encoding', 20); yesno_list_row(_("Right To Left"), 'rtl', null, "", "", false); - label_row(_("Language File"), ""); + label_row(_("Language File") . " (PO)", ""); + label_row(_("Language File") . " (MO)", ""); end_table(0); - display_note(_("Select your language MO file from your local harddisk."), 0, 1); - echo "
"; + display_note(_("Select your language files from your local harddisk."), 0, 1); + echo "
"; end_form(); @@ -320,18 +348,18 @@ function display_language_edit($selected_id) if (isset($_GET['c'])) { - if ($_GET['c'] == 'df') + if ($_GET['c'] == 'df') { handle_delete(); } - if ($_GET['c'] == 'u') + if ($_GET['c'] == 'u') { - if (handle_submit()) + if (handle_submit()) { //meta_forward($_SERVER['PHP_SELF']); } - } + } } //---------------------------------------------------------------------------------------------