diff options
author | Nicolas BERNSTEIN <alexis211@gmail.com> | 2012-03-18 14:08:31 +0100 |
---|---|---|
committer | Nicolas BERNSTEIN <alexis211@gmail.com> | 2012-03-18 14:08:31 +0100 |
commit | ccff9ce8d8a2818699ce4e20a310986fc95ea022 (patch) | |
tree | c585ead91c894c621c73b63bc84012709e795151 /tpl | |
parent | 24547ccec6526fcef3cccb34bc35fb81f31236b3 (diff) | |
download | Bits-ccff9ce8d8a2818699ce4e20a310986fc95ea022.tar.gz Bits-ccff9ce8d8a2818699ce4e20a310986fc95ea022.zip |
Added a way of classifying images in folders.
Diffstat (limited to 'tpl')
-rw-r--r-- | tpl/general/inc_form.php | 8 | ||||
-rw-r--r-- | tpl/image/folder.php | 52 | ||||
-rw-r--r-- | tpl/image/index.php | 26 |
3 files changed, 81 insertions, 5 deletions
diff --git a/tpl/general/inc_form.php b/tpl/general/inc_form.php index 8cd2ad5..24e4a49 100644 --- a/tpl/general/inc_form.php +++ b/tpl/general/inc_form.php @@ -13,6 +13,14 @@ foreach($fields as $f) { if (isset($f['type']) && $f['type'] == 'textarea') { echo '<label>' . $f['label'] . '</label><br />'; echo '<textarea name="' . $f['name'] . '">' . $f['value'] . '</textarea><br />'; + } else if (isset($f['type']) && $f['type'] == 'select') { + echo '<label>' . $f['label'] . '</label>'; + echo '<select name="' . $f['name'] . '">'; + foreach ($f['choices'] as $id => $text) { + echo '<option value="' . $id . '"'. ($id == $f['value'] ? ' selected="selected"' : '') . + '>' . $text . '</option>'; + } + echo '</select><br />'; } else { ?> <label for="ff_<?php echo $f['name']; ?>"><?php echo $f['label']; ?></label> diff --git a/tpl/image/folder.php b/tpl/image/folder.php new file mode 100644 index 0000000..5d5e57b --- /dev/null +++ b/tpl/image/folder.php @@ -0,0 +1,52 @@ +<?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"); diff --git a/tpl/image/index.php b/tpl/image/index.php index 4f9db8e..a89d024 100644 --- a/tpl/image/index.php +++ b/tpl/image/index.php @@ -11,13 +11,18 @@ if (count($images) == 0) { $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><br /><br />'; - echo '<strong>Miniature:</strong> <a href="' . $min . '">' . $min . '</a><br />'; - echo '<strong>Image:</strong> <a href="' . $imgf . '">' . $imgf . '</a><br />'; - echo '<strong>Markdown:</strong> <code>!['.$img['name'].']('.$imgf.')</code></td>'; + echo '<td><strong>' . $img['name'] . '</strong>'; + if ($img['folder_id'] != 0) { + echo ' (in folder: <a href="folder-image-' . $img['folder_id'] . '">' . $img['folder_name'] . '</a>)'; + } + echo '<br /><strong>MD:</strong> <code>!['.$img['name'].']('.$imgf.')</code>'; + 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_delete) echo '<br /><a href="delete-image-' . $img['id'] . '">delete</a>'; - if ($can_rename) echo '<br /><a href="rename-image-' . $img['id'] . '">rename</a>'; + if ($can_rename) echo '<br /><a href="editinfo-image-' . $img['id'] . '">edit info</a>'; echo '</td></tr>'; } echo '</table>'; @@ -33,6 +38,17 @@ A <?php echo $miniature_width; ?>px preview will be created.<br /><br /> Title : <input type="text" name="name" style="width: 200px;" ><br /> <input type="file" name="image" /><br /> <input type="submit" value="Upload" /></form> + +<br /><br /> +<h1>Your folders</h1> +<ul> +<?php +foreach ($folders as $f) { + echo '<li><a href="folder-image-' . $f['id'] . '">' . $f['name'] . '</a></li>'; +} +?> +<li><a class="tool_link" href="newfld-image">[+] New folder</a></li> +</ul> <?php } |