Mercurial > hg > webaudioevaluationtool
view php/config.php @ 3128:5419fc9cbb15
Merge branch 'vnext' into Dev_main
author | Nicholas Jillings <nicholas.jillings@mail.bcu.ac.uk> |
---|---|
date | Wed, 28 Nov 2018 13:52:04 +0000 |
parents | a543efc6ef1d |
children |
line wrap: on
line source
<?php function getSaveLocation() { if (getenv("WAET_SAVES_LOCATION") !== false) { return getenv("WAET_SAVES_LOCATION"); } else { return "../saves/"; } } function getTestLocation() { if (getenv("WAET_TEST_LOCATION") !== false) { return getenv("WAET_TEST_LOCATION"); } else { return "../tests/"; } } ?>