source: companies/celepar/header.inc.php.template @ 763

Revision 763, 5.9 KB checked in by niltonneto, 15 years ago (diff)

Importação inicial do Expresso da Celepar

Line 
1<?php
2        /**************************************************************************\
3        * eGroupWare                                                               *
4        * http://www.egroupware.org                                                *
5        * This file was originaly written by Dan Kuykendall                        *
6        * --------------------------------------------                             *
7        *  This program is free software; you can redistribute it and/or modify it *
8        *  under the terms of the GNU General Public License as published by the   *
9        *  Free Software Foundation; either version 2 of the License, or (at your  *
10        *  option) any later version.                                              *
11        \**************************************************************************/
12        /* $Id: header.inc.php.template,v 1.55.2.1 2004/08/03 14:05:35 reinerj Exp $ */
13
14        /**************************************************************************\
15        * !!!!!!! EDIT THESE LINES !!!!!!!!                                        *
16        * This setting allows you to easily move the include directory and the     *
17        * base of the eGroupWare install. Simple edit the following 2 lines with   *
18        * the absolute path to fit your site, and you should be up and running.    *
19        \**************************************************************************/
20
21        define('PHPGW_SERVER_ROOT','{SERVER_ROOT}');
22        define('PHPGW_INCLUDE_ROOT','{INCLUDE_ROOT}');
23        $GLOBALS['phpgw_info']['server']['header_admin_user'] = '{HEADER_ADMIN_USER}';
24        $GLOBALS['phpgw_info']['server']['header_admin_password'] = '{HEADER_ADMIN_PASSWORD}';
25        $GLOBALS['phpgw_info']['server']['setup_acl'] = '{SETUP_ACL}';
26
27        // Opcoes exlusivas para o Expresso Livre
28        $GLOBALS['phpgw_info']['server']['use_https'] = {USE_HTTPS};
29        $GLOBALS['phpgw_info']['server']['sugestoes_email_to'] = '{SUGESTOES_EMAIL_TO}';
30        $GLOBALS['phpgw_info']['server']['domain_name'] = '{DOMAIN_NAME}';
31        $GLOBALS['phpgw_info']['server']['use_prefix_organization'] = {USE_PREFIX_ORGANIZATION};
32
33        // If you want to identify your App Server (recommended for multiple servers):
34        //$GLOBALS['phpgw_info']['server']['use_frontend_id']   = 1024;
35        //$GLOBALS['phpgw_info']['server']['use_frontend_name'] = '01';
36                       
37        /* eGroupWare domain-specific db settings */{domains}
38        /*
39        ** If you want to have your domains in a select box, change to True
40        ** If not, users will have to login as user@domain
41        ** Note: This is only for virtual domain support, default domain users can login only using
42        ** there loginid.
43        */
44        $GLOBALS['phpgw_info']['server']['show_domain_selectbox'] = {DOMAIN_SELECTBOX};
45
46        $GLOBALS['phpgw_info']['server']['db_persistent'] = {DB_PERSISTENT};
47
48        /*
49        ** eGroupWare can handle session management using the database or
50        ** the session support built into PHP4 which usually gives better
51        ** performance.
52        ** Your choices are 'db' or 'php4'
53        */
54        $GLOBALS['phpgw_info']['server']['sessions_type'] = '{SESSIONS_TYPE}';
55
56        /* Select which login template set you want, most people will use default */
57        $GLOBALS['phpgw_info']['login_template_set'] = 'celepar';
58
59        /* This is used to control mcrypt's use */
60        $GLOBALS['phpgw_info']['server']['mcrypt_enabled'] = {ENABLE_MCRYPT};
61        /* Set this to 'old' for versions < 2.4, otherwise the exact mcrypt version you use. */
62        $GLOBALS['phpgw_info']['server']['versions']['mcrypt'] = '{MCRYPT_VERSION}';
63
64        /*
65        ** This is a random string used as the initialization vector for mcrypt
66        ** feel free to change it when setting up eGrouWare on a clean database,
67        ** but you must not change it after that point!
68        ** It should be around 30 bytes in length.
69        */
70        $GLOBALS['phpgw_info']['server']['mcrypt_iv'] = '{MCRYPT_IV}';
71
72        if(!isset($GLOBALS['phpgw_info']['flags']['nocachecontrol']) || !$GLOBALS['phpgw_info']['flags']['nocachecontrol'])
73        {
74                header('Cache-Control: no-cache, must-revalidate');  // HTTP/1.1
75                header('Pragma: no-cache');                          // HTTP/1.0
76        }
77        else
78        {
79                // allow caching by browser
80                session_cache_limiter(PHP_VERSION >= 4.2 ? 'private_no_expire' : 'private');
81        }
82
83        /* debugging settings */
84        define('DEBUG_APP',  False);
85        define('DEBUG_API',  False);
86        define('DEBUG_DATATYPES',  True);
87        define('DEBUG_LEVEL',  3);
88        define('DEBUG_OUTPUT', 2); /* 1 = screen,  2 = DB. For both use 3. */
89        define('DEBUG_TIMER', False);
90
91        function perfgetmicrotime()
92        {
93                list($usec, $sec) = explode(' ',microtime());
94                return ((float)$usec + (float)$sec);
95        }
96
97        if (DEBUG_TIMER)
98        {
99                $GLOBALS['debug_timer_start'] = perfgetmicrotime();
100        }
101
102        /**************************************************************************\
103        * Do not edit these lines                                                  *
104        \**************************************************************************/
105        define('PHPGW_API_INC',PHPGW_INCLUDE_ROOT.'/phpgwapi/inc');
106        include(PHPGW_SERVER_ROOT.'/phpgwapi/setup/setup.inc.php');
107        $GLOBALS['phpgw_info']['server']['versions']['phpgwapi'] = $setup_info['phpgwapi']['version'];
108        $GLOBALS['phpgw_info']['server']['versions']['current_header'] = $setup_info['phpgwapi']['versions']['current_header'];
109        unset($setup_info);
110        $GLOBALS['phpgw_info']['server']['versions']['header'] = '1.27';
111        /* This is a fix for NT */
112        if(!isset($GLOBALS['phpgw_info']['flags']['noapi']) || !$GLOBALS['phpgw_info']['flags']['noapi'] == True)
113        {
114                include(PHPGW_API_INC . '/functions.inc.php');
115                include(PHPGW_API_INC . '/xml_functions.inc.php');
116                include(PHPGW_API_INC . '/soap_functions.inc.php');
117        }
118
119        /*
120          Leave off the final php closing tag, some editors will add
121          a \n or space after which will mess up cookies later on
122        */<!-- BEGIN domain -->
123        $GLOBALS['phpgw_domain']['{DB_DOMAIN}'] = array(
124                'db_host' => '{DB_HOST}',
125                'db_port' => '{DB_PORT}',
126                'db_name' => '{DB_NAME}',
127                'db_user' => '{DB_USER}',
128                'db_pass' => '{DB_PASS}',
129                // Look at the README file
130                'db_type' => '{DB_TYPE}',
131                // This will limit who is allowed to make configuration modifications
132                'config_user'   => '{CONFIG_USER}',
133                'config_passwd' => '{CONFIG_PASS}'
134        );
135
136<!-- END domain -->
Note: See TracBrowser for help on using the repository browser.