@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | $PROXY_USER=empty($conf->global->MAIN_PROXY_USER)?0:$conf->global->MAIN_PROXY_USER; |
42 | 42 | $PROXY_PASS=empty($conf->global->MAIN_PROXY_PASS)?0:$conf->global->MAIN_PROXY_PASS; |
43 | 43 | |
44 | - dol_syslog("getURLContent postorget=".$postorget." URL=".$url." param=".$param); |
|
44 | + dol_syslog("getURLContent postorget=".$postorget." URL=".$url." param=".$param); |
|
45 | 45 | |
46 | 46 | //setting the curl parameters. |
47 | 47 | $ch = curl_init(); |
@@ -52,17 +52,17 @@ discard block |
||
52 | 52 | exit;*/ |
53 | 53 | curl_setopt($ch, CURLOPT_URL, $url); |
54 | 54 | curl_setopt($ch, CURLOPT_VERBOSE, 1); |
55 | - curl_setopt($ch, CURLOPT_USERAGENT, 'Dolibarr geturl function'); |
|
55 | + curl_setopt($ch, CURLOPT_USERAGENT, 'Dolibarr geturl function'); |
|
56 | 56 | |
57 | - @curl_setopt($ch, CURLOPT_FOLLOWLOCATION, ($followlocation?true:false)); // We use @ here because this may return warning if safe mode is on or open_basedir is on |
|
57 | + @curl_setopt($ch, CURLOPT_FOLLOWLOCATION, ($followlocation?true:false)); // We use @ here because this may return warning if safe mode is on or open_basedir is on |
|
58 | 58 | |
59 | - if (count($addheaders)) curl_setopt($ch, CURLOPT_HTTPHEADER, $addheaders); |
|
60 | - curl_setopt($ch, CURLINFO_HEADER_OUT, true); // To be able to retrieve request header and log it |
|
59 | + if (count($addheaders)) curl_setopt($ch, CURLOPT_HTTPHEADER, $addheaders); |
|
60 | + curl_setopt($ch, CURLINFO_HEADER_OUT, true); // To be able to retrieve request header and log it |
|
61 | 61 | |
62 | - // By default use tls decied by PHP. |
|
63 | - // You can force, if supported a version like TLSv1 or TLSv1.2 |
|
64 | - if (! empty($conf->global->MAIN_CURL_SSLVERSION)) curl_setopt($ch, CURLOPT_SSLVERSION, $conf->global->MAIN_CURL_SSLVERSION); |
|
65 | - //curl_setopt($ch, CURLOPT_SSLVERSION, 6); for tls 1.2 |
|
62 | + // By default use tls decied by PHP. |
|
63 | + // You can force, if supported a version like TLSv1 or TLSv1.2 |
|
64 | + if (! empty($conf->global->MAIN_CURL_SSLVERSION)) curl_setopt($ch, CURLOPT_SSLVERSION, $conf->global->MAIN_CURL_SSLVERSION); |
|
65 | + //curl_setopt($ch, CURLOPT_SSLVERSION, 6); for tls 1.2 |
|
66 | 66 | |
67 | 67 | //turning off the server and peer verification(TrustManager Concept). |
68 | 68 | curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); |
@@ -75,37 +75,37 @@ discard block |
||
75 | 75 | curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); // We want response |
76 | 76 | if ($postorget == 'POST') |
77 | 77 | { |
78 | - curl_setopt($ch, CURLOPT_POST, 1); // POST |
|
79 | - curl_setopt($ch, CURLOPT_POSTFIELDS, $param); // Setting param x=a&y=z as POST fields |
|
78 | + curl_setopt($ch, CURLOPT_POST, 1); // POST |
|
79 | + curl_setopt($ch, CURLOPT_POSTFIELDS, $param); // Setting param x=a&y=z as POST fields |
|
80 | 80 | } |
81 | 81 | else if ($postorget == 'PUT') |
82 | 82 | { |
83 | - curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT'); // HTTP request is 'PUT' |
|
84 | - if (! is_array($param)) parse_str($param, $array_param); |
|
85 | - else |
|
86 | - { |
|
87 | - dol_syslog("parameter param must be a string", LOG_WARNING); |
|
88 | - $array_param=$param; |
|
89 | - } |
|
90 | - curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($array_param)); // Setting param x=a&y=z as PUT fields |
|
83 | + curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT'); // HTTP request is 'PUT' |
|
84 | + if (! is_array($param)) parse_str($param, $array_param); |
|
85 | + else |
|
86 | + { |
|
87 | + dol_syslog("parameter param must be a string", LOG_WARNING); |
|
88 | + $array_param=$param; |
|
89 | + } |
|
90 | + curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($array_param)); // Setting param x=a&y=z as PUT fields |
|
91 | 91 | } |
92 | 92 | else if ($postorget == 'PUTALREADYFORMATED') |
93 | 93 | { |
94 | - curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT'); // HTTP request is 'PUT' |
|
95 | - curl_setopt($ch, CURLOPT_POSTFIELDS, $param); // param = content of post, like a xml string |
|
94 | + curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT'); // HTTP request is 'PUT' |
|
95 | + curl_setopt($ch, CURLOPT_POSTFIELDS, $param); // param = content of post, like a xml string |
|
96 | 96 | } |
97 | 97 | else if ($postorget == 'HEAD') |
98 | 98 | { |
99 | - curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'HEAD'); // HTTP request is 'HEAD' |
|
100 | - curl_setopt($ch, CURLOPT_NOBODY, true); |
|
99 | + curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'HEAD'); // HTTP request is 'HEAD' |
|
100 | + curl_setopt($ch, CURLOPT_NOBODY, true); |
|
101 | 101 | } |
102 | 102 | else if ($postorget == 'DELETE') |
103 | 103 | { |
104 | - curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'DELETE'); // POST |
|
104 | + curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'DELETE'); // POST |
|
105 | 105 | } |
106 | 106 | else |
107 | 107 | { |
108 | - curl_setopt($ch, CURLOPT_POST, 0); // GET |
|
108 | + curl_setopt($ch, CURLOPT_POST, 0); // GET |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | //if USE_PROXY constant set at begin of this method. |
@@ -133,27 +133,27 @@ discard block |
||
133 | 133 | $rep['content']=$response; |
134 | 134 | |
135 | 135 | // moving to display page to display curl errors |
136 | - $rep['curl_error_no']=curl_errno($ch); |
|
136 | + $rep['curl_error_no']=curl_errno($ch); |
|
137 | 137 | $rep['curl_error_msg']=curl_error($ch); |
138 | 138 | |
139 | - dol_syslog("getURLContent response array is ".join(',',$rep)); |
|
139 | + dol_syslog("getURLContent response array is ".join(',',$rep)); |
|
140 | 140 | } |
141 | 141 | else |
142 | 142 | { |
143 | - $info = curl_getinfo($ch); |
|
143 | + $info = curl_getinfo($ch); |
|
144 | 144 | |
145 | - // Ad keys to $rep |
|
146 | - $rep = $info; |
|
147 | - //$rep['header_size']=$info['header_size']; |
|
148 | - //$rep['http_code']=$info['http_code']; |
|
149 | - dol_syslog("getURLContent http_code=".$rep['http_code']); |
|
145 | + // Ad keys to $rep |
|
146 | + $rep = $info; |
|
147 | + //$rep['header_size']=$info['header_size']; |
|
148 | + //$rep['http_code']=$info['http_code']; |
|
149 | + dol_syslog("getURLContent http_code=".$rep['http_code']); |
|
150 | 150 | |
151 | 151 | // Add more keys to $rep |
152 | 152 | $rep['content']=$response; |
153 | - $rep['curl_error_no']=''; |
|
154 | - $rep['curl_error_msg']=''; |
|
153 | + $rep['curl_error_no']=''; |
|
154 | + $rep['curl_error_msg']=''; |
|
155 | 155 | |
156 | - //closing the curl |
|
156 | + //closing the curl |
|
157 | 157 | curl_close($ch); |
158 | 158 | } |
159 | 159 | |
@@ -170,12 +170,12 @@ discard block |
||
170 | 170 | */ |
171 | 171 | function getDomainFromURL($url) |
172 | 172 | { |
173 | - $tmpdomain = preg_replace('/^https?:\/\//i', '', $url); // Remove http(s):// |
|
174 | - $tmpdomain = preg_replace('/\/.*$/i', '', $tmpdomain); // Remove part after domain |
|
175 | - $tmpdomain = preg_replace('/\.[^\.]+$/', '', $tmpdomain); // Remove first level domain (.com, .net, ...) |
|
176 | - $tmpdomain = preg_replace('/^[^\.]+\./', '', $tmpdomain); // Remove part www. before domain name |
|
173 | + $tmpdomain = preg_replace('/^https?:\/\//i', '', $url); // Remove http(s):// |
|
174 | + $tmpdomain = preg_replace('/\/.*$/i', '', $tmpdomain); // Remove part after domain |
|
175 | + $tmpdomain = preg_replace('/\.[^\.]+$/', '', $tmpdomain); // Remove first level domain (.com, .net, ...) |
|
176 | + $tmpdomain = preg_replace('/^[^\.]+\./', '', $tmpdomain); // Remove part www. before domain name |
|
177 | 177 | |
178 | - return $tmpdomain; |
|
178 | + return $tmpdomain; |
|
179 | 179 | } |
180 | 180 | |
181 | 181 | /** |
@@ -188,13 +188,13 @@ discard block |
||
188 | 188 | */ |
189 | 189 | function getRootURLFromURL($url) |
190 | 190 | { |
191 | - $prefix=''; |
|
192 | - $tmpurl = $url; |
|
193 | - if (preg_match('/^(https?:\/\/)/i', $tmpurl, $reg)) $prefix = $reg[1]; |
|
194 | - $tmpurl = preg_replace('/^https?:\/\//i', '', $tmpurl); // Remove http(s):// |
|
195 | - $tmpurl = preg_replace('/\/.*$/i', '', $tmpurl); // Remove part after domain |
|
191 | + $prefix=''; |
|
192 | + $tmpurl = $url; |
|
193 | + if (preg_match('/^(https?:\/\/)/i', $tmpurl, $reg)) $prefix = $reg[1]; |
|
194 | + $tmpurl = preg_replace('/^https?:\/\//i', '', $tmpurl); // Remove http(s):// |
|
195 | + $tmpurl = preg_replace('/\/.*$/i', '', $tmpurl); // Remove part after domain |
|
196 | 196 | |
197 | - return $prefix.$tmpurl; |
|
197 | + return $prefix.$tmpurl; |
|
198 | 198 | } |
199 | 199 | |
200 | 200 | /** |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | */ |
206 | 206 | function removeHtmlComment($content) |
207 | 207 | { |
208 | - $content = preg_replace('/<!--[^\-]+-->/', '', $content); |
|
209 | - return $content; |
|
208 | + $content = preg_replace('/<!--[^\-]+-->/', '', $content); |
|
209 | + return $content; |
|
210 | 210 | } |
211 | 211 |
@@ -46,37 +46,37 @@ discard block |
||
46 | 46 | |
47 | 47 | if (! empty($addfieldentry['arrayofkeyval']) && ! is_array($addfieldentry['arrayofkeyval'])) |
48 | 48 | { |
49 | - dol_print_error('', 'Bad parameter addfieldentry with a property arrayofkeyval defined but that is not an array.'); |
|
50 | - return -1; |
|
49 | + dol_print_error('', 'Bad parameter addfieldentry with a property arrayofkeyval defined but that is not an array.'); |
|
50 | + return -1; |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | // Check parameters |
54 | 54 | if (count($addfieldentry) > 0) |
55 | 55 | { |
56 | 56 | if (empty($addfieldentry['name'])) |
57 | - { |
|
58 | - setEventMessages($langs->trans('ErrorFieldRequired', $langs->transnoentitiesnoconv("Name")), null, 'errors'); |
|
59 | - return -2; |
|
60 | - } |
|
57 | + { |
|
58 | + setEventMessages($langs->trans('ErrorFieldRequired', $langs->transnoentitiesnoconv("Name")), null, 'errors'); |
|
59 | + return -2; |
|
60 | + } |
|
61 | 61 | if (empty($addfieldentry['label'])) |
62 | - { |
|
63 | - setEventMessages($langs->trans('ErrorFieldRequired', $langs->transnoentitiesnoconv("Label")), null, 'errors'); |
|
64 | - return -2; |
|
65 | - } |
|
62 | + { |
|
63 | + setEventMessages($langs->trans('ErrorFieldRequired', $langs->transnoentitiesnoconv("Label")), null, 'errors'); |
|
64 | + return -2; |
|
65 | + } |
|
66 | 66 | |
67 | - if (! preg_match('/^(price|boolean|sellist|integer|date|timestamp|varchar|double|text|html)/', $addfieldentry['type'])) |
|
67 | + if (! preg_match('/^(price|boolean|sellist|integer|date|timestamp|varchar|double|text|html)/', $addfieldentry['type'])) |
|
68 | 68 | |
69 | - { |
|
70 | - setEventMessages($langs->trans('BadFormatForType', $objectname), null, 'errors'); |
|
71 | - return -2; |
|
72 | - } |
|
69 | + { |
|
70 | + setEventMessages($langs->trans('BadFormatForType', $objectname), null, 'errors'); |
|
71 | + return -2; |
|
72 | + } |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | $pathoffiletoeditsrc=$readdir.'/class/'.strtolower($objectname).'.class.php'; |
76 | 76 | $pathoffiletoedittarget=$destdir.'/class/'.strtolower($objectname).'.class.php'.($readdir != $destdir ? '.new' : ''); |
77 | 77 | if (! dol_is_file($pathoffiletoeditsrc)) |
78 | 78 | { |
79 | - $langs->load("errors"); |
|
79 | + $langs->load("errors"); |
|
80 | 80 | setEventMessages($langs->trans("ErrorFileNotFound", $pathoffiletoeditsrc), null, 'errors'); |
81 | 81 | return -3; |
82 | 82 | } |
@@ -96,21 +96,21 @@ discard block |
||
96 | 96 | // Edit class files |
97 | 97 | $contentclass = file_get_contents(dol_osencode($pathoffiletoeditsrc), 'r'); |
98 | 98 | |
99 | - // Update ->fields (add or remove entries) |
|
99 | + // Update ->fields (add or remove entries) |
|
100 | 100 | if (count($object->fields)) |
101 | 101 | { |
102 | - if (is_array($addfieldentry) && count($addfieldentry)) |
|
103 | - { |
|
104 | - $name=$addfieldentry['name']; |
|
105 | - unset($addfieldentry['name']); |
|
106 | - |
|
107 | - $object->fields[$name]=$addfieldentry; |
|
108 | - } |
|
109 | - if (! empty($delfieldentry)) |
|
110 | - { |
|
111 | - $name=$delfieldentry; |
|
112 | - unset($object->fields[$name]); |
|
113 | - } |
|
102 | + if (is_array($addfieldentry) && count($addfieldentry)) |
|
103 | + { |
|
104 | + $name=$addfieldentry['name']; |
|
105 | + unset($addfieldentry['name']); |
|
106 | + |
|
107 | + $object->fields[$name]=$addfieldentry; |
|
108 | + } |
|
109 | + if (! empty($delfieldentry)) |
|
110 | + { |
|
111 | + $name=$delfieldentry; |
|
112 | + unset($object->fields[$name]); |
|
113 | + } |
|
114 | 114 | } |
115 | 115 | |
116 | 116 | dol_sort_array($object->fields, 'position'); |
@@ -143,28 +143,28 @@ discard block |
||
143 | 143 | if ($val['showoncombobox']) $texttoinsert.= " 'showoncombobox'=>'".$val['showoncombobox']."',"; |
144 | 144 | if ($val['arrayofkeyval']) |
145 | 145 | { |
146 | - $texttoinsert.= " 'arrayofkeyval'=>array("; |
|
147 | - $i=0; |
|
148 | - foreach($val['arrayofkeyval'] as $key2 => $val2) |
|
149 | - { |
|
150 | - if ($i) $texttoinsert.=", "; |
|
151 | - $texttoinsert.="'".$key2."'=>'".$val2."'"; |
|
152 | - $i++; |
|
153 | - } |
|
154 | - $texttoinsert.= ")"; |
|
146 | + $texttoinsert.= " 'arrayofkeyval'=>array("; |
|
147 | + $i=0; |
|
148 | + foreach($val['arrayofkeyval'] as $key2 => $val2) |
|
149 | + { |
|
150 | + if ($i) $texttoinsert.=", "; |
|
151 | + $texttoinsert.="'".$key2."'=>'".$val2."'"; |
|
152 | + $i++; |
|
153 | + } |
|
154 | + $texttoinsert.= ")"; |
|
155 | 155 | } |
156 | 156 | $texttoinsert.= "),\n"; |
157 | 157 | } |
158 | 158 | } |
159 | 159 | |
160 | 160 | $texttoinsert.= "\t".');'."\n"; |
161 | - //print ($texttoinsert);exit; |
|
161 | + //print ($texttoinsert);exit; |
|
162 | 162 | |
163 | 163 | if (count($object->fields)) |
164 | 164 | { |
165 | - $typetotypephp=array('integer'=>'integer', 'varchar'=>'string'); |
|
165 | + $typetotypephp=array('integer'=>'integer', 'varchar'=>'string'); |
|
166 | 166 | |
167 | - foreach($object->fields as $key => $val) |
|
167 | + foreach($object->fields as $key => $val) |
|
168 | 168 | { |
169 | 169 | $i++; |
170 | 170 | //$typephp=$typetotypephp[$val['type']]; |
@@ -224,22 +224,22 @@ discard block |
||
224 | 224 | // Edit .sql file |
225 | 225 | $pathoffiletoeditsrc=$readdir.'/sql/llx_'.strtolower($module).'_'.strtolower($objectname).'.sql'; |
226 | 226 | $pathoffiletoedittarget=$destdir.'/sql/llx_'.strtolower($module).'_'.strtolower($objectname).'.sql'.($readdir != $destdir ? '.new' : ''); |
227 | - if (! dol_is_file($pathoffiletoeditsrc)) |
|
227 | + if (! dol_is_file($pathoffiletoeditsrc)) |
|
228 | 228 | { |
229 | - $langs->load("errors"); |
|
230 | - setEventMessages($langs->trans("ErrorFileNotFound", $pathoffiletoeditsrc), null, 'errors'); |
|
231 | - return -1; |
|
229 | + $langs->load("errors"); |
|
230 | + setEventMessages($langs->trans("ErrorFileNotFound", $pathoffiletoeditsrc), null, 'errors'); |
|
231 | + return -1; |
|
232 | 232 | } |
233 | 233 | |
234 | 234 | // Load object from myobject.class.php |
235 | 235 | try |
236 | 236 | { |
237 | - if (! is_object($object)) |
|
238 | - { |
|
239 | - include_once $pathoffiletoclasssrc; |
|
240 | - if (class_exists($objectname)) $object=new $objectname($db); |
|
241 | - else return -1; |
|
242 | - } |
|
237 | + if (! is_object($object)) |
|
238 | + { |
|
239 | + include_once $pathoffiletoclasssrc; |
|
240 | + if (class_exists($objectname)) $object=new $objectname($db); |
|
241 | + else return -1; |
|
242 | + } |
|
243 | 243 | } |
244 | 244 | catch(Exception $e) |
245 | 245 | { |
@@ -270,12 +270,12 @@ discard block |
||
270 | 270 | if ($key == 'entity') $texttoinsert.= ' DEFAULT 1'; |
271 | 271 | else |
272 | 272 | { |
273 | - if ($val['default'] != '') |
|
274 | - { |
|
275 | - if (preg_match('/^null$/i', $val['default'])) $texttoinsert.= " DEFAULT NULL"; |
|
276 | - else if (preg_match('/varchar/', $type )) $texttoinsert.= " DEFAULT '".$db->escape($val['default'])."'"; |
|
277 | - else $texttoinsert.= (($val['default'] > 0)?' DEFAULT '.$val['default']:''); |
|
278 | - } |
|
273 | + if ($val['default'] != '') |
|
274 | + { |
|
275 | + if (preg_match('/^null$/i', $val['default'])) $texttoinsert.= " DEFAULT NULL"; |
|
276 | + else if (preg_match('/varchar/', $type )) $texttoinsert.= " DEFAULT '".$db->escape($val['default'])."'"; |
|
277 | + else $texttoinsert.= (($val['default'] > 0)?' DEFAULT '.$val['default']:''); |
|
278 | + } |
|
279 | 279 | } |
280 | 280 | $texttoinsert.= (($val['notnull'] > 0)?' NOT NULL':''); |
281 | 281 | if ($i < count($object->fields)) $texttoinsert.=", "; |
@@ -289,11 +289,11 @@ discard block |
||
289 | 289 | $result = file_put_contents($pathoffiletoedittarget, $contentsql); |
290 | 290 | if ($result) |
291 | 291 | { |
292 | - @chmod($pathoffiletoedittarget, octdec($newmask)); |
|
292 | + @chmod($pathoffiletoedittarget, octdec($newmask)); |
|
293 | 293 | } |
294 | 294 | else |
295 | 295 | { |
296 | - $error++; |
|
296 | + $error++; |
|
297 | 297 | } |
298 | 298 | |
299 | 299 | // Edit .key.sql file |
@@ -316,12 +316,12 @@ discard block |
||
316 | 316 | } |
317 | 317 | if (! empty($val['foreignkey'])) |
318 | 318 | { |
319 | - $tmp=explode('.',$val['foreignkey']); |
|
320 | - if (! empty($tmp[0]) && ! empty($tmp[1])) |
|
321 | - { |
|
322 | - $texttoinsert.= "ALTER TABLE llx_".strtolower($module).'_'.strtolower($objectname)." ADD CONSTRAINT llx_".strtolower($module).'_'.strtolower($objectname)."_".$key." FOREIGN KEY (".$key.") REFERENCES ".$tmp[0]."(".$tmp[1].");"; |
|
323 | - $texttoinsert.= "\n"; |
|
324 | - } |
|
319 | + $tmp=explode('.',$val['foreignkey']); |
|
320 | + if (! empty($tmp[0]) && ! empty($tmp[1])) |
|
321 | + { |
|
322 | + $texttoinsert.= "ALTER TABLE llx_".strtolower($module).'_'.strtolower($objectname)." ADD CONSTRAINT llx_".strtolower($module).'_'.strtolower($objectname)."_".$key." FOREIGN KEY (".$key.") REFERENCES ".$tmp[0]."(".$tmp[1].");"; |
|
323 | + $texttoinsert.= "\n"; |
|
324 | + } |
|
325 | 325 | } |
326 | 326 | } |
327 | 327 | } |
@@ -334,11 +334,11 @@ discard block |
||
334 | 334 | $result2 = file_put_contents($pathoffiletoedittarget, $contentsql); |
335 | 335 | if ($result) |
336 | 336 | { |
337 | - @chmod($pathoffiletoedittarget, octdec($newmask)); |
|
337 | + @chmod($pathoffiletoedittarget, octdec($newmask)); |
|
338 | 338 | } |
339 | 339 | else |
340 | 340 | { |
341 | - $error++; |
|
341 | + $error++; |
|
342 | 342 | } |
343 | 343 | |
344 | 344 | return $error ? -1 : 1; |
@@ -32,36 +32,36 @@ discard block |
||
32 | 32 | */ |
33 | 33 | function member_prepare_head(Adherent $object) |
34 | 34 | { |
35 | - global $db, $langs, $conf, $user; |
|
36 | - |
|
37 | - $h = 0; |
|
38 | - $head = array(); |
|
39 | - |
|
40 | - $head[$h][0] = DOL_URL_ROOT.'/adherents/card.php?rowid='.$object->id; |
|
41 | - $head[$h][1] = $langs->trans("Card"); |
|
42 | - $head[$h][2] = 'general'; |
|
43 | - $h++; |
|
44 | - |
|
45 | - if ((! empty($conf->ldap->enabled) && ! empty($conf->global->LDAP_MEMBER_ACTIVE)) |
|
46 | - && (empty($conf->global->MAIN_DISABLE_LDAP_TAB) || ! empty($user->admin))) |
|
47 | - { |
|
48 | - $langs->load("ldap"); |
|
49 | - |
|
50 | - $head[$h][0] = DOL_URL_ROOT.'/adherents/ldap.php?id='.$object->id; |
|
51 | - $head[$h][1] = $langs->trans("LDAPCard"); |
|
52 | - $head[$h][2] = 'ldap'; |
|
53 | - $h++; |
|
54 | - } |
|
55 | - |
|
56 | - if (! empty($user->rights->adherent->cotisation->lire)) |
|
57 | - { |
|
58 | - $nbSubscription = is_array($object->subscriptions)?count($object->subscriptions):0; |
|
59 | - $head[$h][0] = DOL_URL_ROOT.'/adherents/subscription.php?rowid='.$object->id; |
|
60 | - $head[$h][1] = $langs->trans("Subscriptions"); |
|
61 | - $head[$h][2] = 'subscription'; |
|
62 | - if ($nbSubscription > 0) $head[$h][1].= ' <span class="badge">'.$nbSubscription.'</span>'; |
|
63 | - $h++; |
|
64 | - } |
|
35 | + global $db, $langs, $conf, $user; |
|
36 | + |
|
37 | + $h = 0; |
|
38 | + $head = array(); |
|
39 | + |
|
40 | + $head[$h][0] = DOL_URL_ROOT.'/adherents/card.php?rowid='.$object->id; |
|
41 | + $head[$h][1] = $langs->trans("Card"); |
|
42 | + $head[$h][2] = 'general'; |
|
43 | + $h++; |
|
44 | + |
|
45 | + if ((! empty($conf->ldap->enabled) && ! empty($conf->global->LDAP_MEMBER_ACTIVE)) |
|
46 | + && (empty($conf->global->MAIN_DISABLE_LDAP_TAB) || ! empty($user->admin))) |
|
47 | + { |
|
48 | + $langs->load("ldap"); |
|
49 | + |
|
50 | + $head[$h][0] = DOL_URL_ROOT.'/adherents/ldap.php?id='.$object->id; |
|
51 | + $head[$h][1] = $langs->trans("LDAPCard"); |
|
52 | + $head[$h][2] = 'ldap'; |
|
53 | + $h++; |
|
54 | + } |
|
55 | + |
|
56 | + if (! empty($user->rights->adherent->cotisation->lire)) |
|
57 | + { |
|
58 | + $nbSubscription = is_array($object->subscriptions)?count($object->subscriptions):0; |
|
59 | + $head[$h][0] = DOL_URL_ROOT.'/adherents/subscription.php?rowid='.$object->id; |
|
60 | + $head[$h][1] = $langs->trans("Subscriptions"); |
|
61 | + $head[$h][2] = 'subscription'; |
|
62 | + if ($nbSubscription > 0) $head[$h][1].= ' <span class="badge">'.$nbSubscription.'</span>'; |
|
63 | + $h++; |
|
64 | + } |
|
65 | 65 | |
66 | 66 | // Show more tabs from modules |
67 | 67 | // Entries must be declared in modules descriptor with line |
@@ -74,10 +74,10 @@ discard block |
||
74 | 74 | if(!empty($object->note_private)) $nbNote++; |
75 | 75 | if(!empty($object->note_public)) $nbNote++; |
76 | 76 | $head[$h][0] = DOL_URL_ROOT.'/adherents/note.php?id='.$object->id; |
77 | - $head[$h][1] = $langs->trans("Note"); |
|
78 | - $head[$h][2] = 'note'; |
|
77 | + $head[$h][1] = $langs->trans("Note"); |
|
78 | + $head[$h][2] = 'note'; |
|
79 | 79 | if ($nbNote > 0) $head[$h][1].= ' <span class="badge">'.$nbNote.'</span>'; |
80 | - $h++; |
|
80 | + $h++; |
|
81 | 81 | |
82 | 82 | // Attachments |
83 | 83 | require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; |
@@ -91,23 +91,23 @@ discard block |
||
91 | 91 | $head[$h][2] = 'document'; |
92 | 92 | $h++; |
93 | 93 | |
94 | - // Show agenda tab |
|
95 | - if (! empty($conf->agenda->enabled)) |
|
96 | - { |
|
97 | - $head[$h][0] = DOL_URL_ROOT."/adherents/agenda.php?id=".$object->id; |
|
98 | - $head[$h][1] = $langs->trans("Events"); |
|
99 | - if (! empty($conf->agenda->enabled) && (!empty($user->rights->agenda->myactions->read) || !empty($user->rights->agenda->allactions->read) )) |
|
100 | - { |
|
101 | - $head[$h][1].= '/'; |
|
102 | - $head[$h][1].= $langs->trans("Agenda"); |
|
103 | - } |
|
104 | - $head[$h][2] = 'agenda'; |
|
105 | - $h++; |
|
106 | - } |
|
107 | - |
|
108 | - complete_head_from_modules($conf,$langs,$object,$head,$h,'member','remove'); |
|
109 | - |
|
110 | - return $head; |
|
94 | + // Show agenda tab |
|
95 | + if (! empty($conf->agenda->enabled)) |
|
96 | + { |
|
97 | + $head[$h][0] = DOL_URL_ROOT."/adherents/agenda.php?id=".$object->id; |
|
98 | + $head[$h][1] = $langs->trans("Events"); |
|
99 | + if (! empty($conf->agenda->enabled) && (!empty($user->rights->agenda->myactions->read) || !empty($user->rights->agenda->allactions->read) )) |
|
100 | + { |
|
101 | + $head[$h][1].= '/'; |
|
102 | + $head[$h][1].= $langs->trans("Agenda"); |
|
103 | + } |
|
104 | + $head[$h][2] = 'agenda'; |
|
105 | + $h++; |
|
106 | + } |
|
107 | + |
|
108 | + complete_head_from_modules($conf,$langs,$object,$head,$h,'member','remove'); |
|
109 | + |
|
110 | + return $head; |
|
111 | 111 | } |
112 | 112 | |
113 | 113 | /** |
@@ -118,26 +118,26 @@ discard block |
||
118 | 118 | */ |
119 | 119 | function member_type_prepare_head(AdherentType $object) |
120 | 120 | { |
121 | - global $langs, $conf, $user; |
|
121 | + global $langs, $conf, $user; |
|
122 | 122 | |
123 | - $h=0; |
|
124 | - $head = array(); |
|
123 | + $h=0; |
|
124 | + $head = array(); |
|
125 | 125 | |
126 | - $head[$h][0] = DOL_URL_ROOT.'/adherents/type.php?rowid='.$object->id; |
|
127 | - $head[$h][1] = $langs->trans("Card"); |
|
128 | - $head[$h][2] = 'card'; |
|
129 | - $h++; |
|
126 | + $head[$h][0] = DOL_URL_ROOT.'/adherents/type.php?rowid='.$object->id; |
|
127 | + $head[$h][1] = $langs->trans("Card"); |
|
128 | + $head[$h][2] = 'card'; |
|
129 | + $h++; |
|
130 | 130 | |
131 | - if ((! empty($conf->ldap->enabled) && ! empty($conf->global->LDAP_MEMBER_TYPE_ACTIVE)) |
|
132 | - && (empty($conf->global->MAIN_DISABLE_LDAP_TAB) || ! empty($user->admin))) |
|
133 | - { |
|
134 | - $langs->load("ldap"); |
|
131 | + if ((! empty($conf->ldap->enabled) && ! empty($conf->global->LDAP_MEMBER_TYPE_ACTIVE)) |
|
132 | + && (empty($conf->global->MAIN_DISABLE_LDAP_TAB) || ! empty($user->admin))) |
|
133 | + { |
|
134 | + $langs->load("ldap"); |
|
135 | 135 | |
136 | - $head[$h][0] = DOL_URL_ROOT.'/adherents/type_ldap.php?rowid='.$object->id; |
|
137 | - $head[$h][1] = $langs->trans("LDAPCard"); |
|
138 | - $head[$h][2] = 'ldap'; |
|
139 | - $h++; |
|
140 | - } |
|
136 | + $head[$h][0] = DOL_URL_ROOT.'/adherents/type_ldap.php?rowid='.$object->id; |
|
137 | + $head[$h][1] = $langs->trans("LDAPCard"); |
|
138 | + $head[$h][2] = 'ldap'; |
|
139 | + $h++; |
|
140 | + } |
|
141 | 141 | |
142 | 142 | // Show more tabs from modules |
143 | 143 | // Entries must be declared in modules descriptor with line |
@@ -145,9 +145,9 @@ discard block |
||
145 | 145 | // $this->tabs = array('entity:-tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to remove a tab |
146 | 146 | complete_head_from_modules($conf,$langs,$object,$head,$h,'membertype'); |
147 | 147 | |
148 | - complete_head_from_modules($conf,$langs,$object,$head,$h,'membertype','remove'); |
|
148 | + complete_head_from_modules($conf,$langs,$object,$head,$h,'membertype','remove'); |
|
149 | 149 | |
150 | - return $head; |
|
150 | + return $head; |
|
151 | 151 | } |
152 | 152 | |
153 | 153 | /** |
@@ -261,28 +261,28 @@ discard block |
||
261 | 261 | */ |
262 | 262 | function subscription_prepare_head(Subscription $object) |
263 | 263 | { |
264 | - global $db, $langs, $conf, $user; |
|
264 | + global $db, $langs, $conf, $user; |
|
265 | 265 | |
266 | - $h = 0; |
|
267 | - $head = array(); |
|
266 | + $h = 0; |
|
267 | + $head = array(); |
|
268 | 268 | |
269 | - $head[$h][0] = DOL_URL_ROOT.'/adherents/subscription/card.php?rowid='.$object->id; |
|
270 | - $head[$h][1] = $langs->trans("Card"); |
|
271 | - $head[$h][2] = 'general'; |
|
272 | - $h++; |
|
269 | + $head[$h][0] = DOL_URL_ROOT.'/adherents/subscription/card.php?rowid='.$object->id; |
|
270 | + $head[$h][1] = $langs->trans("Card"); |
|
271 | + $head[$h][2] = 'general'; |
|
272 | + $h++; |
|
273 | 273 | |
274 | - $head[$h][0] = DOL_URL_ROOT.'/adherents/subscription/info.php?rowid='.$object->id; |
|
275 | - $head[$h][1] = $langs->trans("Info"); |
|
276 | - $head[$h][2] = 'info'; |
|
277 | - $h++; |
|
274 | + $head[$h][0] = DOL_URL_ROOT.'/adherents/subscription/info.php?rowid='.$object->id; |
|
275 | + $head[$h][1] = $langs->trans("Info"); |
|
276 | + $head[$h][2] = 'info'; |
|
277 | + $h++; |
|
278 | 278 | |
279 | - // Show more tabs from modules |
|
280 | - // Entries must be declared in modules descriptor with line |
|
281 | - // $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab |
|
282 | - // $this->tabs = array('entity:-tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to remove a tab |
|
283 | - complete_head_from_modules($conf,$langs,$object,$head,$h,'subscription'); |
|
279 | + // Show more tabs from modules |
|
280 | + // Entries must be declared in modules descriptor with line |
|
281 | + // $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab |
|
282 | + // $this->tabs = array('entity:-tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to remove a tab |
|
283 | + complete_head_from_modules($conf,$langs,$object,$head,$h,'subscription'); |
|
284 | 284 | |
285 | - complete_head_from_modules($conf,$langs,$object,$head,$h,'subscription','remove'); |
|
285 | + complete_head_from_modules($conf,$langs,$object,$head,$h,'subscription','remove'); |
|
286 | 286 | |
287 | - return $head; |
|
287 | + return $head; |
|
288 | 288 | } |
@@ -30,25 +30,25 @@ discard block |
||
30 | 30 | */ |
31 | 31 | function contract_prepare_head(Contrat $object) |
32 | 32 | { |
33 | - global $db, $langs, $conf; |
|
33 | + global $db, $langs, $conf; |
|
34 | 34 | |
35 | - $h = 0; |
|
36 | - $head = array(); |
|
37 | - |
|
38 | - $head[$h][0] = DOL_URL_ROOT.'/contrat/card.php?id='.$object->id; |
|
39 | - $head[$h][1] = $langs->trans("ContractCard"); |
|
40 | - $head[$h][2] = 'card'; |
|
41 | - $h++; |
|
42 | - |
|
43 | - if (empty($conf->global->MAIN_DISABLE_CONTACTS_TAB)) |
|
44 | - { |
|
45 | - $nbContact = count($object->liste_contact(-1,'internal')) + count($object->liste_contact(-1,'external')); |
|
46 | - $head[$h][0] = DOL_URL_ROOT.'/contrat/contact.php?id='.$object->id; |
|
47 | - $head[$h][1] = $langs->trans("ContactsAddresses"); |
|
48 | - if ($nbContact > 0) $head[$h][1].= ' <span class="badge">'.$nbContact.'</span>'; |
|
49 | - $head[$h][2] = 'contact'; |
|
50 | - $h++; |
|
51 | - } |
|
35 | + $h = 0; |
|
36 | + $head = array(); |
|
37 | + |
|
38 | + $head[$h][0] = DOL_URL_ROOT.'/contrat/card.php?id='.$object->id; |
|
39 | + $head[$h][1] = $langs->trans("ContractCard"); |
|
40 | + $head[$h][2] = 'card'; |
|
41 | + $h++; |
|
42 | + |
|
43 | + if (empty($conf->global->MAIN_DISABLE_CONTACTS_TAB)) |
|
44 | + { |
|
45 | + $nbContact = count($object->liste_contact(-1,'internal')) + count($object->liste_contact(-1,'external')); |
|
46 | + $head[$h][0] = DOL_URL_ROOT.'/contrat/contact.php?id='.$object->id; |
|
47 | + $head[$h][1] = $langs->trans("ContactsAddresses"); |
|
48 | + if ($nbContact > 0) $head[$h][1].= ' <span class="badge">'.$nbContact.'</span>'; |
|
49 | + $head[$h][2] = 'contact'; |
|
50 | + $h++; |
|
51 | + } |
|
52 | 52 | |
53 | 53 | // Show more tabs from modules |
54 | 54 | // Entries must be declared in modules descriptor with line |
@@ -58,35 +58,35 @@ discard block |
||
58 | 58 | |
59 | 59 | if (empty($conf->global->MAIN_DISABLE_NOTES_TAB)) |
60 | 60 | { |
61 | - $nbNote = 0; |
|
61 | + $nbNote = 0; |
|
62 | 62 | if(!empty($object->note_private)) $nbNote++; |
63 | - if(!empty($object->note_public)) $nbNote++; |
|
64 | - $head[$h][0] = DOL_URL_ROOT.'/contrat/note.php?id='.$object->id; |
|
65 | - $head[$h][1] = $langs->trans("Notes"); |
|
66 | - if ($nbNote > 0) $head[$h][1].= ' <span class="badge">'.$nbNote.'</span>'; |
|
67 | - $head[$h][2] = 'note'; |
|
68 | - $h++; |
|
63 | + if(!empty($object->note_public)) $nbNote++; |
|
64 | + $head[$h][0] = DOL_URL_ROOT.'/contrat/note.php?id='.$object->id; |
|
65 | + $head[$h][1] = $langs->trans("Notes"); |
|
66 | + if ($nbNote > 0) $head[$h][1].= ' <span class="badge">'.$nbNote.'</span>'; |
|
67 | + $head[$h][2] = 'note'; |
|
68 | + $h++; |
|
69 | 69 | } |
70 | 70 | |
71 | - require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; |
|
71 | + require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; |
|
72 | 72 | require_once DOL_DOCUMENT_ROOT.'/core/class/link.class.php'; |
73 | - $upload_dir = $conf->contrat->dir_output . "/" . dol_sanitizeFileName($object->ref); |
|
74 | - $nbFiles = count(dol_dir_list($upload_dir,'files',0,'','(\.meta|_preview.*\.png)$')); |
|
73 | + $upload_dir = $conf->contrat->dir_output . "/" . dol_sanitizeFileName($object->ref); |
|
74 | + $nbFiles = count(dol_dir_list($upload_dir,'files',0,'','(\.meta|_preview.*\.png)$')); |
|
75 | 75 | $nbLinks=Link::count($db, $object->element, $object->id); |
76 | - $head[$h][0] = DOL_URL_ROOT.'/contrat/document.php?id='.$object->id; |
|
77 | - $head[$h][1] = $langs->trans("Documents"); |
|
78 | - if (($nbFiles+$nbLinks) > 0) $head[$h][1].= ' <span class="badge">'.($nbFiles+$nbLinks).'</span>'; |
|
79 | - $head[$h][2] = 'documents'; |
|
80 | - $h++; |
|
76 | + $head[$h][0] = DOL_URL_ROOT.'/contrat/document.php?id='.$object->id; |
|
77 | + $head[$h][1] = $langs->trans("Documents"); |
|
78 | + if (($nbFiles+$nbLinks) > 0) $head[$h][1].= ' <span class="badge">'.($nbFiles+$nbLinks).'</span>'; |
|
79 | + $head[$h][2] = 'documents'; |
|
80 | + $h++; |
|
81 | 81 | |
82 | - $head[$h][0] = DOL_URL_ROOT.'/contrat/info.php?id='.$object->id; |
|
83 | - $head[$h][1] = $langs->trans("Info"); |
|
84 | - $head[$h][2] = 'info'; |
|
85 | - $h++; |
|
82 | + $head[$h][0] = DOL_URL_ROOT.'/contrat/info.php?id='.$object->id; |
|
83 | + $head[$h][1] = $langs->trans("Info"); |
|
84 | + $head[$h][2] = 'info'; |
|
85 | + $h++; |
|
86 | 86 | |
87 | 87 | complete_head_from_modules($conf,$langs,$object,$head,$h,'contract','remove'); |
88 | 88 | |
89 | - return $head; |
|
89 | + return $head; |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | /** |
@@ -96,24 +96,24 @@ discard block |
||
96 | 96 | */ |
97 | 97 | function contract_admin_prepare_head() |
98 | 98 | { |
99 | - global $langs, $conf, $user; |
|
99 | + global $langs, $conf, $user; |
|
100 | 100 | |
101 | - $h = 0; |
|
102 | - $head = array(); |
|
101 | + $h = 0; |
|
102 | + $head = array(); |
|
103 | 103 | |
104 | - $head[$h][0] = DOL_URL_ROOT."/admin/contract.php"; |
|
105 | - $head[$h][1] = $langs->trans("Contracts"); |
|
106 | - $head[$h][2] = 'contract'; |
|
107 | - $h++; |
|
104 | + $head[$h][0] = DOL_URL_ROOT."/admin/contract.php"; |
|
105 | + $head[$h][1] = $langs->trans("Contracts"); |
|
106 | + $head[$h][2] = 'contract'; |
|
107 | + $h++; |
|
108 | 108 | |
109 | - // Show more tabs from modules |
|
110 | - // Entries must be declared in modules descriptor with line |
|
111 | - // $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab |
|
112 | - // $this->tabs = array('entity:-tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to remove a tab |
|
113 | - complete_head_from_modules($conf,$langs,null,$head,$h,'contract_admin'); |
|
109 | + // Show more tabs from modules |
|
110 | + // Entries must be declared in modules descriptor with line |
|
111 | + // $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab |
|
112 | + // $this->tabs = array('entity:-tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to remove a tab |
|
113 | + complete_head_from_modules($conf,$langs,null,$head,$h,'contract_admin'); |
|
114 | 114 | |
115 | - $head[$h][0] = DOL_URL_ROOT.'/contrat/admin/contract_extrafields.php'; |
|
116 | - $head[$h][1] = $langs->trans("ExtraFields"); |
|
115 | + $head[$h][0] = DOL_URL_ROOT.'/contrat/admin/contract_extrafields.php'; |
|
116 | + $head[$h][1] = $langs->trans("ExtraFields"); |
|
117 | 117 | $head[$h][2] = 'attributes'; |
118 | 118 | $h++; |
119 | 119 | |
@@ -124,8 +124,8 @@ discard block |
||
124 | 124 | |
125 | 125 | |
126 | 126 | |
127 | - complete_head_from_modules($conf,$langs,null,$head,$h,'contract_admin','remove'); |
|
127 | + complete_head_from_modules($conf,$langs,null,$head,$h,'contract_admin','remove'); |
|
128 | 128 | |
129 | - return $head; |
|
129 | + return $head; |
|
130 | 130 | } |
131 | 131 |
@@ -64,6 +64,6 @@ |
||
64 | 64 | // We add characteristics to the name |
65 | 65 | foreach($_Avery_Labels as $key => $val) |
66 | 66 | { |
67 | - $_Avery_Labels[$key]['name'].=' ('.$_Avery_Labels[$key]['paper-size'].' - '.$_Avery_Labels[$key]['NX'].'x'.$_Avery_Labels[$key]['NY'].')'; |
|
67 | + $_Avery_Labels[$key]['name'].=' ('.$_Avery_Labels[$key]['paper-size'].' - '.$_Avery_Labels[$key]['NX'].'x'.$_Avery_Labels[$key]['NY'].')'; |
|
68 | 68 | } |
69 | 69 |
@@ -36,15 +36,15 @@ discard block |
||
36 | 36 | $tab = 0; |
37 | 37 | $head = array(); |
38 | 38 | |
39 | - $head[$tab][0] = DOL_URL_ROOT.'/loan/card.php?id='.$object->id; |
|
40 | - $head[$tab][1] = $langs->trans('Card'); |
|
41 | - $head[$tab][2] = 'card'; |
|
42 | - $tab++; |
|
39 | + $head[$tab][0] = DOL_URL_ROOT.'/loan/card.php?id='.$object->id; |
|
40 | + $head[$tab][1] = $langs->trans('Card'); |
|
41 | + $head[$tab][2] = 'card'; |
|
42 | + $tab++; |
|
43 | 43 | |
44 | - $head[$tab][0] = DOL_URL_ROOT.'/loan/schedule.php?loanid='.$object->id; |
|
45 | - $head[$tab][1] = $langs->trans('FinancialCommitment'); |
|
46 | - $head[$tab][2] = 'FinancialCommitment'; |
|
47 | - $tab++; |
|
44 | + $head[$tab][0] = DOL_URL_ROOT.'/loan/schedule.php?loanid='.$object->id; |
|
45 | + $head[$tab][1] = $langs->trans('FinancialCommitment'); |
|
46 | + $head[$tab][2] = 'FinancialCommitment'; |
|
47 | + $tab++; |
|
48 | 48 | |
49 | 49 | // Show more tabs from modules |
50 | 50 | // Entries must be declared in modules descriptor with line |
@@ -52,26 +52,26 @@ discard block |
||
52 | 52 | // $this->tabs = array('entity:-tabname); to remove a tab |
53 | 53 | complete_head_from_modules($conf, $langs, $object, $head, $tab,'loan'); |
54 | 54 | |
55 | - require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; |
|
55 | + require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; |
|
56 | 56 | require_once DOL_DOCUMENT_ROOT.'/core/class/link.class.php'; |
57 | - $upload_dir = $conf->loan->dir_output . "/" . dol_sanitizeFileName($object->ref); |
|
58 | - $nbFiles = count(dol_dir_list($upload_dir,'files',0,'','(\.meta|_preview.*\.png)$')); |
|
57 | + $upload_dir = $conf->loan->dir_output . "/" . dol_sanitizeFileName($object->ref); |
|
58 | + $nbFiles = count(dol_dir_list($upload_dir,'files',0,'','(\.meta|_preview.*\.png)$')); |
|
59 | 59 | $nbLinks=Link::count($db, $object->element, $object->id); |
60 | - $head[$tab][0] = DOL_URL_ROOT.'/loan/document.php?id='.$object->id; |
|
61 | - $head[$tab][1] = $langs->trans("Documents"); |
|
62 | - if (($nbFiles+$nbLinks) > 0) $head[$tab][1].= ' <span class="badge">'.($nbFiles+$nbLinks).'</span>'; |
|
63 | - $head[$tab][2] = 'documents'; |
|
64 | - $tab++; |
|
60 | + $head[$tab][0] = DOL_URL_ROOT.'/loan/document.php?id='.$object->id; |
|
61 | + $head[$tab][1] = $langs->trans("Documents"); |
|
62 | + if (($nbFiles+$nbLinks) > 0) $head[$tab][1].= ' <span class="badge">'.($nbFiles+$nbLinks).'</span>'; |
|
63 | + $head[$tab][2] = 'documents'; |
|
64 | + $tab++; |
|
65 | 65 | |
66 | - if (empty($conf->global->MAIN_DISABLE_NOTES_TAB)) |
|
67 | - { |
|
68 | - $nbNote = (empty($object->note_private)?0:1)+(empty($object->note_public)?0:1); |
|
69 | - $head[$tab][0] = DOL_URL_ROOT."/loan/note.php?id=".$object->id; |
|
70 | - $head[$tab][1] = $langs->trans("Notes"); |
|
71 | - if($nbNote > 0) $head[$tab][1].= ' <span class="badge">'.$nbNote.'</span>'; |
|
72 | - $head[$tab][2] = 'note'; |
|
73 | - $tab++; |
|
74 | - } |
|
66 | + if (empty($conf->global->MAIN_DISABLE_NOTES_TAB)) |
|
67 | + { |
|
68 | + $nbNote = (empty($object->note_private)?0:1)+(empty($object->note_public)?0:1); |
|
69 | + $head[$tab][0] = DOL_URL_ROOT."/loan/note.php?id=".$object->id; |
|
70 | + $head[$tab][1] = $langs->trans("Notes"); |
|
71 | + if($nbNote > 0) $head[$tab][1].= ' <span class="badge">'.$nbNote.'</span>'; |
|
72 | + $head[$tab][2] = 'note'; |
|
73 | + $tab++; |
|
74 | + } |
|
75 | 75 | |
76 | 76 | $head[$tab][0] = DOL_URL_ROOT.'/loan/info.php?id='.$object->id; |
77 | 77 | $head[$tab][1] = $langs->trans("Info"); |
@@ -74,24 +74,24 @@ discard block |
||
74 | 74 | */ |
75 | 75 | function dol_getImageSize($file, $url = false) |
76 | 76 | { |
77 | - $ret=array(); |
|
77 | + $ret=array(); |
|
78 | 78 | |
79 | - if (image_format_supported($file) < 0) return $ret; |
|
79 | + if (image_format_supported($file) < 0) return $ret; |
|
80 | 80 | |
81 | - $filetoread = $file; |
|
82 | - if (!$url) |
|
83 | - { |
|
84 | - $filetoread = realpath(dol_osencode($file)); // Chemin canonique absolu de l'image |
|
85 | - } |
|
81 | + $filetoread = $file; |
|
82 | + if (!$url) |
|
83 | + { |
|
84 | + $filetoread = realpath(dol_osencode($file)); // Chemin canonique absolu de l'image |
|
85 | + } |
|
86 | 86 | |
87 | - if ($filetoread) |
|
88 | - { |
|
89 | - $infoImg = getimagesize($filetoread); // Recuperation des infos de l'image |
|
90 | - $ret['width']=$infoImg[0]; // Largeur de l'image |
|
91 | - $ret['height']=$infoImg[1]; // Hauteur de l'image |
|
92 | - } |
|
87 | + if ($filetoread) |
|
88 | + { |
|
89 | + $infoImg = getimagesize($filetoread); // Recuperation des infos de l'image |
|
90 | + $ret['width']=$infoImg[0]; // Largeur de l'image |
|
91 | + $ret['height']=$infoImg[1]; // Hauteur de l'image |
|
92 | + } |
|
93 | 93 | |
94 | - return $ret; |
|
94 | + return $ret; |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | |
@@ -108,191 +108,191 @@ discard block |
||
108 | 108 | */ |
109 | 109 | function dol_imageResizeOrCrop($file, $mode, $newWidth, $newHeight, $src_x=0, $src_y=0) |
110 | 110 | { |
111 | - require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php'; |
|
112 | - |
|
113 | - global $conf,$langs; |
|
114 | - |
|
115 | - dol_syslog("dol_imageResizeOrCrop file=".$file." mode=".$mode." newWidth=".$newWidth." newHeight=".$newHeight." src_x=".$src_x." src_y=".$src_y); |
|
116 | - |
|
117 | - // Clean parameters |
|
118 | - $file=trim($file); |
|
119 | - |
|
120 | - // Check parameters |
|
121 | - if (! $file) |
|
122 | - { |
|
123 | - // Si le fichier n'a pas ete indique |
|
124 | - return 'Bad parameter file'; |
|
125 | - } |
|
126 | - elseif (! file_exists($file)) |
|
127 | - { |
|
128 | - // Si le fichier passe en parametre n'existe pas |
|
129 | - return $langs->trans("ErrorFileNotFound",$file); |
|
130 | - } |
|
131 | - elseif(image_format_supported($file) < 0) |
|
132 | - { |
|
133 | - return 'This filename '.$file.' does not seem to be an image filename.'; |
|
134 | - } |
|
135 | - elseif(!is_numeric($newWidth) && !is_numeric($newHeight)) |
|
136 | - { |
|
137 | - return 'Wrong value for parameter newWidth or newHeight'; |
|
138 | - } |
|
139 | - elseif ($mode == 0 && $newWidth <= 0 && $newHeight <= 0) |
|
140 | - { |
|
141 | - return 'At least newHeight or newWidth must be defined for resizing'; |
|
142 | - } |
|
143 | - elseif ($mode == 1 && ($newWidth <= 0 || $newHeight <= 0)) |
|
144 | - { |
|
145 | - return 'Both newHeight or newWidth must be defined for croping'; |
|
146 | - } |
|
147 | - |
|
148 | - $filetoread = realpath(dol_osencode($file)); // Chemin canonique absolu de l'image |
|
149 | - |
|
150 | - $infoImg = getimagesize($filetoread); // Recuperation des infos de l'image |
|
151 | - $imgWidth = $infoImg[0]; // Largeur de l'image |
|
152 | - $imgHeight = $infoImg[1]; // Hauteur de l'image |
|
153 | - |
|
154 | - if ($mode == 0) // If resize, we check parameters |
|
155 | - { |
|
156 | - if ($newWidth <= 0) |
|
157 | - { |
|
158 | - $newWidth=intval(($newHeight / $imgHeight) * $imgWidth); // Keep ratio |
|
159 | - } |
|
160 | - if ($newHeight <= 0) |
|
161 | - { |
|
162 | - $newHeight=intval(($newWidth / $imgWidth) * $imgHeight); // Keep ratio |
|
163 | - } |
|
164 | - } |
|
165 | - |
|
166 | - $imgfonction=''; |
|
167 | - switch($infoImg[2]) |
|
168 | - { |
|
169 | - case 1: // IMG_GIF |
|
170 | - $imgfonction = 'imagecreatefromgif'; |
|
171 | - break; |
|
172 | - case 2: // IMG_JPG |
|
173 | - $imgfonction = 'imagecreatefromjpeg'; |
|
174 | - break; |
|
175 | - case 3: // IMG_PNG |
|
176 | - $imgfonction = 'imagecreatefrompng'; |
|
177 | - break; |
|
178 | - case 4: // IMG_WBMP |
|
179 | - $imgfonction = 'imagecreatefromwbmp'; |
|
180 | - break; |
|
181 | - } |
|
182 | - if ($imgfonction) |
|
183 | - { |
|
184 | - if (! function_exists($imgfonction)) |
|
185 | - { |
|
186 | - // Fonctions de conversion non presente dans ce PHP |
|
187 | - return 'Resize not possible. This PHP does not support GD functions '.$imgfonction; |
|
188 | - } |
|
189 | - } |
|
190 | - |
|
191 | - // Initialisation des variables selon l'extension de l'image |
|
192 | - switch($infoImg[2]) |
|
193 | - { |
|
194 | - case 1: // Gif |
|
195 | - $img = imagecreatefromgif($filetoread); |
|
196 | - $extImg = '.gif'; // File name extension of image |
|
197 | - $newquality='NU'; // Quality is not used for this format |
|
198 | - break; |
|
199 | - case 2: // Jpg |
|
200 | - $img = imagecreatefromjpeg($filetoread); |
|
201 | - $extImg = '.jpg'; |
|
202 | - $newquality=100; // % quality maximum |
|
203 | - break; |
|
204 | - case 3: // Png |
|
205 | - $img = imagecreatefrompng($filetoread); |
|
206 | - $extImg = '.png'; |
|
207 | - $newquality=0; // No compression (0-9) |
|
208 | - break; |
|
209 | - case 4: // Bmp |
|
210 | - $img = imagecreatefromwbmp($filetoread); |
|
211 | - $extImg = '.bmp'; |
|
212 | - $newquality='NU'; // Quality is not used for this format |
|
213 | - break; |
|
214 | - } |
|
215 | - |
|
216 | - // Create empty image |
|
217 | - if ($infoImg[2] == 1) |
|
218 | - { |
|
219 | - // Compatibilite image GIF |
|
220 | - $imgThumb = imagecreate($newWidth, $newHeight); |
|
221 | - } |
|
222 | - else |
|
223 | - { |
|
224 | - $imgThumb = imagecreatetruecolor($newWidth, $newHeight); |
|
225 | - } |
|
226 | - |
|
227 | - // Activate antialiasing for better quality |
|
228 | - if (function_exists('imageantialias')) |
|
229 | - { |
|
230 | - imageantialias($imgThumb, true); |
|
231 | - } |
|
232 | - |
|
233 | - // This is to keep transparent alpha channel if exists (PHP >= 4.2) |
|
234 | - if (function_exists('imagesavealpha')) |
|
235 | - { |
|
236 | - imagesavealpha($imgThumb, true); |
|
237 | - } |
|
238 | - |
|
239 | - // Initialisation des variables selon l'extension de l'image |
|
240 | - switch($infoImg[2]) |
|
241 | - { |
|
242 | - case 1: // Gif |
|
243 | - $trans_colour = imagecolorallocate($imgThumb, 255, 255, 255); // On procede autrement pour le format GIF |
|
244 | - imagecolortransparent($imgThumb,$trans_colour); |
|
245 | - break; |
|
246 | - case 2: // Jpg |
|
247 | - $trans_colour = imagecolorallocatealpha($imgThumb, 255, 255, 255, 0); |
|
248 | - break; |
|
249 | - case 3: // Png |
|
250 | - imagealphablending($imgThumb,false); // Pour compatibilite sur certain systeme |
|
251 | - $trans_colour = imagecolorallocatealpha($imgThumb, 255, 255, 255, 127); // Keep transparent channel |
|
252 | - break; |
|
253 | - case 4: // Bmp |
|
254 | - $trans_colour = imagecolorallocatealpha($imgThumb, 255, 255, 255, 0); |
|
255 | - break; |
|
256 | - } |
|
257 | - if (function_exists("imagefill")) imagefill($imgThumb, 0, 0, $trans_colour); |
|
258 | - |
|
259 | - dol_syslog("dol_imageResizeOrCrop: convert image from ($imgWidth x $imgHeight) at position ($src_x x $src_y) to ($newWidth x $newHeight) as $extImg, newquality=$newquality"); |
|
260 | - //imagecopyresized($imgThumb, $img, 0, 0, 0, 0, $thumbWidth, $thumbHeight, $imgWidth, $imgHeight); // Insere l'image de base redimensionnee |
|
261 | - imagecopyresampled($imgThumb, $img, 0, 0, $src_x, $src_y, $newWidth, $newHeight, ($mode==0?$imgWidth:$newWidth), ($mode==0?$imgHeight:$newHeight)); // Insere l'image de base redimensionnee |
|
262 | - |
|
263 | - $imgThumbName = $file; |
|
264 | - |
|
265 | - // Check if permission are ok |
|
266 | - //$fp = fopen($imgThumbName, "w"); |
|
267 | - //fclose($fp); |
|
268 | - |
|
269 | - // Create image on disk |
|
270 | - switch($infoImg[2]) |
|
271 | - { |
|
272 | - case 1: // Gif |
|
273 | - imagegif($imgThumb, $imgThumbName); |
|
274 | - break; |
|
275 | - case 2: // Jpg |
|
276 | - imagejpeg($imgThumb, $imgThumbName, $newquality); |
|
277 | - break; |
|
278 | - case 3: // Png |
|
279 | - imagepng($imgThumb, $imgThumbName, $newquality); |
|
280 | - break; |
|
281 | - case 4: // Bmp |
|
282 | - image2wbmp($imgThumb, $imgThumbName); |
|
283 | - break; |
|
284 | - } |
|
285 | - |
|
286 | - // Set permissions on file |
|
287 | - if (! empty($conf->global->MAIN_UMASK)) @chmod($imgThumbName, octdec($conf->global->MAIN_UMASK)); |
|
288 | - |
|
289 | - // Free memory. This does not delete image. |
|
111 | + require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php'; |
|
112 | + |
|
113 | + global $conf,$langs; |
|
114 | + |
|
115 | + dol_syslog("dol_imageResizeOrCrop file=".$file." mode=".$mode." newWidth=".$newWidth." newHeight=".$newHeight." src_x=".$src_x." src_y=".$src_y); |
|
116 | + |
|
117 | + // Clean parameters |
|
118 | + $file=trim($file); |
|
119 | + |
|
120 | + // Check parameters |
|
121 | + if (! $file) |
|
122 | + { |
|
123 | + // Si le fichier n'a pas ete indique |
|
124 | + return 'Bad parameter file'; |
|
125 | + } |
|
126 | + elseif (! file_exists($file)) |
|
127 | + { |
|
128 | + // Si le fichier passe en parametre n'existe pas |
|
129 | + return $langs->trans("ErrorFileNotFound",$file); |
|
130 | + } |
|
131 | + elseif(image_format_supported($file) < 0) |
|
132 | + { |
|
133 | + return 'This filename '.$file.' does not seem to be an image filename.'; |
|
134 | + } |
|
135 | + elseif(!is_numeric($newWidth) && !is_numeric($newHeight)) |
|
136 | + { |
|
137 | + return 'Wrong value for parameter newWidth or newHeight'; |
|
138 | + } |
|
139 | + elseif ($mode == 0 && $newWidth <= 0 && $newHeight <= 0) |
|
140 | + { |
|
141 | + return 'At least newHeight or newWidth must be defined for resizing'; |
|
142 | + } |
|
143 | + elseif ($mode == 1 && ($newWidth <= 0 || $newHeight <= 0)) |
|
144 | + { |
|
145 | + return 'Both newHeight or newWidth must be defined for croping'; |
|
146 | + } |
|
147 | + |
|
148 | + $filetoread = realpath(dol_osencode($file)); // Chemin canonique absolu de l'image |
|
149 | + |
|
150 | + $infoImg = getimagesize($filetoread); // Recuperation des infos de l'image |
|
151 | + $imgWidth = $infoImg[0]; // Largeur de l'image |
|
152 | + $imgHeight = $infoImg[1]; // Hauteur de l'image |
|
153 | + |
|
154 | + if ($mode == 0) // If resize, we check parameters |
|
155 | + { |
|
156 | + if ($newWidth <= 0) |
|
157 | + { |
|
158 | + $newWidth=intval(($newHeight / $imgHeight) * $imgWidth); // Keep ratio |
|
159 | + } |
|
160 | + if ($newHeight <= 0) |
|
161 | + { |
|
162 | + $newHeight=intval(($newWidth / $imgWidth) * $imgHeight); // Keep ratio |
|
163 | + } |
|
164 | + } |
|
165 | + |
|
166 | + $imgfonction=''; |
|
167 | + switch($infoImg[2]) |
|
168 | + { |
|
169 | + case 1: // IMG_GIF |
|
170 | + $imgfonction = 'imagecreatefromgif'; |
|
171 | + break; |
|
172 | + case 2: // IMG_JPG |
|
173 | + $imgfonction = 'imagecreatefromjpeg'; |
|
174 | + break; |
|
175 | + case 3: // IMG_PNG |
|
176 | + $imgfonction = 'imagecreatefrompng'; |
|
177 | + break; |
|
178 | + case 4: // IMG_WBMP |
|
179 | + $imgfonction = 'imagecreatefromwbmp'; |
|
180 | + break; |
|
181 | + } |
|
182 | + if ($imgfonction) |
|
183 | + { |
|
184 | + if (! function_exists($imgfonction)) |
|
185 | + { |
|
186 | + // Fonctions de conversion non presente dans ce PHP |
|
187 | + return 'Resize not possible. This PHP does not support GD functions '.$imgfonction; |
|
188 | + } |
|
189 | + } |
|
190 | + |
|
191 | + // Initialisation des variables selon l'extension de l'image |
|
192 | + switch($infoImg[2]) |
|
193 | + { |
|
194 | + case 1: // Gif |
|
195 | + $img = imagecreatefromgif($filetoread); |
|
196 | + $extImg = '.gif'; // File name extension of image |
|
197 | + $newquality='NU'; // Quality is not used for this format |
|
198 | + break; |
|
199 | + case 2: // Jpg |
|
200 | + $img = imagecreatefromjpeg($filetoread); |
|
201 | + $extImg = '.jpg'; |
|
202 | + $newquality=100; // % quality maximum |
|
203 | + break; |
|
204 | + case 3: // Png |
|
205 | + $img = imagecreatefrompng($filetoread); |
|
206 | + $extImg = '.png'; |
|
207 | + $newquality=0; // No compression (0-9) |
|
208 | + break; |
|
209 | + case 4: // Bmp |
|
210 | + $img = imagecreatefromwbmp($filetoread); |
|
211 | + $extImg = '.bmp'; |
|
212 | + $newquality='NU'; // Quality is not used for this format |
|
213 | + break; |
|
214 | + } |
|
215 | + |
|
216 | + // Create empty image |
|
217 | + if ($infoImg[2] == 1) |
|
218 | + { |
|
219 | + // Compatibilite image GIF |
|
220 | + $imgThumb = imagecreate($newWidth, $newHeight); |
|
221 | + } |
|
222 | + else |
|
223 | + { |
|
224 | + $imgThumb = imagecreatetruecolor($newWidth, $newHeight); |
|
225 | + } |
|
226 | + |
|
227 | + // Activate antialiasing for better quality |
|
228 | + if (function_exists('imageantialias')) |
|
229 | + { |
|
230 | + imageantialias($imgThumb, true); |
|
231 | + } |
|
232 | + |
|
233 | + // This is to keep transparent alpha channel if exists (PHP >= 4.2) |
|
234 | + if (function_exists('imagesavealpha')) |
|
235 | + { |
|
236 | + imagesavealpha($imgThumb, true); |
|
237 | + } |
|
238 | + |
|
239 | + // Initialisation des variables selon l'extension de l'image |
|
240 | + switch($infoImg[2]) |
|
241 | + { |
|
242 | + case 1: // Gif |
|
243 | + $trans_colour = imagecolorallocate($imgThumb, 255, 255, 255); // On procede autrement pour le format GIF |
|
244 | + imagecolortransparent($imgThumb,$trans_colour); |
|
245 | + break; |
|
246 | + case 2: // Jpg |
|
247 | + $trans_colour = imagecolorallocatealpha($imgThumb, 255, 255, 255, 0); |
|
248 | + break; |
|
249 | + case 3: // Png |
|
250 | + imagealphablending($imgThumb,false); // Pour compatibilite sur certain systeme |
|
251 | + $trans_colour = imagecolorallocatealpha($imgThumb, 255, 255, 255, 127); // Keep transparent channel |
|
252 | + break; |
|
253 | + case 4: // Bmp |
|
254 | + $trans_colour = imagecolorallocatealpha($imgThumb, 255, 255, 255, 0); |
|
255 | + break; |
|
256 | + } |
|
257 | + if (function_exists("imagefill")) imagefill($imgThumb, 0, 0, $trans_colour); |
|
258 | + |
|
259 | + dol_syslog("dol_imageResizeOrCrop: convert image from ($imgWidth x $imgHeight) at position ($src_x x $src_y) to ($newWidth x $newHeight) as $extImg, newquality=$newquality"); |
|
260 | + //imagecopyresized($imgThumb, $img, 0, 0, 0, 0, $thumbWidth, $thumbHeight, $imgWidth, $imgHeight); // Insere l'image de base redimensionnee |
|
261 | + imagecopyresampled($imgThumb, $img, 0, 0, $src_x, $src_y, $newWidth, $newHeight, ($mode==0?$imgWidth:$newWidth), ($mode==0?$imgHeight:$newHeight)); // Insere l'image de base redimensionnee |
|
262 | + |
|
263 | + $imgThumbName = $file; |
|
264 | + |
|
265 | + // Check if permission are ok |
|
266 | + //$fp = fopen($imgThumbName, "w"); |
|
267 | + //fclose($fp); |
|
268 | + |
|
269 | + // Create image on disk |
|
270 | + switch($infoImg[2]) |
|
271 | + { |
|
272 | + case 1: // Gif |
|
273 | + imagegif($imgThumb, $imgThumbName); |
|
274 | + break; |
|
275 | + case 2: // Jpg |
|
276 | + imagejpeg($imgThumb, $imgThumbName, $newquality); |
|
277 | + break; |
|
278 | + case 3: // Png |
|
279 | + imagepng($imgThumb, $imgThumbName, $newquality); |
|
280 | + break; |
|
281 | + case 4: // Bmp |
|
282 | + image2wbmp($imgThumb, $imgThumbName); |
|
283 | + break; |
|
284 | + } |
|
285 | + |
|
286 | + // Set permissions on file |
|
287 | + if (! empty($conf->global->MAIN_UMASK)) @chmod($imgThumbName, octdec($conf->global->MAIN_UMASK)); |
|
288 | + |
|
289 | + // Free memory. This does not delete image. |
|
290 | 290 | imagedestroy($img); |
291 | - imagedestroy($imgThumb); |
|
291 | + imagedestroy($imgThumb); |
|
292 | 292 | |
293 | - clearstatcache(); // File was replaced by a modified one, so we clear file caches. |
|
293 | + clearstatcache(); // File was replaced by a modified one, so we clear file caches. |
|
294 | 294 | |
295 | - return $imgThumbName; |
|
295 | + return $imgThumbName; |
|
296 | 296 | } |
297 | 297 | |
298 | 298 | |
@@ -351,247 +351,247 @@ discard block |
||
351 | 351 | */ |
352 | 352 | function vignette($file, $maxWidth = 160, $maxHeight = 120, $extName='_small', $quality=50, $outdir='thumbs', $targetformat=0) |
353 | 353 | { |
354 | - require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php'; |
|
354 | + require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php'; |
|
355 | 355 | |
356 | - global $conf,$langs; |
|
356 | + global $conf,$langs; |
|
357 | 357 | |
358 | - dol_syslog("vignette file=".$file." extName=".$extName." maxWidth=".$maxWidth." maxHeight=".$maxHeight." quality=".$quality." outdir=".$outdir." targetformat=".$targetformat); |
|
358 | + dol_syslog("vignette file=".$file." extName=".$extName." maxWidth=".$maxWidth." maxHeight=".$maxHeight." quality=".$quality." outdir=".$outdir." targetformat=".$targetformat); |
|
359 | 359 | |
360 | - // Clean parameters |
|
361 | - $file=trim($file); |
|
360 | + // Clean parameters |
|
361 | + $file=trim($file); |
|
362 | 362 | |
363 | - // Check parameters |
|
364 | - if (! $file) |
|
365 | - { |
|
366 | - // Si le fichier n'a pas ete indique |
|
367 | - return 'ErrorBadParameters'; |
|
368 | - } |
|
369 | - elseif (! file_exists($file)) |
|
370 | - { |
|
371 | - // Si le fichier passe en parametre n'existe pas |
|
363 | + // Check parameters |
|
364 | + if (! $file) |
|
365 | + { |
|
366 | + // Si le fichier n'a pas ete indique |
|
367 | + return 'ErrorBadParameters'; |
|
368 | + } |
|
369 | + elseif (! file_exists($file)) |
|
370 | + { |
|
371 | + // Si le fichier passe en parametre n'existe pas |
|
372 | 372 | dol_syslog($langs->trans("ErrorFileNotFound",$file),LOG_ERR); |
373 | - return $langs->trans("ErrorFileNotFound",$file); |
|
374 | - } |
|
375 | - elseif(image_format_supported($file) < 0) |
|
376 | - { |
|
373 | + return $langs->trans("ErrorFileNotFound",$file); |
|
374 | + } |
|
375 | + elseif(image_format_supported($file) < 0) |
|
376 | + { |
|
377 | 377 | dol_syslog('This file '.$file.' does not seem to be an image format file name.',LOG_WARNING); |
378 | - return 'ErrorBadImageFormat'; |
|
379 | - } |
|
380 | - elseif(!is_numeric($maxWidth) || empty($maxWidth) || $maxWidth < -1){ |
|
381 | - // Si la largeur max est incorrecte (n'est pas numerique, est vide, ou est inferieure a 0) |
|
378 | + return 'ErrorBadImageFormat'; |
|
379 | + } |
|
380 | + elseif(!is_numeric($maxWidth) || empty($maxWidth) || $maxWidth < -1){ |
|
381 | + // Si la largeur max est incorrecte (n'est pas numerique, est vide, ou est inferieure a 0) |
|
382 | 382 | dol_syslog('Wrong value for parameter maxWidth',LOG_ERR); |
383 | - return 'Error: Wrong value for parameter maxWidth'; |
|
384 | - } |
|
385 | - elseif(!is_numeric($maxHeight) || empty($maxHeight) || $maxHeight < -1){ |
|
386 | - // Si la hauteur max est incorrecte (n'est pas numerique, est vide, ou est inferieure a 0) |
|
383 | + return 'Error: Wrong value for parameter maxWidth'; |
|
384 | + } |
|
385 | + elseif(!is_numeric($maxHeight) || empty($maxHeight) || $maxHeight < -1){ |
|
386 | + // Si la hauteur max est incorrecte (n'est pas numerique, est vide, ou est inferieure a 0) |
|
387 | 387 | dol_syslog('Wrong value for parameter maxHeight',LOG_ERR); |
388 | - return 'Error: Wrong value for parameter maxHeight'; |
|
389 | - } |
|
390 | - |
|
391 | - $filetoread = realpath(dol_osencode($file)); // Chemin canonique absolu de l'image |
|
392 | - |
|
393 | - $infoImg = getimagesize($filetoread); // Recuperation des infos de l'image |
|
394 | - $imgWidth = $infoImg[0]; // Largeur de l'image |
|
395 | - $imgHeight = $infoImg[1]; // Hauteur de l'image |
|
396 | - |
|
397 | - if ($maxWidth == -1) $maxWidth=$infoImg[0]; // If size is -1, we keep unchanged |
|
398 | - if ($maxHeight == -1) $maxHeight=$infoImg[1]; // If size is -1, we keep unchanged |
|
399 | - |
|
400 | - // Si l'image est plus petite que la largeur et la hauteur max, on ne cree pas de vignette |
|
401 | - if ($infoImg[0] < $maxWidth && $infoImg[1] < $maxHeight) |
|
402 | - { |
|
403 | - // On cree toujours les vignettes |
|
404 | - dol_syslog("File size is smaller than thumb size",LOG_DEBUG); |
|
405 | - //return 'Le fichier '.$file.' ne necessite pas de creation de vignette'; |
|
406 | - } |
|
407 | - |
|
408 | - $imgfonction=''; |
|
409 | - switch($infoImg[2]) |
|
410 | - { |
|
411 | - case IMAGETYPE_GIF: // 1 |
|
412 | - $imgfonction = 'imagecreatefromgif'; |
|
413 | - break; |
|
414 | - case IMAGETYPE_JPEG: // 2 |
|
415 | - $imgfonction = 'imagecreatefromjpeg'; |
|
416 | - break; |
|
417 | - case IMAGETYPE_PNG: // 3 |
|
418 | - $imgfonction = 'imagecreatefrompng'; |
|
419 | - break; |
|
420 | - case IMAGETYPE_BMP: // 6 |
|
388 | + return 'Error: Wrong value for parameter maxHeight'; |
|
389 | + } |
|
390 | + |
|
391 | + $filetoread = realpath(dol_osencode($file)); // Chemin canonique absolu de l'image |
|
392 | + |
|
393 | + $infoImg = getimagesize($filetoread); // Recuperation des infos de l'image |
|
394 | + $imgWidth = $infoImg[0]; // Largeur de l'image |
|
395 | + $imgHeight = $infoImg[1]; // Hauteur de l'image |
|
396 | + |
|
397 | + if ($maxWidth == -1) $maxWidth=$infoImg[0]; // If size is -1, we keep unchanged |
|
398 | + if ($maxHeight == -1) $maxHeight=$infoImg[1]; // If size is -1, we keep unchanged |
|
399 | + |
|
400 | + // Si l'image est plus petite que la largeur et la hauteur max, on ne cree pas de vignette |
|
401 | + if ($infoImg[0] < $maxWidth && $infoImg[1] < $maxHeight) |
|
402 | + { |
|
403 | + // On cree toujours les vignettes |
|
404 | + dol_syslog("File size is smaller than thumb size",LOG_DEBUG); |
|
405 | + //return 'Le fichier '.$file.' ne necessite pas de creation de vignette'; |
|
406 | + } |
|
407 | + |
|
408 | + $imgfonction=''; |
|
409 | + switch($infoImg[2]) |
|
410 | + { |
|
411 | + case IMAGETYPE_GIF: // 1 |
|
412 | + $imgfonction = 'imagecreatefromgif'; |
|
413 | + break; |
|
414 | + case IMAGETYPE_JPEG: // 2 |
|
415 | + $imgfonction = 'imagecreatefromjpeg'; |
|
416 | + break; |
|
417 | + case IMAGETYPE_PNG: // 3 |
|
418 | + $imgfonction = 'imagecreatefrompng'; |
|
419 | + break; |
|
420 | + case IMAGETYPE_BMP: // 6 |
|
421 | 421 | // Not supported by PHP GD |
422 | - break; |
|
423 | - case IMAGETYPE_WBMP: // 15 |
|
424 | - $imgfonction = 'imagecreatefromwbmp'; |
|
425 | - break; |
|
426 | - } |
|
427 | - if ($imgfonction) |
|
428 | - { |
|
429 | - if (! function_exists($imgfonction)) |
|
430 | - { |
|
431 | - // Fonctions de conversion non presente dans ce PHP |
|
432 | - return 'Error: Creation of thumbs not possible. This PHP does not support GD function '.$imgfonction; |
|
433 | - } |
|
434 | - } |
|
435 | - |
|
436 | - // On cree le repertoire contenant les vignettes |
|
437 | - $dirthumb = dirname($file).($outdir?'/'.$outdir:''); // Chemin du dossier contenant les vignettes |
|
438 | - dol_mkdir($dirthumb); |
|
439 | - |
|
440 | - // Initialisation des variables selon l'extension de l'image |
|
441 | - $img=null; |
|
442 | - switch($infoImg[2]) |
|
443 | - { |
|
444 | - case IMAGETYPE_GIF: // 1 |
|
445 | - $img = imagecreatefromgif($filetoread); |
|
446 | - $extImg = '.gif'; // Extension de l'image |
|
447 | - break; |
|
448 | - case IMAGETYPE_JPEG: // 2 |
|
449 | - $img = imagecreatefromjpeg($filetoread); |
|
450 | - $extImg = (preg_match('/\.jpeg$/',$file)?'.jpeg':'.jpg'); // Extension de l'image |
|
451 | - break; |
|
452 | - case IMAGETYPE_PNG: // 3 |
|
453 | - $img = imagecreatefrompng($filetoread); |
|
454 | - $extImg = '.png'; |
|
455 | - break; |
|
456 | - case IMAGETYPE_BMP: // 6 |
|
422 | + break; |
|
423 | + case IMAGETYPE_WBMP: // 15 |
|
424 | + $imgfonction = 'imagecreatefromwbmp'; |
|
425 | + break; |
|
426 | + } |
|
427 | + if ($imgfonction) |
|
428 | + { |
|
429 | + if (! function_exists($imgfonction)) |
|
430 | + { |
|
431 | + // Fonctions de conversion non presente dans ce PHP |
|
432 | + return 'Error: Creation of thumbs not possible. This PHP does not support GD function '.$imgfonction; |
|
433 | + } |
|
434 | + } |
|
435 | + |
|
436 | + // On cree le repertoire contenant les vignettes |
|
437 | + $dirthumb = dirname($file).($outdir?'/'.$outdir:''); // Chemin du dossier contenant les vignettes |
|
438 | + dol_mkdir($dirthumb); |
|
439 | + |
|
440 | + // Initialisation des variables selon l'extension de l'image |
|
441 | + $img=null; |
|
442 | + switch($infoImg[2]) |
|
443 | + { |
|
444 | + case IMAGETYPE_GIF: // 1 |
|
445 | + $img = imagecreatefromgif($filetoread); |
|
446 | + $extImg = '.gif'; // Extension de l'image |
|
447 | + break; |
|
448 | + case IMAGETYPE_JPEG: // 2 |
|
449 | + $img = imagecreatefromjpeg($filetoread); |
|
450 | + $extImg = (preg_match('/\.jpeg$/',$file)?'.jpeg':'.jpg'); // Extension de l'image |
|
451 | + break; |
|
452 | + case IMAGETYPE_PNG: // 3 |
|
453 | + $img = imagecreatefrompng($filetoread); |
|
454 | + $extImg = '.png'; |
|
455 | + break; |
|
456 | + case IMAGETYPE_BMP: // 6 |
|
457 | 457 | // Not supported by PHP GD |
458 | - $extImg = '.bmp'; |
|
459 | - break; |
|
460 | - case IMAGETYPE_WBMP: // 15 |
|
461 | - $img = imagecreatefromwbmp($filetoread); |
|
462 | - $extImg = '.bmp'; |
|
463 | - break; |
|
464 | - } |
|
458 | + $extImg = '.bmp'; |
|
459 | + break; |
|
460 | + case IMAGETYPE_WBMP: // 15 |
|
461 | + $img = imagecreatefromwbmp($filetoread); |
|
462 | + $extImg = '.bmp'; |
|
463 | + break; |
|
464 | + } |
|
465 | 465 | if (! is_resource($img)) |
466 | 466 | { |
467 | 467 | dol_syslog('Failed to detect type of image. We found infoImg[2]='.$infoImg[2], LOG_WARNING); |
468 | 468 | return 0; |
469 | 469 | } |
470 | 470 | |
471 | - // Initialisation des dimensions de la vignette si elles sont superieures a l'original |
|
472 | - if($maxWidth > $imgWidth){ $maxWidth = $imgWidth; } |
|
473 | - if($maxHeight > $imgHeight){ $maxHeight = $imgHeight; } |
|
474 | - |
|
475 | - $whFact = $maxWidth/$maxHeight; // Facteur largeur/hauteur des dimensions max de la vignette |
|
476 | - $imgWhFact = $imgWidth/$imgHeight; // Facteur largeur/hauteur de l'original |
|
477 | - |
|
478 | - // Fixe les dimensions de la vignette |
|
479 | - if($whFact < $imgWhFact) |
|
480 | - { |
|
481 | - // Si largeur determinante |
|
482 | - $thumbWidth = $maxWidth; |
|
483 | - $thumbHeight = $thumbWidth / $imgWhFact; |
|
484 | - } |
|
485 | - else |
|
486 | - { |
|
487 | - // Si hauteur determinante |
|
488 | - $thumbHeight = $maxHeight; |
|
489 | - $thumbWidth = $thumbHeight * $imgWhFact; |
|
490 | - } |
|
491 | - $thumbHeight=round($thumbHeight); |
|
492 | - $thumbWidth=round($thumbWidth); |
|
471 | + // Initialisation des dimensions de la vignette si elles sont superieures a l'original |
|
472 | + if($maxWidth > $imgWidth){ $maxWidth = $imgWidth; } |
|
473 | + if($maxHeight > $imgHeight){ $maxHeight = $imgHeight; } |
|
474 | + |
|
475 | + $whFact = $maxWidth/$maxHeight; // Facteur largeur/hauteur des dimensions max de la vignette |
|
476 | + $imgWhFact = $imgWidth/$imgHeight; // Facteur largeur/hauteur de l'original |
|
477 | + |
|
478 | + // Fixe les dimensions de la vignette |
|
479 | + if($whFact < $imgWhFact) |
|
480 | + { |
|
481 | + // Si largeur determinante |
|
482 | + $thumbWidth = $maxWidth; |
|
483 | + $thumbHeight = $thumbWidth / $imgWhFact; |
|
484 | + } |
|
485 | + else |
|
486 | + { |
|
487 | + // Si hauteur determinante |
|
488 | + $thumbHeight = $maxHeight; |
|
489 | + $thumbWidth = $thumbHeight * $imgWhFact; |
|
490 | + } |
|
491 | + $thumbHeight=round($thumbHeight); |
|
492 | + $thumbWidth=round($thumbWidth); |
|
493 | 493 | |
494 | 494 | // Define target format |
495 | 495 | if (empty($targetformat)) $targetformat=$infoImg[2]; |
496 | 496 | |
497 | - // Create empty image |
|
498 | - if ($targetformat == IMAGETYPE_GIF) |
|
499 | - { |
|
500 | - // Compatibilite image GIF |
|
501 | - $imgThumb = imagecreate($thumbWidth, $thumbHeight); |
|
502 | - } |
|
503 | - else |
|
504 | - { |
|
505 | - $imgThumb = imagecreatetruecolor($thumbWidth, $thumbHeight); |
|
506 | - } |
|
507 | - |
|
508 | - // Activate antialiasing for better quality |
|
509 | - if (function_exists('imageantialias')) |
|
510 | - { |
|
511 | - imageantialias($imgThumb, true); |
|
512 | - } |
|
513 | - |
|
514 | - // This is to keep transparent alpha channel if exists (PHP >= 4.2) |
|
515 | - if (function_exists('imagesavealpha')) |
|
516 | - { |
|
517 | - imagesavealpha($imgThumb, true); |
|
518 | - } |
|
519 | - |
|
520 | - // Initialisation des variables selon l'extension de l'image |
|
521 | - // $targetformat is 0 by default, in such case, we keep original extension |
|
522 | - switch($targetformat) |
|
523 | - { |
|
524 | - case IMAGETYPE_GIF: // 1 |
|
525 | - $trans_colour = imagecolorallocate($imgThumb, 255, 255, 255); // On procede autrement pour le format GIF |
|
526 | - imagecolortransparent($imgThumb,$trans_colour); |
|
497 | + // Create empty image |
|
498 | + if ($targetformat == IMAGETYPE_GIF) |
|
499 | + { |
|
500 | + // Compatibilite image GIF |
|
501 | + $imgThumb = imagecreate($thumbWidth, $thumbHeight); |
|
502 | + } |
|
503 | + else |
|
504 | + { |
|
505 | + $imgThumb = imagecreatetruecolor($thumbWidth, $thumbHeight); |
|
506 | + } |
|
507 | + |
|
508 | + // Activate antialiasing for better quality |
|
509 | + if (function_exists('imageantialias')) |
|
510 | + { |
|
511 | + imageantialias($imgThumb, true); |
|
512 | + } |
|
513 | + |
|
514 | + // This is to keep transparent alpha channel if exists (PHP >= 4.2) |
|
515 | + if (function_exists('imagesavealpha')) |
|
516 | + { |
|
517 | + imagesavealpha($imgThumb, true); |
|
518 | + } |
|
519 | + |
|
520 | + // Initialisation des variables selon l'extension de l'image |
|
521 | + // $targetformat is 0 by default, in such case, we keep original extension |
|
522 | + switch($targetformat) |
|
523 | + { |
|
524 | + case IMAGETYPE_GIF: // 1 |
|
525 | + $trans_colour = imagecolorallocate($imgThumb, 255, 255, 255); // On procede autrement pour le format GIF |
|
526 | + imagecolortransparent($imgThumb,$trans_colour); |
|
527 | 527 | $extImgTarget = '.gif'; |
528 | 528 | $newquality='NU'; |
529 | 529 | break; |
530 | - case IMAGETYPE_JPEG: // 2 |
|
530 | + case IMAGETYPE_JPEG: // 2 |
|
531 | 531 | $trans_colour = imagecolorallocatealpha($imgThumb, 255, 255, 255, 0); |
532 | 532 | $extImgTarget = (preg_match('/\.jpeg$/i',$file)?'.jpeg':'.jpg'); |
533 | 533 | $newquality=$quality; |
534 | 534 | break; |
535 | - case IMAGETYPE_PNG: // 3 |
|
536 | - imagealphablending($imgThumb,false); // Pour compatibilite sur certain systeme |
|
537 | - $trans_colour = imagecolorallocatealpha($imgThumb, 255, 255, 255, 127); // Keep transparent channel |
|
535 | + case IMAGETYPE_PNG: // 3 |
|
536 | + imagealphablending($imgThumb,false); // Pour compatibilite sur certain systeme |
|
537 | + $trans_colour = imagecolorallocatealpha($imgThumb, 255, 255, 255, 127); // Keep transparent channel |
|
538 | 538 | $extImgTarget = '.png'; |
539 | 539 | $newquality=$quality-100; |
540 | 540 | $newquality=round(abs($quality-100)*9/100); |
541 | 541 | break; |
542 | - case IMAGETYPE_BMP: // 6 |
|
542 | + case IMAGETYPE_BMP: // 6 |
|
543 | 543 | // Not supported by PHP GD |
544 | 544 | $extImgTarget = '.bmp'; |
545 | 545 | $newquality='NU'; |
546 | 546 | break; |
547 | - case IMAGETYPE_WBMP: // 15 |
|
548 | - $trans_colour = imagecolorallocatealpha($imgThumb, 255, 255, 255, 0); |
|
547 | + case IMAGETYPE_WBMP: // 15 |
|
548 | + $trans_colour = imagecolorallocatealpha($imgThumb, 255, 255, 255, 0); |
|
549 | 549 | $extImgTarget = '.bmp'; |
550 | 550 | $newquality='NU'; |
551 | 551 | break; |
552 | - } |
|
553 | - if (function_exists("imagefill")) imagefill($imgThumb, 0, 0, $trans_colour); |
|
554 | - |
|
555 | - dol_syslog("vignette: convert image from ($imgWidth x $imgHeight) to ($thumbWidth x $thumbHeight) as $extImg, newquality=$newquality"); |
|
556 | - //imagecopyresized($imgThumb, $img, 0, 0, 0, 0, $thumbWidth, $thumbHeight, $imgWidth, $imgHeight); // Insere l'image de base redimensionnee |
|
557 | - imagecopyresampled($imgThumb, $img, 0, 0, 0, 0, $thumbWidth, $thumbHeight, $imgWidth, $imgHeight); // Insere l'image de base redimensionnee |
|
558 | - |
|
559 | - $fileName = preg_replace('/(\.gif|\.jpeg|\.jpg|\.png|\.bmp)$/i','',$file); // On enleve extension quelquesoit la casse |
|
560 | - $fileName = basename($fileName); |
|
561 | - //$imgThumbName = $dirthumb.'/'.getImageFileNameForSize(basename($file), $extName, $extImgTarget); // Full path of thumb file |
|
562 | - $imgThumbName = getImageFileNameForSize($file, $extName, $extImgTarget); // Full path of thumb file |
|
563 | - |
|
564 | - |
|
565 | - // Check if permission are ok |
|
566 | - //$fp = fopen($imgThumbName, "w"); |
|
567 | - //fclose($fp); |
|
568 | - |
|
569 | - // Create image on disk |
|
570 | - switch($targetformat) |
|
571 | - { |
|
572 | - case IMAGETYPE_GIF: // 1 |
|
573 | - imagegif($imgThumb, $imgThumbName); |
|
574 | - break; |
|
575 | - case IMAGETYPE_JPEG: // 2 |
|
576 | - imagejpeg($imgThumb, $imgThumbName, $newquality); |
|
577 | - break; |
|
578 | - case IMAGETYPE_PNG: // 3 |
|
579 | - imagepng($imgThumb, $imgThumbName, $newquality); |
|
580 | - break; |
|
581 | - case IMAGETYPE_BMP: // 6 |
|
552 | + } |
|
553 | + if (function_exists("imagefill")) imagefill($imgThumb, 0, 0, $trans_colour); |
|
554 | + |
|
555 | + dol_syslog("vignette: convert image from ($imgWidth x $imgHeight) to ($thumbWidth x $thumbHeight) as $extImg, newquality=$newquality"); |
|
556 | + //imagecopyresized($imgThumb, $img, 0, 0, 0, 0, $thumbWidth, $thumbHeight, $imgWidth, $imgHeight); // Insere l'image de base redimensionnee |
|
557 | + imagecopyresampled($imgThumb, $img, 0, 0, 0, 0, $thumbWidth, $thumbHeight, $imgWidth, $imgHeight); // Insere l'image de base redimensionnee |
|
558 | + |
|
559 | + $fileName = preg_replace('/(\.gif|\.jpeg|\.jpg|\.png|\.bmp)$/i','',$file); // On enleve extension quelquesoit la casse |
|
560 | + $fileName = basename($fileName); |
|
561 | + //$imgThumbName = $dirthumb.'/'.getImageFileNameForSize(basename($file), $extName, $extImgTarget); // Full path of thumb file |
|
562 | + $imgThumbName = getImageFileNameForSize($file, $extName, $extImgTarget); // Full path of thumb file |
|
563 | + |
|
564 | + |
|
565 | + // Check if permission are ok |
|
566 | + //$fp = fopen($imgThumbName, "w"); |
|
567 | + //fclose($fp); |
|
568 | + |
|
569 | + // Create image on disk |
|
570 | + switch($targetformat) |
|
571 | + { |
|
572 | + case IMAGETYPE_GIF: // 1 |
|
573 | + imagegif($imgThumb, $imgThumbName); |
|
574 | + break; |
|
575 | + case IMAGETYPE_JPEG: // 2 |
|
576 | + imagejpeg($imgThumb, $imgThumbName, $newquality); |
|
577 | + break; |
|
578 | + case IMAGETYPE_PNG: // 3 |
|
579 | + imagepng($imgThumb, $imgThumbName, $newquality); |
|
580 | + break; |
|
581 | + case IMAGETYPE_BMP: // 6 |
|
582 | 582 | // Not supported by PHP GD |
583 | - break; |
|
584 | - case IMAGETYPE_WBMP: // 15 |
|
585 | - image2wbmp($imgThumb, $imgThumbName); |
|
586 | - break; |
|
587 | - } |
|
583 | + break; |
|
584 | + case IMAGETYPE_WBMP: // 15 |
|
585 | + image2wbmp($imgThumb, $imgThumbName); |
|
586 | + break; |
|
587 | + } |
|
588 | 588 | |
589 | - // Set permissions on file |
|
590 | - if (! empty($conf->global->MAIN_UMASK)) @chmod($imgThumbName, octdec($conf->global->MAIN_UMASK)); |
|
589 | + // Set permissions on file |
|
590 | + if (! empty($conf->global->MAIN_UMASK)) @chmod($imgThumbName, octdec($conf->global->MAIN_UMASK)); |
|
591 | 591 | |
592 | 592 | // Free memory. This does not delete image. |
593 | 593 | imagedestroy($img); |
594 | 594 | imagedestroy($imgThumb); |
595 | 595 | |
596 | - return $imgThumbName; |
|
596 | + return $imgThumbName; |
|
597 | 597 | } |
@@ -34,80 +34,80 @@ discard block |
||
34 | 34 | */ |
35 | 35 | function shipping_prepare_head($object) |
36 | 36 | { |
37 | - global $db, $langs, $conf, $user; |
|
37 | + global $db, $langs, $conf, $user; |
|
38 | 38 | |
39 | - // Load translation files required by the page |
|
39 | + // Load translation files required by the page |
|
40 | 40 | $langs->loadLangs(array("sendings","deliveries")); |
41 | 41 | |
42 | - $h = 0; |
|
43 | - $head = array(); |
|
44 | - |
|
45 | - $head[$h][0] = DOL_URL_ROOT."/expedition/card.php?id=".$object->id; |
|
46 | - $head[$h][1] = $langs->trans("SendingCard"); |
|
47 | - $head[$h][2] = 'shipping'; |
|
48 | - $h++; |
|
49 | - |
|
50 | - if ($conf->livraison_bon->enabled && $user->rights->expedition->livraison->lire) |
|
51 | - { |
|
52 | - // delivery link |
|
53 | - $object->fetchObjectLinked($object->id,$object->element); |
|
54 | - if (count($object->linkedObjectsIds['delivery']) > 0) // If there is a delivery |
|
55 | - { |
|
56 | - // Take first one element of array |
|
57 | - $tmp = reset($object->linkedObjectsIds['delivery']); |
|
58 | - |
|
59 | - $head[$h][0] = DOL_URL_ROOT."/livraison/card.php?id=".$tmp; |
|
60 | - $head[$h][1] = $langs->trans("DeliveryCard"); |
|
61 | - $head[$h][2] = 'delivery'; |
|
62 | - $h++; |
|
63 | - } |
|
64 | - } |
|
65 | - |
|
66 | - if (empty($conf->global->MAIN_DISABLE_CONTACTS_TAB)) |
|
67 | - { |
|
68 | - $objectsrc = $object; |
|
69 | - if ($object->origin == 'commande' && $object->origin_id > 0) |
|
70 | - { |
|
71 | - $objectsrc = new Commande($db); |
|
72 | - $objectsrc->fetch($object->origin_id); |
|
73 | - } |
|
74 | - $nbContact = count($objectsrc->liste_contact(-1,'internal')) + count($objectsrc->liste_contact(-1,'external')); |
|
75 | - $head[$h][0] = DOL_URL_ROOT."/expedition/contact.php?id=".$object->id; |
|
76 | - $head[$h][1] = $langs->trans("ContactsAddresses"); |
|
77 | - if ($nbContact > 0) $head[$h][1].= ' <span class="badge">'.$nbContact.'</span>'; |
|
78 | - $head[$h][2] = 'contact'; |
|
79 | - $h++; |
|
80 | - } |
|
81 | - |
|
82 | - require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; |
|
42 | + $h = 0; |
|
43 | + $head = array(); |
|
44 | + |
|
45 | + $head[$h][0] = DOL_URL_ROOT."/expedition/card.php?id=".$object->id; |
|
46 | + $head[$h][1] = $langs->trans("SendingCard"); |
|
47 | + $head[$h][2] = 'shipping'; |
|
48 | + $h++; |
|
49 | + |
|
50 | + if ($conf->livraison_bon->enabled && $user->rights->expedition->livraison->lire) |
|
51 | + { |
|
52 | + // delivery link |
|
53 | + $object->fetchObjectLinked($object->id,$object->element); |
|
54 | + if (count($object->linkedObjectsIds['delivery']) > 0) // If there is a delivery |
|
55 | + { |
|
56 | + // Take first one element of array |
|
57 | + $tmp = reset($object->linkedObjectsIds['delivery']); |
|
58 | + |
|
59 | + $head[$h][0] = DOL_URL_ROOT."/livraison/card.php?id=".$tmp; |
|
60 | + $head[$h][1] = $langs->trans("DeliveryCard"); |
|
61 | + $head[$h][2] = 'delivery'; |
|
62 | + $h++; |
|
63 | + } |
|
64 | + } |
|
65 | + |
|
66 | + if (empty($conf->global->MAIN_DISABLE_CONTACTS_TAB)) |
|
67 | + { |
|
68 | + $objectsrc = $object; |
|
69 | + if ($object->origin == 'commande' && $object->origin_id > 0) |
|
70 | + { |
|
71 | + $objectsrc = new Commande($db); |
|
72 | + $objectsrc->fetch($object->origin_id); |
|
73 | + } |
|
74 | + $nbContact = count($objectsrc->liste_contact(-1,'internal')) + count($objectsrc->liste_contact(-1,'external')); |
|
75 | + $head[$h][0] = DOL_URL_ROOT."/expedition/contact.php?id=".$object->id; |
|
76 | + $head[$h][1] = $langs->trans("ContactsAddresses"); |
|
77 | + if ($nbContact > 0) $head[$h][1].= ' <span class="badge">'.$nbContact.'</span>'; |
|
78 | + $head[$h][2] = 'contact'; |
|
79 | + $h++; |
|
80 | + } |
|
81 | + |
|
82 | + require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; |
|
83 | 83 | require_once DOL_DOCUMENT_ROOT.'/core/class/link.class.php'; |
84 | - $upload_dir = $conf->commande->dir_output . "/" . dol_sanitizeFileName($object->ref); |
|
85 | - $nbFiles = count(dol_dir_list($upload_dir,'files',0,'','(\.meta|_preview.*\.png)$')); |
|
84 | + $upload_dir = $conf->commande->dir_output . "/" . dol_sanitizeFileName($object->ref); |
|
85 | + $nbFiles = count(dol_dir_list($upload_dir,'files',0,'','(\.meta|_preview.*\.png)$')); |
|
86 | 86 | $nbLinks=Link::count($db, $object->element, $object->id); |
87 | - $head[$h][0] = DOL_URL_ROOT.'/expedition/document.php?id='.$object->id; |
|
88 | - $head[$h][1] = $langs->trans('Documents'); |
|
89 | - if (($nbFiles+$nbLinks) > 0) $head[$h][1].= ' <span class="badge">'.($nbFiles+$nbLinks).'</span>'; |
|
90 | - $head[$h][2] = 'documents'; |
|
91 | - $h++; |
|
87 | + $head[$h][0] = DOL_URL_ROOT.'/expedition/document.php?id='.$object->id; |
|
88 | + $head[$h][1] = $langs->trans('Documents'); |
|
89 | + if (($nbFiles+$nbLinks) > 0) $head[$h][1].= ' <span class="badge">'.($nbFiles+$nbLinks).'</span>'; |
|
90 | + $head[$h][2] = 'documents'; |
|
91 | + $h++; |
|
92 | 92 | |
93 | 93 | $nbNote = 0; |
94 | 94 | if (!empty($object->note_private)) $nbNote++; |
95 | 95 | if (!empty($object->note_public)) $nbNote++; |
96 | - $head[$h][0] = DOL_URL_ROOT."/expedition/note.php?id=".$object->id; |
|
97 | - $head[$h][1] = $langs->trans("Notes"); |
|
98 | - if ($nbNote > 0) $head[$h][1].= ' <span class="badge">'.$nbNote.'</span>'; |
|
99 | - $head[$h][2] = 'note'; |
|
100 | - $h++; |
|
101 | - |
|
102 | - // Show more tabs from modules |
|
103 | - // Entries must be declared in modules descriptor with line |
|
96 | + $head[$h][0] = DOL_URL_ROOT."/expedition/note.php?id=".$object->id; |
|
97 | + $head[$h][1] = $langs->trans("Notes"); |
|
98 | + if ($nbNote > 0) $head[$h][1].= ' <span class="badge">'.$nbNote.'</span>'; |
|
99 | + $head[$h][2] = 'note'; |
|
100 | + $h++; |
|
101 | + |
|
102 | + // Show more tabs from modules |
|
103 | + // Entries must be declared in modules descriptor with line |
|
104 | 104 | // $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab |
105 | 105 | // $this->tabs = array('entity:-tabname); to remove a tab |
106 | - complete_head_from_modules($conf,$langs,$object,$head,$h,'delivery'); |
|
106 | + complete_head_from_modules($conf,$langs,$object,$head,$h,'delivery'); |
|
107 | 107 | |
108 | - complete_head_from_modules($conf,$langs,$object,$head,$h,'delivery','remove'); |
|
108 | + complete_head_from_modules($conf,$langs,$object,$head,$h,'delivery','remove'); |
|
109 | 109 | |
110 | - return $head; |
|
110 | + return $head; |
|
111 | 111 | } |
112 | 112 | |
113 | 113 | |
@@ -119,39 +119,39 @@ discard block |
||
119 | 119 | */ |
120 | 120 | function delivery_prepare_head($object) |
121 | 121 | { |
122 | - global $langs, $conf, $user; |
|
122 | + global $langs, $conf, $user; |
|
123 | 123 | |
124 | - // Load translation files required by the page |
|
124 | + // Load translation files required by the page |
|
125 | 125 | $langs->loadLangs(array("sendings","deliveries")); |
126 | 126 | |
127 | - $h = 0; |
|
128 | - $head = array(); |
|
129 | - |
|
130 | - if ($conf->expedition_bon->enabled && $user->rights->expedition->lire) |
|
131 | - { |
|
132 | - $head[$h][0] = DOL_URL_ROOT."/expedition/card.php?id=".$object->origin_id; |
|
133 | - $head[$h][1] = $langs->trans("SendingCard"); |
|
134 | - $head[$h][2] = 'shipping'; |
|
135 | - $h++; |
|
136 | - } |
|
137 | - |
|
138 | - $head[$h][0] = DOL_URL_ROOT."/livraison/card.php?id=".$object->id; |
|
139 | - $head[$h][1] = $langs->trans("DeliveryCard"); |
|
140 | - $head[$h][2] = 'delivery'; |
|
141 | - $h++; |
|
142 | - |
|
143 | - $head[$h][0] = DOL_URL_ROOT."/expedition/contact.php?id=".$object->origin_id; |
|
144 | - $head[$h][1] = $langs->trans("ContactsAddresses"); |
|
145 | - $head[$h][2] = 'contact'; |
|
146 | - $h++; |
|
147 | - |
|
148 | - $head[$h][0] = DOL_URL_ROOT."/expedition/note.php?id=".$object->origin_id; |
|
149 | - $head[$h][1] = $langs->trans("Notes"); |
|
150 | - $head[$h][2] = 'note'; |
|
151 | - $h++; |
|
152 | - |
|
153 | - // Show more tabs from modules |
|
154 | - // Entries must be declared in modules descriptor with line |
|
127 | + $h = 0; |
|
128 | + $head = array(); |
|
129 | + |
|
130 | + if ($conf->expedition_bon->enabled && $user->rights->expedition->lire) |
|
131 | + { |
|
132 | + $head[$h][0] = DOL_URL_ROOT."/expedition/card.php?id=".$object->origin_id; |
|
133 | + $head[$h][1] = $langs->trans("SendingCard"); |
|
134 | + $head[$h][2] = 'shipping'; |
|
135 | + $h++; |
|
136 | + } |
|
137 | + |
|
138 | + $head[$h][0] = DOL_URL_ROOT."/livraison/card.php?id=".$object->id; |
|
139 | + $head[$h][1] = $langs->trans("DeliveryCard"); |
|
140 | + $head[$h][2] = 'delivery'; |
|
141 | + $h++; |
|
142 | + |
|
143 | + $head[$h][0] = DOL_URL_ROOT."/expedition/contact.php?id=".$object->origin_id; |
|
144 | + $head[$h][1] = $langs->trans("ContactsAddresses"); |
|
145 | + $head[$h][2] = 'contact'; |
|
146 | + $h++; |
|
147 | + |
|
148 | + $head[$h][0] = DOL_URL_ROOT."/expedition/note.php?id=".$object->origin_id; |
|
149 | + $head[$h][1] = $langs->trans("Notes"); |
|
150 | + $head[$h][2] = 'note'; |
|
151 | + $h++; |
|
152 | + |
|
153 | + // Show more tabs from modules |
|
154 | + // Entries must be declared in modules descriptor with line |
|
155 | 155 | // $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab |
156 | 156 | // $this->tabs = array('entity:-tabname); to remove a tab |
157 | 157 | // complete_head_from_modules use $object->id for this link so we temporary change it |
@@ -160,10 +160,10 @@ discard block |
||
160 | 160 | |
161 | 161 | complete_head_from_modules($conf,$langs,$object,$head,$h,'delivery'); |
162 | 162 | |
163 | - complete_head_from_modules($conf,$langs,$object,$head,$h,'delivery','remove'); |
|
163 | + complete_head_from_modules($conf,$langs,$object,$head,$h,'delivery','remove'); |
|
164 | 164 | |
165 | - $object->id = $tmpObjectId; |
|
166 | - return $head; |
|
165 | + $object->id = $tmpObjectId; |
|
166 | + return $head; |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | /** |
@@ -176,179 +176,179 @@ discard block |
||
176 | 176 | */ |
177 | 177 | function show_list_sending_receive($origin,$origin_id,$filter='') |
178 | 178 | { |
179 | - global $db, $conf, $langs, $bc; |
|
180 | - global $form; |
|
181 | - |
|
182 | - $product_static=new Product($db); |
|
183 | - $expedition=new Expedition($db); |
|
184 | - $warehousestatic=new Entrepot($db); |
|
185 | - |
|
186 | - $sql = "SELECT obj.rowid, obj.fk_product, obj.label, obj.description, obj.product_type as fk_product_type, obj.qty as qty_asked, obj.date_start, obj.date_end,"; |
|
187 | - $sql.= " ed.rowid as edrowid, ed.qty as qty_shipped, ed.fk_expedition as expedition_id, ed.fk_origin_line, ed.fk_entrepot as warehouse_id,"; |
|
188 | - $sql.= " e.rowid as sendingid, e.ref as exp_ref, e.date_creation, e.date_delivery, e.date_expedition,"; |
|
189 | - //if ($conf->livraison_bon->enabled) $sql .= " l.rowid as livraison_id, l.ref as livraison_ref, l.date_delivery, ld.qty as qty_received,"; |
|
190 | - $sql.= ' p.label as product_label, p.ref, p.fk_product_type, p.rowid as prodid, p.tobatch as product_tobatch,'; |
|
191 | - $sql.= ' p.description as product_desc'; |
|
192 | - $sql.= " FROM ".MAIN_DB_PREFIX."expeditiondet as ed"; |
|
193 | - $sql.= ", ".MAIN_DB_PREFIX."expedition as e"; |
|
194 | - $sql.= ", ".MAIN_DB_PREFIX.$origin."det as obj"; |
|
195 | - //if ($conf->livraison_bon->enabled) $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."livraison as l ON l.fk_expedition = e.rowid LEFT JOIN ".MAIN_DB_PREFIX."livraisondet as ld ON ld.fk_livraison = l.rowid AND obj.rowid = ld.fk_origin_line"; |
|
196 | - $sql.= " LEFT JOIN ".MAIN_DB_PREFIX."product as p ON obj.fk_product = p.rowid"; |
|
197 | - //TODO Add link to expeditiondet_batch |
|
198 | - $sql.= " WHERE e.entity IN (".getEntity('expedition').")"; |
|
199 | - $sql.= " AND obj.fk_".$origin." = ".$origin_id; |
|
200 | - $sql.= " AND obj.rowid = ed.fk_origin_line"; |
|
201 | - $sql.= " AND ed.fk_expedition = e.rowid"; |
|
202 | - if ($filter) $sql.= $filter; |
|
203 | - |
|
204 | - $sql.= " ORDER BY obj.fk_product"; |
|
205 | - |
|
206 | - dol_syslog("show_list_sending_receive", LOG_DEBUG); |
|
207 | - $resql = $db->query($sql); |
|
208 | - if ($resql) |
|
209 | - { |
|
210 | - $num = $db->num_rows($resql); |
|
211 | - $i = 0; |
|
212 | - |
|
213 | - if ($num) |
|
214 | - { |
|
215 | - if ($filter) print load_fiche_titre($langs->trans("OtherSendingsForSameOrder")); |
|
216 | - else print load_fiche_titre($langs->trans("SendingsAndReceivingForSameOrder")); |
|
217 | - |
|
218 | - print '<table class="liste" width="100%">'; |
|
219 | - print '<tr class="liste_titre">'; |
|
220 | - //print '<td align="left">'.$langs->trans("QtyOrdered").'</td>'; |
|
221 | - print '<td align="left">'.$langs->trans("SendingSheet").'</td>'; |
|
222 | - print '<td align="left">'.$langs->trans("Description").'</td>'; |
|
223 | - print '<td align="center">'.$langs->trans("DateCreation").'</td>'; |
|
224 | - print '<td align="center">'.$langs->trans("DateDeliveryPlanned").'</td>'; |
|
225 | - print '<td align="center">'.$langs->trans("QtyPreparedOrShipped").'</td>'; |
|
226 | - if (! empty($conf->stock->enabled)) |
|
227 | - { |
|
179 | + global $db, $conf, $langs, $bc; |
|
180 | + global $form; |
|
181 | + |
|
182 | + $product_static=new Product($db); |
|
183 | + $expedition=new Expedition($db); |
|
184 | + $warehousestatic=new Entrepot($db); |
|
185 | + |
|
186 | + $sql = "SELECT obj.rowid, obj.fk_product, obj.label, obj.description, obj.product_type as fk_product_type, obj.qty as qty_asked, obj.date_start, obj.date_end,"; |
|
187 | + $sql.= " ed.rowid as edrowid, ed.qty as qty_shipped, ed.fk_expedition as expedition_id, ed.fk_origin_line, ed.fk_entrepot as warehouse_id,"; |
|
188 | + $sql.= " e.rowid as sendingid, e.ref as exp_ref, e.date_creation, e.date_delivery, e.date_expedition,"; |
|
189 | + //if ($conf->livraison_bon->enabled) $sql .= " l.rowid as livraison_id, l.ref as livraison_ref, l.date_delivery, ld.qty as qty_received,"; |
|
190 | + $sql.= ' p.label as product_label, p.ref, p.fk_product_type, p.rowid as prodid, p.tobatch as product_tobatch,'; |
|
191 | + $sql.= ' p.description as product_desc'; |
|
192 | + $sql.= " FROM ".MAIN_DB_PREFIX."expeditiondet as ed"; |
|
193 | + $sql.= ", ".MAIN_DB_PREFIX."expedition as e"; |
|
194 | + $sql.= ", ".MAIN_DB_PREFIX.$origin."det as obj"; |
|
195 | + //if ($conf->livraison_bon->enabled) $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."livraison as l ON l.fk_expedition = e.rowid LEFT JOIN ".MAIN_DB_PREFIX."livraisondet as ld ON ld.fk_livraison = l.rowid AND obj.rowid = ld.fk_origin_line"; |
|
196 | + $sql.= " LEFT JOIN ".MAIN_DB_PREFIX."product as p ON obj.fk_product = p.rowid"; |
|
197 | + //TODO Add link to expeditiondet_batch |
|
198 | + $sql.= " WHERE e.entity IN (".getEntity('expedition').")"; |
|
199 | + $sql.= " AND obj.fk_".$origin." = ".$origin_id; |
|
200 | + $sql.= " AND obj.rowid = ed.fk_origin_line"; |
|
201 | + $sql.= " AND ed.fk_expedition = e.rowid"; |
|
202 | + if ($filter) $sql.= $filter; |
|
203 | + |
|
204 | + $sql.= " ORDER BY obj.fk_product"; |
|
205 | + |
|
206 | + dol_syslog("show_list_sending_receive", LOG_DEBUG); |
|
207 | + $resql = $db->query($sql); |
|
208 | + if ($resql) |
|
209 | + { |
|
210 | + $num = $db->num_rows($resql); |
|
211 | + $i = 0; |
|
212 | + |
|
213 | + if ($num) |
|
214 | + { |
|
215 | + if ($filter) print load_fiche_titre($langs->trans("OtherSendingsForSameOrder")); |
|
216 | + else print load_fiche_titre($langs->trans("SendingsAndReceivingForSameOrder")); |
|
217 | + |
|
218 | + print '<table class="liste" width="100%">'; |
|
219 | + print '<tr class="liste_titre">'; |
|
220 | + //print '<td align="left">'.$langs->trans("QtyOrdered").'</td>'; |
|
221 | + print '<td align="left">'.$langs->trans("SendingSheet").'</td>'; |
|
222 | + print '<td align="left">'.$langs->trans("Description").'</td>'; |
|
223 | + print '<td align="center">'.$langs->trans("DateCreation").'</td>'; |
|
224 | + print '<td align="center">'.$langs->trans("DateDeliveryPlanned").'</td>'; |
|
225 | + print '<td align="center">'.$langs->trans("QtyPreparedOrShipped").'</td>'; |
|
226 | + if (! empty($conf->stock->enabled)) |
|
227 | + { |
|
228 | 228 | print '<td>'.$langs->trans("Warehouse").'</td>'; |
229 | - } |
|
230 | - /*TODO Add link to expeditiondet_batch |
|
229 | + } |
|
230 | + /*TODO Add link to expeditiondet_batch |
|
231 | 231 | if (! empty($conf->productbatch->enabled)) |
232 | 232 | { |
233 | 233 | print '<td>'; |
234 | 234 | print '</td>'; |
235 | 235 | }*/ |
236 | - if (! empty($conf->livraison_bon->enabled)) |
|
237 | - { |
|
238 | - print '<td>'.$langs->trans("DeliveryOrder").'</td>'; |
|
239 | - //print '<td align="center">'.$langs->trans("QtyReceived").'</td>'; |
|
240 | - print '<td align="right">'.$langs->trans("DeliveryDate").'</td>'; |
|
241 | - } |
|
242 | - print "</tr>\n"; |
|
243 | - |
|
244 | - while ($i < $num) |
|
245 | - { |
|
246 | - $objp = $db->fetch_object($resql); |
|
247 | - |
|
248 | - print '<tr class="oddeven">'; |
|
249 | - |
|
250 | - // Sending id |
|
251 | - print '<td align="left" class="nowrap">'; |
|
252 | - print '<a href="'.DOL_URL_ROOT.'/expedition/card.php?id='.$objp->expedition_id.'">'.img_object($langs->trans("ShowSending"),'sending').' '.$objp->exp_ref.'<a>'; |
|
253 | - print '</td>'; |
|
254 | - |
|
255 | - // Description |
|
256 | - if ($objp->fk_product > 0) |
|
257 | - { |
|
258 | - // Define output language |
|
259 | - if (! empty($conf->global->MAIN_MULTILANGS) && ! empty($conf->global->PRODUIT_TEXTS_IN_THIRDPARTY_LANGUAGE)) |
|
260 | - { |
|
261 | - $object = new $origin($db); |
|
262 | - $object->fetch($origin_id); |
|
263 | - $object->fetch_thirdparty(); |
|
264 | - |
|
265 | - $prod = new Product($db); |
|
266 | - $prod->id=$objp->fk_product; |
|
267 | - $prod->getMultiLangs(); |
|
268 | - |
|
269 | - $outputlangs = $langs; |
|
270 | - $newlang=''; |
|
271 | - if (empty($newlang) && ! empty($_REQUEST['lang_id'])) $newlang=$_REQUEST['lang_id']; |
|
272 | - if (empty($newlang)) $newlang=$object->thirdparty->default_lang; |
|
273 | - if (! empty($newlang)) |
|
274 | - { |
|
275 | - $outputlangs = new Translate("",$conf); |
|
276 | - $outputlangs->setDefaultLang($newlang); |
|
277 | - } |
|
278 | - |
|
279 | - $label = (! empty($prod->multilangs[$outputlangs->defaultlang]["label"])) ? $prod->multilangs[$outputlangs->defaultlang]["label"] : $objp->product_label; |
|
280 | - } |
|
281 | - else |
|
282 | - { |
|
283 | - $label = (! empty($objp->label)?$objp->label:$objp->product_label); |
|
284 | - } |
|
285 | - |
|
286 | - print '<td>'; |
|
287 | - |
|
288 | - // Show product and description |
|
289 | - $product_static->type=$objp->fk_product_type; |
|
290 | - $product_static->id=$objp->fk_product; |
|
291 | - $product_static->ref=$objp->ref; |
|
292 | - $product_static->status_batch=$objp->product_tobatch; |
|
293 | - $text=$product_static->getNomUrl(1); |
|
294 | - $text.= ' - '.$label; |
|
295 | - $description=(! empty($conf->global->PRODUIT_DESC_IN_FORM)?'':dol_htmlentitiesbr($objp->description)); |
|
296 | - print $form->textwithtooltip($text,$description,3,'','',$i); |
|
297 | - |
|
298 | - // Show range |
|
299 | - print_date_range($objp->date_start,$objp->date_end); |
|
300 | - |
|
301 | - // Add description in form |
|
302 | - if (! empty($conf->global->PRODUIT_DESC_IN_FORM)) |
|
303 | - { |
|
304 | - print (! empty($objp->description) && $objp->description!=$objp->product)?'<br>'.dol_htmlentitiesbr($objp->description):''; |
|
305 | - } |
|
306 | - |
|
307 | - print '</td>'; |
|
308 | - } |
|
309 | - else |
|
310 | - { |
|
311 | - print "<td>"; |
|
312 | - if ($objp->fk_product_type==1) $text = img_object($langs->trans('Service'),'service'); |
|
313 | - else $text = img_object($langs->trans('Product'),'product'); |
|
314 | - |
|
315 | - if (! empty($objp->label)) { |
|
316 | - $text.= ' <strong>'.$objp->label.'</strong>'; |
|
317 | - print $form->textwithtooltip($text,$objp->description,3,'','',$i); |
|
318 | - } else { |
|
319 | - print $text.' '.nl2br($objp->description); |
|
320 | - } |
|
321 | - |
|
322 | - // Show range |
|
323 | - print_date_range($objp->date_start,$objp->date_end); |
|
324 | - print "</td>\n"; |
|
325 | - } |
|
326 | - |
|
327 | - //print '<td align="center">'.$objp->qty_asked.'</td>'; |
|
328 | - |
|
329 | - // Date creation |
|
330 | - print '<td align="center" class="nowrap">'.dol_print_date($db->jdate($objp->date_creation),'day').'</td>'; |
|
331 | - |
|
332 | - // Date shipping creation |
|
333 | - print '<td align="center" class="nowrap">'.dol_print_date($db->jdate($objp->date_delivery),'day').'</td>'; |
|
334 | - |
|
335 | - // Qty shipped |
|
336 | - print '<td align="center">'.$objp->qty_shipped.'</td>'; |
|
337 | - |
|
338 | - // Warehouse |
|
339 | - if (! empty($conf->stock->enabled)) |
|
340 | - { |
|
341 | - print '<td>'; |
|
342 | - if ($objp->warehouse_id > 0) |
|
343 | - { |
|
344 | - $warehousestatic->fetch($objp->warehouse_id); |
|
345 | - print $warehousestatic->getNomUrl(1); |
|
346 | - } |
|
347 | - print '</td>'; |
|
348 | - } |
|
349 | - |
|
350 | - // Batch number managment |
|
351 | - /*TODO Add link to expeditiondet_batch |
|
236 | + if (! empty($conf->livraison_bon->enabled)) |
|
237 | + { |
|
238 | + print '<td>'.$langs->trans("DeliveryOrder").'</td>'; |
|
239 | + //print '<td align="center">'.$langs->trans("QtyReceived").'</td>'; |
|
240 | + print '<td align="right">'.$langs->trans("DeliveryDate").'</td>'; |
|
241 | + } |
|
242 | + print "</tr>\n"; |
|
243 | + |
|
244 | + while ($i < $num) |
|
245 | + { |
|
246 | + $objp = $db->fetch_object($resql); |
|
247 | + |
|
248 | + print '<tr class="oddeven">'; |
|
249 | + |
|
250 | + // Sending id |
|
251 | + print '<td align="left" class="nowrap">'; |
|
252 | + print '<a href="'.DOL_URL_ROOT.'/expedition/card.php?id='.$objp->expedition_id.'">'.img_object($langs->trans("ShowSending"),'sending').' '.$objp->exp_ref.'<a>'; |
|
253 | + print '</td>'; |
|
254 | + |
|
255 | + // Description |
|
256 | + if ($objp->fk_product > 0) |
|
257 | + { |
|
258 | + // Define output language |
|
259 | + if (! empty($conf->global->MAIN_MULTILANGS) && ! empty($conf->global->PRODUIT_TEXTS_IN_THIRDPARTY_LANGUAGE)) |
|
260 | + { |
|
261 | + $object = new $origin($db); |
|
262 | + $object->fetch($origin_id); |
|
263 | + $object->fetch_thirdparty(); |
|
264 | + |
|
265 | + $prod = new Product($db); |
|
266 | + $prod->id=$objp->fk_product; |
|
267 | + $prod->getMultiLangs(); |
|
268 | + |
|
269 | + $outputlangs = $langs; |
|
270 | + $newlang=''; |
|
271 | + if (empty($newlang) && ! empty($_REQUEST['lang_id'])) $newlang=$_REQUEST['lang_id']; |
|
272 | + if (empty($newlang)) $newlang=$object->thirdparty->default_lang; |
|
273 | + if (! empty($newlang)) |
|
274 | + { |
|
275 | + $outputlangs = new Translate("",$conf); |
|
276 | + $outputlangs->setDefaultLang($newlang); |
|
277 | + } |
|
278 | + |
|
279 | + $label = (! empty($prod->multilangs[$outputlangs->defaultlang]["label"])) ? $prod->multilangs[$outputlangs->defaultlang]["label"] : $objp->product_label; |
|
280 | + } |
|
281 | + else |
|
282 | + { |
|
283 | + $label = (! empty($objp->label)?$objp->label:$objp->product_label); |
|
284 | + } |
|
285 | + |
|
286 | + print '<td>'; |
|
287 | + |
|
288 | + // Show product and description |
|
289 | + $product_static->type=$objp->fk_product_type; |
|
290 | + $product_static->id=$objp->fk_product; |
|
291 | + $product_static->ref=$objp->ref; |
|
292 | + $product_static->status_batch=$objp->product_tobatch; |
|
293 | + $text=$product_static->getNomUrl(1); |
|
294 | + $text.= ' - '.$label; |
|
295 | + $description=(! empty($conf->global->PRODUIT_DESC_IN_FORM)?'':dol_htmlentitiesbr($objp->description)); |
|
296 | + print $form->textwithtooltip($text,$description,3,'','',$i); |
|
297 | + |
|
298 | + // Show range |
|
299 | + print_date_range($objp->date_start,$objp->date_end); |
|
300 | + |
|
301 | + // Add description in form |
|
302 | + if (! empty($conf->global->PRODUIT_DESC_IN_FORM)) |
|
303 | + { |
|
304 | + print (! empty($objp->description) && $objp->description!=$objp->product)?'<br>'.dol_htmlentitiesbr($objp->description):''; |
|
305 | + } |
|
306 | + |
|
307 | + print '</td>'; |
|
308 | + } |
|
309 | + else |
|
310 | + { |
|
311 | + print "<td>"; |
|
312 | + if ($objp->fk_product_type==1) $text = img_object($langs->trans('Service'),'service'); |
|
313 | + else $text = img_object($langs->trans('Product'),'product'); |
|
314 | + |
|
315 | + if (! empty($objp->label)) { |
|
316 | + $text.= ' <strong>'.$objp->label.'</strong>'; |
|
317 | + print $form->textwithtooltip($text,$objp->description,3,'','',$i); |
|
318 | + } else { |
|
319 | + print $text.' '.nl2br($objp->description); |
|
320 | + } |
|
321 | + |
|
322 | + // Show range |
|
323 | + print_date_range($objp->date_start,$objp->date_end); |
|
324 | + print "</td>\n"; |
|
325 | + } |
|
326 | + |
|
327 | + //print '<td align="center">'.$objp->qty_asked.'</td>'; |
|
328 | + |
|
329 | + // Date creation |
|
330 | + print '<td align="center" class="nowrap">'.dol_print_date($db->jdate($objp->date_creation),'day').'</td>'; |
|
331 | + |
|
332 | + // Date shipping creation |
|
333 | + print '<td align="center" class="nowrap">'.dol_print_date($db->jdate($objp->date_delivery),'day').'</td>'; |
|
334 | + |
|
335 | + // Qty shipped |
|
336 | + print '<td align="center">'.$objp->qty_shipped.'</td>'; |
|
337 | + |
|
338 | + // Warehouse |
|
339 | + if (! empty($conf->stock->enabled)) |
|
340 | + { |
|
341 | + print '<td>'; |
|
342 | + if ($objp->warehouse_id > 0) |
|
343 | + { |
|
344 | + $warehousestatic->fetch($objp->warehouse_id); |
|
345 | + print $warehousestatic->getNomUrl(1); |
|
346 | + } |
|
347 | + print '</td>'; |
|
348 | + } |
|
349 | + |
|
350 | + // Batch number managment |
|
351 | + /*TODO Add link to expeditiondet_batch |
|
352 | 352 | if (! empty($conf->productbatch->enabled)) |
353 | 353 | { |
354 | 354 | var_dump($objp->edrowid); |
@@ -379,60 +379,60 @@ discard block |
||
379 | 379 | } |
380 | 380 | }*/ |
381 | 381 | |
382 | - // Informations on receipt |
|
383 | - if (! empty($conf->livraison_bon->enabled)) |
|
384 | - { |
|
385 | - include_once DOL_DOCUMENT_ROOT.'/livraison/class/livraison.class.php'; |
|
386 | - $expedition->id=$objp->sendingid; |
|
387 | - $expedition->fetchObjectLinked($expedition->id,$expedition->element); |
|
388 | - //var_dump($expedition->linkedObjects); |
|
389 | - |
|
390 | - $receiving=''; |
|
391 | - if (count($expedition->linkedObjects['delivery']) > 0) $receiving=reset($expedition->linkedObjects['delivery']); // Take first link |
|
392 | - |
|
393 | - if (! empty($receiving)) |
|
394 | - { |
|
395 | - // $expedition->fk_origin_line = id of det line of order |
|
396 | - // $receiving->fk_origin_line = id of det line of order |
|
397 | - // $receiving->origin may be 'shipping' |
|
398 | - // $receiving->origin_id may be id of shipping |
|
399 | - |
|
400 | - // Ref |
|
401 | - print '<td>'; |
|
402 | - print $receiving->getNomUrl($db); |
|
403 | - //print '<a href="'.DOL_URL_ROOT.'/livraison/card.php?id='.$livraison_id.'">'.img_object($langs->trans("ShowReceiving"),'sending').' '.$objp->livraison_ref.'<a>'; |
|
404 | - print '</td>'; |
|
405 | - // Qty received |
|
406 | - //print '<td align="center">'; |
|
407 | - // TODO No solution for the moment to link a line det of receipt with a line det of shipping, |
|
408 | - // so no way to know the qty received for this line of shipping. |
|
409 | - //print $langs->trans("FeatureNotYetAvailable"); |
|
410 | - //print '</td>'; |
|
411 | - // Date shipping real |
|
412 | - print '<td align="right">'; |
|
413 | - print dol_print_date($receiving->date_delivery,'day'); |
|
414 | - print '</td>'; |
|
415 | - } |
|
416 | - else |
|
417 | - { |
|
418 | - //print '<td> </td>'; |
|
419 | - print '<td> </td>'; |
|
420 | - print '<td> </td>'; |
|
421 | - } |
|
422 | - } |
|
423 | - print '</tr>'; |
|
424 | - $i++; |
|
425 | - } |
|
426 | - |
|
427 | - print '</table>'; |
|
428 | - } |
|
429 | - $db->free($resql); |
|
430 | - } |
|
431 | - else |
|
432 | - { |
|
433 | - dol_print_error($db); |
|
434 | - } |
|
435 | - |
|
436 | - return 1; |
|
382 | + // Informations on receipt |
|
383 | + if (! empty($conf->livraison_bon->enabled)) |
|
384 | + { |
|
385 | + include_once DOL_DOCUMENT_ROOT.'/livraison/class/livraison.class.php'; |
|
386 | + $expedition->id=$objp->sendingid; |
|
387 | + $expedition->fetchObjectLinked($expedition->id,$expedition->element); |
|
388 | + //var_dump($expedition->linkedObjects); |
|
389 | + |
|
390 | + $receiving=''; |
|
391 | + if (count($expedition->linkedObjects['delivery']) > 0) $receiving=reset($expedition->linkedObjects['delivery']); // Take first link |
|
392 | + |
|
393 | + if (! empty($receiving)) |
|
394 | + { |
|
395 | + // $expedition->fk_origin_line = id of det line of order |
|
396 | + // $receiving->fk_origin_line = id of det line of order |
|
397 | + // $receiving->origin may be 'shipping' |
|
398 | + // $receiving->origin_id may be id of shipping |
|
399 | + |
|
400 | + // Ref |
|
401 | + print '<td>'; |
|
402 | + print $receiving->getNomUrl($db); |
|
403 | + //print '<a href="'.DOL_URL_ROOT.'/livraison/card.php?id='.$livraison_id.'">'.img_object($langs->trans("ShowReceiving"),'sending').' '.$objp->livraison_ref.'<a>'; |
|
404 | + print '</td>'; |
|
405 | + // Qty received |
|
406 | + //print '<td align="center">'; |
|
407 | + // TODO No solution for the moment to link a line det of receipt with a line det of shipping, |
|
408 | + // so no way to know the qty received for this line of shipping. |
|
409 | + //print $langs->trans("FeatureNotYetAvailable"); |
|
410 | + //print '</td>'; |
|
411 | + // Date shipping real |
|
412 | + print '<td align="right">'; |
|
413 | + print dol_print_date($receiving->date_delivery,'day'); |
|
414 | + print '</td>'; |
|
415 | + } |
|
416 | + else |
|
417 | + { |
|
418 | + //print '<td> </td>'; |
|
419 | + print '<td> </td>'; |
|
420 | + print '<td> </td>'; |
|
421 | + } |
|
422 | + } |
|
423 | + print '</tr>'; |
|
424 | + $i++; |
|
425 | + } |
|
426 | + |
|
427 | + print '</table>'; |
|
428 | + } |
|
429 | + $db->free($resql); |
|
430 | + } |
|
431 | + else |
|
432 | + { |
|
433 | + dol_print_error($db); |
|
434 | + } |
|
435 | + |
|
436 | + return 1; |
|
437 | 437 | } |
438 | 438 |
@@ -34,45 +34,45 @@ discard block |
||
34 | 34 | */ |
35 | 35 | function reception_prepare_head(Reception $object) |
36 | 36 | { |
37 | - global $db, $langs, $conf, $user; |
|
37 | + global $db, $langs, $conf, $user; |
|
38 | 38 | |
39 | - $langs->load("sendings"); |
|
40 | - $langs->load("deliveries"); |
|
39 | + $langs->load("sendings"); |
|
40 | + $langs->load("deliveries"); |
|
41 | 41 | |
42 | - $h = 0; |
|
43 | - $head = array(); |
|
42 | + $h = 0; |
|
43 | + $head = array(); |
|
44 | 44 | |
45 | - $head[$h][0] = DOL_URL_ROOT."/reception/card.php?id=".$object->id; |
|
46 | - $head[$h][1] = $langs->trans("ReceptionCard"); |
|
47 | - $head[$h][2] = 'reception'; |
|
48 | - $h++; |
|
45 | + $head[$h][0] = DOL_URL_ROOT."/reception/card.php?id=".$object->id; |
|
46 | + $head[$h][1] = $langs->trans("ReceptionCard"); |
|
47 | + $head[$h][2] = 'reception'; |
|
48 | + $h++; |
|
49 | 49 | |
50 | 50 | |
51 | 51 | |
52 | - if (empty($conf->global->MAIN_DISABLE_CONTACTS_TAB)) |
|
53 | - { |
|
54 | - $objectsrc = $object; |
|
55 | - if ($object->origin == 'commande' && $object->origin_id > 0) |
|
56 | - { |
|
57 | - $objectsrc = new Commande($db); |
|
58 | - $objectsrc->fetch($object->origin_id); |
|
59 | - } |
|
60 | - $nbContact = count($objectsrc->liste_contact(-1,'internal')) + count($objectsrc->liste_contact(-1,'external')); |
|
61 | - $head[$h][0] = DOL_URL_ROOT."/reception/contact.php?id=".$object->id; |
|
62 | - $head[$h][1] = $langs->trans("ContactsAddresses"); |
|
63 | - if ($nbContact > 0) $head[$h][1].= ' <span class="badge">'.$nbContact.'</span>'; |
|
64 | - $head[$h][2] = 'contact'; |
|
65 | - $h++; |
|
66 | - } |
|
52 | + if (empty($conf->global->MAIN_DISABLE_CONTACTS_TAB)) |
|
53 | + { |
|
54 | + $objectsrc = $object; |
|
55 | + if ($object->origin == 'commande' && $object->origin_id > 0) |
|
56 | + { |
|
57 | + $objectsrc = new Commande($db); |
|
58 | + $objectsrc->fetch($object->origin_id); |
|
59 | + } |
|
60 | + $nbContact = count($objectsrc->liste_contact(-1,'internal')) + count($objectsrc->liste_contact(-1,'external')); |
|
61 | + $head[$h][0] = DOL_URL_ROOT."/reception/contact.php?id=".$object->id; |
|
62 | + $head[$h][1] = $langs->trans("ContactsAddresses"); |
|
63 | + if ($nbContact > 0) $head[$h][1].= ' <span class="badge">'.$nbContact.'</span>'; |
|
64 | + $head[$h][2] = 'contact'; |
|
65 | + $h++; |
|
66 | + } |
|
67 | 67 | |
68 | 68 | $nbNote = 0; |
69 | 69 | if (!empty($object->note_private)) $nbNote++; |
70 | 70 | if (!empty($object->note_public)) $nbNote++; |
71 | - $head[$h][0] = DOL_URL_ROOT."/reception/note.php?id=".$object->id; |
|
72 | - $head[$h][1] = $langs->trans("Notes"); |
|
73 | - if ($nbNote > 0) $head[$h][1].= ' <span class="badge">'.$nbNote.'</span>'; |
|
74 | - $head[$h][2] = 'note'; |
|
75 | - $h++; |
|
71 | + $head[$h][0] = DOL_URL_ROOT."/reception/note.php?id=".$object->id; |
|
72 | + $head[$h][1] = $langs->trans("Notes"); |
|
73 | + if ($nbNote > 0) $head[$h][1].= ' <span class="badge">'.$nbNote.'</span>'; |
|
74 | + $head[$h][2] = 'note'; |
|
75 | + $h++; |
|
76 | 76 | |
77 | 77 | |
78 | 78 | |
@@ -91,39 +91,39 @@ discard block |
||
91 | 91 | */ |
92 | 92 | function reception_admin_prepare_head() |
93 | 93 | { |
94 | - global $langs, $conf, $user; |
|
95 | - $langs->load("receptions"); |
|
94 | + global $langs, $conf, $user; |
|
95 | + $langs->load("receptions"); |
|
96 | 96 | |
97 | - $h = 0; |
|
98 | - $head = array(); |
|
97 | + $h = 0; |
|
98 | + $head = array(); |
|
99 | 99 | |
100 | - $head[$h][0] = DOL_URL_ROOT."/admin/reception_setup.php"; |
|
101 | - $head[$h][1] = $langs->trans("Reception"); |
|
102 | - $head[$h][2] = 'reception'; |
|
103 | - $h++; |
|
100 | + $head[$h][0] = DOL_URL_ROOT."/admin/reception_setup.php"; |
|
101 | + $head[$h][1] = $langs->trans("Reception"); |
|
102 | + $head[$h][2] = 'reception'; |
|
103 | + $h++; |
|
104 | 104 | |
105 | 105 | |
106 | - if (! empty($conf->global->MAIN_SUBMODULE_RECEPTION)) |
|
107 | - { |
|
108 | - $head[$h][0] = DOL_URL_ROOT.'/admin/reception_extrafields.php'; |
|
109 | - $head[$h][1] = $langs->trans("ExtraFields"); |
|
110 | - $head[$h][2] = 'attributes_reception'; |
|
111 | - $h++; |
|
112 | - } |
|
106 | + if (! empty($conf->global->MAIN_SUBMODULE_RECEPTION)) |
|
107 | + { |
|
108 | + $head[$h][0] = DOL_URL_ROOT.'/admin/reception_extrafields.php'; |
|
109 | + $head[$h][1] = $langs->trans("ExtraFields"); |
|
110 | + $head[$h][2] = 'attributes_reception'; |
|
111 | + $h++; |
|
112 | + } |
|
113 | 113 | |
114 | - if (! empty($conf->global->MAIN_SUBMODULE_RECEPTION)) |
|
115 | - { |
|
116 | - $head[$h][0] = DOL_URL_ROOT.'/admin/commande_fournisseur_dispatch_extrafields.php'; |
|
117 | - $head[$h][1] = $langs->trans("ExtraFieldsLines"); |
|
118 | - $head[$h][2] = 'attributeslines_reception'; |
|
119 | - $h++; |
|
120 | - } |
|
114 | + if (! empty($conf->global->MAIN_SUBMODULE_RECEPTION)) |
|
115 | + { |
|
116 | + $head[$h][0] = DOL_URL_ROOT.'/admin/commande_fournisseur_dispatch_extrafields.php'; |
|
117 | + $head[$h][1] = $langs->trans("ExtraFieldsLines"); |
|
118 | + $head[$h][2] = 'attributeslines_reception'; |
|
119 | + $h++; |
|
120 | + } |
|
121 | 121 | |
122 | 122 | |
123 | 123 | |
124 | - complete_head_from_modules($conf,$langs,null,$head,$h,'reception_admin','remove'); |
|
124 | + complete_head_from_modules($conf,$langs,null,$head,$h,'reception_admin','remove'); |
|
125 | 125 | |
126 | - return $head; |
|
126 | + return $head; |
|
127 | 127 | } |
128 | 128 | |
129 | 129 |