mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 19:06:27 +00:00
33 lines
976 B
PHP
33 lines
976 B
PHP
<?
|
|
if(isset($_GET['userid']) && check_perms('users_view_invites')){
|
|
if(!is_number($_GET['userid'])){ error(403); }
|
|
|
|
$UserID=$_GET['userid'];
|
|
$Sneaky = true;
|
|
} else {
|
|
if(!$UserCount = $Cache->get_value('stats_user_count')){
|
|
$DB->query("SELECT COUNT(ID) FROM users_main WHERE Enabled='1'");
|
|
list($UserCount) = $DB->next_record();
|
|
$Cache->cache_value('stats_user_count', $UserCount, 0);
|
|
}
|
|
|
|
$UserID = $LoggedUser['ID'];
|
|
$Sneaky = false;
|
|
}
|
|
|
|
list($UserID, $Username, $PermissionID) = array_values(Users::user_info($UserID));
|
|
|
|
include(SERVER_ROOT.'/classes/class_invite_tree.php');
|
|
$Tree = new INVITE_TREE($UserID);
|
|
|
|
View::show_header($Username.' > Invites > Tree');
|
|
?>
|
|
<div class="thin">
|
|
<div class="header">
|
|
<h2><?=Users::format_username($UserID, false, false, false)?> > <a href="user.php?action=invite&userid=<?=$UserID?>">Invites</a> > Tree</h2>
|
|
</div>
|
|
<div class="box pad">
|
|
<? $Tree->make_tree(); ?>
|
|
</div>
|
|
</div>
|
|
<? View::show_footer(); ?>
|