Files
gallery3/modules/comment/views/admin_comments.html.php
2009-01-10 11:25:33 +00:00

201 lines
5.8 KiB
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<script type="text/javascript">
var set_state_url =
"<?= url::site("admin/comments/set_state/__ID__/__STATE__?csrf=" . access::csrf_token()) ?>";
function set_state(state, id) {
$.get(set_state_url.replace("__STATE__", state).replace("__ID__", id),
{},
function() {
$("#gComment-" + id).slideUp();
update_menu();
});
}
var delete_url =
"<?= url::site("admin/comments/delete/__ID__?csrf=" . access::csrf_token()) ?>";
function del(id) {
$.get(delete_url.replace("__ID__", id),
{},
function() {
$("#gComment-" + id).slideUp();
update_menu();
});
}
function update_menu() {
$.get("<?= url::site("admin/comments/menu_labels") ?>", {},
function(data) {
for (var i = 0; i < data.length; i++) {
$("#gAdminCommentsMenu li:eq(" + i + ") a").html(data[i]);
}
},
"json");
}
</script>
<div id="gAdminComments">
<h1> <?= t("Manage Comments") ?> </h1>
<!-- @todo: Highlight active menu option -->
<div id="gAdminCommentsMenu">
<?= $menu ?>
</div>
<!-- @todo: Remove after setting active option? -->
<h2>
<?= $title ?>
</h2>
<? if ($queue == "spam"): ?>
<div>
<? if ($spam_caught > 0): ?>
<p>
<?= t(array("one" => "Gallery has caught {{count}} spam for you since you installed spam filtering.",
"other" => "Gallery has caught {{count}} spam for you since you installed spam filtering."),
array("count" => $spam_caught)) ?>
</p>
<? endif ?>
<p>
<? if ($spam->count()): ?>
<?= t(array("one" => "There is currently one comment in your spam queue. You can delete it with a single click, but there is no undo operation so you may want to check the message first to make sure that it really is spam.",
"other" => "There are currently {{count}} comments in your spam queue. You can delete them all with a single click, but there is no undo operation so you may want to check the messages first to make sure that they really are spam. All spam messages will be deleted after 7 days automatically."),
array("count" => $spam->count())) ?>
</p>
<p>
<a href="<?= url::site("admin/comments/delete_all_spam?csrf=" . access::csrf_token()) ?>">
<?= t("Delete all spam") ?>
</a>
<? else: ?>
<?= t("Your spam queue is empty!") ?>
<? endif ?>
</p>
</div>
<? endif ?>
<? if ($queue == "deleted"): ?>
<div>
<p>
<?= t("These are messages that have been recently deleted. They will be permanently erased automatically after 7 days.") ?>
</p>
</div>
<? endif ?>
<form id="gBulkAction" action="#" method="post">
<label for="bulk_actions"><?= t("Bulk actions")?></label>
<select id="bulk_actions">
<option></option>
<option><?= t("Unapprove")?></option>
<option><?= t("Spam")?></option>
<option><?= t("Delete")?></option>
</select>
<input type="submit" value="Apply" />
<table id="gAdminCommentsList">
<tr>
<th>
<input type="checkbox" />
</th>
<th>
<?= t("Author") ?>
</th>
<th>
<?= t("Comment") ?>
</th>
<th>
<?= t("Date") ?>
</th>
<th>
<?= t("Actions") ?>
</th>
<th>
<?= t("Subject")?>
</th>
</tr>
<? foreach ($comments as $comment): ?>
<tr id="gComment-<?= $comment->id ?>">
<td>
<input type="checkbox" name="delete_comments[]" value="<?= $comment->id ?>" />
</td>
<td>
<a href="#"><img width="40" height="40"
src="<?= $user->avatar_url(40, $theme->url("images/avatar.jpg")) ?>"
class="gAvatar" alt="<?= $comment->author_name() ?>" /></a>
<br/>
<a href="mailto:<?= $comment->author_email() ?>"
title="<?= $comment->author_email() ?>"> <?= $comment->author_name() ?> </a>
</td>
<td>
<?= $comment->text ?>
</td>
<td>
<?= date("Y-M-d", $comment->created); ?>
</td>
<td>
<ul>
<? if ($comment->state != "unpublished"): ?>
<li>
<a href="javascript:set_state('unpublished',<?=$comment->id?>)">
<?= t("Unapprove") ?>
</a>
</li>
<? endif ?>
<? if ($comment->state != "published"): ?>
<li>
<a href="javascript:set_state('published',<?=$comment->id?>)">
<?= t("Approve") ?>
</a>
</li>
<? endif ?>
<? if ($comment->state != "spam"): ?>
<li>
<a href="javascript:set_state('spam',<?=$comment->id?>)">
<?= t("Spam") ?>
</a>
</li>
<? endif ?>
<li>
<a href="javascript:reply(<?=$comment->id?>)">
<?= t("Reply") ?>
</a>
</li>
<li>
<a href="javascript:Edit(<?=$comment->id?>)">
<?= t("Edit") ?>
</a>
</li>
<li>
<a href="javascript:set_state('deleted',<?=$comment->id?>)">
<?= t("Delete") ?>
</a>
</li>
</ul>
</td>
<td>
<? $item = $comment->item(); ?>
<a href="<?= $item->url() ?>">
<img src="<?= $item->thumb_url() ?>"
alt="<?= $item->title ?>"
<?= photo::img_dimensions($item->thumb_width, $item->thumb_height, 75) ?>
/>
</a>
<a href="<?= $item->url() ?>"> <?= $item->title ?> </a>
</td>
</tr>
<? endforeach ?>
</table>
</form>
<div class="pager">
<?= $pager ?>
</div>
</div>