45 lines
2.7 KiB
Smarty
45 lines
2.7 KiB
Smarty
<div class="nav-item dropdown">
|
|
<a class="nav-link dropdown-toggle text-success fw-bold d-flex align-items-center"
|
|
href="#" id="userMenuPanel" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
|
|
|
{if $avatar}
|
|
{* Используем переменную {$avatar}, так как она прописана в PHP *}
|
|
<img src="{$avatar}"
|
|
class="rounded-circle me-2 border border-2 border-success border-opacity-25"
|
|
style="width: 28px; height: 28px; object-fit: cover;"
|
|
alt="User">
|
|
{else}
|
|
<i class="bi bi-person-circle me-2"></i>
|
|
{/if}
|
|
|
|
<span>{$smarty.session.user_name|escape}</span>
|
|
</a>
|
|
|
|
<ul class="dropdown-menu dropdown-menu-end shadow-lg border-0 py-2"
|
|
aria-labelledby="userMenuPanel"
|
|
style="min-width: 220px; margin-top: 10px;">
|
|
|
|
<li class="px-3 py-2 border-bottom mb-2 d-flex align-items-center">
|
|
{if $avatar}
|
|
<img src="{$avatar}" class="rounded-circle me-2" style="width: 32px; height: 32px; object-fit: cover;">
|
|
{/if}
|
|
<div>
|
|
<small class="text-muted d-block">{#LOGIN_WELCOME_TEXT#},</small>
|
|
<span class="fw-bold text-dark">{$smarty.session.user_name|escape}</span>
|
|
</div>
|
|
</li>
|
|
{* ... дальше твои пункты меню без изменений ... *}
|
|
<li><a class="dropdown-item py-2" href="{$ABS_PATH}index.php?module=login&action=profile"><i class="bi bi-gear me-2 text-muted"></i> {#LOGIN_CHANGE_DETAILS#}</a></li>
|
|
<li><a class="dropdown-item py-2" href="{$ABS_PATH}index.php?module=login&action=info"><i class="bi bi-person-vcard me-2 text-muted"></i> {#LOGIN_USER_PROFILE#}</a></li>
|
|
<li><a class="dropdown-item py-2" href="{$ABS_PATH}index.php?module=login&action=change"><i class="bi bi-key me-2 text-muted"></i> {#LOGIN_CHANGE_LINK#}</a></li>
|
|
|
|
{if check_permission("adminpanel")}
|
|
<li><hr class="dropdown-divider"></li>
|
|
<li><a class="dropdown-item py-2 text-primary" href="{$ABS_PATH}admin/index.php" target="_blank"><i class="bi bi-sliders me-2"></i> {#LOGIN_ADMIN_LINK#}</a></li>
|
|
{/if}
|
|
|
|
<li><hr class="dropdown-divider"></li>
|
|
<li><a class="dropdown-item py-2 text-danger" href="{$ABS_PATH}index.php?module=login&action=delete"><i class="bi bi-box-arrow-right me-2"></i> {#LOGIN_DELETE_LINK#}</a></li>
|
|
<li><a class="dropdown-item py-2 text-danger" href="{$ABS_PATH}index.php?module=login&action=logout"><i class="bi bi-box-arrow-right me-2"></i> {#LOGIN_LOGOUT_LINK#}</a></li>
|
|
</ul>
|
|
</div> |