source: trunk/include/functions.inc.php @ 2339

Last change on this file since 2339 was 2339, checked in by rub, 17 years ago

Change some PhpWebGallery to Piwigo.
Not all PhpWebGallery has been translated!

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 42.0 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008      Piwigo Team                  http://piwigo.org |
6// | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
7// | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
8// +-----------------------------------------------------------------------+
9// | This program is free software; you can redistribute it and/or modify  |
10// | it under the terms of the GNU General Public License as published by  |
11// | the Free Software Foundation                                          |
12// |                                                                       |
13// | This program is distributed in the hope that it will be useful, but   |
14// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
15// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
16// | General Public License for more details.                              |
17// |                                                                       |
18// | You should have received a copy of the GNU General Public License     |
19// | along with this program; if not, write to the Free Software           |
20// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
21// | USA.                                                                  |
22// +-----------------------------------------------------------------------+
23
24include_once( PHPWG_ROOT_PATH .'include/functions_user.inc.php' );
25include_once( PHPWG_ROOT_PATH .'include/functions_cookie.inc.php' );
26include_once( PHPWG_ROOT_PATH .'include/functions_session.inc.php' );
27include_once( PHPWG_ROOT_PATH .'include/functions_category.inc.php' );
28include_once( PHPWG_ROOT_PATH .'include/functions_xml.inc.php' );
29include_once( PHPWG_ROOT_PATH .'include/functions_group.inc.php' );
30include_once( PHPWG_ROOT_PATH .'include/functions_html.inc.php' );
31include_once( PHPWG_ROOT_PATH .'include/functions_tag.inc.php' );
32include_once( PHPWG_ROOT_PATH .'include/functions_url.inc.php' );
33include_once( PHPWG_ROOT_PATH .'include/functions_plugins.inc.php' );
34
35//----------------------------------------------------------- generic functions
36
37/**
38 * returns an array containing the possible values of an enum field
39 *
40 * @param string tablename
41 * @param string fieldname
42 */
43function get_enums($table, $field)
44{
45  // retrieving the properties of the table. Each line represents a field :
46  // columns are 'Field', 'Type'
47  $result = pwg_query('desc '.$table);
48  while ($row = mysql_fetch_array($result))
49  {
50    // we are only interested in the the field given in parameter for the
51    // function
52    if ($row['Field'] == $field)
53    {
54      // retrieving possible values of the enum field
55      // enum('blue','green','black')
56      $options = explode(',', substr($row['Type'], 5, -1));
57      foreach ($options as $i => $option)
58      {
59        $options[$i] = str_replace("'", '',$option);
60      }
61    }
62  }
63  mysql_free_result($result);
64  return $options;
65}
66
67// get_boolean transforms a string to a boolean value. If the string is
68// "false" (case insensitive), then the boolean value false is returned. In
69// any other case, true is returned.
70function get_boolean( $string )
71{
72  $boolean = true;
73  if ( preg_match( '/^false$/i', $string ) )
74  {
75    $boolean = false;
76  }
77  return $boolean;
78}
79
80/**
81 * returns boolean string 'true' or 'false' if the given var is boolean
82 *
83 * @param mixed $var
84 * @return mixed
85 */
86function boolean_to_string($var)
87{
88  if (is_bool($var))
89  {
90    if ($var)
91    {
92      return 'true';
93    }
94    else
95    {
96      return 'false';
97    }
98  }
99  else
100  {
101    return $var;
102  }
103}
104
105// The function get_moment returns a float value coresponding to the number
106// of seconds since the unix epoch (1st January 1970) and the microseconds
107// are precised : e.g. 1052343429.89276600
108function get_moment()
109{
110  $t1 = explode( ' ', microtime() );
111  $t2 = explode( '.', $t1[0] );
112  $t2 = $t1[1].'.'.$t2[1];
113  return $t2;
114}
115
116// The function get_elapsed_time returns the number of seconds (with 3
117// decimals precision) between the start time and the end time given.
118function get_elapsed_time( $start, $end )
119{
120  return number_format( $end - $start, 3, '.', ' ').' s';
121}
122
123// - The replace_space function replaces space and '-' characters
124//   by their HTML equivalent  &nbsb; and &minus;
125// - The function does not replace characters in HTML tags
126// - This function was created because IE5 does not respect the
127//   CSS "white-space: nowrap;" property unless space and minus
128//   characters are replaced like this function does.
129// - Example :
130//                 <div class="foo">My friend</div>
131//               ( 01234567891111111111222222222233 )
132//               (           0123456789012345678901 )
133// becomes :
134//             <div class="foo">My&nbsp;friend</div>
135function replace_space( $string )
136{
137  //return $string;
138  $return_string = '';
139  // $remaining is the rest of the string where to replace spaces characters
140  $remaining = $string;
141  // $start represents the position of the next '<' character
142  // $end   represents the position of the next '>' character
143  $start = 0;
144  $end = 0;
145  $start = strpos ( $remaining, '<' ); // -> 0
146  $end   = strpos ( $remaining, '>' ); // -> 16
147  // as long as a '<' and his friend '>' are found, we loop
148  while ( is_numeric( $start ) and is_numeric( $end ) )
149  {
150    // $treatment is the part of the string to treat
151    // In the first loop of our example, this variable is empty, but in the
152    // second loop, it equals 'My friend'
153    $treatment = substr ( $remaining, 0, $start );
154    // Replacement of ' ' by his equivalent '&nbsp;'
155    $treatment = str_replace( ' ', '&nbsp;', $treatment );
156    $treatment = str_replace( '-', '&minus;', $treatment );
157    // composing the string to return by adding the treated string and the
158    // following HTML tag -> 'My&nbsp;friend</div>'
159    $return_string.= $treatment.substr( $remaining, $start, $end-$start+1 );
160    // the remaining string is deplaced to the part after the '>' of this
161    // loop
162    $remaining = substr ( $remaining, $end + 1, strlen( $remaining ) );
163    $start = strpos ( $remaining, '<' );
164    $end   = strpos ( $remaining, '>' );
165  }
166  $treatment = str_replace( ' ', '&nbsp;', $remaining );
167  $treatment = str_replace( '-', '&minus;', $treatment );
168  $return_string.= $treatment;
169
170  return $return_string;
171}
172
173// get_extension returns the part of the string after the last "."
174function get_extension( $filename )
175{
176  return substr( strrchr( $filename, '.' ), 1, strlen ( $filename ) );
177}
178
179// get_filename_wo_extension returns the part of the string before the last
180// ".".
181// get_filename_wo_extension( 'test.tar.gz' ) -> 'test.tar'
182function get_filename_wo_extension( $filename )
183{
184  $pos = strrpos( $filename, '.' );
185  return ($pos===false) ? $filename : substr( $filename, 0, $pos);
186}
187
188/**
189 * returns an array contening sub-directories, excluding "CVS"
190 *
191 * @param string $dir
192 * @return array
193 */
194function get_dirs($directory)
195{
196  $sub_dirs = array();
197
198  if ($opendir = opendir($directory))
199  {
200    while ($file = readdir($opendir))
201    {
202      if ($file != '.'
203          and $file != '..'
204          and is_dir($directory.'/'.$file)
205          and $file != 'CVS'
206    and $file != '.svn')
207      {
208        array_push($sub_dirs, $file);
209      }
210    }
211  }
212  return $sub_dirs;
213}
214
215/**
216 * returns thumbnail directory name of input diretoty name
217 * make thumbnail directory is necessary
218 * set error messages on array messages
219 *
220 * @param:
221 *  string $dirname
222 *  arrayy $errors
223 * @return bool false on error else string directory name
224 */
225function mkget_thumbnail_dir($dirname, &$errors)
226{
227  $tndir = $dirname.'/thumbnail';
228  if (!is_dir($tndir))
229  {
230    if (!is_writable($dirname))
231    {
232      array_push($errors,
233                 '['.$dirname.'] : '.l10n('no_write_access'));
234      return false;
235    }
236    umask(0000);
237    mkdir($tndir, 0777);
238  }
239
240  return $tndir;
241}
242
243// The get_picture_size function return an array containing :
244//      - $picture_size[0] : final width
245//      - $picture_size[1] : final height
246// The final dimensions are calculated thanks to the original dimensions and
247// the maximum dimensions given in parameters.  get_picture_size respects
248// the width/height ratio
249function get_picture_size( $original_width, $original_height,
250                           $max_width, $max_height )
251{
252  $width = $original_width;
253  $height = $original_height;
254  $is_original_size = true;
255
256  if ( $max_width != "" )
257  {
258    if ( $original_width > $max_width )
259    {
260      $width = $max_width;
261      $height = floor( ( $width * $original_height ) / $original_width );
262    }
263  }
264  if ( $max_height != "" )
265  {
266    if ( $original_height > $max_height )
267    {
268      $height = $max_height;
269      $width = floor( ( $height * $original_width ) / $original_height );
270      $is_original_size = false;
271    }
272  }
273  if ( is_numeric( $max_width ) and is_numeric( $max_height )
274       and $max_width != 0 and $max_height != 0 )
275  {
276    $ratioWidth = $original_width / $max_width;
277    $ratioHeight = $original_height / $max_height;
278    if ( ( $ratioWidth > 1 ) or ( $ratioHeight > 1 ) )
279    {
280      if ( $ratioWidth < $ratioHeight )
281      {
282        $width = floor( $original_width / $ratioHeight );
283        $height = $max_height;
284      }
285      else
286      {
287        $width = $max_width;
288        $height = floor( $original_height / $ratioWidth );
289      }
290      $is_original_size = false;
291    }
292  }
293  $picture_size = array();
294  $picture_size[0] = $width;
295  $picture_size[1] = $height;
296  return $picture_size;
297}
298
299/* Returns true if the string appears to be encoded in UTF-8. (from wordpress)
300 * @param string Str
301 */
302function seems_utf8($Str) { # by bmorel at ssi dot fr
303  for ($i=0; $i<strlen($Str); $i++) {
304    if (ord($Str[$i]) < 0x80) continue; # 0bbbbbbb
305    elseif ((ord($Str[$i]) & 0xE0) == 0xC0) $n=1; # 110bbbbb
306    elseif ((ord($Str[$i]) & 0xF0) == 0xE0) $n=2; # 1110bbbb
307    elseif ((ord($Str[$i]) & 0xF8) == 0xF0) $n=3; # 11110bbb
308    elseif ((ord($Str[$i]) & 0xFC) == 0xF8) $n=4; # 111110bb
309    elseif ((ord($Str[$i]) & 0xFE) == 0xFC) $n=5; # 1111110b
310    else return false; # Does not match any model
311    for ($j=0; $j<$n; $j++) { # n bytes matching 10bbbbbb follow ?
312      if ((++$i == strlen($Str)) || ((ord($Str[$i]) & 0xC0) != 0x80))
313      return false;
314    }
315  }
316  return true;
317}
318
319/* Remove accents from a UTF-8 or ISO-859-1 string (from wordpress)
320 * @param string sstring - an UTF-8 or ISO-8859-1 string
321 */
322function remove_accents($string)
323{
324  if ( !preg_match('/[\x80-\xff]/', $string) )
325    return $string;
326
327  if (seems_utf8($string)) {
328    $chars = array(
329    // Decompositions for Latin-1 Supplement
330    chr(195).chr(128) => 'A', chr(195).chr(129) => 'A',
331    chr(195).chr(130) => 'A', chr(195).chr(131) => 'A',
332    chr(195).chr(132) => 'A', chr(195).chr(133) => 'A',
333    chr(195).chr(135) => 'C', chr(195).chr(136) => 'E',
334    chr(195).chr(137) => 'E', chr(195).chr(138) => 'E',
335    chr(195).chr(139) => 'E', chr(195).chr(140) => 'I',
336    chr(195).chr(141) => 'I', chr(195).chr(142) => 'I',
337    chr(195).chr(143) => 'I', chr(195).chr(145) => 'N',
338    chr(195).chr(146) => 'O', chr(195).chr(147) => 'O',
339    chr(195).chr(148) => 'O', chr(195).chr(149) => 'O',
340    chr(195).chr(150) => 'O', chr(195).chr(153) => 'U',
341    chr(195).chr(154) => 'U', chr(195).chr(155) => 'U',
342    chr(195).chr(156) => 'U', chr(195).chr(157) => 'Y',
343    chr(195).chr(159) => 's', chr(195).chr(160) => 'a',
344    chr(195).chr(161) => 'a', chr(195).chr(162) => 'a',
345    chr(195).chr(163) => 'a', chr(195).chr(164) => 'a',
346    chr(195).chr(165) => 'a', chr(195).chr(167) => 'c',
347    chr(195).chr(168) => 'e', chr(195).chr(169) => 'e',
348    chr(195).chr(170) => 'e', chr(195).chr(171) => 'e',
349    chr(195).chr(172) => 'i', chr(195).chr(173) => 'i',
350    chr(195).chr(174) => 'i', chr(195).chr(175) => 'i',
351    chr(195).chr(177) => 'n', chr(195).chr(178) => 'o',
352    chr(195).chr(179) => 'o', chr(195).chr(180) => 'o',
353    chr(195).chr(181) => 'o', chr(195).chr(182) => 'o',
354    chr(195).chr(182) => 'o', chr(195).chr(185) => 'u',
355    chr(195).chr(186) => 'u', chr(195).chr(187) => 'u',
356    chr(195).chr(188) => 'u', chr(195).chr(189) => 'y',
357    chr(195).chr(191) => 'y',
358    // Decompositions for Latin Extended-A
359    chr(196).chr(128) => 'A', chr(196).chr(129) => 'a',
360    chr(196).chr(130) => 'A', chr(196).chr(131) => 'a',
361    chr(196).chr(132) => 'A', chr(196).chr(133) => 'a',
362    chr(196).chr(134) => 'C', chr(196).chr(135) => 'c',
363    chr(196).chr(136) => 'C', chr(196).chr(137) => 'c',
364    chr(196).chr(138) => 'C', chr(196).chr(139) => 'c',
365    chr(196).chr(140) => 'C', chr(196).chr(141) => 'c',
366    chr(196).chr(142) => 'D', chr(196).chr(143) => 'd',
367    chr(196).chr(144) => 'D', chr(196).chr(145) => 'd',
368    chr(196).chr(146) => 'E', chr(196).chr(147) => 'e',
369    chr(196).chr(148) => 'E', chr(196).chr(149) => 'e',
370    chr(196).chr(150) => 'E', chr(196).chr(151) => 'e',
371    chr(196).chr(152) => 'E', chr(196).chr(153) => 'e',
372    chr(196).chr(154) => 'E', chr(196).chr(155) => 'e',
373    chr(196).chr(156) => 'G', chr(196).chr(157) => 'g',
374    chr(196).chr(158) => 'G', chr(196).chr(159) => 'g',
375    chr(196).chr(160) => 'G', chr(196).chr(161) => 'g',
376    chr(196).chr(162) => 'G', chr(196).chr(163) => 'g',
377    chr(196).chr(164) => 'H', chr(196).chr(165) => 'h',
378    chr(196).chr(166) => 'H', chr(196).chr(167) => 'h',
379    chr(196).chr(168) => 'I', chr(196).chr(169) => 'i',
380    chr(196).chr(170) => 'I', chr(196).chr(171) => 'i',
381    chr(196).chr(172) => 'I', chr(196).chr(173) => 'i',
382    chr(196).chr(174) => 'I', chr(196).chr(175) => 'i',
383    chr(196).chr(176) => 'I', chr(196).chr(177) => 'i',
384    chr(196).chr(178) => 'IJ',chr(196).chr(179) => 'ij',
385    chr(196).chr(180) => 'J', chr(196).chr(181) => 'j',
386    chr(196).chr(182) => 'K', chr(196).chr(183) => 'k',
387    chr(196).chr(184) => 'k', chr(196).chr(185) => 'L',
388    chr(196).chr(186) => 'l', chr(196).chr(187) => 'L',
389    chr(196).chr(188) => 'l', chr(196).chr(189) => 'L',
390    chr(196).chr(190) => 'l', chr(196).chr(191) => 'L',
391    chr(197).chr(128) => 'l', chr(197).chr(129) => 'L',
392    chr(197).chr(130) => 'l', chr(197).chr(131) => 'N',
393    chr(197).chr(132) => 'n', chr(197).chr(133) => 'N',
394    chr(197).chr(134) => 'n', chr(197).chr(135) => 'N',
395    chr(197).chr(136) => 'n', chr(197).chr(137) => 'N',
396    chr(197).chr(138) => 'n', chr(197).chr(139) => 'N',
397    chr(197).chr(140) => 'O', chr(197).chr(141) => 'o',
398    chr(197).chr(142) => 'O', chr(197).chr(143) => 'o',
399    chr(197).chr(144) => 'O', chr(197).chr(145) => 'o',
400    chr(197).chr(146) => 'OE',chr(197).chr(147) => 'oe',
401    chr(197).chr(148) => 'R',chr(197).chr(149) => 'r',
402    chr(197).chr(150) => 'R',chr(197).chr(151) => 'r',
403    chr(197).chr(152) => 'R',chr(197).chr(153) => 'r',
404    chr(197).chr(154) => 'S',chr(197).chr(155) => 's',
405    chr(197).chr(156) => 'S',chr(197).chr(157) => 's',
406    chr(197).chr(158) => 'S',chr(197).chr(159) => 's',
407    chr(197).chr(160) => 'S', chr(197).chr(161) => 's',
408    chr(197).chr(162) => 'T', chr(197).chr(163) => 't',
409    chr(197).chr(164) => 'T', chr(197).chr(165) => 't',
410    chr(197).chr(166) => 'T', chr(197).chr(167) => 't',
411    chr(197).chr(168) => 'U', chr(197).chr(169) => 'u',
412    chr(197).chr(170) => 'U', chr(197).chr(171) => 'u',
413    chr(197).chr(172) => 'U', chr(197).chr(173) => 'u',
414    chr(197).chr(174) => 'U', chr(197).chr(175) => 'u',
415    chr(197).chr(176) => 'U', chr(197).chr(177) => 'u',
416    chr(197).chr(178) => 'U', chr(197).chr(179) => 'u',
417    chr(197).chr(180) => 'W', chr(197).chr(181) => 'w',
418    chr(197).chr(182) => 'Y', chr(197).chr(183) => 'y',
419    chr(197).chr(184) => 'Y', chr(197).chr(185) => 'Z',
420    chr(197).chr(186) => 'z', chr(197).chr(187) => 'Z',
421    chr(197).chr(188) => 'z', chr(197).chr(189) => 'Z',
422    chr(197).chr(190) => 'z', chr(197).chr(191) => 's',
423    // Euro Sign
424    chr(226).chr(130).chr(172) => 'E',
425    // GBP (Pound) Sign
426    chr(194).chr(163) => '');
427
428    $string = strtr($string, $chars);
429  } else {
430    // Assume ISO-8859-1 if not UTF-8
431    $chars['in'] = chr(128).chr(131).chr(138).chr(142).chr(154).chr(158)
432      .chr(159).chr(162).chr(165).chr(181).chr(192).chr(193).chr(194)
433      .chr(195).chr(196).chr(197).chr(199).chr(200).chr(201).chr(202)
434      .chr(203).chr(204).chr(205).chr(206).chr(207).chr(209).chr(210)
435      .chr(211).chr(212).chr(213).chr(214).chr(216).chr(217).chr(218)
436      .chr(219).chr(220).chr(221).chr(224).chr(225).chr(226).chr(227)
437      .chr(228).chr(229).chr(231).chr(232).chr(233).chr(234).chr(235)
438      .chr(236).chr(237).chr(238).chr(239).chr(241).chr(242).chr(243)
439      .chr(244).chr(245).chr(246).chr(248).chr(249).chr(250).chr(251)
440      .chr(252).chr(253).chr(255);
441
442    $chars['out'] = "EfSZszYcYuAAAAAACEEEEIIIINOOOOOOUUUUYaaaaaaceeeeiiiinoooooouuuuyy";
443
444    $string = strtr($string, $chars['in'], $chars['out']);
445    $double_chars['in'] = array(chr(140), chr(156), chr(198), chr(208), chr(222), chr(223), chr(230), chr(240), chr(254));
446    $double_chars['out'] = array('OE', 'oe', 'AE', 'DH', 'TH', 'ss', 'ae', 'dh', 'th');
447    $string = str_replace($double_chars['in'], $double_chars['out'], $string);
448  }
449
450  return $string;
451}
452
453/**
454 * simplify a string to insert it into an URL
455 *
456 * @param string
457 * @return string
458 */
459function str2url($str)
460{
461  $str = remove_accents($str);
462  $str = preg_replace('/[^a-z0-9_\s\'\:\/\[\],-]/','',strtolower($str));
463  $str = preg_replace('/[\s\'\:\/\[\],-]+/',' ',trim($str));
464  $res = str_replace(' ','_',$str);
465
466  return $res;
467}
468
469//-------------------------------------------- Piwigo specific functions
470
471/**
472 * returns an array with a list of {language_code => language_name}
473 *
474 * @returns array
475 */
476function get_languages($target_charset = null)
477{
478  if ( empty($target_charset) )
479  {
480    $target_charset = get_pwg_charset();
481  }
482  $target_charset = strtolower($target_charset);
483
484  $dir = opendir(PHPWG_ROOT_PATH.'language');
485  $languages = array();
486
487  while ($file = readdir($dir))
488  {
489    $path = PHPWG_ROOT_PATH.'language/'.$file;
490    if (is_dir($path) and !is_link($path) and file_exists($path.'/iso.txt'))
491    {
492      list($language_name) = @file($path.'/iso.txt');
493
494      $langdef = explode('.',$file);
495      if (count($langdef)>1) // (langCode,encoding)
496      {
497        $langdef[1] = strtolower($langdef[1]);
498
499        if (
500          $target_charset==$langdef[1]
501         or
502          ($target_charset=='utf-8' and $langdef[1]=='iso-8859-1')
503         or
504          ($target_charset=='iso-8859-1' and
505          in_array( substr($langdef[0],2), array('en','fr','de','es','it','nl')))
506        )
507        {
508          $language_name = convert_charset($language_name,
509              $langdef[1], $target_charset);
510          $languages[ $langdef[0] ] = $language_name;
511        }
512        else
513          continue; // the language encoding is not compatible with our charset
514      }
515      else
516      { // UTF-8
517        $language_name = convert_charset($language_name,
518              'utf-8', $target_charset);
519        $languages[$file] = $language_name;
520      }
521    }
522  }
523  closedir($dir);
524  @asort($languages);
525  @reset($languages);
526
527  return $languages;
528}
529
530function pwg_log($image_id = null, $image_type = null)
531{
532  global $conf, $user, $page;
533
534  $do_log = true;
535  if (!$conf['log'])
536  {
537    $do_log = false;
538  }
539  if (is_admin() and !$conf['history_admin'])
540  {
541    $do_log = false;
542  }
543  if (is_a_guest() and !$conf['history_guest'])
544  {
545    $do_log = false;
546  }
547
548  $do_log = trigger_event('pwg_log_allowed', $do_log, $image_id, $image_type);
549
550  if (!$do_log)
551  {
552    return false;
553  }
554
555  $tags_string = null;
556  if (isset($page['section']) and $page['section'] == 'tags')
557  {
558    $tag_ids = array();
559    foreach ($page['tags'] as $tag)
560    {
561      array_push($tag_ids, $tag['id']);
562    }
563
564    $tags_string = implode(',', $tag_ids);
565  }
566
567  $query = '
568INSERT INTO '.HISTORY_TABLE.'
569  (
570    date,
571    time,
572    user_id,
573    IP,
574    section,
575    category_id,
576    image_id,
577    image_type,
578    tag_ids
579  )
580  VALUES
581  (
582    CURDATE(),
583    CURTIME(),
584    '.$user['id'].',
585    \''.$_SERVER['REMOTE_ADDR'].'\',
586    '.(isset($page['section']) ? "'".$page['section']."'" : 'NULL').',
587    '.(isset($page['category']['id']) ? $page['category']['id'] : 'NULL').',
588    '.(isset($image_id) ? $image_id : 'NULL').',
589    '.(isset($image_type) ? "'".$image_type."'" : 'NULL').',
590    '.(isset($tags_string) ? "'".$tags_string."'" : 'NULL').'
591  )
592;';
593  pwg_query($query);
594
595  return true;
596}
597
598// format_date returns a formatted date for display. The date given in
599// argument can be a unixdate (number of seconds since the 01.01.1970) or an
600// american format (2003-09-15). By option, you can show the time. The
601// output is internationalized.
602//
603// format_date( "2003-09-15", 'us', true ) -> "Monday 15 September 2003 21:52"
604function format_date($date, $type = 'us', $show_time = false)
605{
606  global $lang;
607
608  list($year,$month,$day,$hour,$minute,$second) = array(0,0,0,0,0,0);
609
610  switch ( $type )
611  {
612    case 'us' :
613    {
614      list($year,$month,$day) = explode('-', $date);
615      break;
616    }
617    case 'unix' :
618    {
619      list($year,$month,$day,$hour,$minute) =
620        explode('.', date('Y.n.j.G.i', $date));
621      break;
622    }
623    case 'mysql_datetime' :
624    {
625      preg_match('/^(\d{4})-(\d{2})-(\d{2}) (\d{2}):(\d{2}):(\d{2})$/',
626                 $date, $out);
627      list($year,$month,$day,$hour,$minute,$second) =
628        array($out[1],$out[2],$out[3],$out[4],$out[5],$out[6]);
629      break;
630    }
631  }
632  $formated_date = '';
633  // before 1970, Microsoft Windows can't mktime
634  if ($year >= 1970)
635  {
636    // we ask midday because Windows think it's prior to midnight with a
637    // zero and refuse to work
638    $formated_date.= $lang['day'][date('w', mktime(12,0,0,$month,$day,$year))];
639  }
640  $formated_date.= ' '.$day;
641  $formated_date.= ' '.$lang['month'][(int)$month];
642  $formated_date.= ' '.$year;
643  if ($show_time)
644  {
645    $formated_date.= ' '.$hour.':'.$minute;
646  }
647
648  return $formated_date;
649}
650
651function pwg_query($query)
652{
653  global $conf,$page,$debug,$t2;
654
655  $start = get_moment();
656  $result = mysql_query($query) or my_error($query."\n");
657
658  $time = get_moment() - $start;
659
660  if (!isset($page['count_queries']))
661  {
662    $page['count_queries'] = 0;
663    $page['queries_time'] = 0;
664  }
665
666  $page['count_queries']++;
667  $page['queries_time']+= $time;
668
669  if ($conf['show_queries'])
670  {
671    $output = '';
672    $output.= '<pre>['.$page['count_queries'].'] ';
673    $output.= "\n".$query;
674    $output.= "\n".'(this query time : ';
675    $output.= '<b>'.number_format($time, 3, '.', ' ').' s)</b>';
676    $output.= "\n".'(total SQL time  : ';
677    $output.= number_format($page['queries_time'], 3, '.', ' ').' s)';
678    $output.= "\n".'(total time      : ';
679    $output.= number_format( ($time+$start-$t2), 3, '.', ' ').' s)';
680    if ( $result!=null and preg_match('/\s*SELECT\s+/i',$query) )
681    {
682      $output.= "\n".'(num rows        : ';
683      $output.= mysql_num_rows($result).' )';
684    }
685    elseif ( $result!=null
686      and preg_match('/\s*INSERT|UPDATE|REPLACE|DELETE\s+/i',$query) )
687    {
688      $output.= "\n".'(affected rows   : ';
689      $output.= mysql_affected_rows().' )';
690    }
691    $output.= "</pre>\n";
692
693    $debug .= $output;
694  }
695
696  return $result;
697}
698
699function pwg_debug( $string )
700{
701  global $debug,$t2,$page;
702
703  $now = explode( ' ', microtime() );
704  $now2 = explode( '.', $now[0] );
705  $now2 = $now[1].'.'.$now2[1];
706  $time = number_format( $now2 - $t2, 3, '.', ' ').' s';
707  $debug .= '<p>';
708  $debug.= '['.$time.', ';
709  $debug.= $page['count_queries'].' queries] : '.$string;
710  $debug.= "</p>\n";
711}
712
713/**
714 * Redirects to the given URL (HTTP method)
715 *
716 * Note : once this function called, the execution doesn't go further
717 * (presence of an exit() instruction.
718 *
719 * @param string $url
720 * @return void
721 */
722function redirect_http( $url )
723{
724  if (ob_get_length () !== FALSE)
725  {
726    ob_clean();
727  }
728  // default url is on html format
729  $url = html_entity_decode($url);
730  header('Request-URI: '.$url);
731  header('Content-Location: '.$url);
732  header('Location: '.$url);
733  exit();
734}
735
736/**
737 * Redirects to the given URL (HTML method)
738 *
739 * Note : once this function called, the execution doesn't go further
740 * (presence of an exit() instruction.
741 *
742 * @param string $url
743 * @param string $title_msg
744 * @param integer $refreh_time
745 * @return void
746 */
747function redirect_html( $url , $msg = '', $refresh_time = 0)
748{
749  global $user, $template, $lang_info, $conf, $lang, $t2, $page, $debug;
750
751  if (!isset($lang_info))
752  {
753    $user = build_user( $conf['guest_id'], true);
754    load_language('common.lang');
755    trigger_action('loading_lang');
756    load_language('local.lang');
757    list($tmpl, $thm) = explode('/', get_default_template());
758    $template = new Template(PHPWG_ROOT_PATH.'template/'.$tmpl, $thm);
759  }
760  else
761  {
762    $template = new Template(PHPWG_ROOT_PATH.'template/'.$user['template'], $user['theme']);
763  }
764
765  if (empty($msg))
766  {
767    $redirect_msg = l10n('redirect_msg');
768  }
769  else
770  {
771    $redirect_msg = $msg;
772  }
773  $redirect_msg = nl2br($redirect_msg);
774
775  $refresh = $refresh_time;
776  $url_link = $url;
777  $title = 'redirection';
778
779  $template->set_filenames( array( 'redirect' => 'redirect.tpl' ) );
780
781  include( PHPWG_ROOT_PATH.'include/page_header.php' );
782
783  $template->set_filenames( array( 'redirect' => 'redirect.tpl' ) );
784  $template->parse('redirect');
785
786  include( PHPWG_ROOT_PATH.'include/page_tail.php' );
787
788  exit();
789}
790
791/**
792 * Redirects to the given URL (Switch to HTTP method or HTML method)
793 *
794 * Note : once this function called, the execution doesn't go further
795 * (presence of an exit() instruction.
796 *
797 * @param string $url
798 * @param string $title_msg
799 * @param integer $refreh_time
800 * @return void
801 */
802function redirect( $url , $msg = '', $refresh_time = 0)
803{
804  global $conf;
805
806  // with RefeshTime <> 0, only html must be used
807  if ($conf['default_redirect_method']=='http'
808      and $refresh_time==0
809      and !headers_sent()
810    )
811  {
812    redirect_http($url);
813  }
814  else
815  {
816    redirect_html($url, $msg, $refresh_time);
817  }
818}
819
820/**
821 * returns $_SERVER['QUERY_STRING'] whitout keys given in parameters
822 *
823 * @param array $rejects
824 * @param boolean $escape - if true escape & to &amp; (for html)
825 * @returns string
826 */
827function get_query_string_diff($rejects=array(), $escape=true)
828{
829  $query_string = '';
830
831  $str = $_SERVER['QUERY_STRING'];
832  parse_str($str, $vars);
833
834  $is_first = true;
835  foreach ($vars as $key => $value)
836  {
837    if (!in_array($key, $rejects))
838    {
839      $query_string.= $is_first ? '?' : ($escape ? '&amp;' : '&' );
840      $is_first = false;
841      $query_string.= $key.'='.$value;
842    }
843  }
844
845  return $query_string;
846}
847
848function url_is_remote($url)
849{
850  if ( strncmp($url, 'http://', 7)==0
851    or strncmp($url, 'https://', 8)==0 )
852  {
853    return true;
854  }
855  return false;
856}
857
858/**
859 * returns available template/theme
860 */
861function get_pwg_themes()
862{
863  global $conf;
864  $themes = array();
865
866  $template_dir = PHPWG_ROOT_PATH.'template';
867
868  foreach (get_dirs($template_dir) as $template)
869  {
870    foreach (get_dirs($template_dir.'/'.$template.'/theme') as $theme)
871    {
872      if ( ($template.'/'.$theme) != $conf['admin_layout'] )
873      array_push($themes, $template.'/'.$theme);
874    }
875  }
876
877  return $themes;
878}
879
880/* Returns the PATH to the thumbnail to be displayed. If the element does not
881 * have a thumbnail, the default mime image path is returned. The PATH can be
882 * used in the php script, but not sent to the browser.
883 * @param array element_info assoc array containing element info from db
884 * at least 'path', 'tn_ext' and 'id' should be present
885 */
886function get_thumbnail_path($element_info)
887{
888  $path = get_thumbnail_location($element_info);
889  if ( !url_is_remote($path) )
890  {
891    $path = PHPWG_ROOT_PATH.$path;
892  }
893  return $path;
894}
895
896/* Returns the URL of the thumbnail to be displayed. If the element does not
897 * have a thumbnail, the default mime image url is returned. The URL can be
898 * sent to the browser, but not used in the php script.
899 * @param array element_info assoc array containing element info from db
900 * at least 'path', 'tn_ext' and 'id' should be present
901 */
902function get_thumbnail_url($element_info)
903{
904  $path = get_thumbnail_location($element_info);
905  if ( !url_is_remote($path) )
906  {
907    $path = embellish_url(get_root_url().$path);
908  }
909
910  // plugins want another url ?
911  $path = trigger_event('get_thumbnail_url', $path, $element_info);
912  return $path;
913}
914
915/* returns the relative path of the thumnail with regards to to the root
916of piwigo (not the current page!).This function is not intended to be
917called directly from code.*/
918function get_thumbnail_location($element_info)
919{
920  global $conf;
921  if ( !empty( $element_info['tn_ext'] ) )
922  {
923    $path = substr_replace(
924      get_filename_wo_extension($element_info['path']),
925      '/thumbnail/'.$conf['prefix_thumbnail'],
926      strrpos($element_info['path'],'/'),
927      1
928      );
929    $path.= '.'.$element_info['tn_ext'];
930  }
931  else
932  {
933    $path = get_themeconf('mime_icon_dir')
934        .strtolower(get_extension($element_info['path'])).'.png';
935  }
936
937  // plugins want another location ?
938  $path = trigger_event( 'get_thumbnail_location', $path, $element_info);
939  return $path;
940}
941
942/* returns the title of the thumnail */
943function get_thumbnail_title($element_info)
944{
945  // message in title for the thumbnail
946  if (isset($element_info['file']))
947  {
948    $thumbnail_title = $element_info['file'];
949  }
950  else
951  {
952    $thumbnail_title = '';
953  }
954
955  if (!empty($element_info['filesize']))
956  {
957    $thumbnail_title .= ' : '.l10n_dec('%d Kb', '%d Kb', $element_info['filesize']);
958  }
959
960  return $thumbnail_title;
961}
962
963// my_error returns (or send to standard output) the message concerning the
964// error occured for the last mysql query.
965function my_error($header)
966{
967  global $conf;
968
969  $error = '<pre>';
970  $error.= $header;
971  $error.= '[mysql error '.mysql_errno().'] ';
972  $error.= mysql_error();
973  $error.= '</pre>';
974
975  if ($conf['die_on_sql_error'])
976  {
977    die($error);
978  }
979  else
980  {
981    echo $error;
982  }
983}
984
985/**
986 * creates an array based on a query, this function is a very common pattern
987 * used here
988 *
989 * @param string $query
990 * @param string $fieldname
991 * @return array
992 */
993function array_from_query($query, $fieldname)
994{
995  $array = array();
996
997  $result = pwg_query($query);
998  while ($row = mysql_fetch_array($result))
999  {
1000    array_push($array, $row[$fieldname]);
1001  }
1002
1003  return $array;
1004}
1005
1006/**
1007 * fill the current user caddie with given elements, if not already in
1008 * caddie
1009 *
1010 * @param array elements_id
1011 */
1012function fill_caddie($elements_id)
1013{
1014  global $user;
1015
1016  include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
1017
1018  $query = '
1019SELECT element_id
1020  FROM '.CADDIE_TABLE.'
1021  WHERE user_id = '.$user['id'].'
1022;';
1023  $in_caddie = array_from_query($query, 'element_id');
1024
1025  $caddiables = array_diff($elements_id, $in_caddie);
1026
1027  $datas = array();
1028
1029  foreach ($caddiables as $caddiable)
1030  {
1031    array_push($datas, array('element_id' => $caddiable,
1032                             'user_id' => $user['id']));
1033  }
1034
1035  if (count($caddiables) > 0)
1036  {
1037    mass_inserts(CADDIE_TABLE, array('element_id','user_id'), $datas);
1038  }
1039}
1040
1041/**
1042 * returns the element name from its filename
1043 *
1044 * @param string filename
1045 * @return string name
1046 */
1047function get_name_from_file($filename)
1048{
1049  return str_replace('_',' ',get_filename_wo_extension($filename));
1050}
1051
1052/**
1053 * returns the corresponding value from $lang if existing. Else, the key is
1054 * returned
1055 *
1056 * @param string key
1057 * @return string
1058 */
1059function l10n($key)
1060{
1061  global $lang, $conf;
1062
1063  if ($conf['debug_l10n'] and !isset($lang[$key]) and !empty($key))
1064  {
1065    trigger_error('[l10n] language key "'.$key.'" is not defined', E_USER_NOTICE);
1066  }
1067
1068  return isset($lang[$key]) ? $lang[$key] : $key;
1069}
1070
1071/**
1072 * returns the prinft value for strings including %d
1073 * return is concorded with decimal value (singular, plural)
1074 *
1075 * @param singular string key
1076 * @param plural string key
1077 * @param decimal value
1078 * @return string
1079 */
1080function l10n_dec($singular_fmt_key, $plural_fmt_key, $decimal)
1081{
1082  global $lang_info;
1083
1084  return
1085    sprintf(
1086      l10n((
1087        (($decimal > 1) or ($decimal == 0 and $lang_info['zero_plural']))
1088          ? $plural_fmt_key
1089          : $singular_fmt_key
1090        )), $decimal);
1091}
1092/*
1093 * returns a single element to use with l10n_args
1094 *
1095 * @param string key: translation key
1096 * @param array/string/../number args:
1097 *   arguments to use on sprintf($key, args)
1098 *   if args is a array, each values are used on sprintf
1099 * @return string
1100 */
1101function get_l10n_args($key, $args)
1102{
1103  if (is_array($args))
1104  {
1105    $key_arg = array_merge(array($key), $args);
1106  }
1107  else
1108  {
1109    $key_arg = array($key,  $args);
1110  }
1111  return array('key_args' => $key_arg);
1112}
1113
1114/*
1115 * returns a string with formated with l10n_args elements
1116 *
1117 * @param element/array $key_args: element or array of l10n_args elements
1118 * @param $sep: if $key_args is array,
1119 *   separator is used when translated l10n_args elements are concated
1120 * @return string
1121 */
1122function l10n_args($key_args, $sep = "\n")
1123{
1124  if (is_array($key_args))
1125  {
1126    foreach ($key_args as $key => $element)
1127    {
1128      if (isset($result))
1129      {
1130        $result .= $sep;
1131      }
1132      else
1133      {
1134        $result = '';
1135      }
1136
1137      if ($key === 'key_args')
1138      {
1139        array_unshift($element, l10n(array_shift($element)));
1140        $result .= call_user_func_array('sprintf', $element);
1141      }
1142      else
1143      {
1144        $result .= l10n_args($element, $sep);
1145      }
1146    }
1147  }
1148  else
1149  {
1150    die('l10n_args: Invalid arguments');
1151  }
1152
1153  return $result;
1154}
1155
1156/**
1157 * returns the corresponding value from $themeconf if existing. Else, the
1158 * key is returned
1159 *
1160 * @param string key
1161 * @return string
1162 */
1163function get_themeconf($key)
1164{
1165  global $template;
1166
1167  return $template->get_themeconf($key);
1168}
1169
1170/**
1171 * Returns webmaster mail address depending on $conf['webmaster_id']
1172 *
1173 * @return string
1174 */
1175function get_webmaster_mail_address()
1176{
1177  global $conf;
1178
1179  $query = '
1180SELECT '.$conf['user_fields']['email'].'
1181  FROM '.USERS_TABLE.'
1182  WHERE '.$conf['user_fields']['id'].' = '.$conf['webmaster_id'].'
1183;';
1184  list($email) = mysql_fetch_array(pwg_query($query));
1185
1186  return $email;
1187}
1188
1189/**
1190 * which upgrades are available ?
1191 *
1192 * @return array
1193 */
1194function get_available_upgrade_ids()
1195{
1196  $upgrades_path = PHPWG_ROOT_PATH.'install/db';
1197
1198  $available_upgrade_ids = array();
1199
1200  if ($contents = opendir($upgrades_path))
1201  {
1202    while (($node = readdir($contents)) !== false)
1203    {
1204      if (is_file($upgrades_path.'/'.$node)
1205          and preg_match('/^(.*?)-database\.php$/', $node, $match))
1206      {
1207        array_push($available_upgrade_ids, $match[1]);
1208      }
1209    }
1210  }
1211  natcasesort($available_upgrade_ids);
1212
1213  return $available_upgrade_ids;
1214}
1215
1216/**
1217 * Add configuration parameters from database to global $conf array
1218 *
1219 * @return void
1220 */
1221function load_conf_from_db($condition = '')
1222{
1223  global $conf;
1224
1225  $query = '
1226SELECT param, value
1227 FROM '.CONFIG_TABLE.'
1228 '.(!empty($condition) ? 'WHERE '.$condition : '').'
1229;';
1230  $result = pwg_query($query);
1231
1232  if ((mysql_num_rows($result) == 0) and !empty($condition))
1233  {
1234    die('No configuration data');
1235  }
1236
1237  while ($row = mysql_fetch_array($result))
1238  {
1239    $conf[ $row['param'] ] = isset($row['value']) ? $row['value'] : '';
1240
1241    // If the field is true or false, the variable is transformed into a
1242    // boolean value.
1243    if ($conf[$row['param']] == 'true' or $conf[$row['param']] == 'false')
1244    {
1245      $conf[ $row['param'] ] = get_boolean($conf[ $row['param'] ]);
1246    }
1247  }
1248}
1249
1250/**
1251 * Prepends and appends a string at each value of the given array.
1252 *
1253 * @param array
1254 * @param string prefix to each array values
1255 * @param string suffix to each array values
1256 */
1257function prepend_append_array_items($array, $prepend_str, $append_str)
1258{
1259  array_walk(
1260    $array,
1261    create_function('&$s', '$s = "'.$prepend_str.'".$s."'.$append_str.'";')
1262    );
1263
1264  return $array;
1265}
1266
1267/**
1268 * creates an hashed based on a query, this function is a very common
1269 * pattern used here. Among the selected columns fetched, choose one to be
1270 * the key, another one to be the value.
1271 *
1272 * @param string $query
1273 * @param string $keyname
1274 * @param string $valuename
1275 * @return array
1276 */
1277function simple_hash_from_query($query, $keyname, $valuename)
1278{
1279  $array = array();
1280
1281  $result = pwg_query($query);
1282  while ($row = mysql_fetch_array($result))
1283  {
1284    $array[ $row[$keyname] ] = $row[$valuename];
1285  }
1286
1287  return $array;
1288}
1289
1290/**
1291 * creates an hashed based on a query, this function is a very common
1292 * pattern used here. The key is given as parameter, the value is an associative
1293 * array.
1294 *
1295 * @param string $query
1296 * @param string $keyname
1297 * @return array
1298 */
1299function hash_from_query($query, $keyname)
1300{
1301  $array = array();
1302  $result = pwg_query($query);
1303  while ($row = mysql_fetch_assoc($result))
1304  {
1305    $array[ $row[$keyname] ] = $row;
1306  }
1307  return $array;
1308}
1309
1310/**
1311 * Return basename of the current script
1312 * Lower case convertion is applied on return value
1313 * Return value is without file extention ".php"
1314 *
1315 * @param void
1316 *
1317 * @return script basename
1318 */
1319function script_basename()
1320{
1321  global $conf;
1322
1323  foreach (array('SCRIPT_NAME', 'SCRIPT_FILENAME', 'PHP_SELF') as $value)
1324  {
1325    $continue = !empty($_SERVER[$value]);
1326    if ($continue)
1327    {
1328      $filename = strtolower($_SERVER[$value]);
1329
1330      if ($conf['php_extension_in_urls'])
1331      {
1332        $continue = get_extension($filename) ===  'php';
1333      }
1334
1335      if ($continue)
1336      {
1337        $basename = basename($filename, '.php');
1338        $continue = !empty($basename);
1339      }
1340
1341      if ($continue)
1342      {
1343        return $basename;
1344      }
1345    }
1346  }
1347
1348  return '';
1349}
1350
1351/**
1352 * Return value for the current page define on $conf['filter_pages']
1353 * Îf value is not defined, default value are returned
1354 *
1355 * @param value name
1356 *
1357 * @return filter page value
1358 */
1359function get_filter_page_value($value_name)
1360{
1361  global $conf;
1362
1363  $page_name = script_basename();
1364
1365  if (isset($conf['filter_pages'][$page_name][$value_name]))
1366  {
1367    return $conf['filter_pages'][$page_name][$value_name];
1368  }
1369  else if (isset($conf['filter_pages']['default'][$value_name]))
1370  {
1371    return $conf['filter_pages']['default'][$value_name];
1372  }
1373  else
1374  {
1375    return null;
1376  }
1377}
1378
1379/**
1380 * returns the character set of data sent to browsers / received from forms
1381 */
1382function get_pwg_charset()
1383{
1384  defined('PWG_CHARSET') or die('load_language PWG_CHARSET undefined');
1385  return PWG_CHARSET;
1386}
1387
1388/**
1389 * includes a language file or returns the content of a language file
1390 * availability of the file
1391 *
1392 * in descending order of preference:
1393 *   param language, user language, default language
1394 * Piwigo default language.
1395 *
1396 * @param string filename
1397 * @param string dirname
1398 * @param string language
1399 * @param bool return_content - if true the file content is returned otherwise
1400 *  the file is evaluated as php
1401 * @return boolean success status or a string if return_content is true
1402 */
1403function load_language($filename, $dirname = '', $language = '',
1404    $return_content=false, $target_charset=null)
1405{
1406  global $user;
1407
1408  if (!$return_content)
1409  {
1410    $filename .= '.php'; //MAYBE to do .. load .po and .mo localization files
1411  }
1412  if (empty($dirname))
1413  {
1414    $dirname = PHPWG_ROOT_PATH;
1415  }
1416  $dirname .= 'language/';
1417
1418  $languages = array();
1419  if ( !empty($language) )
1420  {
1421    $languages[] = $language;
1422  }
1423  if ( !empty($user['language']) )
1424  {
1425    $languages[] = $user['language'];
1426  }
1427  if ( defined('PHPWG_INSTALLED') )
1428  {
1429    $languages[] = get_default_language();
1430  }
1431  $languages[] = PHPWG_DEFAULT_LANGUAGE;
1432  $languages = array_unique($languages);
1433
1434  if ( empty($target_charset) )
1435  {
1436    $target_charset = get_pwg_charset();
1437  }
1438  $target_charset = strtolower($target_charset);
1439  $source_charset = '';
1440  $source_file    = '';
1441  foreach ($languages as $language)
1442  {
1443    $dir = $dirname.$language;
1444
1445    // exact charset match - no conversion required
1446    $f = $dir.'.'.$target_charset.'/'.$filename;
1447    if (file_exists($f))
1448    {
1449      $source_file = $f;
1450      break;
1451    }
1452
1453    // UTF-8 ?
1454    $f = $dir.'/'.$filename;
1455    if (file_exists($f))
1456    {
1457      $source_charset = 'utf-8';
1458      $source_file = $f;
1459      break;
1460    }
1461
1462    if ($target_charset=='utf-8')
1463    { // we accept conversion from ISO-8859-1 to UTF-8
1464      $f = $dir.'.iso-8859-1/'.$filename;
1465      if (file_exists($f))
1466      {
1467        $source_charset = 'iso-8859-1';
1468        $source_file = $f;
1469        break;
1470      }
1471    }
1472  }
1473
1474  if ( !empty($source_file) )
1475  {
1476    if (!$return_content)
1477    {
1478      @include($source_file);
1479      $load_lang = @$lang;
1480      $load_lang_info = @$lang_info;
1481
1482      global $lang, $lang_info;
1483      if ( !isset($lang) ) $lang=array();
1484      if ( !isset($lang_info) ) $lang_info=array();
1485
1486      if ( !empty($source_charset) and $source_charset!=$target_charset)
1487      {
1488        if ( is_array($load_lang) )
1489        {
1490          foreach ($load_lang as $k => $v)
1491          {
1492            if ( is_array($v) )
1493            {
1494              $func = create_function('$v', 'return convert_charset($v, "'.$source_charset.'","'.$target_charset.'");' );
1495              $lang[$k] = array_map($func, $v);
1496            }
1497            else
1498              $lang[$k] = convert_charset($v, $source_charset, $target_charset);
1499          }
1500        }
1501        if ( is_array($load_lang_info) )
1502        {
1503          foreach ($load_lang_info as $k => $v)
1504          {
1505            $lang_info[$k] = convert_charset($v, $source_charset, $target_charset);
1506          }
1507        }
1508      }
1509      else
1510      {
1511        $lang = array_merge( $lang, (array)$load_lang );
1512        $lang_info = array_merge( $lang_info, (array)$load_lang_info );
1513      }
1514      return true;
1515    }
1516    else
1517    {
1518      $content = @file_get_contents($source_file);
1519      if ( !empty($source_charset) and $source_charset!=$target_charset)
1520      {
1521        $content = convert_charset($content, $source_charset, $target_charset);
1522      }
1523      return $content;
1524    }
1525  }
1526  return false;
1527}
1528
1529/**
1530 * converts a string from a character set to another character set
1531 * @param string str the string to be converted
1532 * @param string source_charset the character set in which the string is encoded
1533 * @param string dest_charset the destination character set
1534 */
1535function convert_charset($str, $source_charset, $dest_charset)
1536{
1537  if ($source_charset==$dest_charset)
1538    return $str;
1539  if ($source_charset=='iso-8859-1' and $dest_charset=='utf-8')
1540  {
1541    return utf8_encode($str);
1542  }
1543  if ($source_charset=='utf-8' and $dest_charset=='iso-8859-1')
1544  {
1545    return utf8_decode($str);
1546  }
1547  if (function_exists('iconv'))
1548  {
1549    return iconv($source_charset, $dest_charset, $str);
1550  }
1551  if (function_exists('mb_convert_encoding'))
1552  {
1553    return mb_convert_encoding( $str, $dest_charset, $source_charset );
1554  }
1555  return $str; //???
1556}
1557?>
Note: See TracBrowser for help on using the repository browser.