Archived
1
0
Disbranĉigi 0
Ĉi tiu deponejo arĥiviĝis je 2024-01-28. Vi povas vidi kaj elŝuti dosierojn, sed ne povas puŝi nek raporti problemojn nek tirpeti.
blagoblag/res/lib/load.php
2019-02-11 10:41:39 -06:00

18 lines
372 B
PHP

<?php
// PATH --> PATH
// Take a path from root and turn it into a relative path.
function root($path) {
return $GLOBALS['depth'] . $path;
}
// -------------------------------------
require_once root("vendor/autoload.php");
$loader= new Twig_Loader_Filesystem(root("res/themes/default/html"));
$twig = new Twig_Environment($loader, ['cache' =>
root('cache/')]);
?>