Rev | Line | |
---|
[1] | 1 | <list parent_id="<?php echo $parentId; ?>" err="<?php echo $errMsg; ?>" errCode="<?php echo $errCode; ?>"> |
---|
| 2 | <!-- folders in current folder --> |
---|
| 3 | <?php foreach ($tblcategories as $tblcategory): ?> |
---|
| 4 | <folder id="<?php echo $tblcategory->getCatId() ?>" name="<?php echo $tblcategory->getCatName() ?>" filetype="" /> |
---|
| 5 | <?php endforeach; ?> |
---|
| 6 | <!-- files in current folder --> |
---|
| 7 | <?php foreach ($tblfiles as $tblfile): ?> |
---|
| 8 | <file id="<?php echo $tblfile->getFileId() ?>" name="<?php echo $tblfile->getFileName() ?>" filetype="<?php echo $tblfile->getFileType() ?>" /> |
---|
| 9 | <?php endforeach; ?> |
---|
| 10 | </list> |
---|
Note: See
TracBrowser
for help on using the repository browser.