forked from mantisbt/mantisbt-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig_defaults_inc.php
More file actions
32 lines (26 loc) · 833 Bytes
/
config_defaults_inc.php
File metadata and controls
32 lines (26 loc) · 833 Bytes
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
<?php
# Website URLs
$g_wiki_url = '/wiki/';
$g_docs_url = '/docs/';
$g_bugs_url = '/bugs/';
$g_blog_url = '/blog/';
$g_forums_url = '/forums/';
# Documentation
$g_docs_path = 'master/en-US/';
$g_docs_admin_guide = 'Admin_Guide';
$g_docs_dev_guide = 'Developers_Guide';
$g_docs_erd_path = 'erd/';
# Information about latest stable release.
$g_latest_version_stable = '';
# Information about latest legacy release.
$g_latest_version_legacy = '';
# Information about latest development release.
$g_latest_version_dev = '';
$g_latest_version_dev_roadmap = '';
########################################
# Include user's config, if available
########################################
$t_config_inc = dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'config_inc.php';
if ( file_exists( $t_config_inc ) ) {
require_once( $t_config_inc );
}