Updated : upgrade_3.0.sql
Updated : edit_account.php, Now when avatar is set it redirects to user profile
Updated : EXIF Data url
Updated : queryString function regex. Old one was removing complete query string
Updated : display_manager_links(), now all variables except omo are removed from url
Added : Make profile link for photos @startup.php
Added : return_object_order in template_functions.php, This returns the order of provided omo value
Updated : Order checking @manage_collections.php and @manage_photos.php. Now only return_object_order is used
Updated : Updating of photo when it is uploaded
Updated : photo.html, single_feed.html, single_feed_comment.html, photo_form.html, user.html, video.html, /view_channel/feed.html, manage_photos.html, view_channel.html
Added : user_contacts.html, user_photos.html and user_videos.html
Added : autoComplete parameter for photo tagging
Updated : default.css, feeds.css and view_channel.css
Updated : user_contacts.php
Added : Next and Previous photos links @view_item.php
Fixed : Avatar Delete
Fixed : getProfileItem method of $userquery
2012-12-04 13:27:13 +00:00
|
|
|
{lang code='channel' assign='object_type'}
|
|
|
|
{include file="$style_dir/global_header.html"}
|
|
|
|
<body class="relative view_channel">
|
|
|
|
{display_user_custom_background( $u )}
|
|
|
|
<div class="container view-channel-container">
|
|
|
|
{include_template_file file="header.html" }
|
|
|
|
<div id="global-container" class="relative clearfix">
|
|
|
|
{include file="$style_dir/message.html"}
|
|
|
|
<div class="view-channel-box user-info-box clearfix">
|
|
|
|
<a href="{$userquery->profile_link($u)}"><img src="{avatar size='small' details=$u}" width="30" height="30" /> {name($u)}</a>
|
|
|
|
</div>
|
2013-01-02 07:01:24 +00:00
|
|
|
<div class="view-channel-box user-pages-navigation-container clearfix">
|
|
|
|
<div class="user-pages-navigation">
|
|
|
|
<ul class="user-pages-list">
|
|
|
|
<li><a href="{link name='user_videos'}{$u.username}">{lang code='Videos'}<span>{$u.total_videos|number_format}</span></a></li>
|
|
|
|
<li class="active"><a href="{link name='user_photos'}{$u.username}">{lang code='Photos'}<span>{$u.total_photos|number_format}</span></a></li>
|
|
|
|
<li><a href="{link name='user_collections'}{$u.username}">{lang code='Collections'}<span>{$u.total_collections|number_format}</span></a></li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="view-channel-box-connector"></div>
|
|
|
|
<div class="view-channel-box user-pages-navigation-container clearfix">
|
|
|
|
<div class="user-pages-navigation">
|
|
|
|
<ul class="user-pages-list">
|
|
|
|
<li{if !$mode || $mode == 'uploaded'} class="active"{/if}><a href="{link name='user_photos'}{$u.username}">{lang code='Uploaded'}</a></li>
|
|
|
|
<li{if $mode == 'favorite'} class="active"{/if}><a href="{link name='user_fav_photos'}{$u.username}">{lang code='Favorite'}</a></li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
Updated : upgrade_3.0.sql
Updated : edit_account.php, Now when avatar is set it redirects to user profile
Updated : EXIF Data url
Updated : queryString function regex. Old one was removing complete query string
Updated : display_manager_links(), now all variables except omo are removed from url
Added : Make profile link for photos @startup.php
Added : return_object_order in template_functions.php, This returns the order of provided omo value
Updated : Order checking @manage_collections.php and @manage_photos.php. Now only return_object_order is used
Updated : Updating of photo when it is uploaded
Updated : photo.html, single_feed.html, single_feed_comment.html, photo_form.html, user.html, video.html, /view_channel/feed.html, manage_photos.html, view_channel.html
Added : user_contacts.html, user_photos.html and user_videos.html
Added : autoComplete parameter for photo tagging
Updated : default.css, feeds.css and view_channel.css
Updated : user_contacts.php
Added : Next and Previous photos links @view_item.php
Fixed : Avatar Delete
Fixed : getProfileItem method of $userquery
2012-12-04 13:27:13 +00:00
|
|
|
</div>
|
2013-01-02 07:01:24 +00:00
|
|
|
|
Updated : upgrade_3.0.sql
Updated : edit_account.php, Now when avatar is set it redirects to user profile
Updated : EXIF Data url
Updated : queryString function regex. Old one was removing complete query string
Updated : display_manager_links(), now all variables except omo are removed from url
Added : Make profile link for photos @startup.php
Added : return_object_order in template_functions.php, This returns the order of provided omo value
Updated : Order checking @manage_collections.php and @manage_photos.php. Now only return_object_order is used
Updated : Updating of photo when it is uploaded
Updated : photo.html, single_feed.html, single_feed_comment.html, photo_form.html, user.html, video.html, /view_channel/feed.html, manage_photos.html, view_channel.html
Added : user_contacts.html, user_photos.html and user_videos.html
Added : autoComplete parameter for photo tagging
Updated : default.css, feeds.css and view_channel.css
Updated : user_contacts.php
Added : Next and Previous photos links @view_item.php
Fixed : Avatar Delete
Fixed : getProfileItem method of $userquery
2012-12-04 13:27:13 +00:00
|
|
|
<div class="view-channel-box clearfix">
|
|
|
|
<div class="view-channel-box-header"><h4>{$the_title}</h4></div>
|
|
|
|
<div class="view-channel-box-content clearfix">
|
2013-01-02 07:01:24 +00:00
|
|
|
{if $photos}
|
|
|
|
{foreach $photos as $photo}
|
|
|
|
{include_template_file file='blocks/photo.html' photo=$photo}
|
|
|
|
{/foreach}
|
|
|
|
{else}
|
|
|
|
<p class="alert alert-large">{lang code='No photos found'}</p>
|
|
|
|
{/if}
|
Updated : upgrade_3.0.sql
Updated : edit_account.php, Now when avatar is set it redirects to user profile
Updated : EXIF Data url
Updated : queryString function regex. Old one was removing complete query string
Updated : display_manager_links(), now all variables except omo are removed from url
Added : Make profile link for photos @startup.php
Added : return_object_order in template_functions.php, This returns the order of provided omo value
Updated : Order checking @manage_collections.php and @manage_photos.php. Now only return_object_order is used
Updated : Updating of photo when it is uploaded
Updated : photo.html, single_feed.html, single_feed_comment.html, photo_form.html, user.html, video.html, /view_channel/feed.html, manage_photos.html, view_channel.html
Added : user_contacts.html, user_photos.html and user_videos.html
Added : autoComplete parameter for photo tagging
Updated : default.css, feeds.css and view_channel.css
Updated : user_contacts.php
Added : Next and Previous photos links @view_item.php
Fixed : Avatar Delete
Fixed : getProfileItem method of $userquery
2012-12-04 13:27:13 +00:00
|
|
|
</div>
|
|
|
|
<div class="view-channel-box-footer">
|
2013-01-02 07:01:24 +00:00
|
|
|
{get_template('pagination')}
|
Updated : upgrade_3.0.sql
Updated : edit_account.php, Now when avatar is set it redirects to user profile
Updated : EXIF Data url
Updated : queryString function regex. Old one was removing complete query string
Updated : display_manager_links(), now all variables except omo are removed from url
Added : Make profile link for photos @startup.php
Added : return_object_order in template_functions.php, This returns the order of provided omo value
Updated : Order checking @manage_collections.php and @manage_photos.php. Now only return_object_order is used
Updated : Updating of photo when it is uploaded
Updated : photo.html, single_feed.html, single_feed_comment.html, photo_form.html, user.html, video.html, /view_channel/feed.html, manage_photos.html, view_channel.html
Added : user_contacts.html, user_photos.html and user_videos.html
Added : autoComplete parameter for photo tagging
Updated : default.css, feeds.css and view_channel.css
Updated : user_contacts.php
Added : Next and Previous photos links @view_item.php
Fixed : Avatar Delete
Fixed : getProfileItem method of $userquery
2012-12-04 13:27:13 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|