X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Finst_lang.php;h=858e13a6afcaea83872d7eda9965adf1fabb722e;hb=d9b4de9d7e9d3ba77f6ece752fd6cc988effd8f1;hp=aa259f92ecc7785dcae40aec1aae54dd927346ac;hpb=b956923926de6b7eecf57510cf86857354cac1b3;p=fa-stable.git diff --git a/admin/inst_lang.php b/admin/inst_lang.php index aa259f92..858e13a6 100644 --- a/admin/inst_lang.php +++ b/admin/inst_lang.php @@ -1,19 +1,19 @@ . + See the License here . ***********************************************************************/ -$page_security = 20; +$page_security = 'SA_CREATELANGUAGE'; $path_to_root=".."; include_once($path_to_root . "/includes/session.inc"); -page(_("Install/Update Languages")); +page(_($help_context = "Install/Update Languages")); include_once($path_to_root . "/includes/date_functions.inc"); include_once($path_to_root . "/admin/db/company_db.inc"); @@ -37,115 +37,8 @@ else function check_data() { - if ($_POST['code'] == "" || $_POST['name'] == "" || $_POST['encoding'] == "") - return false; - return true; -} - -/** - * @return Returns the array sorted as required - * @param $aryData Array containing data to sort - * @param $strIndex name of column to use as an index - * @param $strSortBy Column to sort the array by - * @param $strSortType String containing either asc or desc [default to asc] - * @desc Naturally sorts an array using by the column $strSortBy - */ -function array_natsort($aryData, $strIndex, $strSortBy, $strSortType=false) -{ - // if the parameters are invalid - 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); - - // if the sort type is descending - if ($strSortType=="desc") - // reverse the array - arsort($arySort); - - // loop through the sorted and original data - foreach ($arySort as $arySortKey => $arySorted) - foreach ($aryData as $aryOriginal) - // if the key matches - if ($aryOriginal[$strIndex]==$arySortKey) - // add it to the output array - array_push($aryResult, $aryOriginal); - - // return the return - return $aryResult; -} - -function write_lang() -{ - global $path_to_root, $installed_languages; - include_once($path_to_root . "/lang/installed_languages.inc"); - - $conn = array_natsort($installed_languages, 'code', 'code'); - $installed_languages = $conn; - //reset($installed_languages); - $n = count($installed_languages); - $msg = " ')\n"; - $msg .= "-- 'code' should match the name of the directory for the language under \\lang\n"; - $msg .= "-- 'name' is the name that will be displayed in the language selection list (in Users and Display Setup)\n"; - $msg .= "-- 'rtl' only needs to be set for right-to-left languages like Arabic and Hebrew\n\n"; - $msg .= "*/\n\n\n"; - - $msg .= "\$installed_languages = array (\n"; - if ($n > 0) - $msg .= "\t0 => "; - for ($i = 0; $i < $n; $i++) - { - if ($i > 0) - $msg .= "\t\tarray "; - else - $msg .= "array "; - $msg .= "('code' => '" . $installed_languages[$i]['code'] . "', "; - $msg .= "'name' => '" . $installed_languages[$i]['name'] . "', "; - $msg .= "'encoding' => '" . $installed_languages[$i]['encoding'] . "'"; - if (isset($installed_languages[$i]['rtl']) && $installed_languages[$i]['rtl']) - $msg .= ", 'rtl' => true),\n"; - else - $msg .= "),\n"; - } - $msg .= "\t);\n?>"; - - $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 (!$zp = fopen($filename, 'w')) - { - display_error(_("Cannot open the languages file - ") . $filename); - return false; - } - else - { - if (!fwrite($zp, $msg)) - { - display_error(_("Cannot write to the language file - ") . $filename); - fclose($zp); - return false; - } - // Close file - fclose($zp); - } - } - else - { - display_error(_("The language file ") . $filename . _(" is not writable. Change its permissions so it is, then re-run the operation.")); + if ($_POST['code'] == "" || $_POST['name'] == "" || $_POST['encoding'] == "") { + display_error(_("Language name, code nor encoding cannot be empty")); return false; } return true; @@ -155,13 +48,17 @@ function write_lang() 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']; @@ -197,42 +94,28 @@ function handle_submit() 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']); } @@ -240,7 +123,7 @@ function handle_delete() function display_languages() { - global $table_style, $installed_languages; + global $installed_languages, $dflt_lang; $lang = $_SESSION["language"]->code; @@ -252,8 +135,8 @@ function display_languages() document.location.replace('inst_lang.php?c=df&id='+id) } "; - start_table($table_style); - $th = array(_("Language"), _("Name"), _("Encoding"), _("Right To Left"), "", ""); + start_table(TABLESTYLE); + $th = array(_("Language"), _("Name"), _("Encoding"), _("Right To Left"), _("Default"), "", ""); table_header($th); $k = 0; @@ -274,6 +157,7 @@ function display_languages() else $rtl = _("No"); label_cell($rtl); + label_cell($dflt_lang == $conn[$i]['code'] ? _("Yes") :_("No")); $edit = _("Edit"); $delete = _("Delete"); if (user_graphic_links()) @@ -295,14 +179,14 @@ function display_languages() function display_language_edit($selected_id) { - global $installed_languages, $table_style2; + global $installed_languages, $dflt_lang; if ($selected_id != -1) $n = $selected_id; else $n = count($installed_languages); - start_form(true, true); + start_form(true); echo " "; - start_table($table_style2); + start_table(TABLESTYLE2); if ($selected_id != -1) { @@ -324,16 +208,18 @@ function display_language_edit($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)", ""); - label_row(_("Language File") . " (MO)", ""); + file_row(_("Language File") . " (PO)", 'uploadfile'); + file_row(_("Language File") . " (MO)", 'uploadfile2'); end_table(0); display_note(_("Select your language files from your local harddisk."), 0, 1);