2001-07-30 17:59:25 +02:00
|
|
|
<?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$ */
|
|
|
|
|
|
|
|
class phpgw_setup_detection
|
|
|
|
{
|
|
|
|
var $db;
|
|
|
|
var $oProc;
|
|
|
|
var $tables;
|
|
|
|
|
|
|
|
function get_versions()
|
|
|
|
{
|
|
|
|
$d = dir(PHPGW_SERVER_ROOT);
|
|
|
|
while($entry=$d->read())
|
|
|
|
{
|
2001-11-21 13:07:58 +01:00
|
|
|
if (!ereg('setup',$entry) && is_dir(PHPGW_SERVER_ROOT.'/'.$entry))
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
|
|
|
$f = PHPGW_SERVER_ROOT . '/' . $entry . '/setup/setup.inc.php';
|
2001-11-21 13:07:58 +01:00
|
|
|
if (@file_exists ($f))
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2001-11-29 04:58:22 +01:00
|
|
|
include($f);
|
2001-07-30 17:59:25 +02:00
|
|
|
$setup_info[$entry]['filename'] = $f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$d->close();
|
|
|
|
|
2002-01-07 11:50:42 +01:00
|
|
|
// _debug_array($setup_info);
|
|
|
|
@ksort($setup_info);
|
2001-07-30 17:59:25 +02:00
|
|
|
return $setup_info;
|
|
|
|
}
|
|
|
|
|
2001-09-17 04:10:34 +02:00
|
|
|
function get_db_versions($setup_info='')
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2001-09-17 04:10:34 +02:00
|
|
|
$this->db->Halt_On_Error = 'no';
|
2001-07-30 17:59:25 +02:00
|
|
|
$tables = $this->db->table_names();
|
|
|
|
while(list($key,$val) = @each($tables))
|
|
|
|
{
|
|
|
|
$tname[] = $val['table_name'];
|
|
|
|
}
|
|
|
|
$newapps = $this->isinarray('phpgw_applications',$tname);
|
|
|
|
$oldapps = $this->isinarray('applications',$tname);
|
|
|
|
|
|
|
|
if ( ( is_array($tables) ) && ( count($tables) > 0 ) && ( $newapps || $oldapps ) )
|
|
|
|
{
|
|
|
|
/* one of these tables exists. checking for post/pre beta version */
|
|
|
|
if ($newapps)
|
|
|
|
{
|
2001-09-17 04:10:34 +02:00
|
|
|
$this->db->query('select * from phpgw_applications');
|
2001-07-30 17:59:25 +02:00
|
|
|
while (@$this->db->next_record())
|
|
|
|
{
|
|
|
|
$setup_info[$this->db->f('app_name')]['currentver'] = $this->db->f('app_version');
|
|
|
|
$setup_info[$this->db->f('app_name')]['enabled'] = $this->db->f('app_enabled');
|
|
|
|
}
|
2002-01-11 04:40:59 +01:00
|
|
|
/* This is to catch old setup installs that did not have phpgwapi listed as an app */
|
2001-07-30 17:59:25 +02:00
|
|
|
if (!$setup_info['phpgwapi']['currentver'])
|
|
|
|
{
|
2002-01-07 11:50:42 +01:00
|
|
|
$tmp = $setup_info['phpgwapi']['version']; /* save the file version */
|
2001-07-30 17:59:25 +02:00
|
|
|
$setup_info['phpgwapi']['currentver'] = $setup_info['admin']['currentver'];
|
2002-01-07 11:50:42 +01:00
|
|
|
$setup_info['phpgwapi']['version'] = $setup_info['admin']['currentver'];
|
2001-07-30 17:59:25 +02:00
|
|
|
$setup_info['phpgwapi']['enabled'] = $setup_info['admin']['enabled'];
|
2002-01-07 11:50:42 +01:00
|
|
|
// _debug_array($setup_info['phpgwapi']);exit;
|
|
|
|
$GLOBALS['setup_info'] = $setup_info;
|
2001-07-30 17:59:25 +02:00
|
|
|
$this->register_app('phpgwapi');
|
2002-01-07 11:50:42 +01:00
|
|
|
$setup_info['phpgwapi']['version'] = $tmp; /* restore the file version */
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
elseif ($oldapps)
|
|
|
|
{
|
|
|
|
$this->db->query('select * from applications');
|
|
|
|
while (@$this->db->next_record())
|
|
|
|
{
|
|
|
|
if ($this->db->f('app_name') == 'admin')
|
|
|
|
{
|
|
|
|
$setup_info['phpgwapi']['currentver'] = $this->db->f('app_version');
|
|
|
|
}
|
|
|
|
$setup_info[$this->db->f('app_name')]['currentver'] = $this->db->f('app_version');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-01-07 11:50:42 +01:00
|
|
|
// _debug_array($setup_info);
|
2001-07-30 17:59:25 +02:00
|
|
|
return $setup_info;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* app status values:
|
|
|
|
U Upgrade required/available
|
|
|
|
R upgrade in pRogress
|
|
|
|
C upgrade Completed successfully
|
|
|
|
D Dependency failure
|
2002-01-13 20:52:47 +01:00
|
|
|
P Post-install dependency failure
|
2001-07-30 17:59:25 +02:00
|
|
|
F upgrade Failed
|
|
|
|
V Version mismatch at end of upgrade (Not used, proposed only)
|
|
|
|
M Missing files at start of upgrade (Not used, proposed only)
|
|
|
|
*/
|
|
|
|
function compare_versions($setup_info)
|
|
|
|
{
|
|
|
|
reset ($setup_info);
|
|
|
|
while (list ($key, $value) = each ($setup_info))
|
|
|
|
{
|
|
|
|
//echo '<br>'.$setup_info[$key]['name'].'STATUS: '.$setup_info[$key]['status'];
|
2002-01-11 04:40:59 +01:00
|
|
|
/* Only set this if it has not already failed to upgrade - Milosch */
|
2001-07-30 17:59:25 +02:00
|
|
|
if (!( ($setup_info[$key]['status'] == 'F') || ($setup_info[$key]['status'] == 'C') ))
|
|
|
|
{
|
|
|
|
//if ($setup_info[$key]['currentver'] > $setup_info[$key]['version'])
|
|
|
|
if ($this->amorethanb($setup_info[$key]['currentver'],$setup_info[$key]['version']))
|
|
|
|
{
|
|
|
|
$setup_info[$key]['status'] = 'V';
|
|
|
|
}
|
|
|
|
elseif ($setup_info[$key]['currentver'] == $setup_info[$key]['version'])
|
|
|
|
{
|
|
|
|
$setup_info[$key]['status'] = 'C';
|
|
|
|
}
|
|
|
|
elseif ($this->alessthanb($setup_info[$key]['currentver'],$setup_info[$key]['version']))
|
|
|
|
{
|
|
|
|
$setup_info[$key]['status'] = 'U';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$setup_info[$key]['status'] = 'U';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-01-07 11:50:42 +01:00
|
|
|
// _debug_array($setup_info);
|
2001-07-30 17:59:25 +02:00
|
|
|
return $setup_info;
|
|
|
|
}
|
|
|
|
|
|
|
|
function check_depends($setup_info)
|
|
|
|
{
|
|
|
|
reset ($setup_info);
|
|
|
|
/* Run the list of apps */
|
|
|
|
while (list ($key, $value) = each ($setup_info))
|
|
|
|
{
|
|
|
|
/* Does this app have any depends */
|
|
|
|
if (isset($value['depends']))
|
|
|
|
{
|
|
|
|
/* If so find out which apps it depends on */
|
|
|
|
while (list ($depkey, $depvalue) = each ($value['depends']))
|
|
|
|
{
|
|
|
|
/* I set this to False until we find a compatible version of this app */
|
|
|
|
$setup_info['depends'][$depkey]['status'] = False;
|
|
|
|
/* Now we loop thru the versions looking for a compatible version */
|
|
|
|
while (list ($depskey, $depsvalue) = each ($value['depends'][$depkey]['versions']))
|
|
|
|
{
|
|
|
|
$major = $this->get_major($setup_info[$value['depends'][$depkey]['appname']]['currentver']);
|
|
|
|
if ($major == $depsvalue)
|
|
|
|
{
|
|
|
|
$setup_info['depends'][$depkey]['status'] = True;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-01-11 04:40:59 +01:00
|
|
|
/*
|
|
|
|
Finally, we loop through the dependencies again to look for apps that still have a failure status
|
|
|
|
If we find one, we set the apps overall status as a dependency failure.
|
|
|
|
*/
|
2001-07-30 17:59:25 +02:00
|
|
|
reset ($value['depends']);
|
|
|
|
while (list ($depkey, $depvalue) = each ($value['depends']))
|
|
|
|
{
|
|
|
|
if ($setup_info['depends'][$depkey]['status'] == False)
|
|
|
|
{
|
2002-01-11 04:40:59 +01:00
|
|
|
/* Only set this if it has not already failed to upgrade - Milosch */
|
2002-01-13 20:52:47 +01:00
|
|
|
if ($setup_info[$key]['status'] != 'F' )//&& $setup_info[$key]['status'] != 'C')
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2002-01-13 20:52:47 +01:00
|
|
|
if($setup_info[$key]['status'] == 'C')
|
|
|
|
{
|
2002-01-15 02:46:27 +01:00
|
|
|
$setup_info[$key]['status'] = 'D';
|
2002-01-13 20:52:47 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-01-15 02:46:27 +01:00
|
|
|
$setup_info[$key]['status'] = 'P';
|
|
|
|
}
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $setup_info;
|
|
|
|
}
|
|
|
|
|
2002-02-03 18:02:56 +01:00
|
|
|
/*
|
|
|
|
Called during the mass upgrade routine (Stage 1) to check for apps
|
|
|
|
that wish to be excluded from this process.
|
|
|
|
*/
|
|
|
|
function upgrade_exclude($setup_info)
|
|
|
|
{
|
|
|
|
@reset ($setup_info);
|
|
|
|
while(list($key,$value) = @each($setup_info))
|
|
|
|
{
|
|
|
|
if(isset($value['no_mass_update']))
|
|
|
|
{
|
|
|
|
unset($setup_info[$key]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $setup_info;
|
|
|
|
}
|
|
|
|
|
2001-07-30 17:59:25 +02:00
|
|
|
function check_header()
|
|
|
|
{
|
2001-09-17 04:10:34 +02:00
|
|
|
if(!file_exists('../header.inc.php'))
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['phpgw_info']['setup']['header_msg'] = 'Stage One';
|
2001-09-17 04:10:34 +02:00
|
|
|
return '1';
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
if (!isset($GLOBALS['phpgw_info']['server']['header_admin_password']))
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['phpgw_info']['setup']['header_msg'] = 'Stage One (No header admin password set)';
|
2001-09-17 04:10:34 +02:00
|
|
|
return '2';
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
2001-11-21 16:01:43 +01:00
|
|
|
elseif (!isset($GLOBALS['phpgw_domain']))
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['phpgw_info']['setup']['header_msg'] = 'Stage One (Upgrade your header.inc.php)';
|
2001-09-17 04:10:34 +02:00
|
|
|
return '3';
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
2001-11-21 16:01:43 +01:00
|
|
|
elseif ($GLOBALS['phpgw_info']['server']['versions']['header'] != $GLOBALS['phpgw_info']['server']['versions']['current_header'])
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['phpgw_info']['setup']['header_msg'] = 'Stage One (Upgrade your header.inc.php)';
|
2001-09-17 04:10:34 +02:00
|
|
|
return '3';
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* header.inc.php part settled. Moving to authentication */
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['phpgw_info']['setup']['header_msg'] = 'Stage One (Completed)';
|
2001-09-17 04:10:34 +02:00
|
|
|
return '10';
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function check_db()
|
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$setup_info = $GLOBALS['setup_info'];
|
2001-07-30 17:59:25 +02:00
|
|
|
|
2001-09-17 04:10:34 +02:00
|
|
|
$this->db->Halt_On_Error = 'no';
|
2002-01-07 11:50:42 +01:00
|
|
|
// _debug_array($setup_info);
|
2001-07-30 17:59:25 +02:00
|
|
|
|
|
|
|
if (isset($setup_info['phpgwapi']['currentver']))
|
|
|
|
{
|
|
|
|
$setup_info = $this->get_db_versions($setup_info);
|
|
|
|
}
|
2002-01-07 11:50:42 +01:00
|
|
|
// _debug_array($setup_info);
|
2001-07-30 17:59:25 +02:00
|
|
|
if (isset($setup_info['phpgwapi']['currentver']))
|
|
|
|
{
|
|
|
|
if ($setup_info['phpgwapi']['currentver'] == $setup_info['phpgwapi']['version'])
|
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['phpgw_info']['setup']['header_msg'] = 'Stage 1 (Tables Complete)';
|
2001-07-30 17:59:25 +02:00
|
|
|
return 10;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['phpgw_info']['setup']['header_msg'] = 'Stage 1 (Tables need upgrading)';
|
2001-07-30 17:59:25 +02:00
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* no tables, so checking if we can create them */
|
|
|
|
$this->db->query('CREATE TABLE phpgw_testrights ( testfield varchar(5) NOT NULL )');
|
|
|
|
if (! $this->db->Errno)
|
|
|
|
{
|
|
|
|
$this->db->query('DROP TABLE phpgw_testrights');
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['phpgw_info']['setup']['header_msg'] = 'Stage 3 (Install Applications)';
|
2001-07-30 17:59:25 +02:00
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['phpgw_info']['setup']['header_msg'] = 'Stage 1 (Create Database)';
|
2001-07-30 17:59:25 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function check_config()
|
|
|
|
{
|
2001-09-17 04:10:34 +02:00
|
|
|
$this->db->Halt_On_Error = 'no';
|
2002-01-11 04:40:59 +01:00
|
|
|
if ($GLOBALS['phpgw_info']['setup']['stage']['db'] != 10)
|
|
|
|
{
|
|
|
|
return '';
|
|
|
|
}
|
2001-07-30 17:59:25 +02:00
|
|
|
|
2002-01-11 04:40:59 +01:00
|
|
|
/* Since 0.9.10pre6 config table is named as phpgw_config */
|
2001-07-30 17:59:25 +02:00
|
|
|
$config_table = 'config';
|
2001-11-21 16:01:43 +01:00
|
|
|
$ver = explode('.',$GLOBALS['phpgw_info']['server']['versions']['phpgwapi']);
|
2001-07-30 17:59:25 +02:00
|
|
|
|
|
|
|
if(ereg("([0-9]+)(pre)([0-9]+)",$ver[2],$regs))
|
|
|
|
{
|
|
|
|
if(($regs[1] == '10') && ($regs[3] >= '6'))
|
|
|
|
{
|
|
|
|
$config_table = 'phpgw_config';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@$this->db->query("select config_value from $config_table where config_name='freshinstall'");
|
|
|
|
$this->db->next_record();
|
|
|
|
$configed = $this->db->f('config_value');
|
|
|
|
if ($configed)
|
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['phpgw_info']['setup']['header_msg'] = 'Stage 2 (Needs Configuration)';
|
2001-07-30 17:59:25 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['phpgw_info']['setup']['header_msg'] = 'Stage 2 (Configuration OK)';
|
2001-07-30 17:59:25 +02:00
|
|
|
return 10;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function check_lang()
|
|
|
|
{
|
2001-09-17 04:10:34 +02:00
|
|
|
$this->db->Halt_On_Error = 'no';
|
2002-02-17 20:31:50 +01:00
|
|
|
if($GLOBALS['phpgw_info']['setup']['stage']['db'] != 10)
|
2001-09-17 04:10:34 +02:00
|
|
|
{
|
|
|
|
return '';
|
|
|
|
}
|
2001-07-30 17:59:25 +02:00
|
|
|
|
2002-02-17 20:31:50 +01:00
|
|
|
if($this->alessthanb($GLOBALS['setup_info']['phpgwapi']['currentver'], '0.9.15.002'))
|
|
|
|
{
|
|
|
|
$langtbl = 'lang';
|
|
|
|
$langstbl = 'languages';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$langtbl = 'phpgw_lang';
|
|
|
|
$langstbl = 'phpgw_languages';
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->db->query("SELECT DISTINCT lang FROM $langtbl",__LINE__,__FILE__);
|
2001-07-30 17:59:25 +02:00
|
|
|
if ($this->db->num_rows() == 0)
|
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['phpgw_info']['setup']['header_msg'] = 'Stage 3 (No languages installed)';
|
2001-07-30 17:59:25 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-02-17 20:31:50 +01:00
|
|
|
while(@$this->db->next_record())
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['phpgw_info']['setup']['installed_langs'][$this->db->f('lang')] = $this->db->f('lang');
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
2002-02-17 20:31:50 +01:00
|
|
|
reset($GLOBALS['phpgw_info']['setup']['installed_langs']);
|
|
|
|
while(list($key, $value) = each($GLOBALS['phpgw_info']['setup']['installed_langs']))
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2002-02-17 20:31:50 +01:00
|
|
|
$sql = "SELECT lang_name FROM $langstbl WHERE lang_id = '".$value."';";
|
2001-07-30 17:59:25 +02:00
|
|
|
$this->db->query($sql);
|
|
|
|
$this->db->next_record();
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['phpgw_info']['setup']['installed_langs'][$value] = $this->db->f('lang_name');
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['phpgw_info']['setup']['header_msg'] = 'Stage 3 (Completed)';
|
2001-07-30 17:59:25 +02:00
|
|
|
return 10;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
@function check_app_tables
|
|
|
|
@abstract Verify that all of an app's tables exist in the db
|
|
|
|
@param $appname
|
|
|
|
@param $any optional, set to True to see if any of the apps tables are installed
|
|
|
|
*/
|
|
|
|
function check_app_tables($appname,$any=False)
|
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$setup_info = $GLOBALS['setup_info'];
|
2001-07-30 17:59:25 +02:00
|
|
|
|
|
|
|
if($setup_info[$appname]['tables'])
|
|
|
|
{
|
2002-01-11 04:40:59 +01:00
|
|
|
/* Make a copy, else we send some callers into an infinite loop */
|
2001-07-30 17:59:25 +02:00
|
|
|
$copy = $setup_info;
|
2001-09-17 04:10:34 +02:00
|
|
|
$this->db->Halt_On_Error = 'no';
|
2001-07-30 17:59:25 +02:00
|
|
|
$tablenames = $this->db->table_names();
|
|
|
|
while(list($key,$val) = @each($tablenames))
|
|
|
|
{
|
|
|
|
$tables[] = $val['table_name'];
|
|
|
|
}
|
|
|
|
while(list($key,$val) = @each($copy[$appname]['tables']))
|
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
if ($GLOBALS['DEBUG']) { echo '<br>check_app_tables(): Checking: ' . $appname . ',table: ' . $val; }
|
2001-07-30 17:59:25 +02:00
|
|
|
if(!$this->isinarray($val,$tables))
|
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
if ($GLOBALS['DEBUG']) { echo '<br>check_app_tables(): ' . $val . ' missing!'; }
|
2001-07-30 17:59:25 +02:00
|
|
|
if (!$any)
|
|
|
|
{
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$none++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ($any)
|
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
if ($GLOBALS['DEBUG']) { echo '<br>check_app_tables(): Some tables installed'; }
|
2001-07-30 17:59:25 +02:00
|
|
|
return True;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($none && $any)
|
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
if ($GLOBALS['DEBUG']) { echo '<br>check_app_tables(): No tables installed'; }
|
2001-07-30 17:59:25 +02:00
|
|
|
return False;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
if ($GLOBALS['DEBUG']) { echo '<br>check_app_tables(): All tables installed'; }
|
2001-07-30 17:59:25 +02:00
|
|
|
return True;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|