view php/config.php @ 3125:f80f43a2da99

YAUC
author Nicholas Jillings <nicholas.jillings@mail.bcu.ac.uk>
date Wed, 18 Jul 2018 17:02:24 +0100
parents 8bef85957a2f
children a543efc6ef1d
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/";
    }
}
?>