2003-05-09 14:42:42 +02:00
|
|
|
<?php
|
2004-02-12 00:20:38 +01:00
|
|
|
// +-----------------------------------------------------------------------+
|
2004-11-06 22:12:59 +01:00
|
|
|
// | PhpWebGallery - a PHP based picture gallery |
|
|
|
|
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
|
2005-01-08 00:10:51 +01:00
|
|
|
// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
|
2004-02-12 00:20:38 +01:00
|
|
|
// +-----------------------------------------------------------------------+
|
2004-11-06 22:12:59 +01:00
|
|
|
// | branch : BSF (Best So Far)
|
2004-02-12 00:20:38 +01:00
|
|
|
// | file : $RCSfile$
|
|
|
|
// | last update : $Date$
|
|
|
|
// | last modifier : $Author$
|
|
|
|
// | revision : $Revision$
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | This program is free software; you can redistribute it and/or modify |
|
|
|
|
// | it under the terms of the GNU General Public License as published by |
|
|
|
|
// | the Free Software Foundation |
|
|
|
|
// | |
|
|
|
|
// | This program is distributed in the hope that it will be useful, but |
|
|
|
|
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
|
|
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
|
|
|
// | General Public License for more details. |
|
|
|
|
// | |
|
|
|
|
// | You should have received a copy of the GNU General Public License |
|
|
|
|
// | along with this program; if not, write to the Free Software |
|
|
|
|
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
|
|
|
// | USA. |
|
|
|
|
// +-----------------------------------------------------------------------+
|
2004-03-31 22:43:09 +02:00
|
|
|
|
2004-03-26 18:08:09 +01:00
|
|
|
include_once( PHPWG_ROOT_PATH .'include/functions_user.inc.php' );
|
|
|
|
include_once( PHPWG_ROOT_PATH .'include/functions_session.inc.php' );
|
|
|
|
include_once( PHPWG_ROOT_PATH .'include/functions_category.inc.php' );
|
|
|
|
include_once( PHPWG_ROOT_PATH .'include/functions_xml.inc.php' );
|
|
|
|
include_once( PHPWG_ROOT_PATH .'include/functions_group.inc.php' );
|
2004-08-06 11:35:58 +02:00
|
|
|
include_once( PHPWG_ROOT_PATH .'include/functions_html.inc.php' );
|
2003-05-09 14:42:42 +02:00
|
|
|
|
|
|
|
//----------------------------------------------------------- generic functions
|
|
|
|
|
2005-04-30 16:36:57 +02:00
|
|
|
/**
|
|
|
|
* returns an array containing the possible values of an enum field
|
|
|
|
*
|
|
|
|
* @param string tablename
|
|
|
|
* @param string fieldname
|
|
|
|
*/
|
|
|
|
function get_enums($table, $field)
|
|
|
|
{
|
|
|
|
// retrieving the properties of the table. Each line represents a field :
|
|
|
|
// columns are 'Field', 'Type'
|
|
|
|
$result = pwg_query('desc '.$table);
|
|
|
|
while ($row = mysql_fetch_array($result))
|
|
|
|
{
|
|
|
|
// we are only interested in the the field given in parameter for the
|
|
|
|
// function
|
|
|
|
if ($row['Field'] == $field)
|
|
|
|
{
|
|
|
|
// retrieving possible values of the enum field
|
|
|
|
// enum('blue','green','black')
|
|
|
|
$options = explode(',', substr($row['Type'], 5, -1));
|
|
|
|
foreach ($options as $i => $option)
|
|
|
|
{
|
|
|
|
$options[$i] = str_replace("'", '',$option);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mysql_free_result($result);
|
|
|
|
return $options;
|
|
|
|
}
|
|
|
|
|
2003-05-10 13:29:52 +02:00
|
|
|
// get_boolean transforms a string to a boolean value. If the string is
|
|
|
|
// "false" (case insensitive), then the boolean value false is returned. In
|
|
|
|
// any other case, true is returned.
|
2003-05-09 14:42:42 +02:00
|
|
|
function get_boolean( $string )
|
|
|
|
{
|
|
|
|
$boolean = true;
|
|
|
|
if ( preg_match( '/^false$/i', $string ) )
|
|
|
|
{
|
|
|
|
$boolean = false;
|
|
|
|
}
|
|
|
|
return $boolean;
|
|
|
|
}
|
|
|
|
|
2004-12-28 18:56:33 +01:00
|
|
|
/**
|
|
|
|
* returns boolean string 'true' or 'false' if the given var is boolean
|
|
|
|
*
|
|
|
|
* @param mixed $var
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
function boolean_to_string($var)
|
|
|
|
{
|
|
|
|
if (is_bool($var))
|
|
|
|
{
|
|
|
|
if ($var)
|
|
|
|
{
|
|
|
|
return 'true';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 'false';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return $var;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-05-09 14:42:42 +02:00
|
|
|
// The function get_moment returns a float value coresponding to the number
|
|
|
|
// of seconds since the unix epoch (1st January 1970) and the microseconds
|
|
|
|
// are precised : e.g. 1052343429.89276600
|
|
|
|
function get_moment()
|
|
|
|
{
|
2003-05-13 12:02:06 +02:00
|
|
|
$t1 = explode( ' ', microtime() );
|
|
|
|
$t2 = explode( '.', $t1[0] );
|
|
|
|
$t2 = $t1[1].'.'.$t2[1];
|
2003-05-09 14:42:42 +02:00
|
|
|
return $t2;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The function get_elapsed_time returns the number of seconds (with 3
|
|
|
|
// decimals precision) between the start time and the end time given.
|
|
|
|
function get_elapsed_time( $start, $end )
|
|
|
|
{
|
|
|
|
return number_format( $end - $start, 3, '.', ' ').' s';
|
|
|
|
}
|
|
|
|
|
|
|
|
// - The replace_space function replaces space and '-' characters
|
|
|
|
// by their HTML equivalent &nbsb; and −
|
|
|
|
// - The function does not replace characters in HTML tags
|
|
|
|
// - This function was created because IE5 does not respect the
|
|
|
|
// CSS "white-space: nowrap;" property unless space and minus
|
|
|
|
// characters are replaced like this function does.
|
2003-05-21 19:46:57 +02:00
|
|
|
// - Example :
|
|
|
|
// <div class="foo">My friend</div>
|
|
|
|
// ( 01234567891111111111222222222233 )
|
|
|
|
// ( 0123456789012345678901 )
|
|
|
|
// becomes :
|
|
|
|
// <div class="foo">My friend</div>
|
2003-05-09 14:42:42 +02:00
|
|
|
function replace_space( $string )
|
|
|
|
{
|
2003-05-21 19:46:57 +02:00
|
|
|
//return $string;
|
|
|
|
$return_string = '';
|
|
|
|
// $remaining is the rest of the string where to replace spaces characters
|
2003-05-09 14:42:42 +02:00
|
|
|
$remaining = $string;
|
2003-05-21 19:46:57 +02:00
|
|
|
// $start represents the position of the next '<' character
|
|
|
|
// $end represents the position of the next '>' character
|
2003-05-09 14:42:42 +02:00
|
|
|
$start = 0;
|
|
|
|
$end = 0;
|
2003-05-21 19:46:57 +02:00
|
|
|
$start = strpos ( $remaining, '<' ); // -> 0
|
|
|
|
$end = strpos ( $remaining, '>' ); // -> 16
|
|
|
|
// as long as a '<' and his friend '>' are found, we loop
|
2003-05-09 14:42:42 +02:00
|
|
|
while ( is_numeric( $start ) and is_numeric( $end ) )
|
|
|
|
{
|
2003-05-21 19:46:57 +02:00
|
|
|
// $treatment is the part of the string to treat
|
|
|
|
// In the first loop of our example, this variable is empty, but in the
|
|
|
|
// second loop, it equals 'My friend'
|
2003-05-09 14:42:42 +02:00
|
|
|
$treatment = substr ( $remaining, 0, $start );
|
2003-05-21 19:46:57 +02:00
|
|
|
// Replacement of ' ' by his equivalent ' '
|
2003-05-10 13:29:52 +02:00
|
|
|
$treatment = str_replace( ' ', ' ', $treatment );
|
|
|
|
$treatment = str_replace( '-', '−', $treatment );
|
2003-05-21 19:46:57 +02:00
|
|
|
// composing the string to return by adding the treated string and the
|
|
|
|
// following HTML tag -> 'My friend</div>'
|
|
|
|
$return_string.= $treatment.substr( $remaining, $start, $end-$start+1 );
|
|
|
|
// the remaining string is deplaced to the part after the '>' of this
|
|
|
|
// loop
|
2003-05-09 14:42:42 +02:00
|
|
|
$remaining = substr ( $remaining, $end + 1, strlen( $remaining ) );
|
2003-05-10 13:29:52 +02:00
|
|
|
$start = strpos ( $remaining, '<' );
|
|
|
|
$end = strpos ( $remaining, '>' );
|
2003-05-09 14:42:42 +02:00
|
|
|
}
|
2003-05-10 13:29:52 +02:00
|
|
|
$treatment = str_replace( ' ', ' ', $remaining );
|
|
|
|
$treatment = str_replace( '-', '−', $treatment );
|
2003-05-09 14:42:42 +02:00
|
|
|
$return_string.= $treatment;
|
2003-05-21 19:46:57 +02:00
|
|
|
|
2003-05-09 14:42:42 +02:00
|
|
|
return $return_string;
|
|
|
|
}
|
|
|
|
|
2003-05-17 13:42:03 +02:00
|
|
|
// get_extension returns the part of the string after the last "."
|
|
|
|
function get_extension( $filename )
|
|
|
|
{
|
|
|
|
return substr( strrchr( $filename, '.' ), 1, strlen ( $filename ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
// get_filename_wo_extension returns the part of the string before the last
|
|
|
|
// ".".
|
|
|
|
// get_filename_wo_extension( 'test.tar.gz' ) -> 'test.tar'
|
|
|
|
function get_filename_wo_extension( $filename )
|
|
|
|
{
|
|
|
|
return substr( $filename, 0, strrpos( $filename, '.' ) );
|
|
|
|
}
|
|
|
|
|
2004-02-02 01:55:18 +01:00
|
|
|
/**
|
- in admin/configuration, add new step with "sections" (general, comments,
default, upload, metadata, sessions)
- admin/configuration.php and its template have been higly simplificated by
making things more generic : for example, for each configuration
parameter, its name must correspond to the name we find in the config
table and belongs to a section, in the lang array we find :
- $lang['conf_<section>_<param>']
- $lang['conf_<section>_<param>_info']
- $lang['conf_<section>_<param>_error'] optionnaly
- more described message when connection to database server is impossible
- redefinitions of get_languages and get_templates functions
- deletion of configuration parameters : webmaster, session_keyword
- rename of configuration parameters :
- default_lang => default_language
- default_style => default_template
git-svn-id: http://piwigo.org/svn/trunk@512 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-09-03 17:01:05 +02:00
|
|
|
* returns an array contening sub-directories, excluding "CVS"
|
2004-02-02 01:55:18 +01:00
|
|
|
*
|
|
|
|
* @param string $dir
|
|
|
|
* @return array
|
|
|
|
*/
|
- in admin/configuration, add new step with "sections" (general, comments,
default, upload, metadata, sessions)
- admin/configuration.php and its template have been higly simplificated by
making things more generic : for example, for each configuration
parameter, its name must correspond to the name we find in the config
table and belongs to a section, in the lang array we find :
- $lang['conf_<section>_<param>']
- $lang['conf_<section>_<param>_info']
- $lang['conf_<section>_<param>_error'] optionnaly
- more described message when connection to database server is impossible
- redefinitions of get_languages and get_templates functions
- deletion of configuration parameters : webmaster, session_keyword
- rename of configuration parameters :
- default_lang => default_language
- default_style => default_template
git-svn-id: http://piwigo.org/svn/trunk@512 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-09-03 17:01:05 +02:00
|
|
|
function get_dirs($directory)
|
2003-05-09 14:42:42 +02:00
|
|
|
{
|
2004-02-02 01:55:18 +01:00
|
|
|
$sub_dirs = array();
|
2003-05-09 14:42:42 +02:00
|
|
|
|
- in admin/configuration, add new step with "sections" (general, comments,
default, upload, metadata, sessions)
- admin/configuration.php and its template have been higly simplificated by
making things more generic : for example, for each configuration
parameter, its name must correspond to the name we find in the config
table and belongs to a section, in the lang array we find :
- $lang['conf_<section>_<param>']
- $lang['conf_<section>_<param>_info']
- $lang['conf_<section>_<param>_error'] optionnaly
- more described message when connection to database server is impossible
- redefinitions of get_languages and get_templates functions
- deletion of configuration parameters : webmaster, session_keyword
- rename of configuration parameters :
- default_lang => default_language
- default_style => default_template
git-svn-id: http://piwigo.org/svn/trunk@512 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-09-03 17:01:05 +02:00
|
|
|
if ($opendir = opendir($directory))
|
2003-05-09 14:42:42 +02:00
|
|
|
{
|
- in admin/configuration, add new step with "sections" (general, comments,
default, upload, metadata, sessions)
- admin/configuration.php and its template have been higly simplificated by
making things more generic : for example, for each configuration
parameter, its name must correspond to the name we find in the config
table and belongs to a section, in the lang array we find :
- $lang['conf_<section>_<param>']
- $lang['conf_<section>_<param>_info']
- $lang['conf_<section>_<param>_error'] optionnaly
- more described message when connection to database server is impossible
- redefinitions of get_languages and get_templates functions
- deletion of configuration parameters : webmaster, session_keyword
- rename of configuration parameters :
- default_lang => default_language
- default_style => default_template
git-svn-id: http://piwigo.org/svn/trunk@512 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-09-03 17:01:05 +02:00
|
|
|
while ($file = readdir($opendir))
|
2003-05-09 14:42:42 +02:00
|
|
|
{
|
- in admin/configuration, add new step with "sections" (general, comments,
default, upload, metadata, sessions)
- admin/configuration.php and its template have been higly simplificated by
making things more generic : for example, for each configuration
parameter, its name must correspond to the name we find in the config
table and belongs to a section, in the lang array we find :
- $lang['conf_<section>_<param>']
- $lang['conf_<section>_<param>_info']
- $lang['conf_<section>_<param>_error'] optionnaly
- more described message when connection to database server is impossible
- redefinitions of get_languages and get_templates functions
- deletion of configuration parameters : webmaster, session_keyword
- rename of configuration parameters :
- default_lang => default_language
- default_style => default_template
git-svn-id: http://piwigo.org/svn/trunk@512 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-09-03 17:01:05 +02:00
|
|
|
if ($file != '.'
|
|
|
|
and $file != '..'
|
|
|
|
and is_dir($directory.'/'.$file)
|
2006-02-12 17:05:49 +01:00
|
|
|
and $file != 'CVS'
|
|
|
|
and $file != '.svn')
|
2003-05-09 14:42:42 +02:00
|
|
|
{
|
- in admin/configuration, add new step with "sections" (general, comments,
default, upload, metadata, sessions)
- admin/configuration.php and its template have been higly simplificated by
making things more generic : for example, for each configuration
parameter, its name must correspond to the name we find in the config
table and belongs to a section, in the lang array we find :
- $lang['conf_<section>_<param>']
- $lang['conf_<section>_<param>_info']
- $lang['conf_<section>_<param>_error'] optionnaly
- more described message when connection to database server is impossible
- redefinitions of get_languages and get_templates functions
- deletion of configuration parameters : webmaster, session_keyword
- rename of configuration parameters :
- default_lang => default_language
- default_style => default_template
git-svn-id: http://piwigo.org/svn/trunk@512 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-09-03 17:01:05 +02:00
|
|
|
array_push($sub_dirs, $file);
|
2003-05-09 14:42:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-02-02 01:55:18 +01:00
|
|
|
return $sub_dirs;
|
2003-05-09 14:42:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// The get_picture_size function return an array containing :
|
|
|
|
// - $picture_size[0] : final width
|
|
|
|
// - $picture_size[1] : final height
|
|
|
|
// The final dimensions are calculated thanks to the original dimensions and
|
|
|
|
// the maximum dimensions given in parameters. get_picture_size respects
|
|
|
|
// the width/height ratio
|
|
|
|
function get_picture_size( $original_width, $original_height,
|
|
|
|
$max_width, $max_height )
|
|
|
|
{
|
|
|
|
$width = $original_width;
|
|
|
|
$height = $original_height;
|
|
|
|
$is_original_size = true;
|
|
|
|
|
|
|
|
if ( $max_width != "" )
|
|
|
|
{
|
|
|
|
if ( $original_width > $max_width )
|
|
|
|
{
|
|
|
|
$width = $max_width;
|
|
|
|
$height = floor( ( $width * $original_height ) / $original_width );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( $max_height != "" )
|
|
|
|
{
|
|
|
|
if ( $original_height > $max_height )
|
|
|
|
{
|
|
|
|
$height = $max_height;
|
|
|
|
$width = floor( ( $height * $original_width ) / $original_height );
|
|
|
|
$is_original_size = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( is_numeric( $max_width ) and is_numeric( $max_height )
|
|
|
|
and $max_width != 0 and $max_height != 0 )
|
|
|
|
{
|
|
|
|
$ratioWidth = $original_width / $max_width;
|
|
|
|
$ratioHeight = $original_height / $max_height;
|
|
|
|
if ( ( $ratioWidth > 1 ) or ( $ratioHeight > 1 ) )
|
|
|
|
{
|
|
|
|
if ( $ratioWidth < $ratioHeight )
|
|
|
|
{
|
|
|
|
$width = floor( $original_width / $ratioHeight );
|
|
|
|
$height = $max_height;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$width = $max_width;
|
|
|
|
$height = floor( $original_height / $ratioWidth );
|
|
|
|
}
|
|
|
|
$is_original_size = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$picture_size = array();
|
|
|
|
$picture_size[0] = $width;
|
|
|
|
$picture_size[1] = $height;
|
|
|
|
return $picture_size;
|
|
|
|
}
|
|
|
|
//-------------------------------------------- PhpWebGallery specific functions
|
|
|
|
|
- in admin/configuration, add new step with "sections" (general, comments,
default, upload, metadata, sessions)
- admin/configuration.php and its template have been higly simplificated by
making things more generic : for example, for each configuration
parameter, its name must correspond to the name we find in the config
table and belongs to a section, in the lang array we find :
- $lang['conf_<section>_<param>']
- $lang['conf_<section>_<param>_info']
- $lang['conf_<section>_<param>_error'] optionnaly
- more described message when connection to database server is impossible
- redefinitions of get_languages and get_templates functions
- deletion of configuration parameters : webmaster, session_keyword
- rename of configuration parameters :
- default_lang => default_language
- default_style => default_template
git-svn-id: http://piwigo.org/svn/trunk@512 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-09-03 17:01:05 +02:00
|
|
|
/**
|
|
|
|
* returns an array with a list of {language_code => language_name}
|
|
|
|
*
|
|
|
|
* @returns array
|
|
|
|
*/
|
|
|
|
function get_languages()
|
2003-05-09 14:42:42 +02:00
|
|
|
{
|
- in admin/configuration, add new step with "sections" (general, comments,
default, upload, metadata, sessions)
- admin/configuration.php and its template have been higly simplificated by
making things more generic : for example, for each configuration
parameter, its name must correspond to the name we find in the config
table and belongs to a section, in the lang array we find :
- $lang['conf_<section>_<param>']
- $lang['conf_<section>_<param>_info']
- $lang['conf_<section>_<param>_error'] optionnaly
- more described message when connection to database server is impossible
- redefinitions of get_languages and get_templates functions
- deletion of configuration parameters : webmaster, session_keyword
- rename of configuration parameters :
- default_lang => default_language
- default_style => default_template
git-svn-id: http://piwigo.org/svn/trunk@512 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-09-03 17:01:05 +02:00
|
|
|
$dir = opendir(PHPWG_ROOT_PATH.'language');
|
2003-05-09 14:42:42 +02:00
|
|
|
$languages = array();
|
- in admin/configuration, add new step with "sections" (general, comments,
default, upload, metadata, sessions)
- admin/configuration.php and its template have been higly simplificated by
making things more generic : for example, for each configuration
parameter, its name must correspond to the name we find in the config
table and belongs to a section, in the lang array we find :
- $lang['conf_<section>_<param>']
- $lang['conf_<section>_<param>_info']
- $lang['conf_<section>_<param>_error'] optionnaly
- more described message when connection to database server is impossible
- redefinitions of get_languages and get_templates functions
- deletion of configuration parameters : webmaster, session_keyword
- rename of configuration parameters :
- default_lang => default_language
- default_style => default_template
git-svn-id: http://piwigo.org/svn/trunk@512 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-09-03 17:01:05 +02:00
|
|
|
|
|
|
|
while ($file = readdir($dir))
|
2003-05-09 14:42:42 +02:00
|
|
|
{
|
2005-03-12 11:51:08 +01:00
|
|
|
$path = PHPWG_ROOT_PATH.'language/'.$file;
|
- in admin/configuration, add new step with "sections" (general, comments,
default, upload, metadata, sessions)
- admin/configuration.php and its template have been higly simplificated by
making things more generic : for example, for each configuration
parameter, its name must correspond to the name we find in the config
table and belongs to a section, in the lang array we find :
- $lang['conf_<section>_<param>']
- $lang['conf_<section>_<param>_info']
- $lang['conf_<section>_<param>_error'] optionnaly
- more described message when connection to database server is impossible
- redefinitions of get_languages and get_templates functions
- deletion of configuration parameters : webmaster, session_keyword
- rename of configuration parameters :
- default_lang => default_language
- default_style => default_template
git-svn-id: http://piwigo.org/svn/trunk@512 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-09-03 17:01:05 +02:00
|
|
|
if (is_dir($path) and !is_link($path) and file_exists($path.'/iso.txt'))
|
2003-05-09 14:42:42 +02:00
|
|
|
{
|
- in admin/configuration, add new step with "sections" (general, comments,
default, upload, metadata, sessions)
- admin/configuration.php and its template have been higly simplificated by
making things more generic : for example, for each configuration
parameter, its name must correspond to the name we find in the config
table and belongs to a section, in the lang array we find :
- $lang['conf_<section>_<param>']
- $lang['conf_<section>_<param>_info']
- $lang['conf_<section>_<param>_error'] optionnaly
- more described message when connection to database server is impossible
- redefinitions of get_languages and get_templates functions
- deletion of configuration parameters : webmaster, session_keyword
- rename of configuration parameters :
- default_lang => default_language
- default_style => default_template
git-svn-id: http://piwigo.org/svn/trunk@512 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-09-03 17:01:05 +02:00
|
|
|
list($language_name) = @file($path.'/iso.txt');
|
2004-09-20 22:08:15 +02:00
|
|
|
$languages[$file] = $language_name;
|
2003-05-09 14:42:42 +02:00
|
|
|
}
|
|
|
|
}
|
- in admin/configuration, add new step with "sections" (general, comments,
default, upload, metadata, sessions)
- admin/configuration.php and its template have been higly simplificated by
making things more generic : for example, for each configuration
parameter, its name must correspond to the name we find in the config
table and belongs to a section, in the lang array we find :
- $lang['conf_<section>_<param>']
- $lang['conf_<section>_<param>_info']
- $lang['conf_<section>_<param>_error'] optionnaly
- more described message when connection to database server is impossible
- redefinitions of get_languages and get_templates functions
- deletion of configuration parameters : webmaster, session_keyword
- rename of configuration parameters :
- default_lang => default_language
- default_style => default_template
git-svn-id: http://piwigo.org/svn/trunk@512 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-09-03 17:01:05 +02:00
|
|
|
closedir($dir);
|
|
|
|
@asort($languages);
|
|
|
|
@reset($languages);
|
|
|
|
|
2003-05-09 14:42:42 +02:00
|
|
|
return $languages;
|
|
|
|
}
|
|
|
|
|
2004-04-01 00:25:31 +02:00
|
|
|
/**
|
|
|
|
* replaces the $search into <span style="$style">$search</span> in the
|
|
|
|
* given $string.
|
|
|
|
*
|
|
|
|
* case insensitive replacements, does not replace characters in HTML tags
|
|
|
|
*
|
|
|
|
* @param string $string
|
|
|
|
* @param string $search
|
|
|
|
* @param string $style
|
|
|
|
* @return string
|
|
|
|
*/
|
2003-05-25 10:31:39 +02:00
|
|
|
function add_style( $string, $search, $style )
|
2003-05-09 14:42:42 +02:00
|
|
|
{
|
|
|
|
//return $string;
|
2003-05-25 10:31:39 +02:00
|
|
|
$return_string = '';
|
2003-05-09 14:42:42 +02:00
|
|
|
$remaining = $string;
|
|
|
|
|
|
|
|
$start = 0;
|
|
|
|
$end = 0;
|
2003-05-10 13:29:52 +02:00
|
|
|
$start = strpos ( $remaining, '<' );
|
|
|
|
$end = strpos ( $remaining, '>' );
|
2003-05-09 14:42:42 +02:00
|
|
|
while ( is_numeric( $start ) and is_numeric( $end ) )
|
|
|
|
{
|
|
|
|
$treatment = substr ( $remaining, 0, $start );
|
2004-04-01 00:25:31 +02:00
|
|
|
$treatment = preg_replace( '/('.$search.')/i',
|
|
|
|
'<span style="'.$style.'">\\0</span>',
|
|
|
|
$treatment );
|
2003-05-25 10:31:39 +02:00
|
|
|
$return_string.= $treatment.substr( $remaining, $start, $end-$start+1 );
|
2003-05-09 14:42:42 +02:00
|
|
|
$remaining = substr ( $remaining, $end + 1, strlen( $remaining ) );
|
2003-05-10 13:29:52 +02:00
|
|
|
$start = strpos ( $remaining, '<' );
|
|
|
|
$end = strpos ( $remaining, '>' );
|
2003-05-09 14:42:42 +02:00
|
|
|
}
|
2004-04-01 00:25:31 +02:00
|
|
|
$treatment = preg_replace( '/('.$search.')/i',
|
|
|
|
'<span style="'.$style.'">\\0</span>',
|
|
|
|
$remaining );
|
2003-05-09 14:42:42 +02:00
|
|
|
$return_string.= $treatment;
|
|
|
|
|
|
|
|
return $return_string;
|
|
|
|
}
|
|
|
|
|
2003-05-25 10:31:39 +02:00
|
|
|
// replace_search replaces a searched words array string by the search in
|
|
|
|
// another style for the given $string.
|
|
|
|
function replace_search( $string, $search )
|
|
|
|
{
|
2005-01-21 00:42:35 +01:00
|
|
|
// FIXME : with new advanced search, this function needs a rewrite
|
|
|
|
return $string;
|
|
|
|
|
2003-05-25 10:31:39 +02:00
|
|
|
$words = explode( ',', $search );
|
|
|
|
$style = 'background-color:white;color:red;';
|
|
|
|
foreach ( $words as $word ) {
|
|
|
|
$string = add_style( $string, $word, $style );
|
|
|
|
}
|
|
|
|
return $string;
|
|
|
|
}
|
|
|
|
|
2003-05-09 14:42:42 +02:00
|
|
|
function pwg_log( $file, $category, $picture = '' )
|
|
|
|
{
|
2003-05-17 13:42:03 +02:00
|
|
|
global $conf, $user;
|
2003-05-09 14:42:42 +02:00
|
|
|
|
2005-02-01 08:29:37 +01:00
|
|
|
if ($conf['log'])
|
2003-05-09 14:42:42 +02:00
|
|
|
{
|
2006-03-09 00:14:53 +01:00
|
|
|
if ( ($conf['history_admin'] ) or ( (! $conf['history_admin']) and (!is_admin()) ) )
|
2005-10-17 09:21:30 +02:00
|
|
|
{
|
2005-09-25 20:31:55 +02:00
|
|
|
$login = ($user['id'] == $conf['guest_id'])
|
|
|
|
? 'guest' : addslashes($user['username']);
|
|
|
|
|
2005-02-01 08:29:37 +01:00
|
|
|
$query = '
|
|
|
|
INSERT INTO '.HISTORY_TABLE.'
|
|
|
|
(date,login,IP,file,category,picture)
|
|
|
|
VALUES
|
|
|
|
(NOW(),
|
2005-09-25 20:31:55 +02:00
|
|
|
\''.$login.'\',
|
2005-02-01 08:29:37 +01:00
|
|
|
\''.$_SERVER['REMOTE_ADDR'].'\',
|
2005-09-18 23:56:56 +02:00
|
|
|
\''.addslashes($file).'\',
|
2005-09-25 20:31:55 +02:00
|
|
|
\''.addslashes(strip_tags($category)).'\',
|
2005-09-18 23:56:56 +02:00
|
|
|
\''.addslashes($picture).'\')
|
2005-02-01 08:29:37 +01:00
|
|
|
;';
|
|
|
|
pwg_query($query);
|
2003-05-09 14:42:42 +02:00
|
|
|
}
|
2005-10-17 09:21:30 +02:00
|
|
|
}
|
2003-05-09 14:42:42 +02:00
|
|
|
}
|
|
|
|
|
2003-09-11 00:24:03 +02:00
|
|
|
// format_date returns a formatted date for display. The date given in
|
|
|
|
// argument can be a unixdate (number of seconds since the 01.01.1970) or an
|
|
|
|
// american format (2003-09-15). By option, you can show the time. The
|
|
|
|
// output is internationalized.
|
|
|
|
//
|
|
|
|
// format_date( "2003-09-15", 'us', true ) -> "Monday 15 September 2003 21:52"
|
2004-11-10 00:11:36 +01:00
|
|
|
function format_date($date, $type = 'us', $show_time = false)
|
2003-08-30 17:54:37 +02:00
|
|
|
{
|
|
|
|
global $lang;
|
|
|
|
|
2004-11-10 00:11:36 +01:00
|
|
|
list($year,$month,$day,$hour,$minute,$second) = array(0,0,0,0,0,0);
|
|
|
|
|
2003-08-30 17:54:37 +02:00
|
|
|
switch ( $type )
|
|
|
|
{
|
2004-11-10 00:11:36 +01:00
|
|
|
case 'us' :
|
|
|
|
{
|
|
|
|
list($year,$month,$day) = explode('-', $date);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'unix' :
|
|
|
|
{
|
2004-12-30 09:10:46 +01:00
|
|
|
list($year,$month,$day,$hour,$minute) =
|
2004-11-10 00:11:36 +01:00
|
|
|
explode('.', date('Y.n.j.G.i', $date));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'mysql_datetime' :
|
|
|
|
{
|
|
|
|
preg_match('/^(\d{4})-(\d{2})-(\d{2}) (\d{2}):(\d{2}):(\d{2})$/',
|
|
|
|
$date, $out);
|
|
|
|
list($year,$month,$day,$hour,$minute,$second) =
|
|
|
|
array($out[1],$out[2],$out[3],$out[4],$out[5],$out[6]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$formated_date = '';
|
|
|
|
// before 1970, Microsoft Windows can't mktime
|
2005-01-16 18:28:19 +01:00
|
|
|
if ($year >= 1970)
|
2004-11-10 00:11:36 +01:00
|
|
|
{
|
2004-11-24 22:38:12 +01:00
|
|
|
// we ask midday because Windows think it's prior to midnight with a
|
|
|
|
// zero and refuse to work
|
|
|
|
$formated_date.= $lang['day'][date('w', mktime(12,0,0,$month,$day,$year))];
|
2003-08-30 17:54:37 +02:00
|
|
|
}
|
2004-11-10 00:11:36 +01:00
|
|
|
$formated_date.= ' '.$day;
|
|
|
|
$formated_date.= ' '.$lang['month'][(int)$month];
|
|
|
|
$formated_date.= ' '.$year;
|
|
|
|
if ($show_time)
|
2003-08-30 17:54:37 +02:00
|
|
|
{
|
2004-11-10 00:11:36 +01:00
|
|
|
$formated_date.= ' '.$hour.':'.$minute;
|
2003-08-30 17:54:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $formated_date;
|
|
|
|
}
|
2003-09-11 00:24:03 +02:00
|
|
|
|
2004-10-30 17:42:29 +02:00
|
|
|
function pwg_query($query)
|
2004-02-02 01:55:18 +01:00
|
|
|
{
|
2006-02-11 20:36:09 +01:00
|
|
|
global $conf,$page,$debug,$t2;
|
2004-11-05 22:36:35 +01:00
|
|
|
|
2004-02-02 01:55:18 +01:00
|
|
|
$start = get_moment();
|
2005-01-06 23:16:21 +01:00
|
|
|
$result = mysql_query($query) or my_error($query."\n");
|
2004-12-27 15:30:49 +01:00
|
|
|
|
|
|
|
$time = get_moment() - $start;
|
2005-01-06 23:16:21 +01:00
|
|
|
|
|
|
|
if (!isset($page['count_queries']))
|
|
|
|
{
|
|
|
|
$page['count_queries'] = 0;
|
|
|
|
$page['queries_time'] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
$page['count_queries']++;
|
|
|
|
$page['queries_time']+= $time;
|
2004-12-27 15:30:49 +01:00
|
|
|
|
2004-11-05 22:36:35 +01:00
|
|
|
if ($conf['show_queries'])
|
2004-10-30 17:42:29 +02:00
|
|
|
{
|
|
|
|
$output = '';
|
2005-01-06 23:16:21 +01:00
|
|
|
$output.= '<pre>['.$page['count_queries'].'] ';
|
|
|
|
$output.= "\n".$query;
|
|
|
|
$output.= "\n".'(this query time : ';
|
2006-01-21 21:38:29 +01:00
|
|
|
$output.= '<b>'.number_format($time, 3, '.', ' ').' s)</b>';
|
2005-01-06 23:16:21 +01:00
|
|
|
$output.= "\n".'(total SQL time : ';
|
|
|
|
$output.= number_format($page['queries_time'], 3, '.', ' ').' s)';
|
2006-02-11 20:36:09 +01:00
|
|
|
$output.= "\n".'(total time : ';
|
|
|
|
$output.= number_format( ($time+$start-$t2), 3, '.', ' ').' s)';
|
2006-01-21 21:38:29 +01:00
|
|
|
$output.= "</pre>\n";
|
2004-12-27 15:30:49 +01:00
|
|
|
|
2006-01-21 21:38:29 +01:00
|
|
|
$debug .= $output;
|
2004-10-30 17:42:29 +02:00
|
|
|
}
|
2004-02-02 01:55:18 +01:00
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
function pwg_debug( $string )
|
|
|
|
{
|
2006-02-11 20:36:09 +01:00
|
|
|
global $debug,$t2,$page;
|
2004-02-02 01:55:18 +01:00
|
|
|
|
|
|
|
$now = explode( ' ', microtime() );
|
|
|
|
$now2 = explode( '.', $now[0] );
|
|
|
|
$now2 = $now[1].'.'.$now2[1];
|
|
|
|
$time = number_format( $now2 - $t2, 3, '.', ' ').' s';
|
2006-01-21 21:38:29 +01:00
|
|
|
$debug .= '<p>';
|
2004-02-02 01:55:18 +01:00
|
|
|
$debug.= '['.$time.', ';
|
2006-02-11 20:36:09 +01:00
|
|
|
$debug.= $page['count_queries'].' queries] : '.$string;
|
2006-01-21 21:38:29 +01:00
|
|
|
$debug.= "</p>\n";
|
2004-02-02 01:55:18 +01:00
|
|
|
}
|
2004-02-07 12:50:26 +01:00
|
|
|
|
2004-03-31 22:43:09 +02:00
|
|
|
/**
|
|
|
|
* Redirects to the given URL
|
|
|
|
*
|
|
|
|
* Note : once this function called, the execution doesn't go further
|
|
|
|
* (presence of an exit() instruction.
|
|
|
|
*
|
|
|
|
* @param string $url
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function redirect( $url )
|
|
|
|
{
|
2006-02-06 22:52:16 +01:00
|
|
|
global $user, $template, $lang_info, $conf, $lang, $t2, $page, $debug;
|
2004-03-31 22:43:09 +02:00
|
|
|
|
|
|
|
// $refresh, $url_link and $title are required for creating an automated
|
|
|
|
// refresh page in header.tpl
|
2005-01-11 21:05:49 +01:00
|
|
|
$refresh = 0;
|
2004-03-31 22:43:09 +02:00
|
|
|
$url_link = $url;
|
|
|
|
$title = 'redirection';
|
2005-01-13 11:18:49 +01:00
|
|
|
|
2004-03-31 22:43:09 +02:00
|
|
|
include( PHPWG_ROOT_PATH.'include/page_header.php' );
|
|
|
|
|
|
|
|
$template->set_filenames( array( 'redirect' => 'redirect.tpl' ) );
|
2005-01-13 11:18:49 +01:00
|
|
|
$template->parse('redirect');
|
2004-03-31 22:43:09 +02:00
|
|
|
|
|
|
|
include( PHPWG_ROOT_PATH.'include/page_tail.php' );
|
|
|
|
|
|
|
|
exit();
|
|
|
|
}
|
2004-08-31 00:00:46 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* returns $_SERVER['QUERY_STRING'] whitout keys given in parameters
|
|
|
|
*
|
|
|
|
* @param array $rejects
|
|
|
|
* @returns string
|
|
|
|
*/
|
|
|
|
function get_query_string_diff($rejects = array())
|
|
|
|
{
|
|
|
|
$query_string = '';
|
|
|
|
|
|
|
|
$str = $_SERVER['QUERY_STRING'];
|
|
|
|
parse_str($str, $vars);
|
|
|
|
|
|
|
|
$is_first = true;
|
|
|
|
foreach ($vars as $key => $value)
|
|
|
|
{
|
|
|
|
if (!in_array($key, $rejects))
|
|
|
|
{
|
2005-04-16 18:56:32 +02:00
|
|
|
$query_string.= $is_first ? '?' : '&';
|
|
|
|
$is_first = false;
|
2004-08-31 00:00:46 +02:00
|
|
|
$query_string.= $key.'='.$value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $query_string;
|
|
|
|
}
|
- in admin/configuration, add new step with "sections" (general, comments,
default, upload, metadata, sessions)
- admin/configuration.php and its template have been higly simplificated by
making things more generic : for example, for each configuration
parameter, its name must correspond to the name we find in the config
table and belongs to a section, in the lang array we find :
- $lang['conf_<section>_<param>']
- $lang['conf_<section>_<param>_info']
- $lang['conf_<section>_<param>_error'] optionnaly
- more described message when connection to database server is impossible
- redefinitions of get_languages and get_templates functions
- deletion of configuration parameters : webmaster, session_keyword
- rename of configuration parameters :
- default_lang => default_language
- default_style => default_template
git-svn-id: http://piwigo.org/svn/trunk@512 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-09-03 17:01:05 +02:00
|
|
|
|
2006-02-01 03:46:26 +01:00
|
|
|
function url_is_remote($url)
|
|
|
|
{
|
|
|
|
if (preg_match('/^https?:\/\/[~\/\.\w-]+$/', $url))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
- in admin/configuration, add new step with "sections" (general, comments,
default, upload, metadata, sessions)
- admin/configuration.php and its template have been higly simplificated by
making things more generic : for example, for each configuration
parameter, its name must correspond to the name we find in the config
table and belongs to a section, in the lang array we find :
- $lang['conf_<section>_<param>']
- $lang['conf_<section>_<param>_info']
- $lang['conf_<section>_<param>_error'] optionnaly
- more described message when connection to database server is impossible
- redefinitions of get_languages and get_templates functions
- deletion of configuration parameters : webmaster, session_keyword
- rename of configuration parameters :
- default_lang => default_language
- default_style => default_template
git-svn-id: http://piwigo.org/svn/trunk@512 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-09-03 17:01:05 +02:00
|
|
|
/**
|
2006-02-20 23:14:24 +01:00
|
|
|
* returns available template/theme
|
- in admin/configuration, add new step with "sections" (general, comments,
default, upload, metadata, sessions)
- admin/configuration.php and its template have been higly simplificated by
making things more generic : for example, for each configuration
parameter, its name must correspond to the name we find in the config
table and belongs to a section, in the lang array we find :
- $lang['conf_<section>_<param>']
- $lang['conf_<section>_<param>_info']
- $lang['conf_<section>_<param>_error'] optionnaly
- more described message when connection to database server is impossible
- redefinitions of get_languages and get_templates functions
- deletion of configuration parameters : webmaster, session_keyword
- rename of configuration parameters :
- default_lang => default_language
- default_style => default_template
git-svn-id: http://piwigo.org/svn/trunk@512 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-09-03 17:01:05 +02:00
|
|
|
*/
|
2006-02-20 23:14:24 +01:00
|
|
|
function get_pwg_themes()
|
2005-12-03 18:33:38 +01:00
|
|
|
{
|
|
|
|
$themes = array();
|
|
|
|
|
2006-02-20 23:14:24 +01:00
|
|
|
$template_dir = PHPWG_ROOT_PATH.'template';
|
|
|
|
|
|
|
|
foreach (get_dirs($template_dir) as $template)
|
2005-12-03 18:33:38 +01:00
|
|
|
{
|
2006-02-20 23:14:24 +01:00
|
|
|
foreach (get_dirs($template_dir.'/'.$template.'/theme') as $theme)
|
2005-12-03 18:33:38 +01:00
|
|
|
{
|
|
|
|
array_push($themes, $template.'/'.$theme);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $themes;
|
- in admin/configuration, add new step with "sections" (general, comments,
default, upload, metadata, sessions)
- admin/configuration.php and its template have been higly simplificated by
making things more generic : for example, for each configuration
parameter, its name must correspond to the name we find in the config
table and belongs to a section, in the lang array we find :
- $lang['conf_<section>_<param>']
- $lang['conf_<section>_<param>_info']
- $lang['conf_<section>_<param>_error'] optionnaly
- more described message when connection to database server is impossible
- redefinitions of get_languages and get_templates functions
- deletion of configuration parameters : webmaster, session_keyword
- rename of configuration parameters :
- default_lang => default_language
- default_style => default_template
git-svn-id: http://piwigo.org/svn/trunk@512 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-09-03 17:01:05 +02:00
|
|
|
}
|
2004-10-23 19:56:46 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* returns thumbnail filepath (or distant URL if thumbnail is remote) for a
|
|
|
|
* given element
|
|
|
|
*
|
|
|
|
* the returned string can represente the filepath of the thumbnail or the
|
|
|
|
* filepath to the corresponding icon for non picture elements
|
|
|
|
*
|
2004-11-17 00:38:34 +01:00
|
|
|
* @param string path
|
2004-10-23 19:56:46 +02:00
|
|
|
* @param string tn_ext
|
|
|
|
* @return string
|
|
|
|
*/
|
2004-11-17 00:38:34 +01:00
|
|
|
function get_thumbnail_src($path, $tn_ext = '')
|
2004-10-23 19:56:46 +02:00
|
|
|
{
|
2004-11-17 00:38:34 +01:00
|
|
|
global $conf, $user;
|
|
|
|
|
2004-10-23 19:56:46 +02:00
|
|
|
if ($tn_ext != '')
|
|
|
|
{
|
2004-11-17 00:38:34 +01:00
|
|
|
$src = substr_replace(get_filename_wo_extension($path),
|
|
|
|
'/thumbnail/'.$conf['prefix_thumbnail'],
|
|
|
|
strrpos($path,'/'),
|
|
|
|
1);
|
2004-10-23 19:56:46 +02:00
|
|
|
$src.= '.'.$tn_ext;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-12-03 18:33:38 +01:00
|
|
|
$src = get_themeconf('mime_icon_dir');
|
2004-11-17 00:38:34 +01:00
|
|
|
$src.= strtolower(get_extension($path)).'.png';
|
2004-10-23 19:56:46 +02:00
|
|
|
}
|
2004-11-17 00:38:34 +01:00
|
|
|
|
2004-10-23 19:56:46 +02:00
|
|
|
return $src;
|
|
|
|
}
|
2005-01-06 23:16:21 +01:00
|
|
|
|
|
|
|
// my_error returns (or send to standard output) the message concerning the
|
|
|
|
// error occured for the last mysql query.
|
2005-02-13 11:21:11 +01:00
|
|
|
function my_error($header)
|
2005-01-06 23:16:21 +01:00
|
|
|
{
|
|
|
|
$error = '<pre>';
|
|
|
|
$error.= $header;
|
|
|
|
$error.= '[mysql error '.mysql_errno().'] ';
|
|
|
|
$error.= mysql_error();
|
|
|
|
$error.= '</pre>';
|
2005-02-13 11:21:11 +01:00
|
|
|
die ($error);
|
2005-01-06 23:16:21 +01:00
|
|
|
}
|
2005-03-25 23:10:55 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* creates an array based on a query, this function is a very common pattern
|
|
|
|
* used here
|
|
|
|
*
|
|
|
|
* @param string $query
|
|
|
|
* @param string $fieldname
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
function array_from_query($query, $fieldname)
|
|
|
|
{
|
|
|
|
$array = array();
|
|
|
|
|
|
|
|
$result = pwg_query($query);
|
|
|
|
while ($row = mysql_fetch_array($result))
|
|
|
|
{
|
|
|
|
array_push($array, $row[$fieldname]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $array;
|
|
|
|
}
|
2005-04-11 22:31:50 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* instantiate number list for days in a template block
|
|
|
|
*
|
|
|
|
* @param string blockname
|
|
|
|
* @param string selection
|
|
|
|
*/
|
|
|
|
function get_day_list($blockname, $selection)
|
|
|
|
{
|
|
|
|
global $template;
|
|
|
|
|
|
|
|
$template->assign_block_vars(
|
|
|
|
$blockname, array('SELECTED' => '', 'VALUE' => 0, 'OPTION' => '--'));
|
|
|
|
|
|
|
|
for ($i = 1; $i <= 31; $i++)
|
|
|
|
{
|
|
|
|
$selected = '';
|
|
|
|
if ($i == (int)$selection)
|
|
|
|
{
|
|
|
|
$selected = 'selected="selected"';
|
|
|
|
}
|
|
|
|
$template->assign_block_vars(
|
|
|
|
$blockname, array('SELECTED' => $selected,
|
|
|
|
'VALUE' => $i,
|
|
|
|
'OPTION' => str_pad($i, 2, '0', STR_PAD_LEFT)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* instantiate month list in a template block
|
|
|
|
*
|
|
|
|
* @param string blockname
|
|
|
|
* @param string selection
|
|
|
|
*/
|
|
|
|
function get_month_list($blockname, $selection)
|
|
|
|
{
|
|
|
|
global $template, $lang;
|
|
|
|
|
|
|
|
$template->assign_block_vars(
|
|
|
|
$blockname, array('SELECTED' => '',
|
|
|
|
'VALUE' => 0,
|
|
|
|
'OPTION' => '------------'));
|
|
|
|
|
|
|
|
for ($i = 1; $i <= 12; $i++)
|
|
|
|
{
|
|
|
|
$selected = '';
|
|
|
|
if ($i == (int)$selection)
|
|
|
|
{
|
|
|
|
$selected = 'selected="selected"';
|
|
|
|
}
|
|
|
|
$template->assign_block_vars(
|
|
|
|
$blockname, array('SELECTED' => $selected,
|
|
|
|
'VALUE' => $i,
|
|
|
|
'OPTION' => $lang['month'][$i]));
|
|
|
|
}
|
|
|
|
}
|
2005-04-16 18:56:32 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* fill the current user caddie with given elements, if not already in
|
|
|
|
* caddie
|
|
|
|
*
|
|
|
|
* @param array elements_id
|
|
|
|
*/
|
|
|
|
function fill_caddie($elements_id)
|
|
|
|
{
|
|
|
|
global $user;
|
|
|
|
|
|
|
|
include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
|
|
|
|
|
|
|
|
$query = '
|
|
|
|
SELECT element_id
|
|
|
|
FROM '.CADDIE_TABLE.'
|
|
|
|
WHERE user_id = '.$user['id'].'
|
|
|
|
;';
|
|
|
|
$in_caddie = array_from_query($query, 'element_id');
|
|
|
|
|
|
|
|
$caddiables = array_diff($elements_id, $in_caddie);
|
|
|
|
|
|
|
|
$datas = array();
|
|
|
|
|
|
|
|
foreach ($caddiables as $caddiable)
|
|
|
|
{
|
|
|
|
array_push($datas, array('element_id' => $caddiable,
|
|
|
|
'user_id' => $user['id']));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count($caddiables) > 0)
|
|
|
|
{
|
|
|
|
mass_inserts(CADDIE_TABLE, array('element_id','user_id'), $datas);
|
|
|
|
}
|
|
|
|
}
|
2005-06-21 21:25:59 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* returns the element name from its filename
|
|
|
|
*
|
|
|
|
* @param string filename
|
|
|
|
* @return string name
|
|
|
|
*/
|
|
|
|
function get_name_from_file($filename)
|
|
|
|
{
|
|
|
|
return str_replace('_',' ',get_filename_wo_extension($filename));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* returns the corresponding value from $lang if existing. Else, the key is
|
|
|
|
* returned
|
|
|
|
*
|
|
|
|
* @param string key
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function l10n($key)
|
|
|
|
{
|
2005-08-08 22:52:19 +02:00
|
|
|
global $lang, $conf;
|
2005-06-21 21:25:59 +02:00
|
|
|
|
- improvement: long localized messages are in HTML files instead of $lang
array. This is the case of admin/help and about pages.
- deletion: of unused functions (ts_to_mysqldt, is_image, TN_exists,
check_date_format, date_convert, get_category_directories,
get_used_metadata_list, array_remove, pwg_write_debug,
get_group_restrictions, get_all_group_restrictions, is_group_allowed,
style_select, deprecated_getAttribute).
- new: many new contextual help pages to replace descriptions previously
included in pages.
- modification: reorganisation of language files. Deletion of unused
language keys, alphabetical sort. No faq.lang.php anymore (replaced by
help.html). Only done for en_UK.iso-8859-1.
git-svn-id: http://piwigo.org/svn/trunk@862 68402e56-0260-453c-a942-63ccdbb3a9ee
2005-09-14 23:57:05 +02:00
|
|
|
if ($conf['debug_l10n'] and !isset($lang[$key]))
|
2005-08-08 22:52:19 +02:00
|
|
|
{
|
|
|
|
echo '[l10n] language key "'.$key.'" is not defined<br />';
|
|
|
|
}
|
|
|
|
|
|
|
|
return isset($lang[$key]) ? $lang[$key] : $key;
|
2005-06-21 21:25:59 +02:00
|
|
|
}
|
2005-12-03 18:33:38 +01:00
|
|
|
|
|
|
|
/**
|
2006-01-20 15:34:37 +01:00
|
|
|
* returns the corresponding value from $themeconf if existing. Else, the
|
|
|
|
* key is returned
|
2005-12-03 18:33:38 +01:00
|
|
|
*
|
|
|
|
* @param string key
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function get_themeconf($key)
|
|
|
|
{
|
|
|
|
global $themeconf;
|
|
|
|
|
|
|
|
return $themeconf[$key];
|
|
|
|
}
|
2006-01-20 15:34:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Prepends and appends a string at each value of the given array.
|
|
|
|
*
|
|
|
|
* @param array
|
|
|
|
* @param string prefix to each array values
|
|
|
|
* @param string suffix to each array values
|
|
|
|
*/
|
|
|
|
function prepend_append_array_items($array, $prepend_str, $append_str)
|
|
|
|
{
|
|
|
|
array_walk(
|
|
|
|
$array,
|
|
|
|
create_function('&$s', '$s = "'.$prepend_str.'".$s."'.$append_str.'";')
|
|
|
|
);
|
|
|
|
|
|
|
|
return $array;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2006-01-27 23:40:51 +01:00
|
|
|
* returns search rules stored into a serialized array in "search"
|
|
|
|
* table. Each search rules set is numericaly identified.
|
2006-01-20 15:34:37 +01:00
|
|
|
*
|
|
|
|
* @param int search_id
|
2006-01-27 23:40:51 +01:00
|
|
|
* @return array
|
2006-01-20 15:34:37 +01:00
|
|
|
*/
|
2006-01-27 23:40:51 +01:00
|
|
|
function get_search_array($search_id)
|
2006-01-20 15:34:37 +01:00
|
|
|
{
|
|
|
|
if (!is_numeric($search_id))
|
|
|
|
{
|
|
|
|
die('Search id must be an integer');
|
|
|
|
}
|
|
|
|
|
|
|
|
$query = '
|
|
|
|
SELECT rules
|
|
|
|
FROM '.SEARCH_TABLE.'
|
2006-01-27 23:40:51 +01:00
|
|
|
WHERE id = '.$search_id.'
|
2006-01-20 15:34:37 +01:00
|
|
|
;';
|
|
|
|
list($serialized_rules) = mysql_fetch_row(pwg_query($query));
|
|
|
|
|
2006-01-27 23:40:51 +01:00
|
|
|
return unserialize($serialized_rules);
|
|
|
|
}
|
2006-01-20 15:34:37 +01:00
|
|
|
|
2006-01-27 23:40:51 +01:00
|
|
|
/**
|
|
|
|
* returns the SQL clause from a search identifier
|
|
|
|
*
|
|
|
|
* Search rules are stored in search table as a serialized array. This array
|
|
|
|
* need to be transformed into an SQL clause to be used in queries.
|
|
|
|
*
|
|
|
|
* @param int search_id
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function get_sql_search_clause($search_id)
|
|
|
|
{
|
|
|
|
$search = get_search_array($search_id);
|
|
|
|
|
2006-01-20 15:34:37 +01:00
|
|
|
// SQL where clauses are stored in $clauses array during query
|
|
|
|
// construction
|
|
|
|
$clauses = array();
|
|
|
|
|
|
|
|
foreach (array('file','name','comment','keywords','author') as $textfield)
|
|
|
|
{
|
|
|
|
if (isset($search['fields'][$textfield]))
|
|
|
|
{
|
|
|
|
$local_clauses = array();
|
|
|
|
foreach ($search['fields'][$textfield]['words'] as $word)
|
|
|
|
{
|
|
|
|
array_push($local_clauses, $textfield." LIKE '%".$word."%'");
|
|
|
|
}
|
|
|
|
|
|
|
|
// adds brackets around where clauses
|
|
|
|
$local_clauses = prepend_append_array_items($local_clauses, '(', ')');
|
|
|
|
|
|
|
|
array_push(
|
|
|
|
$clauses,
|
|
|
|
implode(
|
|
|
|
' '.$search['fields'][$textfield]['mode'].' ',
|
|
|
|
$local_clauses
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($search['fields']['allwords']))
|
|
|
|
{
|
|
|
|
$fields = array('file', 'name', 'comment', 'keywords', 'author');
|
|
|
|
// in the OR mode, request bust be :
|
|
|
|
// ((field1 LIKE '%word1%' OR field2 LIKE '%word1%')
|
|
|
|
// OR (field1 LIKE '%word2%' OR field2 LIKE '%word2%'))
|
|
|
|
//
|
|
|
|
// in the AND mode :
|
|
|
|
// ((field1 LIKE '%word1%' OR field2 LIKE '%word1%')
|
|
|
|
// AND (field1 LIKE '%word2%' OR field2 LIKE '%word2%'))
|
|
|
|
$word_clauses = array();
|
|
|
|
foreach ($search['fields']['allwords']['words'] as $word)
|
|
|
|
{
|
|
|
|
$field_clauses = array();
|
|
|
|
foreach ($fields as $field)
|
|
|
|
{
|
|
|
|
array_push($field_clauses, $field." LIKE '%".$word."%'");
|
|
|
|
}
|
|
|
|
// adds brackets around where clauses
|
|
|
|
array_push(
|
|
|
|
$word_clauses,
|
|
|
|
implode(
|
|
|
|
"\n OR ",
|
|
|
|
$field_clauses
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
array_walk(
|
|
|
|
$word_clauses,
|
|
|
|
create_function('&$s','$s="(".$s.")";')
|
|
|
|
);
|
|
|
|
|
|
|
|
array_push(
|
|
|
|
$clauses,
|
|
|
|
"\n ".
|
|
|
|
implode(
|
|
|
|
"\n ".
|
|
|
|
$search['fields']['allwords']['mode'].
|
|
|
|
"\n ",
|
|
|
|
$word_clauses
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (array('date_available', 'date_creation') as $datefield)
|
|
|
|
{
|
|
|
|
if (isset($search['fields'][$datefield]))
|
|
|
|
{
|
|
|
|
array_push(
|
|
|
|
$clauses,
|
|
|
|
$datefield." = '".$search['fields'][$datefield]['date']."'"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (array('after','before') as $suffix)
|
|
|
|
{
|
|
|
|
$key = $datefield.'-'.$suffix;
|
|
|
|
|
|
|
|
if (isset($search['fields'][$key]))
|
|
|
|
{
|
|
|
|
array_push(
|
|
|
|
$clauses,
|
|
|
|
|
|
|
|
$datefield.
|
|
|
|
($suffix == 'after' ? ' >' : ' <').
|
|
|
|
($search['fields'][$key]['inc'] ? '=' : '').
|
|
|
|
" '".$search['fields'][$key]['date']."'"
|
|
|
|
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($search['fields']['cat']))
|
|
|
|
{
|
|
|
|
if ($search['fields']['cat']['sub_inc'])
|
|
|
|
{
|
|
|
|
// searching all the categories id of sub-categories
|
|
|
|
$cat_ids = get_subcat_ids($search['fields']['cat']['words']);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$cat_ids = $search['fields']['cat']['words'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$local_clause = 'category_id IN ('.implode(',', $cat_ids).')';
|
|
|
|
array_push($clauses, $local_clause);
|
|
|
|
}
|
|
|
|
|
|
|
|
// adds brackets around where clauses
|
|
|
|
$clauses = prepend_append_array_items($clauses, '(', ')');
|
|
|
|
|
|
|
|
$where_separator =
|
|
|
|
implode(
|
|
|
|
"\n ".$search['mode'].' ',
|
|
|
|
$clauses
|
|
|
|
);
|
|
|
|
|
|
|
|
$search_clause = $where_separator;
|
|
|
|
|
|
|
|
if (isset($forbidden))
|
|
|
|
{
|
|
|
|
$search_clause.= "\n AND ".$forbidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $search_clause;
|
|
|
|
}
|
2006-02-01 23:07:26 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns webmaster mail address depending on $conf['webmaster_id']
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function get_webmaster_mail_address()
|
|
|
|
{
|
|
|
|
global $conf;
|
|
|
|
|
|
|
|
$query = '
|
|
|
|
SELECT '.$conf['user_fields']['email'].'
|
|
|
|
FROM '.USERS_TABLE.'
|
|
|
|
WHERE '.$conf['user_fields']['id'].' = '.$conf['webmaster_id'].'
|
|
|
|
;';
|
|
|
|
list($email) = mysql_fetch_array(pwg_query($query));
|
|
|
|
|
|
|
|
return $email;
|
|
|
|
}
|
2006-02-06 22:52:16 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* which upgrades are available ?
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
function get_available_upgrade_ids()
|
|
|
|
{
|
|
|
|
$upgrades_path = PHPWG_ROOT_PATH.'install/db';
|
|
|
|
|
|
|
|
$available_upgrade_ids = array();
|
|
|
|
|
|
|
|
if ($contents = opendir($upgrades_path))
|
|
|
|
{
|
|
|
|
while (($node = readdir($contents)) !== false)
|
|
|
|
{
|
|
|
|
if (is_file($upgrades_path.'/'.$node)
|
|
|
|
and preg_match('/^(.*?)-database\.php$/', $node, $match))
|
|
|
|
{
|
|
|
|
array_push($available_upgrade_ids, $match[1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
natcasesort($available_upgrade_ids);
|
|
|
|
|
|
|
|
return $available_upgrade_ids;
|
|
|
|
}
|
2004-10-30 17:42:29 +02:00
|
|
|
?>
|