Просмотр файла modules/online/templates/user_row.phtml

Размер файла: 2.08Kb
<?php

/**
 * This file is part of JohnCMS Content Management System.
 *
 * @copyright JohnCMS Community
 * @license   https://opensource.org/licenses/GPL-3.0 GPL-3.0
 * @link      https://johncms.com JohnCMS Project
 */

/**
 * @var \Johncms\Users\User $item
 */
?>

<div class="user-row">
    <div class="d-flex align-items-start">
        <div class="user-avatar mr-2 mr-md-4">
            <div class="avatar-image rounded-circle overflow-hidden">
                <img src="<?= $this->avatar($item->id) ?>" class="img-fluid" alt=".">
            </div>
            <div class="user-status <?= $item->is_online ? 'online' : 'offline' ?> shadow"></div>
        </div>
        <div class="overflow-auto flex-grow-1">
            <div class="user-name">
                <?php if ($user->id !== $item->id): ?>
                    <a href="<?= $item->profile_url ?>" class="user-login mr-2"><?= $item->name ?></a>
                <?php else: ?>
                    <a class="user-login mr-2"><?= $item->name ?></a>
                <?php endif; ?>
                <span class="text-muted"><?= $item->display_date ?></span>
            </div>
            <?php if (! empty($item->place_name)): ?>
                <div>
                    <?= $item->place_name ?>
                </div>
            <?php endif; ?>
        </div>
    </div>
    <?php if ($user->rights >= 3): ?>
        <div class="post-footer d-flex justify-content-between border-top pt-2 mt-2">
            <div class="post-user-info d-flex overflow-hidden small align-items-center">
                <?php if ($user->rights): ?>
                    <div class="user-ip mr-2">
                        <a href="<?= $item->search_ip_url ?>"><?= $item->ip ?></a>
                        <?php if (! empty($item->ip_via_proxy)): ?>
                            / <a href="<?= $item->search_ip_via_proxy_url ?>"><?= $item->ip_via_proxy ?></a>
                        <?php endif; ?>
                    </div>
                    <div class="useragent"><?= $item->browser ?></div>
                <?php endif; ?>
            </div>
        </div>
    <?php endif; ?>
</div>