class.save.inc 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. <?php
  2. class saveValues
  3. {
  4. var $db = "";
  5. var $table = "";
  6. var $id = 0;
  7. var $user = "";
  8. var $link = "";
  9. var $primary = "id";
  10. var $values_new = array();
  11. var $values_old = array();
  12. var $misc = array();
  13. var $structure = array("id");
  14. var $cat_values = array();
  15. var $defaults = array();
  16. var $where = 1;
  17. var $format = array();
  18. function decategorize ($values,$level=0,$known=array())
  19. {
  20. foreach ($values as $key => $array)
  21. {
  22. $known[$this->structure[$level]] = $key;
  23. if ($level < count($this->structure)-1)
  24. {
  25. $this->decategorize($array,$level+1,$known);
  26. }
  27. else
  28. {
  29. $temp_array = array_merge($known,$array,$this->defaults);
  30. $where = "";
  31. foreach ($known as $k => $v)
  32. {
  33. $where .= " AND {$k} = '{$v}'";
  34. }
  35. $sql = "SELECT * FROM {$this->table} WHERE {$this->where} {$where}";
  36. $erg = $this->db->sql_exec($sql);
  37. if (1 == $this->db->sql_num_rows($erg))
  38. {
  39. $t_values_old = $this->db->sql_fetch_assoc($erg);
  40. $t_id = $t_values_old[$this->primary];
  41. $this->values_old[$t_id] = $this->remove_null($t_values_old);
  42. $this->values_new[$t_id] = $this->format($temp_array);
  43. }
  44. else
  45. {
  46. $this->cat_values[] = $this->format($temp_array);
  47. }
  48. }
  49. }
  50. }
  51. function remove_null ($t_array)
  52. {
  53. foreach ($t_array as $key => $value)
  54. {
  55. if (!$value) $t_array[$key] = '';
  56. }
  57. return $t_array;
  58. }
  59. function load ($val)
  60. {
  61. $this->values_new = $val;
  62. $this->values_new['benutzer_id'] = $this->user;
  63. $this->values_new['timestamp'] = time();
  64. if (0 == $this->id)
  65. {
  66. $sql = "INSERT INTO {$this->table} ({$this->primary}) VALUES ('')";
  67. $erg = $this->db->sql_exec($sql);
  68. $this->id = $this->db->sql_insert_id();
  69. }
  70. $sql = "SELECT * FROM {$this->table} WHERE {$this->primary} = '{$this->id}'";
  71. $erg = $this->db->sql_exec($sql);
  72. $this->values_old = $this->db->sql_fetch_assoc($erg);
  73. }
  74. function perform ($format=1)
  75. {
  76. if (1 == $format)
  77. {
  78. $this->format();
  79. }
  80. if (0 < count($this->values_old))
  81. {
  82. $this->comparison();
  83. $this->storage();
  84. }
  85. if (0 < count($this->cat_values))
  86. {
  87. $this->insert();
  88. }
  89. // $this->linkup();
  90. }
  91. function format ($values=0)
  92. {
  93. $return_values = 1;
  94. if (0 == $values)
  95. {
  96. $values = $this->values_new;
  97. $return_values = 0;
  98. }
  99. foreach ($this->format as $t_field => $t_format)
  100. {
  101. switch($t_format)
  102. {
  103. case 'date':
  104. $values[$t_field] = date_format($values[$t_field]);
  105. break;
  106. case 'datetime':
  107. $t_date = date_format($values[$t_field.'_d']);
  108. $t_hour = $values[$t_field.'_h'];
  109. $t_min = $values[$t_field.'_m'];
  110. $t_datetime = $t_date . " " . $t_hour . ":" . $t_min . ":00";
  111. $values[$t_field] = $t_datetime;
  112. break;
  113. case 'time':
  114. $t_hour = $values[$t_field.'_h'];
  115. $t_min = $values[$t_field.'_m'];
  116. $t_time = $t_hour . ":" . $t_min . ":00";
  117. $values[$t_field] = $t_time;
  118. break;
  119. case 'timetodecimal':
  120. $values[$t_field] = timetodecimal($values[$t_field]);
  121. break;
  122. case 'filename':
  123. $values[$t_field] = str_replace("\\","\\\\",$values[$t_field]);
  124. break;
  125. case 'text':
  126. // z.Zt. keine Änderung der Variablen
  127. break;
  128. case 'float':
  129. $values[$t_field] = str_replace(",",".",$values[$t_field]);
  130. break;
  131. }
  132. }
  133. if (1 == $return_values)
  134. {
  135. return ($values);
  136. }
  137. else
  138. {
  139. $this->values_new = $values;
  140. }
  141. }
  142. function comparison ()
  143. {
  144. foreach ($this->values_new as $t_name => $t_value)
  145. {
  146. if (is_array($t_value))
  147. {
  148. foreach ($t_value as $tsub_name => $tsub_value)
  149. {
  150. if (isset($this->values_old[$t_name][$tsub_name]))
  151. {
  152. if ($this->values_old[$t_name][$tsub_name] == $tsub_value)
  153. {
  154. unset($this->values_new[$t_name][$tsub_name]);
  155. }
  156. }
  157. else
  158. {
  159. unset($this->values_new[$t_name][$tsub_name]);
  160. $this->misc[$t_name][$tsub_name] = $tsub_value;
  161. }
  162. }
  163. }
  164. else
  165. {
  166. if (isset($this->values_old[$t_name]))
  167. {
  168. if ($t_value == $this->values_old[$t_name])
  169. {
  170. unset($this->values_new[$t_name]);
  171. }
  172. }
  173. else
  174. {
  175. unset($this->values_new[$t_name]);
  176. $this->misc[$t_name] = $t_value;
  177. }
  178. }
  179. }
  180. }
  181. function backup ()
  182. {
  183. $sql = "INSERT INTO `{$this->db->dbs_backup}`.`{$this->table}` SELECT * FROM `{$this->db->dbs_database}`.`{$this->table}` WHERE {$this->primary} = '{$this->id}'";
  184. // $erg = $this->db->sql_exec($sql);
  185. }
  186. function storage ()
  187. {
  188. $this->backup();
  189. foreach ($this->values_new as $t_name => $t_value)
  190. {
  191. if (is_array($t_value))
  192. {
  193. $t_id = $t_name;
  194. foreach ($t_value as $tsub_name => $tsub_value)
  195. {
  196. $sql = "UPDATE {$this->table} SET {$tsub_name} = '{$tsub_value}' WHERE {$this->primary} = '{$t_id}'";
  197. $erg = $this->db->sql_exec($sql);
  198. }
  199. }
  200. else
  201. {
  202. $sql = "UPDATE {$this->table} SET {$t_name} = '{$t_value}' WHERE {$this->primary} = '{$this->id}'";
  203. $erg = $this->db->sql_exec($sql);
  204. }
  205. }
  206. }
  207. function insert ()
  208. {
  209. foreach ($this->cat_values as $values)
  210. {
  211. $replace_columns = implode(",",array_keys($values));
  212. $replace_values = "'" . implode("','",$values) . "'";
  213. $sql = "REPLACE {$this->table} ({$replace_columns}) VALUES ({$replace_values})";
  214. $erg = $this->db->sql_exec($sql);
  215. }
  216. }
  217. function linkup ()
  218. {
  219. if ($this->link == "")
  220. {
  221. $this->link = DEFAULT_LINK;
  222. }
  223. echo "<script>
  224. function link (url)
  225. {
  226. window.location.href = url;
  227. }
  228. window.setTimeout(\"link('{$this->link}')\"," . TIMEOUT . ");
  229. </script>";
  230. }
  231. }
  232. ?>