-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.inc.sample.php
More file actions
54 lines (48 loc) · 1.92 KB
/
config.inc.sample.php
File metadata and controls
54 lines (48 loc) · 1.92 KB
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
<?php
if(!defined('CONFIG_INC'))
{
define('CONFIG_INC',1);
// Database Setup
$DatabaseServer = 'localhost'; // postgres = host, oracle=SID
$DatabaseUsername = 'rosariosis';
$DatabasePassword = 'password';
$DatabaseName = 'rosariosis';
$DatabasePort = '5432';
// Server Names and Paths
$RosarioPath = dirname(__FILE__).'/';
$pg_dumpPath = '/usr/bin/pg_dump'; // Specify the path to the database dump utility for this server.
//modif Francois: wkhtmltopdf
$wkhtmltopdfPath = '/usr/bin/wkhtmltopdf'; // empty string means wkhtmltopdf will not be called and reports will be rendered in htlm instead of pdf
$wkhtmltopdfAssetsPath = '/var/www/rosariosis/assets/'; // way wkhtmltopdf accesses the assets/ directory, empty string means no translation
$StudentPicturesPath = 'assets/StudentPhotos/';
$UserPicturesPath = 'assets/UserPhotos/';
$PortalNotesFilesPath = 'assets/PortalNotesFiles/';
$FS_IconsPath = 'assets/FS_icons/';
$DefaultSyear = '2015';
$RosarioAdmins = '1'; // can be list such as '1,23,50' - note, these should be id's in the DefaultSyear, otherwise they can't login anyway
$RosarioNotifyAddress = '';
$RosarioLocales = array('en_US.utf8'); // Add other languages you want to support here, ex: 'fr_FR.utf8', 'es_ES.utf8', ...
$CurrencySymbol = '$'; // locale currency
$LocalePath = 'locale'; // Path were the language packs are stored. You need to restart Apache at each change in this directory
$RosarioModules = array(
'School_Setup'=>true,
'Students'=>true,
'Users'=>true,
'Scheduling'=>true,
'Grades'=>true,
'Attendance'=>true,
'Eligibility'=>true,
'Discipline'=>true,
'Student_Billing'=>true,
'Food_Service'=>true,
'State_Reports'=>false,
'Resources'=>true,
'Custom'=>true
);
//modif Francois: Moodle integrator, see /modules/Moodle/config.inc.php for instructions
define('MOODLE_INTEGRATOR', false);
// If session isn't started, start it.
if(!isset($SessionStart))
$SessionStart = 1;
}
?>