forked from extern/egroupware
3358a39461
which is required (but not declared) by importexport: - added requirement to importexport/setup/setup.inc.php - gracefully fail if dom is not available - add dom extension to rpm requirements --> this has been reported many times on the list as "missing wiki pages", which is caused by suppressed fatal error in importexports default-records, stoping other apps default records to run
41 lines
1.4 KiB
PHP
41 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* eGroupWare - importexport
|
|
*
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package importexport
|
|
* @link http://www.egroupware.org
|
|
* @author Cornelius Weiss <nelius@cwtech.de>
|
|
* @version $Id$
|
|
*/
|
|
|
|
if (!extension_loaded('dom'))
|
|
{
|
|
echo "<p>Required PHP DOM extension missing, installation of ImportExport definitions aborted.</p>\n";
|
|
return; // otherwise we mess up the whole eGroupware install process
|
|
}
|
|
require_once(EGW_INCLUDE_ROOT. '/importexport/inc/class.bodefinitions.inc.php');
|
|
|
|
// This sets up $GLOBALS['egw']->accounts and $GLOBALS['egw']->db
|
|
$GLOBALS['egw_setup']->setup_account_object();
|
|
|
|
// Fetch translation object
|
|
$GLOBALS['egw_setup']->translation->setup_translation_sql();
|
|
if ( !is_object($GLOBALS['egw']->translation) ) $GLOBALS['egw']->translation = $GLOBALS['egw_setup']->translation->sql;
|
|
|
|
// step through every source code intstalled app
|
|
$egwdir = dir(EGW_INCLUDE_ROOT);
|
|
while (false !== ($appdir = $egwdir->read())) {
|
|
$defdir = EGW_INCLUDE_ROOT. "/$appdir/importexport/definitions";
|
|
if ( !is_dir( $defdir ) ) continue;
|
|
|
|
// step through each file in defdir of app
|
|
$d = dir($defdir);
|
|
while (false !== ($entry = $d->read())) {
|
|
$file = $defdir. '/'. $entry;
|
|
list( $filename, $extension) = explode('.',$entry);
|
|
if ( $extension != 'xml' ) continue;
|
|
bodefinitions::import( $file );
|
|
}
|
|
}
|