summaryrefslogtreecommitdiff
path: root/install_bit_settings.php
blob: a055c9ff23b331f34a844bdcb93a7b4114f75f78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
/**
 * @version $Header: /cvsroot/bitweaver/_bit_install/install_bit_settings.php,v 1.10 2006/02/08 21:51:13 squareing Exp $
 * @package install
 * @subpackage functions
 */

// 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 );

function simple_set_value( $package, $feature ) {
	global $_REQUEST, $gBitSystem, $gBitSmarty;
	if( isset( $_REQUEST[$feature] ) ) {
		$gBitSystem->storePreference( $feature, $_REQUEST[$feature], $package );
		$gBitSmarty->assign( $feature, $_REQUEST[$feature] );
	}
}

// pass all package data to template
$gBitSmarty->assign_by_ref( 'schema', $gBitInstaller->mPackages );

// settings that aren't just toggles
$formInstallValues = array(
	'bit_index'            => 'kernel',
	'feature_server_name'  => 'kernel',
	'site_title'           => 'kernel',
	'site_slogan'          => 'kernel',
	'bitlanguage'          => 'languages',
);

if( extension_loaded( 'imagick' ) && extension_loaded( 'gd' ) ) {
	$gBitSmarty->assign( 'choose_image_processor', TRUE );
	$formInstallValues[] = 'image_processor';
}

// get list of available languages
$languages = array();
$languages = $gBitLanguage->listLanguages();
$gBitSmarty->assign_by_ref("languages",$languages );

// process form
if( isset( $_REQUEST['fSubmitBitSettings'] ) ) {
	foreach( $formInstallValues as $item => $package) {
		simple_set_value( $package, $item );
	}

	if (empty($_REQUEST['bitlanguage'])) {
		$_REQUEST['bitlanguage'] = 'en';
	}

	if (!array_key_exists($_REQUEST['bitlanguage'], $languages)) {
		$languages[$_REQUEST['bitlanguage']] = '';
	}

	$gBitLanguage->setLanguage( $_REQUEST['bitlanguage'] );
	$gBitSmarty->assign( "siteLanguage",$languages[$_REQUEST['bitlanguage']] );
	// advance a step in the installer
	$app = '_done';
	$gBitSmarty->assign( 'next_step',$step + 1 );
} elseif( isset( $_REQUEST['skip'] ) ) {
	$goto = $step + 1;
	header( "Location: install.php?step=$goto" );
}

// get list of foreign packages that are ready to be installed
// @TODO this isn't working yet, since the info stuff isn't read from schema_inc.php on this page
$foreign_packages = array();
foreach( $gBitSystem->mPackages as $package ) {
	if( isset( $package['info']['install'] ) ) {
		$foreign_packages[] = $package;
	}
}
$gBitSmarty->assign( "foreign_packages", $foreign_packages );
?>