mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-16 04:53:13 +01:00
199 lines
5.2 KiB
PHP
199 lines
5.2 KiB
PHP
|
<?php
|
||
|
/**************************************************************************\
|
||
|
* phpGroupWare - Setup *
|
||
|
* http://www.phpgroupware.org *
|
||
|
* -------------------------------------------- *
|
||
|
* 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$ */
|
||
|
|
||
|
/* ######## Start security check ########## */
|
||
|
$d1 = strtolower(substr($phpgw_info['server']['api_inc'],0,3));
|
||
|
$d2 = strtolower(substr($phpgw_info['server']['server_root'],0,3));
|
||
|
$d3 = strtolower(substr($phpgw_info['server']['app_inc'],0,3));
|
||
|
if($d1 == 'htt' || $d1 == 'ftp' || $d2 == 'htt' || $d2 == 'ftp' || $d3 == 'htt' || $d3 == 'ftp')
|
||
|
{
|
||
|
echo 'Failed attempt to break in via an old Security Hole!<br>';
|
||
|
exit;
|
||
|
}
|
||
|
unset($d1);unset($d2);unset($d3);
|
||
|
/* ######## End security check ########## */
|
||
|
if(file_exists('../header.inc.php'))
|
||
|
{
|
||
|
include('../header.inc.php');
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
define('PHPGW_SERVER_ROOT','..');
|
||
|
define('PHPGW_INCLUDE_ROOT','..');
|
||
|
}
|
||
|
|
||
|
function CreateObject($classname, $constructor_param = "")
|
||
|
{
|
||
|
global $phpgw, $phpgw_info, $phpgw_domain;
|
||
|
$classpart = explode (".", $classname);
|
||
|
$appname = $classpart[0];
|
||
|
$classname = $classpart[1];
|
||
|
if (!$phpgw_info["flags"]["included_classes"][$classname])
|
||
|
{
|
||
|
$phpgw_info["flags"]["included_classes"][$classname] = True;
|
||
|
include(PHPGW_INCLUDE_ROOT."/".$appname."/inc/class.".$classname.".inc.php");
|
||
|
// include("/var/www/phpgroupware/".$appname."/inc/class.".$classname.".inc.php");
|
||
|
}
|
||
|
if ($constructor_param == "")
|
||
|
{
|
||
|
$obj = new $classname;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
$obj = new $classname($constructor_param);
|
||
|
}
|
||
|
return $obj;
|
||
|
}
|
||
|
|
||
|
// This is needed is some parts of setup, until we include the API directly
|
||
|
function filesystem_separator()
|
||
|
{
|
||
|
if (PHP_OS == 'Windows' || PHP_OS == 'OS/2')
|
||
|
{
|
||
|
return '\\';
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
return '/';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
define('SEP',filesystem_separator());
|
||
|
|
||
|
function get_account_id($account_id = '',$default_id = '')
|
||
|
{
|
||
|
global $phpgw, $phpgw_info;
|
||
|
|
||
|
if (gettype($account_id) == 'integer')
|
||
|
{
|
||
|
return $account_id;
|
||
|
}
|
||
|
elseif ($account_id == '')
|
||
|
{
|
||
|
if ($default_id == '')
|
||
|
{
|
||
|
return $phpgw_info['user']['account_id'];
|
||
|
}
|
||
|
elseif (gettype($default_id) == 'string')
|
||
|
{
|
||
|
return $phpgw->accounts->name2id($default_id);
|
||
|
}
|
||
|
return intval($default_id);
|
||
|
}
|
||
|
elseif (gettype($account_id) == 'string')
|
||
|
{
|
||
|
if($phpgw->accounts->exists(intval($account_id)) == True)
|
||
|
{
|
||
|
return intval($account_id);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
return $phpgw->accounts->name2id($account_id);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/*!
|
||
|
@function lang
|
||
|
@abstract function to deal with multilanguage support
|
||
|
*/
|
||
|
function lang($key, $m1="", $m2="", $m3="", $m4="", $m5="", $m6="", $m7="", $m8="", $m9="", $m10="" )
|
||
|
{
|
||
|
global $phpgw_setup;
|
||
|
// # TODO: check if $m1 is of type array.
|
||
|
// If so, use it instead of $m2-$mN (Stephan)
|
||
|
$vars = array( $m1, $m2, $m3, $m4, $m5, $m6, $m7, $m8, $m9, $m10 );
|
||
|
$value = $phpgw_setup->translate("$key", $vars );
|
||
|
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()
|
||
|
{
|
||
|
$f = fopen('./lang/languages','r');
|
||
|
while ($line = fgets($f,200))
|
||
|
{
|
||
|
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');
|
||
|
while($entry=$d->read())
|
||
|
{
|
||
|
if (ereg("phpgw_",$entry))
|
||
|
{
|
||
|
$z = substr($entry,6,2);
|
||
|
$languages[$z]['available'] = True;
|
||
|
}
|
||
|
}
|
||
|
$d->close();
|
||
|
|
||
|
//print_r($languages);
|
||
|
return $languages;
|
||
|
}
|
||
|
|
||
|
function lang_select()
|
||
|
{
|
||
|
global $ConfigLang;
|
||
|
|
||
|
$select = '<select name="ConfigLang">' . "\n";
|
||
|
$languages = get_langs();
|
||
|
while (list($null,$data) = each($languages))
|
||
|
{
|
||
|
if ($data['available'])
|
||
|
{
|
||
|
$selected = '';
|
||
|
$short = substr($data['lang'],0,2);
|
||
|
if ($short == $ConfigLang)
|
||
|
{
|
||
|
$selected = ' selected';
|
||
|
}
|
||
|
$select .= '<option value="' . $data['lang'] . '"' . $selected . '>' . $data['descr'] . '</option>' . "\n";
|
||
|
}
|
||
|
}
|
||
|
$select .= '</select>' . "\n";
|
||
|
|
||
|
return $select;
|
||
|
}
|
||
|
|
||
|
// Include to check user authorization against the
|
||
|
// password in ../header.inc.php to protect all of the setup
|
||
|
// pages from unauthorized use.
|
||
|
|
||
|
if(file_exists(PHPGW_SERVER_ROOT.'/phpgwapi/setup/setup.inc.php'))
|
||
|
{
|
||
|
include(PHPGW_SERVER_ROOT.'/phpgwapi/setup/setup.inc.php'); // To set the current core version
|
||
|
// This will change to just use setup_info
|
||
|
$phpgw_info['server']['versions']['current_header'] = $setup_info['phpgwapi']['versions']['current_header'];
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
$phpgw_info['server']['versions']['phpgwapi'] = 'Undetected';
|
||
|
}
|
||
|
|
||
|
$phpgw_info['server']['app_images'] = 'templates/default/images';
|
||
|
|
||
|
include('./inc/class.setup.inc.php');
|
||
|
$phpgw_setup = new phpgw_setup;
|
||
|
|
||
|
//include('./inc/class.schema_proc.inc.php');
|
||
|
//$phpgw_lang = CreateObject('setup.setup_lang',$lang);
|
||
|
?>
|