-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_inc.php
28 lines (24 loc) · 865 Bytes
/
config_inc.php
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
<?php
$g_hostname = 'localhost';
$g_db_type = 'mysql';
$g_database_name = 'mantisbt';
$g_db_username = 'root';
$g_db_password = '';
# --- Custom Theme ---
$g_css_include_file = "/css/custom/default.css";
# --- Branding ---
$g_window_title = 'Mantis Bug Tracker';
$g_logo_image = 'images/mantis_logo_dark.png';
$g_favicon_image = 'images/favicon.ico';
# --- Status color additions ---
$g_status_colors['new'] = '#ff9800';
$g_status_colors['feedback'] = '#ff5722';
$g_status_colors['acknowledged'] = '#795548';
$g_status_colors['confirmed'] = '#607d8b';
$g_status_colors['assigned'] = '#2196f3';
$g_status_colors['resolving'] = '#e91e63';
$g_status_colors['resolving_standby'] = '#673ab7';
$g_status_colors['readytotest'] = '#cddc39';
$g_status_colors['testing'] = '#8bc34a';
$g_status_colors['resolved'] = '#4caf50';
$g_status_colors['closed'] = '#9e9e9e';