~oh-dev/openhealth/phit-tools

« back to all changes in this revision

Viewing changes to ihris-suite/lib/ihris-plan/sites/wamp/pages/local/config.values.php

  • Committer: litlfred at ibiblio
  • Date: 2009-10-23 12:59:28 UTC
  • Revision ID: litlfred@ibiblio.org-20091023125928-u5lkafz0urm9t8eq
updated ihris-suite to 4.0.1-prerelease -- not debugged

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
/*
3
 
 * © Copyright 2007, 2008 IntraHealth International, Inc.
4
 
 * 
5
 
 * This File is part of iHRIS
6
 
 * 
7
 
 * iHRIS is free software; you can redistribute it and/or modify
8
 
 * it under the terms of the GNU General Public License as published by
9
 
 * the Free Software Foundation; either version 3 of the License, or
10
 
 * (at your option) any later version.
11
 
 * 
12
 
 * This program is distributed in the hope that it will be useful,
13
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
 * GNU General Public License for more details.
16
 
 * 
17
 
 * You should have received a copy of the GNU General Public License
18
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
 
 */
20
 
/**
21
 
 * Set up all the configuration variables that can be set for each installation.
22
 
 * 
23
 
 * The main include file will include this file for all pages for the site.
24
 
 * @see main.inc.php
25
 
 * @package iHRIS
26
 
 * @subpackage DemoManage
27
 
 * @access public
28
 
 * @author Luke Duncan <lduncan@intrahealth.org> / Carl Leitner <litlfred@ibiblio.org>
29
 
 * @copyright Copyright &copy; 2007, 2008 IntraHealth International, Inc. 
30
 
 * @since Demo-v1.a
31
 
 * @version Demo-v2.a
32
 
 */
33
 
/*****************************************************************
34
 
 *                                                               *
35
 
 *                   BEGIN USER CUSTOMIZATION                    *
36
 
 *                                                               *
37
 
 *****************************************************************/
38
 
 
39
 
/**
40
 
 * Copy this file to local/config.values.php and set the values you
41
 
 * need to update there.  Anything you don't set in 
42
 
 * local/config.values.php will get its value from here.
43
 
 */
44
 
 
45
 
 
46
 
/**
47
 
 * the path to the I2CE installation. 
48
 
 * You might need to set this depending on your installation
49
 
 *    Default value is  ../../../../I2CE
50
 
 */
51
 
$i2ce_site_i2ce_path = "../../../../i2ce";
52
 
 
53
 
 
54
 
/**
55
 
 * the name of the mysql database.  You need to set this.
56
 
 */
57
 
$i2ce_site_database = 'ihris_plan' ;
58
 
 
59
 
 
60
 
/**
61
 
 * the name of the mysql user.  You need to set this.
62
 
 */
63
 
$i2ce_site_database_user = 'ihris_plan' ;
64
 
 
65
 
 
66
 
/**
67
 
 * the  mysql user's password.  You need to set this.
68
 
 */
69
 
$i2ce_site_database_password = 'plan' ;
70
 
 
71
 
 
72
 
/**
73
 
 * the name of the mysql database which holds the user table.
74
 
 * You probably do not need to set this.
75
 
 */
76
 
//$i2ce_site_user_database = "USER_DATABASE_NAME"; 
77
 
 
78
 
 
79
 
 
80
 
/**
81
 
 * the configuration xml file for the site module.  You need to set this.
82
 
 */
83
 
$i2ce_site_module_config = "../ihris-plan-Wamp.xml";
84
 
 
85
 
 
86
 
 
87
 
 
88
 
/*****************************************************************
89
 
 *                                                               *
90
 
 *                   END USER CUSTOMIZATION                      *
91
 
 *              Do not edit anything below this line             *
92
 
 *                                                               *
93
 
 *****************************************************************/
94
 
 
95
 
 
96
 
 
97
 
 
98
 
 
99
 
 
100
 
# Local Variables:
101
 
# mode: php
102
 
# c-default-style: "bsd"
103
 
# indent-tabs-mode: nil
104
 
# c-basic-offset: 4
105
 
# End: