summaryrefslogtreecommitdiffstats
path: root/application/views/file/upload_history.php
blob: 5015e9bf69a43d56e145315829fb71f599d6f7b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php register_js_include("/data/js/jquery.tablesorter.min.js"); ?>
<?php register_js_include("/data/js/jquery.metadata.js"); ?>
<?php include 'nav_history.php'; ?>
<?php echo form_open("file/do_delete") ?>
    <div class="table-responsive">
        <table id="upload_history" class="table table-striped tablesorter {sortlist: [[4,1]]}">
            <thead>
                <tr>
                    <th class="{sorter: false}"><input type="checkbox" name="all-ids" id="history-all"></th>
                    <th>ID</th>
                    <th>Filename</th>
                    <th>Mimetype
                    <th>Date</th>
                    <th>Size</th>
                </tr>
            </thead>
            <tbody>
                <?php foreach($query as $key => $item): ?>
                    <tr>
                        <td><input type="checkbox" name="ids[<?php echo $item["id"] ?>]" value="<?php echo $item["id"] ?>" class="delete-history"></td>
                        <td><a href="<?php echo site_url("/".$item["id"]) ?>/"><?php echo $item["id"] ?></a></td>
                        <td class="wrap"><?php echo htmlspecialchars($item["filename"]); ?></td>
                        <td><?php echo $item["mimetype"] ?></td>
                        <td class="nowrap" data-sort-value="<?=$item["date"]; ?>"><?php echo date("r", $item["date"]); ?></td>
                        <td><?php echo $item["filesize"] ?></td>
                    </tr>
                <?php endforeach; ?>
            </tbody>
        </table>
    </div>
    <input class="btn btn-danger" type="submit" value="Delete checked" name="process">
</form>

<p>Total sum of your distinct uploads: <?php echo $total_size; ?>.</p>