Source for file install_datapump.php
Documentation is available at install_datapump.php
// Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
// All Rights Reserved. See below for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details.
// assign next step in installation process
$gBitSmarty->assign( 'next_step',$step );
foreach( array_keys( $gBitSystem->mPackages ) as $package ) {
if( $gBitInstaller->isPackageActive( $package ) ) {
$pumpList[$package] = $file;
$gBitSmarty->assign( 'pumpList', $pumpList );
if( isset ( $_REQUEST['fSubmitDataPump'] ) ) {
if( !empty( $_REQUEST['pump_package'] ) ) {
foreach( $_REQUEST['pump_package'] as $package ) {
if( $gBitInstaller->isPackageActive( $package ) ) {
$gBitSmarty->assign( 'pumpedData',$pumpedData );
$gBitSmarty->assign( 'next_step',$step + 1 );
if( $gBitSystem->isPackageActive( 'wiki' ) && !empty( $pumpedData['Wiki'] )) {
$gBitSystem->storeConfig( 'wiki_home_page', $pumpedData['Wiki'][0], WIKI_PKG_NAME );
} elseif( isset ( $_REQUEST['skip'] )) {
$gBitSmarty->assign( 'next_step',$goto );
|