languages.php 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * This page allows the platform admin to decide which languages should
  5. * be available in the language selection menu in the login page. This can be
  6. * useful for countries with more than one official language (like Belgium:
  7. * Dutch, French and German) or international organisations that are active in
  8. * a limited number of countries.
  9. *
  10. * @author Patrick Cool, main author
  11. * @author Roan EMbrechts, code cleaning
  12. * @since Dokeos 1.6
  13. * @package chamilo.admin
  14. */
  15. // we are in the admin area so we do not need a course id
  16. $cidReset = true;
  17. // include global script
  18. require_once __DIR__.'/../inc/global.inc.php';
  19. $this_section = SECTION_PLATFORM_ADMIN;
  20. api_protect_admin_script();
  21. $action = isset($_GET['action']) ? $_GET['action'] : null;
  22. //Ajax request
  23. if (isset($_POST['sent_http_request'])) {
  24. if (isset($_POST['visibility']) && $_POST['visibility'] == strval(intval($_POST['visibility'])) && $_POST['visibility'] == 0) {
  25. if (isset($_POST['id']) && $_POST['id'] == strval(intval($_POST['id']))) {
  26. if (SubLanguageManager::check_if_language_is_used($_POST['id']) == false) {
  27. SubLanguageManager::make_unavailable_language($_POST['id']);
  28. echo 'set_hidden';
  29. } else {
  30. echo 'confirm:'.intval($_POST['id']);
  31. }
  32. }
  33. }
  34. if (isset($_POST['visibility']) && $_POST['visibility'] == strval(intval($_POST['visibility'])) && $_POST['visibility'] == 1) {
  35. if (isset($_POST['id']) && $_POST['id'] == strval(intval($_POST['id']))) {
  36. SubLanguageManager::make_available_language($_POST['id']);
  37. echo 'set_visible';
  38. }
  39. }
  40. exit;
  41. }
  42. $msgLang = isset($_SESSION['disabled_languages']) ? 1 : 0;
  43. $disabledLang = isset($_SESSION['disabled_languages']) ? $_SESSION['disabled_languages'] : null;
  44. $htmlHeadXtra[] = '<script>
  45. $(document).ready(function() {
  46. var msgLang = '.$msgLang.';
  47. var disabledLang = "'.$disabledLang.'"
  48. if (msgLang == 1) {
  49. $("#id_content_message").html("<div class=\"warning-message alert alert-warning\">' . get_lang('ThereAreUsersUsingThisLanguagesDisableItManually').' <br /> " + disabledLang + "</div");
  50. }
  51. $("#disable_all_except_default").click(function () {
  52. if(confirm("'. get_lang('ConfirmYourChoice').'")) {
  53. $.ajax({
  54. contentType: "application/x-www-form-urlencoded",
  55. beforeSend: function(objeto) {
  56. $("#id_content_message").html("<div class=\"warning-message alert alert-warning\"><em class=\"fa fa-refresh fa-spin\"></em> ' . get_lang('Loading').'</div>");
  57. },
  58. type: "GET",
  59. url: "../admin/languages.php",
  60. data: "action=disable_all_except_default",
  61. success: function(datos) {
  62. window.location.href = "' . api_get_self().'";
  63. }
  64. });
  65. }
  66. return false;
  67. });
  68. //$(window).load(function () {
  69. $(".make_visible_and_invisible").attr("href","javascript:void(0)");
  70. //});
  71. $("td .make_visible_and_invisible").click(function () {
  72. make_visible="visible.png";
  73. make_invisible="invisible.png";
  74. id_link_tool=$(this).attr("id");
  75. id_img_link_tool="img"+id_link_tool;
  76. path_name_of_imglinktool=$("#"+id_img_link_tool).attr("src");
  77. link_info_id=id_link_tool.split("linktool_");
  78. link_id=link_info_id[1];
  79. link_tool_info=path_name_of_imglinktool.split("/");
  80. my_image_tool=link_tool_info[link_tool_info.length-1];
  81. if (my_image_tool=="visible.png") {
  82. path_name_of_imglinktool=path_name_of_imglinktool.replace(make_visible,make_invisible);
  83. my_visibility=0;
  84. } else {
  85. path_name_of_imglinktool=path_name_of_imglinktool.replace(make_invisible,make_visible);
  86. my_visibility=1;
  87. }
  88. $.ajax({
  89. contentType: "application/x-www-form-urlencoded",
  90. beforeSend: function(objeto) {
  91. $("#id_content_message").html("<div class=\"warning-message alert alert-warning\"><em class=\"fa fa-refresh fa-spin\"></em> ' . get_lang('Loading').'</div>");
  92. },
  93. type: "POST",
  94. url: "../admin/languages.php",
  95. data: "id="+link_id+"&visibility="+my_visibility+"&sent_http_request=1",
  96. success: function(datos) {
  97. if (datos=="set_visible" || datos=="set_hidden") {
  98. $("#"+id_img_link_tool).attr("src",path_name_of_imglinktool);
  99. if (my_image_tool=="visible.png") {
  100. $("#"+id_img_link_tool).attr("alt","' . get_lang('MakeAvailable', '').'");
  101. $("#"+id_img_link_tool).attr("title","' . get_lang('MakeAvailable', '').'");
  102. } else {
  103. $("#"+id_img_link_tool).attr("alt","' . get_lang('MakeUnavailable', '').'");
  104. $("#"+id_img_link_tool).attr("title","' . get_lang('MakeUnavailable', '').'");
  105. }
  106. if (datos=="set_visible") {
  107. $("#id_content_message").html("<div class=\"confirmation-message alert alert-success\">' . get_lang('LanguageIsNowVisible', '').'</div>");
  108. }
  109. if (datos=="set_hidden") {
  110. $("#id_content_message").html("<div class=\"confirmation-message alert alert-success\">' . get_lang('LanguageIsNowHidden', '').'</div>");
  111. }
  112. }
  113. var action = datos.split(":")[0];
  114. if (action && action == "confirm") {
  115. var id = datos.split(":")[1];
  116. var sure = "<div class=\"warning-message alert alert-warning\">'.get_lang('ThereAreUsersUsingThisLanguageYouWantToDisableThisLanguageAndSetUsersWithTheDefaultPortalLanguage').'<br /><br /><a href=\"languages.php?action=make_unavailable_confirmed&id="+id+"\" class=\"btn btn-default\"><em class=\"fa fa-eye\"></em> '.get_lang('MakeUnavailable').'</a></div>";
  117. $("#id_content_message").html(sure);
  118. $("html, body").animate({ scrollTop: 0 }, 200);
  119. }
  120. } });
  121. });
  122. });
  123. </script>';
  124. // unset the msg session variable
  125. unset($_SESSION['disabled_languages']);
  126. // setting the table that is needed for the styles management (there is a check if it exists later in this code)
  127. $tbl_admin_languages = Database::get_main_table(TABLE_MAIN_LANGUAGE);
  128. $tbl_settings_current = Database::get_main_table(TABLE_MAIN_SETTINGS_CURRENT);
  129. // we change the availability
  130. if ($action == 'makeunavailable') {
  131. if (isset($_GET['id']) && $_GET['id'] == strval(intval($_GET['id']))) {
  132. SubLanguageManager::make_unavailable_language($_GET['id']);
  133. }
  134. }
  135. if ($action == 'makeavailable') {
  136. if (isset($_GET['id']) && $_GET['id'] == strval(intval($_GET['id']))) {
  137. SubLanguageManager::make_available_language($_GET['id']);
  138. }
  139. }
  140. if ($action == 'setplatformlanguage') {
  141. if (isset($_GET['id']) && $_GET['id'] == strval(intval($_GET['id']))) {
  142. SubLanguageManager::set_platform_language($_GET['id']);
  143. }
  144. }
  145. if ($action == 'disable_all_except_default') {
  146. $allLanguages = SubLanguageManager::getAllLanguages();
  147. $failedDisabledLanguages = '';
  148. $checkFailed = false;
  149. foreach ($allLanguages as $language) {
  150. if (SubLanguageManager::check_if_language_is_used($language['id']) == false) {
  151. SubLanguageManager::make_unavailable_language($language['id']);
  152. } else {
  153. if (intval(SubLanguageManager::get_platform_language_id()) !== intval($language['id'])) {
  154. $failedDisabledLanguages .= ' - '.$language['english_name'].'<br />';
  155. $checkFailed = true;
  156. }
  157. }
  158. }
  159. if ($checkFailed) {
  160. $_SESSION['disabled_languages'] = $failedDisabledLanguages;
  161. }
  162. }
  163. if (isset($_POST['Submit']) && $_POST['Submit']) {
  164. // changing the name
  165. $sql_update = "UPDATE $tbl_admin_languages SET original_name='{$_POST['txt_name']}'
  166. WHERE id='{$_POST['edit_id']}'";
  167. $result = Database::query($sql_update);
  168. // changing the Platform language
  169. if ($_POST['platformlanguage'] && $_POST['platformlanguage'] <> '') {
  170. //$sql_update_2 = "UPDATE $tbl_settings_current SET selected_value='{$_POST['platformlanguage']}' WHERE variable='platformLanguage'";
  171. //$result_2 = Database::query($sql_update_2);
  172. api_set_setting('platformLanguage', $_POST['platformlanguage'], null, null, $_configuration['access_url']);
  173. }
  174. } elseif (isset($_POST['action'])) {
  175. switch ($_POST['action']) {
  176. case 'makeavailable' :
  177. if (count($_POST['id']) > 0) {
  178. $ids = array();
  179. foreach ($_POST['id'] as $index => $id) {
  180. $ids[] = intval($id);
  181. }
  182. $sql = "UPDATE $tbl_admin_languages SET available='1' WHERE id IN ('".implode("','", $ids)."')";
  183. Database::query($sql);
  184. }
  185. break;
  186. case 'makeunavailable' :
  187. if (count($_POST['id']) > 0) {
  188. $ids = array();
  189. foreach ($_POST['id'] as $index => $id) {
  190. $ids[] = intval($id);
  191. }
  192. $sql = "UPDATE $tbl_admin_languages SET available='0' WHERE id IN ('".implode("','", $ids)."')";
  193. Database::query($sql);
  194. }
  195. break;
  196. }
  197. }
  198. // setting the name of the tool
  199. $tool_name = get_lang('PlatformLanguages');
  200. // setting breadcrumbs
  201. $interbreadcrumb[] = array('url' => 'index.php', 'name' => get_lang('PlatformAdmin'));
  202. // including the header file (which includes the banner itself)
  203. Display :: display_header($tool_name);
  204. if (isset($_GET['action']) && $_GET['action'] == 'make_unavailable_confirmed') {
  205. $language_info = SubLanguageManager::get_all_information_of_language($_GET['id']);
  206. if ($language_info['available'] == 1) {
  207. SubLanguageManager::make_unavailable_language($_GET['id']);
  208. $platform_language = api_get_setting('platformLanguage');
  209. UserManager::update_all_user_languages($language_info['english_name'], $platform_language);
  210. Display::addFlash(Display::return_message(get_lang('LanguageIsNowHidden'), 'confirm'));
  211. }
  212. }
  213. // displaying the explanation for this tool
  214. Display::addFlash(Display::return_message(get_lang('PlatformLanguagesExplanation'), 'normal'));
  215. echo '<a id="disable_all_except_default" href="javascript:void(0)" class="btn btn-primary"><em class="fa fa-eye"></em> '.get_lang('LanguagesDisableAllExceptDefault').'</a><br /><br />';
  216. // selecting all the languages
  217. $sql_select = "SELECT * FROM $tbl_admin_languages";
  218. $result_select = Database::query($sql_select);
  219. $sql_select_lang = "SELECT * FROM $tbl_settings_current WHERE category='Languages'";
  220. $result_select_lang = Database::query($sql_select_lang);
  221. $row_lang = Database::fetch_array($result_select_lang);
  222. // the table data
  223. $language_data = array();
  224. while ($row = Database::fetch_array($result_select)) {
  225. $row_td = array();
  226. $row_td[] = $row['id'];
  227. // the first column is the original name of the language OR a form containing the original name
  228. if ($action == 'edit' and $row['id'] == $_GET['id']) {
  229. if ($row['english_name'] == api_get_setting('platformLanguage')) {
  230. $checked = ' checked="checked" ';
  231. }
  232. $row_td[] = '<input type="hidden" name="edit_id" value="'.Security::remove_XSS($_GET['id']).'" /><input type="text" name="txt_name" value="'.$row['original_name'].'" /> '
  233. . '<input type="checkbox" '.$checked.'name="platformlanguage" id="platformlanguage" value="'.$row['english_name'].'" /><label for="platformlanguage">'.$row['original_name'].' '.get_lang('AsPlatformLanguage').'</label> <input type="submit" name="Submit" value="'.get_lang('Ok').'" /><a name="value" />';
  234. } else {
  235. $row_td[] = $row['original_name'];
  236. }
  237. // the second column
  238. $row_td[] = $row['english_name'];
  239. // the third column
  240. $row_td[] = $row['dokeos_folder'];
  241. if ($row['english_name'] == $row_lang['selected_value']) {
  242. $setplatformlanguage = Display::return_icon('languages.png', get_lang('CurrentLanguagesPortal'), '', ICON_SIZE_SMALL);
  243. } else {
  244. $setplatformlanguage = "<a href=\"javascript:if (confirm('".addslashes(get_lang('AreYouSureYouWantToSetThisLanguageAsThePortalDefault'))."')) { location.href='".api_get_self()."?action=setplatformlanguage&id=".$row['id']."'; }\">".Display::return_icon('languages_na.png', get_lang('SetLanguageAsDefault'), '', ICON_SIZE_SMALL)."</a>";
  245. }
  246. $allow_delete_sub_language = null;
  247. $allow_add_term_sub_language = null;
  248. if (api_get_setting('allow_use_sub_language') == 'true') {
  249. $verified_if_is_sub_language = SubLanguageManager::check_if_language_is_sub_language($row['id']);
  250. if ($verified_if_is_sub_language === false) {
  251. $verified_if_is_father = SubLanguageManager::check_if_language_is_father($row['id']);
  252. $allow_use_sub_language = "&nbsp;<a href='sub_language_add.php?action=definenewsublanguage&id=".$row['id']."'>".Display::return_icon('new_language.png', get_lang('CreateSubLanguage'), array(), ICON_SIZE_SMALL)."</a>";
  253. if ($verified_if_is_father === true) {
  254. //$allow_add_term_sub_language = "&nbsp;<a href='sub_language.php?action=registersublanguage&id=".$row['id']."'>".Display::return_icon('2rightarrow.png', get_lang('AddWordForTheSubLanguage'),array('width'=>ICON_SIZE_SMALL,'height'=>ICON_SIZE_SMALL))."</a>";
  255. $allow_add_term_sub_language = '';
  256. } else {
  257. $allow_add_term_sub_language = '';
  258. }
  259. } else {
  260. $allow_use_sub_language = '';
  261. $all_information_of_sub_language = SubLanguageManager::get_all_information_of_language($row['id']);
  262. $allow_add_term_sub_language = "&nbsp;<a href='sub_language.php?action=registersublanguage&id=".Security::remove_XSS($all_information_of_sub_language['parent_id'])."&sub_language_id=".Security::remove_XSS($row['id'])."'>".Display::return_icon('2rightarrow.png', get_lang('AddWordForTheSubLanguage'), array('width' => ICON_SIZE_SMALL, 'height' => ICON_SIZE_SMALL))."</a>";
  263. $allow_delete_sub_language = "&nbsp;<a href='sub_language_add.php?action=deletesublanguage&id=".Security::remove_XSS($all_information_of_sub_language['parent_id'])."&sub_language_id=".Security::remove_XSS($row['id'])."'>".Display::return_icon('delete.png', get_lang('DeleteSubLanguage'), array('width' => ICON_SIZE_SMALL, 'height' => ICON_SIZE_SMALL))."</a>";
  264. }
  265. } else {
  266. $allow_use_sub_language = '';
  267. $allow_add_term_sub_language = '';
  268. }
  269. if ($row['english_name'] == $row_lang['selected_value']) {
  270. $row_td[] = Display::return_icon('visible.png', get_lang('Visible'))."<a href='".api_get_self()."?action=edit&id=".$row['id']."#value'>".Display::return_icon('edit.png', get_lang('Edit'), '', ICON_SIZE_SMALL)."</a>
  271. &nbsp;" . $setplatformlanguage.$allow_use_sub_language.$allow_add_term_sub_language.$allow_delete_sub_language;
  272. } else {
  273. if ($row['available'] == 1) {
  274. $row_td[] = "<a class=\"make_visible_and_invisible\" id=\"linktool_".$row['id']."\" href='".api_get_self()."?action=makeunavailable&id=".$row['id']."'>".Display::return_icon('visible.png', get_lang('MakeUnavailable'), array('id' => 'imglinktool_'.$row['id']), ICON_SIZE_SMALL)."</a> <a href='".api_get_self()."?action=edit&id=".$row['id']."#value'>".Display::return_icon('edit.png', get_lang('Edit'), '', ICON_SIZE_SMALL)."</a>&nbsp;".$setplatformlanguage.$allow_use_sub_language.$allow_add_term_sub_language.$allow_delete_sub_language;
  275. } else {
  276. $row_td[] = "<a class=\"make_visible_and_invisible\" id=\"linktool_".$row['id']."\" href='".api_get_self()."?action=makeavailable&id=".$row['id']."'>".Display::return_icon('invisible.png', get_lang('MakeAvailable'), array('id' => 'imglinktool_'.$row['id']), ICON_SIZE_SMALL)."</a> <a href='".api_get_self()."?action=edit&id=".$row['id']."#value'>".Display::return_icon('edit.png', get_lang('Edit'), '', ICON_SIZE_SMALL)."</a>&nbsp;".$setplatformlanguage.$allow_use_sub_language.$allow_add_term_sub_language.$allow_delete_sub_language;
  277. }
  278. }
  279. $language_data[] = $row_td;
  280. }
  281. $table = new SortableTableFromArrayConfig($language_data, 1, count($language_data));
  282. $table->set_header(0, '');
  283. $table->set_header(1, get_lang('OriginalName'));
  284. $table->set_header(2, get_lang('EnglishName'));
  285. $table->set_header(3, get_lang('LMSFolder'));
  286. $table->set_header(4, get_lang('Properties'));
  287. $form_actions = array();
  288. $form_actions['makeavailable'] = get_lang('MakeAvailable');
  289. $form_actions['makeunavailable'] = get_lang('MakeUnavailable');
  290. $table->set_form_actions($form_actions);
  291. echo '<div id="id_content_message">&nbsp;</div>';
  292. $table->display();
  293. Display :: display_footer();