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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
<?php
/**
* @version $Header: /cvsroot/bitweaver/_bit_install/install_bit_settings.php,v 1.6 2005/10/12 15:13:51 spiderr 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 );
/**
* simple_set_toggle
*/
function simple_set_toggle($feature, $pPackageName=NULL) {
toggle_preference( $feature, (isset($_REQUEST[$feature][0]) ? $_REQUEST[$feature][0] : NULL), $pPackageName );
}
/**
* toggle_preference
*/
function toggle_preference( $pName, $pValue, $pPackageName=NULL ) {
global $_REQUEST, $gBitSystem, $gBitSmarty;
if (isset($pValue) && $pValue == "on") {
$prefValue='y';
} elseif( isset($pValue) && $pValue != "n" && strlen( $pValue ) == 1 ) {
$prefValue=$pValue;
} else {
$prefValue='n';
}
$gBitSystem->storePreference( $pName, $prefValue, $pPackageName );
}
/**
* simple_set_value
*/
function simple_set_value($feature) {
global $_REQUEST, $gBitSystem, $gBitSmarty;
if (isset($_REQUEST[$feature])) {
$gBitSystem->storePreference($feature, $_REQUEST[$feature]);
$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(
'bitIndex',
'feature_server_name',
'siteTitle',
'site_slogan',
'bitlanguage',
);
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 ) {
simple_set_value( $item );
}
$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 );
?>
|