Файл: templates/default/controllers/users/widgets/online/online.tpl.php
Строк: 8
<?php if ($profiles){ ?>
<div class="widget_online_list">
<?php foreach($profiles as $profile) { ?>
<?php $url = href_to('users', $profile['id']); ?>
<?php if ($is_avatars) { ?>
<a class="item item-avatar" href="<?php echo $url; ?>" title="<?php html($profile['nickname']); ?>"><?php echo html_avatar_image($profile['avatar'], 'micro'); ?></a>
<?php } else { ?>
<a class="item item-name" href="<?php echo $url; ?>"><?php html($profile['nickname']); ?></a>
<?php } ?>
<?php } ?>
</div>
<?php } ?>