2012-05-28 07:10:27 +00:00
|
|
|
{include_template_file file="blocks/account-left.html"}
|
|
|
|
|
Added : Photo EXIF Data in insert_photo()
Added : Make Avatar from any photo
Added : Collection cover photo
Added : An array for thumb creations. Includes, code, width, height, watermark, sharpit
Added : Resizer class in common.php
Added : jquery.Jcrop.js in edit_account
Added : A common function called cb_filename. All filenames used in clipbucket follow a specific syntax
Added : Four new function for photos. get_original_photo, insert_photo_colors, insert_exif_data & add_custom_photo_size
Added : User Avatar collection functions. But they are not in use right now. This need proper thinking
Added : New files: mobile-form-class.php, resizer.class.php, exif.php, makers files for exif, jquery.Jcrop plugin, some template files
2012-05-16 07:27:54 +00:00
|
|
|
|
2012-05-28 07:10:27 +00:00
|
|
|
<div class="account-right">
|
|
|
|
{if $mode == "manage" || $mode == ""}
|
|
|
|
<ul class="thumbnails">
|
|
|
|
{foreach from=$usr_collects item=collection}
|
|
|
|
<li class="span">
|
|
|
|
<div class="thumbnail">
|
|
|
|
<img src="{$cbcollection->get_thumb($collection)}"/>
|
|
|
|
<div class="caption">
|
|
|
|
<h5><a href="{$cbcollection->collection_links($collection,'view')}">{$collection.collection_name}</a></h5>
|
|
|
|
<p><a href="?mode=manage_items&cid={$collection.collection_id}&type={$collection.type}" class="btn">Items</a></p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{/foreach}
|
|
|
|
</ul>
|
|
|
|
{/if}
|
|
|
|
|
|
|
|
{if $mode == "manage_items" || $mode == "collection_items"}
|
|
|
|
<ul class="thumbnails">
|
|
|
|
{foreach from=$objs item=collection}
|
|
|
|
<li class="span">
|
|
|
|
<div class="thumbnail">
|
|
|
|
{get_photo details=$collection output="html" size="m"}
|
|
|
|
<div class="caption">
|
|
|
|
<p><a href="?mode=manage_items&cid={$collection.collection_id}&type={$c.type}&cover_photo={$collection.photo_id}" class="btn btn-mini">Cover Photo</a></p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{/foreach}
|
|
|
|
</ul>
|
|
|
|
{/if}
|
|
|
|
</div>
|