Gazelle/sections/tools/data/invite_pool.php

100 lines
2.6 KiB
PHP
Raw Normal View History

2011-03-28 14:21:28 +00:00
<?
if(!check_perms('users_view_invites')) { error(403); }
2012-10-11 08:00:15 +00:00
View::show_header('Invite Pool');
2011-03-28 14:21:28 +00:00
define('INVITES_PER_PAGE', 50);
2012-10-11 08:00:15 +00:00
list($Page,$Limit) = Format::page_limit(INVITES_PER_PAGE);
2011-03-28 14:21:28 +00:00
if(!empty($_POST['invitekey']) && check_perms('users_edit_invites')) {
authorize();
$DB->query("DELETE FROM invites WHERE InviteKey='".db_string($_POST['invitekey'])."'");
}
if(!empty($_GET['search'])) {
$Search = db_string($_GET['search']);
} else {
$Search = "";
}
2013-02-22 08:00:24 +00:00
$sql = "SELECT
2011-03-28 14:21:28 +00:00
SQL_CALC_FOUND_ROWS
um.ID,
i.InviteKey,
i.Expires,
i.Email
FROM invites as i
2012-03-28 08:00:20 +00:00
JOIN users_main AS um ON um.ID=i.InviterID ";
2011-03-28 14:21:28 +00:00
if($Search) {
$sql .= "WHERE i.Email LIKE '%$Search%' ";
}
$sql .= "ORDER BY i.Expires DESC LIMIT $Limit";
$RS = $DB->query($sql);
$DB->query("SELECT FOUND_ROWS()");
list($Results) = $DB->next_record();
$DB->set_query_id($RS);
?>
<div class="box pad">
<p><?=number_format($Results)?> unused invites have been sent. </p>
</div>
<br />
<div>
2012-09-15 08:00:25 +00:00
<form class="search_form" name="invites" action="" method="get">
2012-09-01 08:00:24 +00:00
<table cellpadding="6" cellspacing="1" border="0" class="layout border" width="100%">
2011-03-28 14:21:28 +00:00
<tr>
<td class="label"><strong>Email:</strong></td>
<td>
<input type="hidden" name="action" value="invite_pool" />
<input type="text" name="search" size="60" value="<?=display_str($Search)?>" />
&nbsp;
<input type="submit" value="Search log" />
</td>
</tr>
2013-02-22 08:00:24 +00:00
</table>
2011-03-28 14:21:28 +00:00
</form>
</div>
<div class="linkbox">
<?
2012-10-11 08:00:15 +00:00
$Pages=Format::get_pages($Page,$Results,INVITES_PER_PAGE,11) ;
2011-03-28 14:21:28 +00:00
echo $Pages;
?>
</div>
<table width="100%">
<tr class="colhead">
<td>Inviter</td>
<td>Email</td>
<td>InviteCode</td>
<td>Expires</td>
<? if(check_perms('users_edit_invites')){ ?>
<td>Controls</td>
<? } ?>
</tr>
<?
$Row = 'b';
2012-03-28 08:00:20 +00:00
while(list($UserID, $InviteKey, $Expires, $Email)=$DB->next_record()) {
2011-03-28 14:21:28 +00:00
$Row = ($Row == 'b') ? 'a' : 'b';
?>
<tr class="row<?=$Row?>">
2012-10-11 08:00:15 +00:00
<td><?=Users::format_username($UserID, true, true, true, true)?></td>
2011-03-28 14:21:28 +00:00
<td><?=display_str($Email)?></td>
<td><?=display_str($InviteKey)?></td>
<td><?=time_diff($Expires)?></td>
<? if(check_perms('users_edit_invites')){ ?>
<td>
2012-09-15 08:00:25 +00:00
<form class="delete_form" name="invite" action="" method="post">
2011-03-28 14:21:28 +00:00
<input type="hidden" name="action" value="invite_pool" />
<input type="hidden" name="auth" value="<?=$LoggedUser['AuthKey']?>" />
<input type="hidden" name="invitekey" value="<?=display_str($InviteKey)?>" />
<input type="submit" value="Delete" />
</form>
</td>
<? } ?>
</tr>
<? } ?>
</table>
<div class="linkbox">
<? echo $Pages; ?>
</div>
2012-10-11 08:00:15 +00:00
<? View::show_footer(); ?>