~ihris-india-team/indian-ihris/india-manage-demo

« back to all changes in this revision

Viewing changes to pages/config.values.php

  • Committer: Luke Duncan
  • Date: 2010-12-17 08:52:46 UTC
  • Revision ID: lduncan@intrahealth.org-20101217085246-lyzlwsawihulnsap
Initial import of India demonstration site.

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 dsn to connect to your databse
 
56
 */
 
57
//$i2ce_site_dsn = 'mysql://john:pass@localhost/database' ;
 
58
 
 
59
 
 
60
/**
 
61
 * Initialization string for user access.  See http://open.intrahealth.org/mediawiki/Pluggable_Authentication
 
62
 *  
 
63
 */
 
64
$i2ce_site_user_access_init = null;
 
65
 
 
66
 
 
67
 
 
68
/**
 
69
 * the configuration xml file for the site module.  You need to set this.
 
70
 */
 
71
//$i2ce_site_module_config = "MY_SITE_MODULE.xml";
 
72
 
 
73
 
 
74
/*****************************************************************
 
75
 *                                                               *
 
76
 *                   END USER CUSTOMIZATION                      *
 
77
 *              Do not edit anything below this line             *
 
78
 *                                                               *
 
79
 *****************************************************************/
 
80
 
 
81
 
 
82
 
 
83
 
 
84
 
 
85
 
 
86
# Local Variables:
 
87
# mode: php
 
88
# c-default-style: "bsd"
 
89
# indent-tabs-mode: nil
 
90
# c-basic-offset: 4
 
91
# End: