Source for file install_datapump.php
Documentation is available at install_datapump.php
* @version $Header: /cvsroot/bitweaver/_bit_install/install_datapump.php,v 1.3 2007/01/17 00:41:11 hiranchaudhuri Exp $
// Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
// assign next step in installation process
$gBitSmarty->assign( 'next_step',$step );
foreach( array_keys( $gBitSystem->mPackages ) as $package ) {
if( $gBitInstaller->isPackageActive( $package ) ) {
$gBitSmarty->assign( 'pumpList',$pumpList );
if( isset ( $_REQUEST['fSubmitDataPump'] ) ) {
foreach( $pumpList as $pump ) {
include_once( 'pump_'. $pump. '_inc.php' );
$gBitSmarty->assign( 'pumpedData',$pumpedData );
$gBitSmarty->assign( 'next_step',$step + 1 );
if( $gBitSystem->isPackageActive( 'wiki' ) ) {
$gBitSystem->storeConfig( 'wiki_home_page', $pumpedData['Wiki'][0], WIKI_PKG_NAME );
} elseif( isset ( $_REQUEST['skip'] ) ) {
$gBitSmarty->assign( 'next_step',$goto );
|