ftimme
2011-10-11 81d79a79e4b29e9314b64b2e4c49b48ae8319767
interface/lib/classes/listform_tpl_generator.inc.php
@@ -61,7 +61,7 @@
      $lang["list_head_txt"] = $listDef["name"];
      foreach($listDef["item"] as $field) {
         $key = $field["field"];
         $html .= "            <th class=\"tbl_col_".$key."\" scope=\"col\"><tmpl_var name=\"".$key."_txt\"></th>\r\n";
         $html .= "            <th class=\"tbl_col_".$key."\" scope=\"col\"><tmpl_var name=\"".$key."_txt\"></th>\n";
         $lang[$key."_txt"] = $key;
      }
      
@@ -73,9 +73,9 @@
        foreach($listDef["item"] as $field) {
         $key = $field["field"];
         if($field["formtype"] == 'SELECT') {
            $html .= "            <td class=\"tbl_col_".$key."\"><select name=\"".$listDef["search_prefix"].$key."\" onChange=\"submitForm('pageForm','".$module."/".$listDef["file"]."');\">{tmpl_var name='".$listDef["search_prefix"].$key."'}</select></td>\r\n";
            $html .= "            <td class=\"tbl_col_".$key."\"><select name=\"".$listDef["search_prefix"].$key."\" onChange=\"submitForm('pageForm','".$module."/".$listDef["file"]."');\">{tmpl_var name='".$listDef["search_prefix"].$key."'}</select></td>\n";
         } else {
            $html .= "            <td class=\"tbl_col_".$key."\"><input type=\"text\" name=\"".$listDef["search_prefix"].$key."\" value=\"{tmpl_var name='".$listDef["search_prefix"].$key."'}\" /></td>\r\n";
            $html .= "            <td class=\"tbl_col_".$key."\"><input type=\"text\" name=\"".$listDef["search_prefix"].$key."\" value=\"{tmpl_var name='".$listDef["search_prefix"].$key."'}\" /></td>\n";
         }
      }
      
@@ -89,7 +89,7 @@
      
      foreach($listDef["item"] as $field) {
         $key = $field["field"];
         $html .= "            <td class=\"tbl_col_".$key."\"><a href=\"#\" onClick=\"loadContent('".$module."/".$listDef["edit_file"]."?id={tmpl_var name='id'}');\">{tmpl_var name=\"".$key."\"}</a></td>\r\n";
         $html .= "            <td class=\"tbl_col_".$key."\"><a href=\"#\" onClick=\"loadContent('".$module."/".$listDef["edit_file"]."?id={tmpl_var name='id'}');\">{tmpl_var name=\"".$key."\"}</a></td>\n";
      }
      
      $html .= "            <td class=\"tbl_col_buttons\">
@@ -132,7 +132,48 @@
      }
      fclose($handle);
      
      /*$lang["page_txt"] = 'Page';
      $lang["page_of_txt"] = 'of';
      $lang["page_next_txt"] = 'Next';
      $lang["page_back_txt"] = 'Back';
      $lang["delete_txt"] = 'Delete';
      $lang["filter_txt"] = 'Filter';
      $lang["add_new_record_txt"] = 'Add new record';
      */
      // save language file
      $this->lng_add($lang,$listDef,$module);
    }
   function lng_add($lang,$listDef,$module = '') {
      global $go_api, $go_info,$conf;
      if($module == '') {
         $lng_file = "lib/lang/".$conf["language"]."_".$listDef['name']."_list.lng";
      } else {
         $lng_file = '../'.$module."/lib/lang/en_".$listDef['name']."_list.lng";
      }
      if(is_file($lng_file)) {
         include_once($lng_file);
      } else {
         $wb = array();
      }
      $wb_out = array_merge($lang,$wb);
      if(is_array($wb_out)) {
         $fp = fopen ($lng_file, "w");
         fwrite($fp,"<?php\n");
         foreach($wb_out as $key => $val) {
            $new_line = '$wb["'.$key.'"] = '."'$val';\n";
            fwrite($fp,$new_line);
         }
         fwrite($fp,"?>");
         fclose($fp);
      }
   }
}