_data
3 years ago
_output
3 years ago
_support
3 years ago
unit
3 years ago
_bootstrap.php
3 years ago
config.php
3 years ago
unit.suite.yml
3 years ago
config.php
17 lines
| 1 | <?php |
| 2 | $slic = getenv( 'STELLAR_SLIC' ); |
| 3 | |
| 4 | // Paths |
| 5 | $constants = [ |
| 6 | 'WP_CONTENT_DIR' => getenv( 'WP_ROOT_FOLDER' ) . '/wp-content', |
| 7 | 'ABSPATH' => getenv( 'WP_ROOT_FOLDER' ) . '/', |
| 8 | ]; |
| 9 | |
| 10 | foreach ( $constants as $key => $value ) { |
| 11 | if ( defined( $key ) ) { |
| 12 | continue; |
| 13 | } |
| 14 | |
| 15 | define( $key, $value ); |
| 16 | } |
| 17 |