2001-07-30 17:59:25 +02:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
2004-01-27 21:49:25 +01:00
|
|
|
* eGroupWare - Setup *
|
|
|
|
* http://www.egroupware.org *
|
2001-07-30 17:59:25 +02:00
|
|
|
* -------------------------------------------- *
|
2002-02-17 21:23:26 +01:00
|
|
|
* This file written by Joseph Engo<jengo@phpgroupware.org> *
|
|
|
|
* and Dan Kuykendall<seek3r@phpgroupware.org> *
|
|
|
|
* and Mark Peters<skeeter@phpgroupware.org> *
|
2004-01-27 21:49:25 +01:00
|
|
|
* and Miles Lott<milosch@groupwhere.org> *
|
2002-02-17 21:23:26 +01:00
|
|
|
* -------------------------------------------- *
|
2001-07-30 17:59:25 +02:00
|
|
|
* 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; either version 2 of the License, or (at your *
|
|
|
|
* option) any later version. *
|
|
|
|
\**************************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2004-03-09 22:05:28 +01:00
|
|
|
error_reporting(error_reporting() & ~E_NOTICE);
|
2005-03-04 15:44:21 +01:00
|
|
|
|
|
|
|
// for an old header, we need to setup the reference before including it
|
|
|
|
if (!is_array($GLOBALS['phpgw_info'])) $GLOBALS['phpgw_info'] =& $GLOBALS['egw_info'];
|
|
|
|
|
2001-07-30 17:59:25 +02:00
|
|
|
if(file_exists('../header.inc.php'))
|
|
|
|
{
|
|
|
|
include('../header.inc.php');
|
|
|
|
}
|
2005-03-04 15:44:21 +01:00
|
|
|
// for an old header we need to setup a reference for the domains
|
|
|
|
if (!is_array($GLOBALS['egw_domain'])) $GLOBALS['egw_domain'] =& $GLOBALS['phpgw_domain'];
|
2003-08-28 16:31:11 +02:00
|
|
|
|
|
|
|
if (!function_exists('version_compare'))//version_compare() is only available in PHP4.1+
|
|
|
|
{
|
2003-10-10 01:08:04 +02:00
|
|
|
echo 'eGroupWare now requires PHP 4.1 or greater.<br>';
|
2003-08-28 16:31:11 +02:00
|
|
|
echo 'Please contact your System Administrator';
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2002-03-03 22:53:00 +01:00
|
|
|
/* If we included the header.inc.php, but it is somehow broken, cover ourselves... */
|
2005-03-04 13:40:28 +01:00
|
|
|
if(!defined('EGW_SERVER_ROOT') && !defined('EGW_INCLUDE_ROOT'))
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2005-03-04 13:40:28 +01:00
|
|
|
define('EGW_SERVER_ROOT','..');
|
|
|
|
define('EGW_INCLUDE_ROOT','..');
|
2001-07-30 17:59:25 +02:00
|
|
|
define('PHPGW_SERVER_ROOT','..');
|
|
|
|
define('PHPGW_INCLUDE_ROOT','..');
|
|
|
|
}
|
|
|
|
|
2005-03-04 13:40:28 +01:00
|
|
|
include(EGW_INCLUDE_ROOT . '/phpgwapi/inc/common_functions.inc.php');
|
2001-07-30 17:59:25 +02:00
|
|
|
|
|
|
|
define('SEP',filesystem_separator());
|
|
|
|
|
|
|
|
/*!
|
2001-09-17 04:10:34 +02:00
|
|
|
@function lang
|
|
|
|
@abstract function to handle multilanguage support
|
2001-07-30 17:59:25 +02:00
|
|
|
*/
|
2001-09-17 04:10:34 +02:00
|
|
|
function lang($key,$m1='',$m2='',$m3='',$m4='',$m5='',$m6='',$m7='',$m8='',$m9='',$m10='')
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2001-09-17 04:10:34 +02:00
|
|
|
if(is_array($m1))
|
|
|
|
{
|
|
|
|
$vars = $m1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$vars = array($m1,$m2,$m3,$m4,$m5,$m6,$m7,$m8,$m9,$m10);
|
|
|
|
}
|
2005-03-04 15:44:21 +01:00
|
|
|
$value = $GLOBALS['egw_setup']->translation->translate("$key", $vars );
|
2001-07-30 17:59:25 +02:00
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
@function get_langs
|
|
|
|
@abstract returns array of languages we support, with enabled set
|
|
|
|
to True if the lang file exists
|
|
|
|
*/
|
|
|
|
function get_langs()
|
|
|
|
{
|
2002-03-03 22:53:00 +01:00
|
|
|
$f = fopen('./lang/languages','rb');
|
|
|
|
while($line = fgets($f,200))
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
|
|
|
list($x,$y) = split("\t",$line);
|
|
|
|
$languages[$x]['lang'] = trim($x);
|
|
|
|
$languages[$x]['descr'] = trim($y);
|
|
|
|
$languages[$x]['available'] = False;
|
|
|
|
}
|
|
|
|
fclose($f);
|
|
|
|
|
|
|
|
$d = dir('./lang');
|
2004-07-10 12:59:37 +02:00
|
|
|
while($file=$d->read())
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2004-07-10 12:59:37 +02:00
|
|
|
if(preg_match('/^phpgw_([-a-z]+).lang$/i',$file,$matches))
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2004-07-10 12:59:37 +02:00
|
|
|
$languages[$matches[1]]['available'] = True;
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$d->close();
|
|
|
|
|
|
|
|
//print_r($languages);
|
|
|
|
return $languages;
|
|
|
|
}
|
|
|
|
|
2003-09-23 15:08:40 +02:00
|
|
|
function lang_select($onChange=False,$ConfigLang='')
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2003-09-23 15:08:40 +02:00
|
|
|
if (!$ConfigLang)
|
|
|
|
{
|
|
|
|
$ConfigLang = get_var('ConfigLang',Array('POST','COOKIE'));
|
|
|
|
}
|
2003-08-28 16:31:11 +02:00
|
|
|
$select = '<select name="ConfigLang"'.($onChange ? ' onChange="this.form.submit();"' : '').'>' . "\n";
|
2001-07-30 17:59:25 +02:00
|
|
|
$languages = get_langs();
|
2004-07-10 11:25:53 +02:00
|
|
|
usort($languages,create_function('$a,$b','return strcmp(@$a[\'descr\'],@$b[\'descr\']);'));
|
2003-09-23 15:08:40 +02:00
|
|
|
foreach($languages as $data)
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2003-08-28 16:31:11 +02:00
|
|
|
if($data['available'] && !empty($data['lang']))
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
|
|
|
$selected = '';
|
|
|
|
$short = substr($data['lang'],0,2);
|
2003-08-28 16:31:11 +02:00
|
|
|
if ($short == $ConfigLang || empty($ConfigLang) && $short == substr($_SERVER['HTTP_ACCEPT_LANGUAGE'],0,2))
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
|
|
|
$selected = ' selected';
|
|
|
|
}
|
|
|
|
$select .= '<option value="' . $data['lang'] . '"' . $selected . '>' . $data['descr'] . '</option>' . "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$select .= '</select>' . "\n";
|
|
|
|
|
|
|
|
return $select;
|
|
|
|
}
|
|
|
|
|
2005-03-04 13:40:28 +01:00
|
|
|
if(file_exists(EGW_SERVER_ROOT.'/phpgwapi/setup/setup.inc.php'))
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2005-03-04 13:40:28 +01:00
|
|
|
include(EGW_SERVER_ROOT.'/phpgwapi/setup/setup.inc.php'); /* To set the current core version */
|
2001-09-17 04:10:34 +02:00
|
|
|
/* This will change to just use setup_info */
|
2005-03-04 13:40:28 +01:00
|
|
|
$GLOBALS['egw_info']['server']['versions']['current_header'] = $setup_info['phpgwapi']['versions']['current_header'];
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-03-04 13:40:28 +01:00
|
|
|
$GLOBALS['egw_info']['server']['versions']['phpgwapi'] = 'Undetected';
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
|
2005-03-04 13:40:28 +01:00
|
|
|
$GLOBALS['egw_info']['server']['app_images'] = 'templates/default/images';
|
2001-07-30 17:59:25 +02:00
|
|
|
|
2005-03-04 13:40:28 +01:00
|
|
|
$GLOBALS['egw_setup'] = CreateObject('setup.setup',True,True);
|
|
|
|
$GLOBALS['phpgw_setup'] =& $GLOBALS['egw_setup'];
|