mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-05 19:41:55 +02:00
77 lines
3.6 KiB
PHP
77 lines
3.6 KiB
PHP
<?php
|
|
/* vim:set softtabstop=4 shiftwidth=4 expandtab: */
|
|
/**
|
|
*
|
|
* LICENSE: GNU General Public License, version 2 (GPLv2)
|
|
* Copyright 2001 - 2015 Ampache.org
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License v2
|
|
* as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
*/
|
|
?>
|
|
<td class="cel_username">
|
|
<a href="<?php echo $web_path; ?>/stats.php?action=show_user&user_id=<?php echo $libitem->id; ?>">
|
|
<?php
|
|
if ($libitem->f_avatar_mini) {
|
|
echo $libitem->f_avatar_mini;
|
|
}
|
|
?>
|
|
<?php echo $libitem->username; ?>
|
|
<?php if ($libitem->fullname_public || Access::check('interface', 100)) {
|
|
echo "(" . $libitem->fullname . ")";
|
|
} ?>
|
|
</a>
|
|
</td>
|
|
<td class="cel_lastseen"><?php echo $last_seen; ?></td>
|
|
<td class="cel_registrationdate"><?php echo $create_date; ?></td>
|
|
<?php if (Access::check('interface', 50)) { ?>
|
|
<td class="cel_activity"><?php echo $libitem->f_useage; ?></td>
|
|
<?php if (AmpConfig::get('track_user_ip')) { ?>
|
|
<td class="cel_lastip">
|
|
<a href="<?php echo $web_path; ?>/admin/users.php?action=show_ip_history&user_id=<?php echo $libitem->id; ?>">
|
|
<?php echo $libitem->ip_history; ?>
|
|
</a>
|
|
</td>
|
|
<?php } ?>
|
|
<?php } ?>
|
|
<?php if (Access::check('interface', 25) && AmpConfig::get('sociable')) { ?>
|
|
<td class="cel_follow"><?php echo $libitem->get_display_follow(); ?></td>
|
|
<?php } ?>
|
|
<td class="cel_action">
|
|
<?php if (Access::check('interface', 25) && AmpConfig::get('sociable')) { ?>
|
|
<a id="<?php echo 'reply_pvmsg_'.$libitem->id ?>" href="<?php echo AmpConfig::get('web_path'); ?>/pvmsg.php?action=show_add_message&to_user=<?php echo $libitem->username; ?>"><?php echo UI::get_icon('mail', T_('Send private message')); ?></a>
|
|
<?php } ?>
|
|
<?php if (Access::check('interface', 100)) { ?>
|
|
<a href="<?php echo $web_path; ?>/admin/users.php?action=show_edit&user_id=<?php echo $libitem->id; ?>"><?php echo UI::get_icon('edit', T_('Edit')); ?></a>
|
|
<a href="<?php echo $web_path; ?>/admin/users.php?action=show_preferences&user_id=<?php echo $libitem->id; ?>"><?php echo UI::get_icon('preferences', T_('Preferences')); ?></a>
|
|
<?php
|
|
//FIXME: Fix this for the extra permission levels
|
|
if ($libitem->disabled == '1') {
|
|
echo "<a href=\"".$web_path."/admin/users.php?action=enable&user_id=$libitem->id\">" . UI::get_icon('enable', T_('Enable')) . "</a>";
|
|
} else {
|
|
echo "<a href=\"".$web_path."/admin/users.php?action=disable&user_id=$libitem->id\">" . UI::get_icon('disable', T_('Disable')) ."</a>";
|
|
}
|
|
?>
|
|
<a href="<?php echo $web_path; ?>/admin/users.php?action=delete&user_id=<?php echo $libitem->id; ?>"><?php echo UI::get_icon('delete', T_('Delete')); ?></a>
|
|
<?php } ?>
|
|
</td>
|
|
<?php
|
|
if (($libitem->is_logged_in()) AND ($libitem->is_online())) {
|
|
echo "<td class=\"cel_online user_online\"> </td>";
|
|
} elseif ($libitem->disabled == 1) {
|
|
echo "<td class=\"cel_online user_disabled\"> </td>";
|
|
} else {
|
|
echo "<td class=\"cel_online user_offline\"> </td>";
|
|
}
|
|
?>
|