2001-01-11 10:52:33 +01:00
< ? php
/************************************************************************** \
2004-05-05 14:06:13 +02:00
* eGroupWare API - Translation class for SQL *
2001-01-13 11:18:50 +01:00
* This file written by Joseph Engo < jengo @ phpgroupware . org > *
* and Dan Kuykendall < seek3r @ phpgroupware . org > *
2003-08-28 16:31:11 +02:00
* Handles multi - language support use SQL tables *
2001-01-13 11:18:50 +01:00
* Copyright ( C ) 2000 , 2001 Joseph Engo *
2004-03-14 18:31:43 +01:00
* ------------------------------------------------------------------------ *
2004-05-05 14:06:13 +02:00
* This library is part of the eGroupWare API *
* http :// www . egroupware . org / api *
2001-01-16 14:52:32 +01:00
* ------------------------------------------------------------------------ *
2001-01-13 11:18:50 +01:00
* This library is free software ; you can redistribute it and / or modify it *
* under the terms of the GNU Lesser General Public License as published by *
* the Free Software Foundation ; either version 2.1 of the License , *
* or any later version . *
* This library 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 Lesser General Public License for more details . *
* You should have received a copy of the GNU Lesser General Public License *
* along with this library ; if not , write to the Free Software Foundation , *
* Inc . , 59 Temple Place , Suite 330 , Boston , MA 02111 - 1307 USA *
2001-01-11 10:52:33 +01:00
\ **************************************************************************/
/* $Id$ */
2003-10-04 15:24:34 +02:00
// define the maximal length of a message_id, all message_ids have to be unique
2003-04-02 19:46:37 +02:00
// in this length, our column is varchar 255, but addslashes might add some length
2003-10-04 15:24:34 +02:00
if ( ! defined ( 'MAX_MESSAGE_ID_LENGTH' ))
{
define ( 'MAX_MESSAGE_ID_LENGTH' , 230 );
}
2003-10-05 12:44:16 +02:00
// some constanst for pre php4.3
if ( ! defined ( 'PHP_SHLIB_SUFFIX' ))
{
define ( 'PHP_SHLIB_SUFFIX' , strtoupper ( substr ( PHP_OS , 0 , 3 )) == 'WIN' ? 'dll' : 'so' );
}
if ( ! defined ( 'PHP_SHLIB_PREFIX' ))
{
define ( 'PHP_SHLIB_PREFIX' , PHP_SHLIB_SUFFIX == 'dll' ? 'php_' : '' );
}
2003-10-04 15:24:34 +02:00
2001-06-15 23:29:33 +02:00
class translation
{
2003-09-14 12:20:46 +02:00
var $userlang = 'en' ;
var $loaded_apps = array ();
2003-10-05 12:44:16 +02:00
function translation ( $warnings = False )
2003-10-04 15:24:34 +02:00
{
2004-05-04 22:26:08 +02:00
for ( $i = 1 ; $i <= 9 ; $i ++ )
{
$this -> placeholders [] = '%' . $i ;
}
2003-10-04 15:24:34 +02:00
$this -> db = is_object ( $GLOBALS [ 'phpgw' ] -> db ) ? $GLOBALS [ 'phpgw' ] -> db : $GLOBALS [ 'phpgw_setup' ] -> db ;
2003-10-05 04:06:11 +02:00
if ( ! isset ( $GLOBALS [ 'phpgw_setup' ]))
{
2003-10-24 02:54:28 +02:00
$this -> system_charset = @ $GLOBALS [ 'phpgw_info' ][ 'server' ][ 'system_charset' ];
2003-10-05 04:06:11 +02:00
}
else
{
$this -> db -> query ( " SELECT config_value FROM phpgw_config WHERE config_app='phpgwapi' AND config_name='system_charset' " , __LINE__ , __FILE__ );
if ( $this -> db -> next_record ())
{
$this -> system_charset = $this -> db -> f ( 0 );
}
}
2003-10-05 12:44:16 +02:00
// load multi-byte-string-extension if needed, and set its internal encodeing to your system_charset
2003-10-08 12:50:24 +02:00
if ( $this -> system_charset && substr ( $this -> system_charset , 0 , 9 ) != 'iso-8859-1' )
2003-10-05 12:44:16 +02:00
{
2003-10-05 12:57:50 +02:00
if ( $this -> mbstring = extension_loaded ( 'mbstring' ) || @ dl ( PHP_SHLIB_PREFIX . 'mbstring.' . PHP_SHLIB_SUFFIX ))
2003-10-05 12:44:16 +02:00
{
ini_set ( 'mbstring.internal_encoding' , $this -> system_charset );
2003-10-07 03:02:19 +02:00
if ( ini_get ( 'mbstring.func_overload' ) < 7 )
2003-10-05 12:44:16 +02:00
{
2004-01-25 22:29:20 +01:00
if ( $warnings )
{
echo " <p>Warning: Please set <b>mbstring.func_overload = 7</b> in your php.ini for useing <b> $this->system_charset </b> as your charset !!!</p> \n " ;
}
2003-10-05 12:44:16 +02:00
}
}
else
{
2004-01-25 22:29:20 +01:00
if ( $warnings )
{
echo " <p>Warning: Please get and/or enable the <b>mbstring extension</b> in your php.ini for useing <b> $this->system_charset </b> as your charset, we are defaulting to <b>iconv</b> for now !!!</p> \n " ;
}
2003-10-05 12:44:16 +02:00
}
}
2003-10-05 04:06:11 +02:00
}
/*
@ function charset
2003-10-05 12:44:16 +02:00
@ abstract returns the charset to use ( ! $lang ) or the charset of the lang - files or $lang
2003-10-05 04:06:11 +02:00
*/
function charset ( $lang = False )
{
if ( $lang )
{
2003-10-05 12:44:16 +02:00
if ( ! isset ( $this -> charsets [ $lang ]))
{
$this -> db -> query ( " SELECT content FROM phpgw_lang WHERE lang=' $lang ' AND message_id='charset' AND app_name='common' " , __LINE__ , __FILE__ );
2003-10-06 13:30:21 +02:00
$this -> charsets [ $lang ] = $this -> db -> next_record () ? strtolower ( $this -> db -> f ( 0 )) : 'iso-8859-1' ;
2003-10-05 12:44:16 +02:00
}
return $this -> charsets [ $lang ];
2003-10-05 04:06:11 +02:00
}
2003-10-15 14:24:38 +02:00
if ( $this -> system_charset ) // do we have a system-charset ==> return it
{
return $this -> system_charset ;
}
// if no translations are loaded (system-startup) use a default, else lang('charset')
2003-10-24 02:54:28 +02:00
return ! is_array ( @ $GLOBALS [ 'lang' ]) ? 'iso-8859-1' : strtolower ( $this -> translate ( 'charset' ));
2003-10-04 15:24:34 +02:00
}
2003-09-14 12:20:46 +02:00
function init ()
{
// post-nuke and php-nuke are using $GLOBALS['lang'] too
// but not as array!
// this produces very strange results
2003-10-24 02:54:28 +02:00
if ( ! is_array ( @ $GLOBALS [ 'lang' ]))
2003-09-14 12:20:46 +02:00
{
$GLOBALS [ 'lang' ] = array ();
}
if ( $GLOBALS [ 'phpgw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'lang' ])
{
$this -> userlang = $GLOBALS [ 'phpgw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'lang' ];
}
$this -> add_app ( 'common' );
2003-09-23 23:26:58 +02:00
if ( ! count ( $GLOBALS [ 'lang' ]))
{
$this -> userlang = 'en' ;
$this -> add_app ( 'common' );
}
2003-09-14 12:20:46 +02:00
$this -> add_app ( $GLOBALS [ 'phpgw_info' ][ 'flags' ][ 'currentapp' ]);
}
2003-10-04 15:24:34 +02:00
/*!
@ function translate
@ abstract translates a phrase and evtl . substitute some variables
@ returns the translation
*/
2003-10-10 02:07:20 +02:00
function translate ( $key , $vars = false , $not_found = '*' )
2002-02-20 05:44:19 +01:00
{
2003-10-24 02:54:28 +02:00
if ( ! is_array ( @ $GLOBALS [ 'lang' ]) || ! count ( $GLOBALS [ 'lang' ]))
2001-06-15 23:29:33 +02:00
{
2003-09-14 12:20:46 +02:00
$this -> init ();
2001-06-15 23:29:33 +02:00
}
2003-10-10 02:07:20 +02:00
$ret = $key . $not_found ; // save key if we dont find a translation
2003-09-14 12:20:46 +02:00
2003-08-28 16:31:11 +02:00
if ( isset ( $GLOBALS [ 'lang' ][ $key ]))
2002-02-20 05:44:19 +01:00
{
2003-08-28 16:31:11 +02:00
$ret = $GLOBALS [ 'lang' ][ $key ];
2002-02-20 05:44:19 +01:00
}
2004-05-04 22:26:08 +02:00
else
{
$new_key = strtolower ( trim ( substr ( $key , 0 , MAX_MESSAGE_ID_LENGTH )));
if ( isset ( $GLOBALS [ 'lang' ][ $new_key ]))
{
// we save the original key for performance
$ret = $GLOBALS [ 'lang' ][ $key ] = $GLOBALS [ 'lang' ][ $new_key ];
}
}
if ( is_array ( $vars ) && count ( $vars ))
2001-06-15 23:29:33 +02:00
{
2004-05-04 22:26:08 +02:00
if ( count ( $vars ) > 1 )
{
$ret = str_replace ( $this -> placeholders , $vars , $ret );
}
else
{
$ret = str_replace ( '%1' , $vars [ 0 ], $ret );
}
2001-06-15 23:29:33 +02:00
}
return $ret ;
}
2003-10-04 15:24:34 +02:00
/*!
@ function add_app
@ abstract adds translations for an application from the database to the lang - array
@ syntax add_app ( $app , $lang = False )
@ param $app name of the application to add ( or 'common' for the general translations )
@ param $lang 2 - char code of the language to use or False if the users language should be used
*/
2003-09-15 10:42:47 +02:00
function add_app ( $app , $lang = False )
2001-06-15 23:29:33 +02:00
{
2003-09-15 10:42:47 +02:00
$lang = $lang ? $lang : $this -> userlang ;
if ( ! isset ( $this -> loaded_apps [ $app ]) || $this -> loaded_apps [ $app ] != $lang )
2003-08-28 16:31:11 +02:00
{
2003-09-15 10:42:47 +02:00
$sql = " select message_id,content from phpgw_lang where lang=' " . $lang . " ' and app_name=' " . $app . " ' " ;
2003-10-04 15:24:34 +02:00
$this -> db -> query ( $sql , __LINE__ , __FILE__ );
while ( $this -> db -> next_record ())
2003-09-14 12:20:46 +02:00
{
2003-10-04 15:24:34 +02:00
$GLOBALS [ 'lang' ][ strtolower ( $this -> db -> f ( 'message_id' ))] = $this -> db -> f ( 'content' );
2003-09-14 12:20:46 +02:00
}
2003-09-15 10:42:47 +02:00
$this -> loaded_apps [ $app ] = $lang ;
2001-06-15 23:29:33 +02:00
}
}
2003-09-14 12:20:46 +02:00
2003-10-04 15:24:34 +02:00
/*!
@ function get_installed_langs
@ abstract returns a list of installed langs
@ returns array with 2 - character lang - code as key and descriptiv lang - name as data
*/
2003-04-02 19:46:37 +02:00
function get_installed_langs ()
{
2003-09-14 12:20:46 +02:00
if ( ! is_array ( $this -> langs ))
2003-04-02 19:46:37 +02:00
{
2003-10-04 15:24:34 +02:00
$this -> db -> query ( " SELECT DISTINCT l.lang,ln.lang_name FROM phpgw_lang l,phpgw_languages ln WHERE l.lang = ln.lang_id " , __LINE__ , __FILE__ );
if ( ! $this -> db -> num_rows ())
2003-09-14 12:20:46 +02:00
{
return False ;
}
2003-10-04 15:24:34 +02:00
while ( $this -> db -> next_record ())
2003-09-14 12:20:46 +02:00
{
2004-04-13 16:19:52 +02:00
$this -> langs [ $this -> db -> f ( 'lang' )] = $this -> db -> f ( 'lang_name' );
}
foreach ( $this -> langs as $lang => $name )
{
$this -> langs [ $lang ] = $this -> translate ( $name , False , '' );
2003-09-14 12:20:46 +02:00
}
2003-04-02 19:46:37 +02:00
}
2003-09-14 12:20:46 +02:00
return $this -> langs ;
2003-04-02 19:46:37 +02:00
}
2003-10-04 15:24:34 +02:00
/*!
@ function get_installed_charsets
@ abstract returns a list of installed charsets
@ returns array with charset as key and comma - separated list of langs useing the charset as data
*/
function get_installed_charsets ()
{
if ( ! is_array ( $this -> charsets ))
{
$this -> db -> query ( " SELECT DISTINCT l.lang,ln.lang_name,l.content AS charset FROM phpgw_lang l,phpgw_languages ln WHERE l.lang = ln.lang_id AND l.message_id='charset' " , __LINE__ , __FILE__ );
if ( ! $this -> db -> num_rows ())
{
return False ;
}
while ( $this -> db -> next_record ())
{
2003-10-06 13:30:21 +02:00
$data = & $this -> charsets [ $charset = strtolower ( $this -> db -> f ( 'charset' ))];
2003-10-04 15:24:34 +02:00
$data .= ( $data ? ', ' : $charset . ': ' ) .
$this -> db -> f ( 'lang_name' ) . ' (' . $this -> db -> f ( 'lang' ) . ')' ;
}
}
return $this -> charsets ;
}
2003-10-05 04:06:11 +02:00
/*!
@ function convert
@ abstract converts a string $data from charset $from to charset $to
2003-10-05 17:41:59 +02:00
@ syntax convert ( $data , $from = False , $to = False )
@ param $data string or array of strings to convert
@ param $from charset $data is in or False if it should be detected
@ param $to charset to convert to or False for the system - charset
@ returns the converted string
2003-10-05 04:06:11 +02:00
*/
2003-10-05 17:41:59 +02:00
function convert ( $data , $from = False , $to = False )
2003-10-05 04:06:11 +02:00
{
2003-10-05 17:41:59 +02:00
if ( is_array ( $data ))
{
foreach ( $data as $key => $str )
{
$ret [ $key ] = $this -> convert ( $str , $from , $to );
}
return $ret ;
}
2004-02-26 11:57:57 +01:00
2004-03-14 18:31:43 +01:00
if ( $from )
{
$from = strtolower ( $from );
}
if ( $to )
{
$to = strtolower ( $to );
}
2004-02-26 11:57:57 +01:00
2003-10-05 17:41:59 +02:00
if ( ! $from )
{
$from = $this -> mbstring ? strtolower ( mb_detect_encoding ( $data )) : 'iso-8859-1' ;
2004-03-14 18:31:43 +01:00
if ( $from == 'ascii' )
{
$from = 'iso-8859-1' ;
}
2003-10-05 17:41:59 +02:00
//echo "<p>autodetected charset of '$data' = '$from'</p>\n";
}
2004-03-14 18:31:43 +01:00
/*
2003-10-16 06:59:46 +02:00
php does not seem to support gb2312
2004-02-26 07:42:20 +01:00
but seems to be able to decode it as EUC - CN
2003-10-07 22:56:33 +02:00
*/
2004-02-26 11:57:57 +01:00
switch ( $from )
2003-10-07 22:56:33 +02:00
{
2004-02-26 07:42:20 +01:00
case 'gb2312' :
case 'gb18030' :
2004-03-14 18:31:43 +01:00
$from = 'EUC-CN' ;
2004-02-26 07:42:20 +01:00
break ;
case 'us-ascii' :
2004-06-11 07:32:03 +02:00
case 'macroman' :
2004-02-26 07:42:20 +01:00
$from = 'iso-8859-1' ;
break ;
2003-10-10 07:01:49 +02:00
}
2003-10-05 17:41:59 +02:00
if ( ! $to )
{
2003-10-07 03:02:19 +02:00
$to = $this -> charset ();
2003-10-05 17:41:59 +02:00
}
2003-10-08 12:50:24 +02:00
if ( $from == $to || ! $from || ! $to || ! $data )
2003-10-05 12:44:16 +02:00
{
return $data ;
}
if ( $from == 'iso-8859-1' && $to == 'utf-8' )
2003-10-05 04:06:11 +02:00
{
return utf8_encode ( $data );
}
2003-10-05 12:44:16 +02:00
if ( $to == 'iso-8859-1' && $from == 'utf-8' )
2003-10-05 04:06:11 +02:00
{
return utf8_decode ( $data );
}
2003-10-05 12:44:16 +02:00
if ( $this -> mbstring )
{
2003-10-15 21:15:25 +02:00
return @ mb_convert_encoding ( $data , $to , $from );
2003-10-05 12:44:16 +02:00
}
2003-10-10 01:38:24 +02:00
if ( function_exists ( 'iconv' ))
2003-10-08 12:50:24 +02:00
{
2004-05-29 03:14:29 +02:00
if ( $from == 'EUC-CN' ) $from = 'gb18030' ;
// the above is to workaround patch #962307
// if using EUC-CN, for iconv it strickly follow GB2312 and fail
// in an email on the first Traditional/Japanese/Korean character,
// but in reality when people send mails in GB2312, UMA mostly use
// extended GB13000/GB18030 which allow T/Jap/Korean characters.
2004-02-26 11:57:57 +01:00
if (( $data = iconv ( $from , $to , $data )))
2003-10-10 01:38:24 +02:00
{
return $data ;
}
2003-10-08 12:50:24 +02:00
}
2003-10-10 01:38:24 +02:00
#die("<p>Can't convert from charset '$from' to '$to' without the <b>mbstring extension</b> !!!</p>");
2004-03-14 18:31:43 +01:00
2003-10-10 01:38:24 +02:00
// this is not good, not convert did succed
return $data ;
2003-10-05 04:06:11 +02:00
}
2003-10-04 15:24:34 +02:00
/*!
@ function install_langs
@ abstract installs translations for the selected langs into the database
@ syntax install_langs ( $langs , $upgrademethod = 'dumpold' )
@ param $langs array of langs to install ( as data NOT keys ( ! ))
@ param $upgrademethod 'dumpold' ( recommended & fastest ), 'addonlynew' languages , 'addmissing' phrases
*/
2003-10-05 04:06:11 +02:00
function install_langs ( $langs , $upgrademethod = 'dumpold' , $only_app = False )
2003-10-04 15:24:34 +02:00
{
@ set_time_limit ( 0 ); // we might need some time
if ( ! isset ( $GLOBALS [ 'phpgw_info' ][ 'server' ]) && $upgrademethod != 'dumpold' )
{
2004-03-14 18:31:43 +01:00
$this -> db -> query ( " SELECT * FROM phpgw_config WHERE config_app='phpgwapi' AND config_name='lang_ctimes' " , __LINE__ , __FILE__ );
2003-10-04 15:24:34 +02:00
if ( $this -> db -> next_record ())
{
$GLOBALS [ 'phpgw_info' ][ 'server' ][ 'lang_ctimes' ] = unserialize ( stripslashes ( $this -> db -> f ( 'config_value' )));
}
}
if ( ! is_array ( $langs ) || ! count ( $langs ))
{
return ;
}
$this -> db -> transaction_begin ();
if ( $upgrademethod == 'dumpold' )
{
// dont delete the custom main- & loginscreen messages every time
2004-03-14 18:31:43 +01:00
$this -> db -> query ( " DELETE FROM phpgw_lang WHERE app_name != 'mainscreen' AND app_name != 'loginscreen' " , __LINE__ , __FILE__ );
2003-10-04 15:24:34 +02:00
//echo '<br>Test: dumpold';
$GLOBALS [ 'phpgw_info' ][ 'server' ][ 'lang_ctimes' ] = array ();
}
foreach ( $langs as $lang )
{
2003-10-15 14:29:27 +02:00
//echo '<br>Working on: ' . $lang;
2003-10-04 15:24:34 +02:00
$addlang = False ;
if ( $upgrademethod == 'addonlynew' )
{
//echo "<br>Test: addonlynew - select count(*) from phpgw_lang where lang='".$lang."'";
$this -> db -> query ( " SELECT COUNT(*) FROM phpgw_lang WHERE lang=' " . $lang . " ' " , __LINE__ , __FILE__ );
$this -> db -> next_record ();
if ( $this -> db -> f ( 0 ) == 0 )
{
//echo '<br>Test: addonlynew - True';
$addlang = True ;
}
}
2003-10-05 17:41:59 +02:00
if ( $addlang && $upgrademethod == 'addonlynew' || $upgrademethod != 'addonlynew' )
2003-10-04 15:24:34 +02:00
{
//echo '<br>Test: loop above file()';
if ( ! is_object ( $GLOBALS [ 'phpgw_setup' ]))
{
$GLOBALS [ 'phpgw_setup' ] = CreateObject ( 'phpgwapi.setup' );
$GLOBALS [ 'phpgw_setup' ] -> db = $this -> db ;
}
$setup_info = $GLOBALS [ 'phpgw_setup' ] -> detection -> get_versions ();
$setup_info = $GLOBALS [ 'phpgw_setup' ] -> detection -> get_db_versions ( $setup_info );
$raw = array ();
2003-10-05 04:06:11 +02:00
$apps = $only_app ? array ( $only_app ) : array_keys ( $setup_info );
2003-10-04 15:24:34 +02:00
// Visit each app/setup dir, look for a phpgw_lang file
2003-10-05 04:06:11 +02:00
foreach ( $apps as $app )
2003-10-04 15:24:34 +02:00
{
2003-10-05 04:06:11 +02:00
$appfile = PHPGW_SERVER_ROOT . SEP . $app . SEP . 'setup' . SEP . 'phpgw_' . strtolower ( $lang ) . '.lang' ;
2003-10-04 15:24:34 +02:00
//echo '<br>Checking in: ' . $app['name'];
2003-10-05 04:06:11 +02:00
if ( $GLOBALS [ 'phpgw_setup' ] -> app_registered ( $app ) && file_exists ( $appfile ))
2003-10-04 15:24:34 +02:00
{
2003-10-15 14:29:27 +02:00
//echo '<br>Including: ' . $appfile;
2003-10-04 15:24:34 +02:00
$lines = file ( $appfile );
foreach ( $lines as $line )
{
2004-05-09 12:17:44 +02:00
// explode with "\t" and removing "\n" with str_replace, needed to work with mbstring.overload=7
list ( $message_id , $app_name ,, $content ) = explode ( " \t " , $line );
$content = str_replace ( " \n " , '' , $content );
2004-05-09 00:30:19 +02:00
$message_id = substr ( strtolower ( chop ( $message_id )), 0 , MAX_MESSAGE_ID_LENGTH );
$app_name = chop ( $app_name );
2003-10-04 15:24:34 +02:00
$raw [ $app_name ][ $message_id ] = $content ;
}
2003-10-07 11:59:40 +02:00
$GLOBALS [ 'phpgw_info' ][ 'server' ][ 'lang_ctimes' ][ $lang ][ $app ] = filectime ( $appfile );
2003-10-04 15:24:34 +02:00
}
}
2003-10-20 21:03:46 +02:00
$charset = strtolower ( @ $raw [ 'common' ][ 'charset' ] ? $raw [ 'common' ][ 'charset' ] : $this -> charset ( $lang ));
2003-10-05 04:06:11 +02:00
//echo "<p>lang='$lang', charset='$charset', system_charset='$this->system_charset')</p>\n";
2003-10-15 14:29:27 +02:00
//echo "<p>raw($lang)=<pre>".print_r($raw,True)."</pre>\n";
2003-10-04 15:24:34 +02:00
foreach ( $raw as $app_name => $ids )
{
2004-05-09 00:30:19 +02:00
$app_name = $this -> db -> db_addslashes ( $app_name );
2003-10-04 15:24:34 +02:00
foreach ( $ids as $message_id => $content )
{
2003-10-20 21:03:46 +02:00
if ( $this -> system_charset )
{
$content = $this -> convert ( $content , $charset , $this -> system_charset );
}
2004-05-09 00:30:19 +02:00
$message_id = $this -> db -> db_addslashes ( $message_id );
$content = $this -> db -> db_addslashes ( $content );
2003-10-04 15:24:34 +02:00
$addit = False ;
//echo '<br>APPNAME:' . $app_name . ' PHRASE:' . $message_id;
if ( $upgrademethod == 'addmissing' )
{
//echo '<br>Test: addmissing';
2004-02-08 21:00:35 +01:00
$this -> db -> query ( " SELECT content,CASE WHEN app_name IN ('common') then 1 else 0 END AS in_api FROM phpgw_lang WHERE message_id=' $message_id ' AND lang=' $lang ' AND (app_name=' $app_name ' OR app_name='common') ORDER BY in_api DESC " , __LINE__ , __FILE__ );
2003-10-04 15:24:34 +02:00
2003-10-05 17:41:59 +02:00
if ( ! ( $row = $this -> db -> row ( True )))
2003-10-04 15:24:34 +02:00
{
$addit = True ;
}
2003-10-05 17:41:59 +02:00
else
{
if ( $row [ 'in_api' ]) // same phrase is in the api
{
$addit = $row [ 'content' ] != $content ; // only add if not identical
}
$row2 = $this -> db -> row ( True );
if ( ! $row [ 'in_api' ] || $app_name == 'common' || $row2 ) // phrase is alread in the db
{
$addit = $content != ( $row2 ? $row2 [ 'content' ] : $row [ 'content' ]);
if ( $addit ) // if we want to add/update it ==> delete it
{
$this -> db -> query ( $q = " DELETE FROM phpgw_lang WHERE message_id=' $message_id ' AND lang=' $lang ' AND app_name=' $app_name ' " , __LINE__ , __FILE__ );
}
}
}
2003-10-04 15:24:34 +02:00
}
if ( $addit || $upgrademethod == 'addonlynew' || $upgrademethod == 'dumpold' )
{
if ( $message_id && $content )
{
//echo "<br>adding - insert into phpgw_lang values ('$message_id','$app_name','$lang','$content')";
$result = $this -> db -> query ( " INSERT INTO phpgw_lang (message_id,app_name,lang,content) VALUES(' $message_id ',' $app_name ',' $lang ',' $content ') " , __LINE__ , __FILE__ );
2003-12-14 18:07:16 +01:00
if (( int ) $result <= 0 )
2003-10-04 15:24:34 +02:00
{
echo " <br>Error inserting record: phpgw_lang values (' $message_id ',' $app_name ',' $lang ',' $content ') " ;
}
}
}
}
}
}
}
$this -> db -> transaction_commit ();
// update the ctimes of the installed langsfiles for the autoloading of the lang-files
//
2003-11-03 15:41:17 +01:00
$config = CreateObject ( 'phpgwapi.config.save_value' );
$config -> save_value ( 'lang_ctimes' , $GLOBALS [ 'phpgw_info' ][ 'server' ][ 'lang_ctimes' ], 'phpgwapi' );
2003-10-04 15:24:34 +02:00
}
/*!
@ function autolaod_changed_langfiles
@ abstract re - loads all ( ! ) langfiles if one langfile for the an app and the language of the user has changed
*/
function autoload_changed_langfiles ()
{
//echo "<h1>check_langs()</h1>\n";
if ( $GLOBALS [ 'phpgw_info' ][ 'server' ][ 'lang_ctimes' ] && ! is_array ( $GLOBALS [ 'phpgw_info' ][ 'server' ][ 'lang_ctimes' ]))
{
$GLOBALS [ 'phpgw_info' ][ 'server' ][ 'lang_ctimes' ] = unserialize ( $GLOBALS [ 'phpgw_info' ][ 'server' ][ 'lang_ctimes' ]);
}
//_debug_array($GLOBALS['phpgw_info']['server']['lang_ctimes']);
$lang = $GLOBALS [ 'phpgw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'lang' ];
$apps = $GLOBALS [ 'phpgw_info' ][ 'user' ][ 'apps' ];
$apps [ 'phpgwapi' ] = True ; // check the api too
foreach ( $apps as $app => $data )
{
$fname = PHPGW_SERVER_ROOT . " / $app /setup/phpgw_ $lang .lang " ;
if ( file_exists ( $fname ))
{
$ctime = filectime ( $fname );
2004-01-25 22:29:20 +01:00
/* This is done to avoid string offset error at least in php5 */
$tmp = $GLOBALS [ 'phpgw_info' ][ 'server' ][ 'lang_ctimes' ][ $lang ];
$ltime = ( int ) $tmp [ $app ];
unset ( $tmp );
2003-10-04 15:24:34 +02:00
//echo "checking lang='$lang', app='$app', ctime='$ctime', ltime='$ltime'<br>\n";
if ( $ctime != $ltime )
{
// update all langs
2003-10-08 12:50:24 +02:00
$installed = $this -> get_installed_langs ();
2003-10-15 14:29:27 +02:00
//echo "<p>install_langs(".print_r($installed,True).")</p>\n";
2003-10-08 12:50:24 +02:00
$this -> install_langs ( $installed ? array_keys ( $installed ) : array ());
2003-10-04 15:24:34 +02:00
break ;
}
}
}
}
2003-10-05 04:06:11 +02:00
/* Following functions are called for app (un)install */
/*!
@ function get_langs
@ abstract return array of installed languages , e . g . array ( 'de' , 'en' )
*/
function get_langs ( $DEBUG = False )
{
if ( $DEBUG )
{
echo '<br>get_langs(): checking db...' . " \n " ;
}
2003-10-05 12:57:50 +02:00
if ( ! $this -> langs )
{
$this -> get_installed_langs ();
}
return $this -> langs ? array_keys ( $this -> langs ) : array ();
2003-10-05 04:06:11 +02:00
}
/*!
@ function drop_langs
@ abstract delete all lang entries for an application , return True if langs were found
@ param $appname app_name whose translations you want to delete
*/
function drop_langs ( $appname , $DEBUG = False )
{
if ( $DEBUG )
{
echo '<br>drop_langs(): Working on: ' . $appname ;
}
$this -> db -> query ( " SELECT COUNT(message_id) FROM phpgw_lang WHERE app_name=' $appname ' " , __LINE__ , __FILE__ );
$this -> db -> next_record ();
if ( $this -> db -> f ( 0 ))
{
$this -> db -> query ( " DELETE FROM phpgw_lang WHERE app_name=' $appname ' " , __LINE__ , __FILE__ );
return True ;
}
return False ;
}
/*!
@ function add_langs
@ abstract process an application ' s lang files , calling get_langs () to see what langs the admin installed already
@ param $appname app_name of application to process
*/
function add_langs ( $appname , $DEBUG = False , $force_langs = False )
{
$langs = $this -> get_langs ( $DEBUG );
if ( is_array ( $force_langs ))
{
foreach ( $force_langs as $lang )
{
if ( ! in_array ( $lang , $langs ))
{
$langs [] = $lang ;
}
}
}
if ( $DEBUG )
{
echo '<br>add_langs(): chose these langs: ' ;
_debug_array ( $langs );
}
$this -> install_langs ( $langs , 'addmissing' , $appname );
}
2001-06-15 23:29:33 +02:00
}