sub_language.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * Script for sub-language administration
  5. * @package chamilo.admin.sub_language
  6. */
  7. // name of the language file that needs to be included
  8. $language_file = 'admin';
  9. $cidReset = true;
  10. $this_script = 'sub_language';
  11. require_once '../inc/global.inc.php';
  12. require_once 'sub_language.class.php';
  13. $this_section = SECTION_PLATFORM_ADMIN;
  14. api_protect_admin_script();
  15. $htmlHeadXtra[] ='<script type="text/javascript">
  16. $(document).ready(function() {
  17. $(".save").click(function() {
  18. button_name=$(this).attr("name");
  19. button_array=button_name.split("|");
  20. button_name=button_array[1];
  21. file_id=button_array[2];
  22. is_variable_language="$"+button_name;
  23. is_new_language=$("#txtid_"+file_id+"_"+button_name).attr("value");
  24. if (is_new_language=="undefined") {
  25. is_new_language="_";
  26. }
  27. if (is_new_language.length>0 && is_new_language!="_" && file_id!="" && button_name!="") {
  28. $.ajax({
  29. contentType: "application/x-www-form-urlencoded",
  30. beforeSend: function(objeto) {
  31. $("#div_message_information_id").html("<div class=\"normal-message\"><img src=\'../inc/lib/javascript/indicator.gif\' /></div>");
  32. },
  33. type: "POST",
  34. url: "../admin/sub_language_ajax.inc.php",
  35. data: "new_language="+is_new_language+"&variable_language="+is_variable_language+"&file_id="+file_id+"&id="+'.intval($_REQUEST['id']).'+"&sub="+'.intval($_REQUEST['sub_language_id']).',
  36. success: function(datos) {
  37. if (datos == "1") {
  38. $("#div_message_information_id").html("<div class=\"confirmation-message\">'.get_lang('TheNewWordHasBeenAdded').'</div>");
  39. } else {
  40. $("#div_message_information_id").html("<div class=\"warning-message\">" + datos +"</div>");
  41. }
  42. }
  43. });
  44. } else {
  45. $("#div_message_information_id").html("<div class=\"error-message\">'.get_lang('FormHasErrorsPleaseComplete').'</div>");
  46. }
  47. });
  48. });
  49. </script>';
  50. /**
  51. * Main code
  52. */
  53. // setting the name of the tool
  54. $tool_name = get_lang('CreateSubLanguage');
  55. // setting breadcrumbs
  56. $interbreadcrumb[] = array ('url' => 'index.php', 'name' => get_lang('PlatformAdmin'));
  57. $interbreadcrumb[] = array ('url' => 'languages.php', 'name' => get_lang('PlatformLanguages'));
  58. $sublanguage_folder_error = false;
  59. if (isset($_GET['id']) && $_GET['id']==strval(intval($_GET['id']))) {
  60. $language_name = SubLanguageManager::get_name_of_language_by_id ($_GET['id']);
  61. $sub_language_name = SubLanguageManager::get_name_of_language_by_id ($_GET['sub_language_id']);
  62. $all_data_of_language = SubLanguageManager::get_all_information_of_language($_GET['id']);
  63. $all_data_of_sublanguage = SubLanguageManager::get_all_information_of_language($_GET['sub_language_id']);
  64. $sub_language_file = api_get_path(SYS_LANG_PATH).$all_data_of_sublanguage['dokeos_folder'];
  65. if (!file_exists($sub_language_file) || !is_writable($sub_language_file)) {
  66. $sublanguage_folder_error = $sub_language_file.' '.get_lang('IsNotWritable');
  67. }
  68. if (SubLanguageManager::check_if_exist_language_by_id($_GET['id'])===true) {
  69. $language_id_exist = true;
  70. } else {
  71. $language_id_exist = false;
  72. }
  73. } else {
  74. $language_name='';
  75. $language_id_exist=false;
  76. }
  77. $language_name = get_lang('RegisterTermsOfSubLanguageForLanguage').' ( '.strtolower($sub_language_name).' )';
  78. $path_folder = api_get_path(SYS_LANG_PATH).$all_data_of_language['dokeos_folder'];
  79. if (!is_dir($path_folder) || strlen($all_data_of_language['dokeos_folder'])==0) {
  80. api_not_allowed(true);
  81. }
  82. Display :: display_header($language_name);
  83. echo '<div class="actions-message" >';
  84. echo $language_name;
  85. echo '</div>';
  86. if (!empty($_SESSION['msg'])) {
  87. echo $_SESSION['msg'];
  88. unset($_SESSION['msg']);
  89. } else {
  90. echo '<br />';
  91. }
  92. $txt_search_word = Security::remove_XSS($_REQUEST['txt_search_word']);
  93. $html ='<div style="float:left" class="actions">';
  94. $html.='<form style="float:left" id="Searchlanguage" name="Searchlanguage" method="GET" action="sub_language.php">';
  95. $html.='&nbsp;'.get_lang('OriginalName').'&nbsp; :&nbsp;';
  96. $html.='<input name="id" type="hidden" id="id" value="'.Security::remove_XSS($_REQUEST['id']).'" />';
  97. $html.='<input name="sub_language_id" type="hidden" id="id" value="'.Security::remove_XSS($_REQUEST['sub_language_id']).'" />';
  98. $html.='<input name="txt_search_word" type="text" size="50" id="txt_search_word" value="'.Security::remove_XSS($_REQUEST['txt_search_word']).'" />';
  99. $html.="&nbsp;".'<button name="SubmitSearchLanguage" class="search" type="submit">'.get_lang('Search').'</button>';
  100. $html.='</form>';
  101. $html.='</div>';
  102. echo $html;
  103. echo '<br /><br /><br />';
  104. if (!empty($sublanguage_folder_error)) {
  105. Display::display_warning_message($sublanguage_folder_error);
  106. }
  107. echo '<div id="div_message_information_id">&nbsp;</div>';
  108. /**
  109. * Search a term in the language
  110. * @param string $term the term to search
  111. * @param bool $search_in_variable the search will include the variable definition of the term
  112. * @param bool $search_in_english the search will include the english language variables
  113. * @param bool $search_in_parent the search will include the parent language variables of the sub language
  114. * @param bool $search_in_sub_language the search will include the sub language variables
  115. * @author Julio Montoya
  116. *
  117. */
  118. function search_language_term(
  119. $term,
  120. $search_in_variable = true,
  121. $search_in_english = true,
  122. $search_in_parent = true,
  123. $search_in_sub_language = true
  124. ) {
  125. //These the $_REQUEST['id'] and the $_REQUEST['sub_language_id'] variables are process in global.inc.php (LOAD LANGUAGE FILES SECTION)
  126. /*
  127. These 4 arrays are set in global.inc.php with the condition that will be load from sub_language.php or sub_language_ajax.inc.php
  128. $english_language_array
  129. $parent_language_array
  130. $sub_language_array
  131. $language_files_to_load
  132. */
  133. global $language_files_to_load, $sub_language_array, $english_language_array, $parent_language_array;
  134. $language_files_to_load_keys = array_flip($language_files_to_load);
  135. $array_to_search = $parent_language_array;
  136. $list_info = array();
  137. $term='/'.Security::remove_XSS(trim($_REQUEST['txt_search_word'])).'/i';
  138. //@todo optimize this foreach
  139. foreach ($language_files_to_load as $lang_file) {
  140. //searching in parent language of the sub language
  141. if ($search_in_parent) {
  142. $variables = $parent_language_array[$lang_file];
  143. foreach ($variables as $parent_name_variable =>$parent_variable_value) {
  144. //arrays are avoided
  145. if (is_array($parent_variable_value)) {
  146. continue;
  147. }
  148. $founded = false;
  149. // searching the item in the parent tool
  150. if (preg_match($term,$parent_variable_value)!==0) {
  151. $founded = true;
  152. }
  153. if ($founded) {
  154. //loading variable from the english array
  155. $sub_language_name_variable = $sub_language_array[$lang_file][$parent_name_variable];
  156. //loading variable from the english array
  157. $english_name_variable = $english_language_array[$lang_file][$parent_name_variable];
  158. //config buttons
  159. /*if (strlen($english_name_variable)>1500) {
  160. $size =20;
  161. } else {
  162. $size =4;
  163. }*/
  164. $obj_text='<textarea rows="10" cols="40" name="txt|'.$parent_name_variable.'|'.$language_files_to_load_keys[$lang_file].'" id="txtid_'.$language_files_to_load_keys[$lang_file].'_'.$parent_name_variable.'" >'.$sub_language_name_variable.'</textarea>';
  165. $obj_button='<button class="save" type="button" name="btn|'.$parent_name_variable.'|'.$language_files_to_load_keys[$lang_file].'" id="btnid_'.$parent_name_variable.'" />'.get_lang('Save').'</button>';
  166. $list_info[] = array(
  167. $lang_file . '.inc.php',
  168. $parent_name_variable,
  169. $english_name_variable,
  170. $parent_variable_value,
  171. $obj_text,
  172. $obj_button
  173. );
  174. }
  175. }
  176. }
  177. //search in english
  178. if ($search_in_english || $search_in_variable) {
  179. $variables = $english_language_array[$lang_file];
  180. foreach ($variables as $name_variable =>$variable_value) {
  181. if (is_array($variable_value)) {
  182. continue;
  183. }
  184. if (is_array($variable_value))
  185. echo $lang_file;
  186. $founded = false;
  187. if ($search_in_english && $search_in_variable) {
  188. // searching the item in the parent tool
  189. if (preg_match($term,$variable_value)!==0 || preg_match($term,$name_variable)!==0 ) {
  190. $founded = true;
  191. }
  192. } else {
  193. if ($search_in_english) {
  194. if (preg_match($term,$variable_value)!==0) {
  195. $founded = true;
  196. }
  197. } else {
  198. if (preg_match($term,$name_variable)!==0) {
  199. $founded = true;
  200. }
  201. }
  202. }
  203. if ($founded) {
  204. //loading variable from the english array
  205. $sub_language_name_variable = null;
  206. if (isset($sub_language_array[$lang_file][$name_variable])) {
  207. $sub_language_name_variable = $sub_language_array[$lang_file][$name_variable];
  208. }
  209. $parent_variable_value = null;
  210. if (isset($parent_language_array[$lang_file][$name_variable])) {
  211. $parent_variable_value = $parent_language_array[$lang_file][$name_variable];
  212. }
  213. //config buttons
  214. $obj_text='<textarea rows="10" cols="40" name="txt|'.$name_variable.'|'.$language_files_to_load_keys[$lang_file].'" id="txtid_'.$language_files_to_load_keys[$lang_file].'_'.$name_variable.'" >'.
  215. $sub_language_name_variable.'
  216. </textarea>';
  217. $obj_button='<button class="save" type="button" name="btn|'.$name_variable.'|'.$language_files_to_load_keys[$lang_file].'" id="btnid_'.$name_variable.'" />'.get_lang('Save').'</button>';
  218. //loading variable from the english array
  219. $english_name_variable = $english_language_array[$lang_file][$name_variable];
  220. $list_info[] = array(
  221. $lang_file . '.inc.php',
  222. $name_variable,
  223. $english_name_variable,
  224. $parent_variable_value,
  225. $obj_text,
  226. $obj_button
  227. );
  228. }
  229. }
  230. }
  231. // Search in sub language
  232. if ($search_in_sub_language) {
  233. $variables = $sub_language_array[$lang_file];
  234. foreach ($variables as $name_variable =>$variable_value) {
  235. if (is_array($parent_variable_value)) {
  236. continue;
  237. }
  238. $founded = false;
  239. // searching the item in the parent tool
  240. if (preg_match($term,$variable_value)!==0) {
  241. $founded = true;
  242. }
  243. if ($founded) {
  244. //loading variable from the english array
  245. $sub_language_name_variable = $sub_language_array[$lang_file][$name_variable];
  246. $parent_variable_value = $parent_language_array[$lang_file][$name_variable];
  247. //config buttons
  248. $obj_text='<textarea rows="10" cols="40" name="txt|'.$name_variable.'|'.$language_files_to_load_keys[$lang_file].'" id="txtid_'.$language_files_to_load_keys[$lang_file].'_'.$name_variable.'" >'.$sub_language_name_variable.'</textarea>';
  249. $obj_button='<button class="save" type="button" name="btn|'.$name_variable.'|'.$language_files_to_load_keys[$lang_file].'" id="btnid_'.$name_variable.'" />'.get_lang('Save').'</button>';
  250. //loading variable from the english array
  251. $english_name_variable = $english_language_array[$lang_file][$name_variable];
  252. $list_info[]=array($lang_file.'.inc.php',
  253. $name_variable,
  254. $english_name_variable,
  255. $parent_variable_value,$obj_text,$obj_button);
  256. }
  257. }
  258. }
  259. }
  260. $list_info = array_unique_dimensional($list_info);
  261. return $list_info;
  262. }
  263. // Allow see data in sort table
  264. $list_info = array();
  265. if (isset($_REQUEST['txt_search_word'])) {
  266. //@todo fix to accept a char with 1 char
  267. if (strlen(trim($_REQUEST['txt_search_word']))>2) {
  268. $list_info = search_language_term(
  269. $_REQUEST['txt_search_word'],
  270. true,
  271. true,
  272. true,
  273. true
  274. );
  275. }
  276. }
  277. $parameters = array(
  278. 'id' => intval($_GET['id']),
  279. 'sub_language_id' => intval($_GET['sub_language_id']),
  280. 'txt_search_word' => $txt_search_word
  281. );
  282. $table = new SortableTableFromArrayConfig($list_info, 1,20,'data_info');
  283. $table->set_additional_parameters($parameters);
  284. $table->set_header(0, get_lang('LanguageFile'));
  285. $table->set_header(1, get_lang('LanguageVariable'));
  286. $table->set_header(2, get_lang('EnglishName'));
  287. $table->set_header(3, get_lang('OriginalName'));
  288. $table->set_header(4, get_lang('SubLanguage'),false);
  289. $table->set_header(5, get_lang('Edit'),false);
  290. $table->display();
  291. Display :: display_footer();