mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
parent
a7944a1e08
commit
3d75e9cd7e
1 changed files with 29 additions and 26 deletions
|
@ -91,8 +91,6 @@
|
||||||
</a>
|
</a>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
<a n:if="OPENVK_ROOT_CONF['openvk']['preferences']['commerce']" href="/gifts?act=pick&user={$user->getId()}" class="profile_link">{_send_gift}</a>
|
|
||||||
|
|
||||||
{var subStatus = $user->getSubscriptionStatus($thisUser)}
|
{var subStatus = $user->getSubscriptionStatus($thisUser)}
|
||||||
{if $subStatus === 0}
|
{if $subStatus === 0}
|
||||||
<form action="/setSub/user" method="post" class="profile_link_form">
|
<form action="/setSub/user" method="post" class="profile_link_form">
|
||||||
|
@ -160,30 +158,6 @@
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
<br />
|
<br />
|
||||||
<div n:if="OPENVK_ROOT_CONF['openvk']['preferences']['commerce'] && ($giftCount = $user->getGiftCount()) > 0">
|
|
||||||
<div class="content_title_expanded" onclick="hidePanel(this, {$giftCount});">
|
|
||||||
{_gifts}
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<div class="content_subtitle">
|
|
||||||
{tr("gifts", $giftCount)}
|
|
||||||
<div style="float:right;">
|
|
||||||
<a href="/gifts{$user->getId()}">{_all_title}</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="ovk-avView">
|
|
||||||
<div class="ovk-avView--el" n:foreach="$user->getGifts(1, 3) as $giftDescriptor">
|
|
||||||
{var hideInfo = !is_null($thisUser) ? ($giftDescriptor->anon ? $thisUser->getId() !== $user->getId() : false) : false}
|
|
||||||
|
|
||||||
<a href="{$hideInfo ? 'javascript:false' : $giftDescriptor->sender->getURL()}">
|
|
||||||
<img class="ava"
|
|
||||||
src="{$giftDescriptor->gift->getImage(2)}"
|
|
||||||
alt="{$hideInfo ? tr('gift') : ($giftDescriptor->caption ?? tr('gift'))}" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div n:if="$user->getFriendsCount() > 0 && $user->getPrivacyPermission('friends.read', $thisUser ?? NULL)">
|
<div n:if="$user->getFriendsCount() > 0 && $user->getPrivacyPermission('friends.read', $thisUser ?? NULL)">
|
||||||
{var friendCount = $user->getFriendsCount()}
|
{var friendCount = $user->getFriendsCount()}
|
||||||
|
|
||||||
|
@ -490,6 +464,35 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div n:if="OPENVK_ROOT_CONF['openvk']['preferences']['commerce'] && ($giftCount = $user->getGiftCount()) > 0">
|
||||||
|
<div class="content_title_expanded" onclick="hidePanel(this, {$giftCount});">
|
||||||
|
{_gifts}
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div class="content_subtitle">
|
||||||
|
{tr("gifts", $giftCount)}
|
||||||
|
<div style="float:right;">
|
||||||
|
{if OPENVK_ROOT_CONF['openvk']['preferences']['commerce']}
|
||||||
|
<a href="/gifts?act=pick&user={$user->getId()}">{_send_gift}</a> |
|
||||||
|
{/if}
|
||||||
|
<a href="/gifts{$user->getId()}">{_all_title}</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content_list long">
|
||||||
|
<div class="cl_element" style="width: 25%;" n:foreach="$user->getGifts(1, 3) as $giftDescriptor">
|
||||||
|
{var hideInfo = !is_null($thisUser) ? ($giftDescriptor->anon ? $thisUser->getId() !== $user->getId() : false) : false}
|
||||||
|
<div class="cl_avatar">
|
||||||
|
<a href="{$hideInfo ? 'javascript:false' : $giftDescriptor->sender->getURL()}">
|
||||||
|
<img style="width: 70px; max-height: 70px;"
|
||||||
|
src="{$giftDescriptor->gift->getImage(2)}"
|
||||||
|
alt="{$hideInfo ? tr('gift') : ($giftDescriptor->caption ?? tr('gift'))}" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
{presenter "openvk!Wall->wallEmbedded", $user->getId()}
|
{presenter "openvk!Wall->wallEmbedded", $user->getId()}
|
||||||
|
|
||||||
<script n:if="isset($thisUser) && $thisUser->getChandlerUser()->can('access')->model('admin')->whichBelongsTo(NULL)">
|
<script n:if="isset($thisUser) && $thisUser->getChandlerUser()->can('access')->model('admin')->whichBelongsTo(NULL)">
|
||||||
|
|
Loading…
Reference in a new issue