sub_language.php 12 KB

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