| 1234567891011121314151617181920212223242526272829 |
- <?php
- // TODO: Make this MVC-style
- $documents = getDocumentsByLabelId($this->_['labelId']);
- //print_r($documents);
- ?>
- <table class="table table-striped">
- <thead>
- <tr>
- <th>Name</th>
- <th>Vorlage</th>
- <th>Typ</th>
- <th>Erstellt am</th>
- <th>Letzte Änderung</th>
- </tr>
- </thead>
- <?php
- foreach($documents as $document) {
- echo '<tr>';
- echo '<td>' . $document->getFileName() . '</td>';
- echo '<td>' . $document->getDraft() . '</td>';
- echo '<td>' . $document->getType() . '</td>';
- echo '<td>' . $document->getCreated() . '</td>';
- echo '<td>' . $document->getLastChange() . '</td>';
- echo '</tr>';
- }
- ?>
- </table>
|