-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbracketpress-config.php
More file actions
27 lines (19 loc) · 857 Bytes
/
bracketpress-config.php
File metadata and controls
27 lines (19 loc) · 857 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
<?php
// to debug or not to debug?
define('BRACKETPRESS_DEBUG', false);
// Constants used by BracketPress
// most of these are now available in the bracketpress() class,
define( 'BRACKETPRESS_PATH', plugin_dir_path( __FILE__ ) );
define( 'BRACKETPRESS_URL', plugin_dir_url( __FILE__ ) );
define( 'BRACKETPRESS_CSS_URL', BRACKETPRESS_URL.'media/css/' );
define( 'BRACKETPRESS_PATH_TEMPLATES', BRACKETPRESS_PATH.'media/css/' );
define( 'BRACKETPRESS_MEDIA', BRACKETPRESS_URL.'media/' );
define( 'BRACKETPRESS_IMAGES', BRACKETPRESS_MEDIA.'images/' );
define( 'BRACKETPRESS_JS', BRACKETPRESS_MEDIA.'js/' );
define('NUMBER_OF_TEAMS', 64);
define('NUMBER_OF_LOCATIONS', 14);
// Regions
define('BRACKETPRESS_REGION_SOUTH', 1);
define('BRACKETPRESS_REGION_WEST', 2);
define('BRACKETPRESS_REGION_EAST', 3);
define('BRACKETPRESS_REGION_MIDWEST', 4);