diff options
author | Alex AUVOLAT <alexis211@gmail.com> | 2012-06-21 16:34:27 +0200 |
---|---|---|
committer | Alex AUVOLAT <alexis211@gmail.com> | 2012-06-21 16:34:27 +0200 |
commit | 889e8eaf7c40817663dd602a21ac771062ccac3b (patch) | |
tree | ca8ac81ee202165333e5ffe16147d09e5cdaf2ab /tpl/image/folder.php | |
parent | 5c4caed8560d5fded00525844dfa8386b97e7918 (diff) | |
download | Bits-889e8eaf7c40817663dd602a21ac771062ccac3b.tar.gz Bits-889e8eaf7c40817663dd602a21ac771062ccac3b.zip |
Big change, sir. Can now upload any kind of files.
Diffstat (limited to 'tpl/image/folder.php')
-rw-r--r-- | tpl/image/folder.php | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/tpl/image/folder.php b/tpl/image/folder.php deleted file mode 100644 index 5d5e57b..0000000 --- a/tpl/image/folder.php +++ /dev/null @@ -1,52 +0,0 @@ -<?php -require("tpl/general/top.php"); - -if ($can_edit) { - echo '<div class="small_right"><a href="editfld-image-' . $fldid . '">edit folder info</a> | '; - echo '<a href="delfld-image-' . $fldid . '">delete folder</a></div>'; -} - -echo $fld['comment_html']; - -if (count($images) == 0) { - echo '<div class="message">This folder has no images.</div>'; -} else { - echo '<div class="ordering_links">' . filters_html_full() . '</div>'; - echo '<table><tr><th width="' . ($miniature_width) . 'px">Preview</th><th>Info</th><th>Date</th></tr>'; - foreach ($images as $img) { - $min = $baseurl . $img['id'] . "-min." . $img['extension']; - $imgf = $baseurl . $img['id'] . "." . $img['extension']; - echo '<tr><td><a href="' . $imgf . '"><img src="' . $min . '" /></a></td>'; - echo '<td><strong>' . $img['name'] . '</strong>'; - echo '<br />' . $img['comment_html'] . '<br />'; - /*echo '<strong>Miniature:</strong> <a href="' . $min . '">' . $min . '</a><br />'; - echo '<strong>Image:</strong> <a href="' . $imgf . '">' . $imgf . '</a><br />'; */ - echo '</td>'; - echo '<td>' . $img['upl_date'] . '<br />'; - if ($can_edit) echo '<br /><a href="delete-image-' . $img['id'] . '">delete</a>'; - if ($can_edit) echo '<br /><a href="editinfo-image-' . $img['id'] . '">edit info</a>'; - echo '</td></tr>'; - } - echo '</table>'; -} - -echo '</div><div class="contents-left">'; -if ($is_owner) { - echo '<h1>Your folders</h1>'; -} else { - echo '<h1>' . $fld["ownername"] . "'s folders</h1>"; -} -echo '<ul>'; -foreach ($folders as $f) { - if ($f['id'] == $fldid) { - echo '<li>' . $f['name'] . '</li>'; - } else { - echo '<li><a href="folder-image-' . $f['id'] . '">' . $f['name'] . '</a></li>'; - } -} -if ($is_owner) { - echo '<li><a class="tool_link" href="newfld-image">[+] New folder</a></li>'; -} -echo '</ul>'; - -require("tpl/general/bottom.php"); |