Add dhtmlxGantt for gantt charts

This commit is contained in:
Nathan Gray
2011-11-16 19:31:00 +00:00
parent 15d318847d
commit 6d17a1a168
118 changed files with 10897 additions and 0 deletions

View File

@ -0,0 +1,10 @@
<?php
$file = realpath('..') . '\\' . $_GET['path'];
if (file_exists($file)) {
header('Content-type: text/xml');
readfile($file);
}
?>