source: platform/modules/space/templates/dirSuccess.php @ 1

Last change on this file since 1 was 1, checked in by dungnv, 11 years ago
File size: 596 bytes
Line 
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.