mirror of
https://github.com/php/web-windows.git
synced 2026-03-24 07:22:10 +01:00
Instead we make it configurable, to ease local development (and potentially moving the Website).
17 lines
614 B
PHP
17 lines
614 B
PHP
<?php
|
|
define('BASE_URL', 'https://windows.php.net/');
|
|
define('APP_PATH', 'C:/domains/windows.php.net/');
|
|
define('SNAPS_DIR', APP_PATH . 'docroot/downloads/snaps/');
|
|
define('RELEASES_DIR', APP_PATH . 'docroot/downloads/releases/');
|
|
define('QA_DIR', APP_PATH . 'docroot/downloads/qa/');
|
|
define('DATA_DIR', APP_PATH . '/data/');
|
|
define('LIB_DIR', APP_PATH . '/include/');
|
|
define('NEWS_DIR', APP_PATH . '/news/');
|
|
define('TPL_PATH', APP_PATH . '/templates/');
|
|
define('DOCROOT', APP_PATH . '/docroot');
|
|
define('SNAPS_URL', '/downloads/snaps/');
|
|
|
|
define('MODE_RELEASE', 0);
|
|
define('MODE_SNAP', 1);
|
|
define('MODE_QA', 2);
|