h5ai-flpsite/src/h5ai/php/treecontent.php
2011-09-04 21:18:19 +02:00

20 lines
320 B
PHP

<?php
if (!array_key_exists("href", $_REQUEST)) {
exit;
}
require_once "h5ai.php";
require_once "tree.php";
$h5ai = new H5ai();
$absHref = trim($_REQUEST[ "href" ]);
$absPath = $h5ai->getAbsPath($absHref);
$tree = new TreeEntry($h5ai, $absPath, $absHref);
$tree->loadContent();
echo $tree->contentToHtml();
?>