Gazelle/sections/tools/managers/dnu_list.php

75 lines
2.0 KiB
PHP
Raw Normal View History

2011-03-28 14:21:28 +00:00
<?
2013-04-24 08:00:23 +00:00
if (!check_perms('admin_dnu')) {
error(403);
}
2013-05-16 08:00:10 +00:00
$Title = 'Manage the "Do Not Upload" list';
2011-03-28 14:21:28 +00:00
2013-08-09 08:00:53 +00:00
View::show_header($Title, 'jquery-ui,dnu_list');
2013-04-24 08:00:23 +00:00
$DB->query("
2013-11-19 08:00:48 +00:00
SELECT
d.ID,
d.Name,
d.Comment,
d.UserID,
d.Time
FROM do_not_upload AS d
LEFT JOIN users_main AS um ON um.ID = d.UserID
ORDER BY d.Sequence");
2013-08-09 08:00:53 +00:00
?>
<div class="header">
<h2><?=($Title)?></h2>
<center><p>Drag and drop table rows to reorder.</p></center>
</div>
<table id="dnu">
<tr class="colhead">
<td colspan="4">Add an entry to the "Do Not Upload" list</td>
</tr>
<tr class="rowa">
<form class="add_form" name="dnu" action="tools.php" method="post">
2011-03-28 14:21:28 +00:00
<input type="hidden" name="action" value="dnu_alter" />
<input type="hidden" name="auth" value="<?=$LoggedUser['AuthKey']?>" />
2013-08-09 08:00:53 +00:00
<td>
<input type="text" name="name" size="40" />
</td>
<td colspan="2">
<input type="text" name="comment" size="60" />
</td>
<td>
<input type="submit" value="Create" />
</td>
</form>
</tr>
<tr class="colhead">
<td>Name</td>
<td>Comment</td>
<td>Added</td>
<td>Submit</td>
</tr>
<tbody>
2013-11-19 08:00:48 +00:00
<? while (list($ID, $Name, $Comment, $UserID, $DNUTime) = $DB->next_record()) { ?>
2013-08-09 08:00:53 +00:00
<tr id="item_<?=$ID?>">
<form class="manage_form dnu" action="tools.php" method="post">
<td>
<input type="hidden" name="action" value="dnu_alter" />
<input type="hidden" name="auth" value="<?=$LoggedUser['AuthKey']?>" />
<input type="hidden" name="id" value="<?=$ID?>" />
<input type="text" name="name" value="<?=display_str($Name)?>" size="40" />
</td>
<td>
<input type="text" name="comment" value="<?=display_str($Comment)?>" size="60" />
</td>
<td>
<?=Users::format_username($UserID, false, false, false)?><br />
<? echo time_diff($DNUTime, 1) . "\n"; ?>
</td>
<td>
<input type="submit" name="submit" value="Edit" />
<input type="submit" name="submit" value="Delete" />
</td>
</form>
</tr>
2013-11-19 08:00:48 +00:00
<? } ?>
2013-08-09 08:00:53 +00:00
</tbody>
</table>
2013-11-19 08:00:48 +00:00
<? View::show_footer(); ?>