1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-05 16:04:24 +03:00
ifhub.club/application/frontend/components/user/header.tpl

55 lines
1.7 KiB
Smarty
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{**
* Шапка профиля
*}
{$component = 'user-profile'}
{$user = $smarty.local.user}
{$mods = $smarty.local.mods}
{if $user->getProfileName()}
{$mods = "{$mods} has-name"}
{/if}
{if $user->isOnline()}
{$mods = "{$mods} is-online"}
{/if}
<div class="{$component} {cmods name=$component mods=$mods} {$smarty.local.classes} clearfix" {cattr list=$smarty.local.attributes}>
{* @hook Начало шапки с информацией о пользователе *}
{hook run='user_header_begin' user=$user}
{* Пользователь *}
<div class="{$component}-user clearfix">
<a href="{$user->getUserWebPath()}">
<img src="{$user->getProfileAvatarPath(100)}" alt="{$user->getProfileName()}" class="{$component}-user-avatar js-user-profile-avatar" itemprop="photo">
</a>
<div class="{$component}-user-body">
<h2 class="{$component}-user-login" itemprop="nickname">
<a href="{$user->getUserWebPath()}">
{$user->getLogin()}
</a>
</h2>
{if $user->getProfileName()}
<p class="{$component}-user-name" itemprop="name">
{$user->getProfileName()|escape}
</p>
{/if}
</div>
</div>
{* Рейтинг *}
{* @hook Рейтинг пользователя *}
{hookb run='user_rating' user=$user}
<div class="{$component}-rating">
<div class="{$component}-rating-label">Рейтинг</div>
<div class="{$component}-rating-value">{$user->getRating()}</div>
</div>
{/hookb}
{* @hook Конец шапки с информацией о пользователе *}
{hook run='user_header_end' user=$user}
</div>