2012-09-26 13:15:29 +00:00
|
|
|
{lang code='channel' assign='object_type'}
|
|
|
|
|
|
|
|
{include file="$style_dir/global_header.html"}
|
2012-11-27 11:56:45 +00:00
|
|
|
{$user_videos=get_videos(['user'=>$u.userid,'limit'=>6])}
|
|
|
|
{$user_photos=get_photos(['user'=>$u.userid,'limit'=>6])}
|
|
|
|
{$user_contacts=$userquery->get_json_friends($u.userid)}
|
2012-09-26 13:15:29 +00:00
|
|
|
|
2012-11-27 11:56:45 +00:00
|
|
|
<body class="relative view_channel">
|
2012-09-26 13:15:29 +00:00
|
|
|
{display_user_custom_background( $u )}
|
|
|
|
<div class="container view-channel-container">
|
|
|
|
{include_template_file file="header.html" }
|
|
|
|
<div id="global-container" class="relative clearfix">
|
2012-11-27 11:56:45 +00:00
|
|
|
<div class="view-channel-box user-info-box clearfix">
|
|
|
|
<div class="user-details">
|
|
|
|
<div class="user-avatar pull-left">
|
|
|
|
<img src="{avatar details=$u}" width="200" height="200" class="view-channel-box" style="padding: 4px; margin-bottom: 0px; margin-right: 15px;" />
|
|
|
|
</div>
|
|
|
|
<div class="pull-left">
|
|
|
|
<h4>{name($u)}</h4>
|
|
|
|
<dl class="dl-horizontal">
|
|
|
|
<dt>From</dt>
|
|
|
|
<dd>Sialkot</dd>
|
|
|
|
<dt>From</dt>
|
|
|
|
<dd>Sialkot</dd>
|
|
|
|
</dl>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="user-profile-item no-profile-item">{cb_video_player width='100%' height='100%' files=$video_files video=$profile_item}</div>
|
|
|
|
</div>
|
2012-09-26 13:15:29 +00:00
|
|
|
|
2012-11-27 11:56:45 +00:00
|
|
|
<div class="view-channel-box clearfix">
|
|
|
|
<ul class="view-channel-top-row-items">
|
|
|
|
<li>
|
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
|
|
|
<a href="{link name='user_contacts'}{$u.username}">
|
2012-11-27 11:56:45 +00:00
|
|
|
<div class="view-channel-top-row-item-block image-not-loaded-background six-blocks">
|
|
|
|
{foreach from=$user_contacts item=contact}
|
|
|
|
<div class="top-row-content-block"><img src="{avatar uid=$contact.userid size='small'}" /></div>
|
|
|
|
{/foreach}
|
|
|
|
</div>
|
|
|
|
<span>{count($user_contacts)} Friends</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
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
|
|
|
<a href="{link name='user_videos'}{$u.username}">
|
2012-11-27 11:56:45 +00:00
|
|
|
<div class="view-channel-top-row-item-block image-not-loaded-background one-block">
|
|
|
|
{if $user_videos}
|
|
|
|
{$single_video_index=array_rand($user_videos)}
|
|
|
|
<img src="{get_thumb vdetails=$user_videos.$single_video_index num='big'}" class="cbv3-center-image" />
|
|
|
|
{/if}
|
|
|
|
</div>
|
|
|
|
<span>{$u.total_videos|number_format} Videos</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
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
|
|
|
<a href="{link name='user_photos'}{$u.username}">
|
2012-11-27 11:56:45 +00:00
|
|
|
<div class="view-channel-top-row-item-block image-not-loaded-background one-block">
|
|
|
|
{if $user_photos}
|
|
|
|
{$single_photo_index=array_rand($user_photos)}
|
|
|
|
{get_photo details=$user_photos.$single_photo_index output='html' size='m' class="cbv3-center-image"}
|
|
|
|
{/if}
|
|
|
|
</div>
|
|
|
|
<span>{$u.total_photos|number_format} Photos</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
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
|
|
|
<a href="{link name='user_subscribers'}{$u.username}">
|
2012-11-27 11:56:45 +00:00
|
|
|
<div class="view-channel-top-row-item-block image-not-loaded-background">
|
|
|
|
<strong class="user-subscribers">{$u.subscribers}</strong>
|
|
|
|
</div>
|
|
|
|
<span>Subscribers</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="view-channel-column-left">
|
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">
|
|
|
|
<div class="new_post_box">
|
|
|
|
<ul class="post_btns clearfix">
|
|
|
|
<li class="active"><a href="#"><i class="icon-comment"></i> Status</a></li>
|
|
|
|
<li><a href="#"><i class="icon-film"></i> Video</a></li>
|
|
|
|
<li><a href="#"><i class="icon-picture"></i> Photo</a></li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<div class="new_post_container padding_box" id="new_post_container">
|
|
|
|
<div class="post_message_container">
|
|
|
|
<textarea class="post_message" id="post_message" placeholder="Post ..." rows="1" style="overflow: hidden; word-wrap: break-word; resize: none; height: 20px;"></textarea>
|
|
|
|
</div>
|
|
|
|
<div id="post_content"></div>
|
|
|
|
<div class="post_options">
|
|
|
|
<button class="btn btn-primary btn-mini" data-type-id="{$u.userid}" data-type="u" id="add_new_post" data-loading-text="Loading...">Post</button>
|
|
|
|
</div>
|
2012-11-27 11:56:45 +00:00
|
|
|
</div>
|
|
|
|
</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>
|
2012-11-30 13:17:16 +00:00
|
|
|
|
|
|
|
{if $feeds}
|
|
|
|
{foreach $feeds as $feed}
|
|
|
|
{include_template_file file='blocks/view_channel/feed.html' feed=$feed}
|
|
|
|
{/foreach}
|
|
|
|
{else}
|
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">
|
|
|
|
<p class="text-center margin0 text-error">{lang code='No feeds were found'}</p>
|
|
|
|
</div>
|
2012-11-30 13:17:16 +00:00
|
|
|
{/if}
|
2012-11-27 11:56:45 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="view-channel-column-right">
|
|
|
|
<div class="view-channel-box user-videos-block">
|
|
|
|
<div class="view-channel-box-header">
|
|
|
|
<h4>Videos <small>({$u.total_videos|number_format})</small></h4>
|
|
|
|
<div class="view-channel-box-header-right">
|
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
|
|
|
<a href="{link name='user_videos'}{$u.username}">See All</a>
|
2012-11-27 11:56:45 +00:00
|
|
|
</div>
|
2012-09-26 13:15:29 +00:00
|
|
|
</div>
|
2012-11-27 11:56:45 +00:00
|
|
|
<div class="view-channel-box-content clearfix">
|
2012-09-26 13:15:29 +00:00
|
|
|
{if $user_videos}
|
2012-11-27 11:56:45 +00:00
|
|
|
{foreach $user_videos as $user_video}
|
|
|
|
{include_template_file file='blocks/video.html' video=$user_video display_method='view_channel'}
|
|
|
|
{/foreach}
|
|
|
|
{/if}
|
|
|
|
</div>
|
|
|
|
</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 class="view-channel-box user-photos-block">
|
2012-11-27 11:56:45 +00:00
|
|
|
<div class="view-channel-box-header">
|
|
|
|
<h4>Photos <small>({$u.total_photos|number_format})</small></h4>
|
|
|
|
<div class="view-channel-box-header-right">
|
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
|
|
|
<a href="{link name='user_photos'}{$u.username}">See All</a>
|
2012-11-27 11:56:45 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="view-channel-box-content clearfix">
|
|
|
|
{if $user_photos}
|
|
|
|
{foreach $user_photos as $user_photo}
|
|
|
|
{include_template_file file='blocks/photo.html' photo=$user_photo display_method='view_channel'}
|
2012-09-26 13:15:29 +00:00
|
|
|
{/foreach}
|
|
|
|
{/if}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2012-11-27 11:56:45 +00:00
|
|
|
</body>
|