mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
Spam, ham and accepting of marked comments
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@39807 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
4cbc4642b6
commit
cf5cda9799
@ -46,15 +46,27 @@ class FeedbackAdmin extends LeftAndMain {
|
|||||||
new TextareaField("Comment", "Comment")
|
new TextareaField("Comment", "Comment")
|
||||||
);
|
);
|
||||||
|
|
||||||
$idField = new HiddenField('ID');
|
$idField = new HiddenField('ID', '', $section);
|
||||||
$table = new CommentTableField($this, "Comments", "PageComment", $section, $tableFields, $popupFields, $filter);
|
$table = new CommentTableField($this, "Comments", "PageComment", $section, $tableFields, $popupFields, $filter);
|
||||||
$table->setParentClass(false);
|
$table->setParentClass(false);
|
||||||
|
|
||||||
$fields = new FieldSet($idField, $table);
|
$fields = new FieldSet($idField, $table);
|
||||||
|
|
||||||
$actions = new FieldSet(
|
$actions = new FieldSet();
|
||||||
new FormAction('deletemarked', 'Delete')
|
|
||||||
);
|
if($section == 'unmoderated') {
|
||||||
|
$actions->push(new FormAction('acceptmarked', 'Accept'));
|
||||||
|
}
|
||||||
|
|
||||||
|
if($section == 'accepted' || $section == 'unmoderated') {
|
||||||
|
$actions->push(new FormAction('spammarked', 'Mark as spam'));
|
||||||
|
}
|
||||||
|
|
||||||
|
if($section == 'spam') {
|
||||||
|
$actions->push(new FormAction('hammarked', 'Mark as not spam'));
|
||||||
|
}
|
||||||
|
|
||||||
|
$actions->push(new FormAction('deletemarked', 'Delete'));
|
||||||
|
|
||||||
$form = new Form($this, "EditForm", $fields, $actions);
|
$form = new Form($this, "EditForm", $fields, $actions);
|
||||||
|
|
||||||
@ -82,6 +94,84 @@ class FeedbackAdmin extends LeftAndMain {
|
|||||||
$deleteList
|
$deleteList
|
||||||
$('Form_EditForm').getPageFromServer($('Form_EditForm_ID').value);
|
$('Form_EditForm').getPageFromServer($('Form_EditForm_ID').value);
|
||||||
statusMessage("Deleted $numComments comments.");
|
statusMessage("Deleted $numComments comments.");
|
||||||
|
JS;
|
||||||
|
}
|
||||||
|
|
||||||
|
function spammarked() {
|
||||||
|
$numComments = 0;
|
||||||
|
$folderID = 0;
|
||||||
|
$deleteList = '';
|
||||||
|
|
||||||
|
if($_REQUEST['Comments']) {
|
||||||
|
foreach($_REQUEST['Comments'] as $commentid) {
|
||||||
|
$comment = DataObject::get_one('PageComment', "`PageComment`.ID = $commentid");
|
||||||
|
if($comment) {
|
||||||
|
$comment->IsSpam = true;
|
||||||
|
$comment->NeedsModeration = false;
|
||||||
|
$comment->write();
|
||||||
|
$numComments++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
user_error("No comments in $commentList could be found!", E_USER_ERROR);
|
||||||
|
}
|
||||||
|
|
||||||
|
echo <<<JS
|
||||||
|
$deleteList
|
||||||
|
$('Form_EditForm').getPageFromServer($('Form_EditForm_ID').value);
|
||||||
|
statusMessage("Marked $numComments comments as spam.");
|
||||||
|
JS;
|
||||||
|
}
|
||||||
|
|
||||||
|
function hammarked() {
|
||||||
|
$numComments = 0;
|
||||||
|
$folderID = 0;
|
||||||
|
$deleteList = '';
|
||||||
|
|
||||||
|
if($_REQUEST['Comments']) {
|
||||||
|
foreach($_REQUEST['Comments'] as $commentid) {
|
||||||
|
$comment = DataObject::get_one('PageComment', "`PageComment`.ID = $commentid");
|
||||||
|
if($comment) {
|
||||||
|
$comment->IsSpam = false;
|
||||||
|
$comment->NeedsModeration = false;
|
||||||
|
$comment->write();
|
||||||
|
$numComments++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
user_error("No comments in $commentList could be found!", E_USER_ERROR);
|
||||||
|
}
|
||||||
|
|
||||||
|
echo <<<JS
|
||||||
|
$deleteList
|
||||||
|
$('Form_EditForm').getPageFromServer($('Form_EditForm_ID').value);
|
||||||
|
statusMessage("Marked $numComments comments as not spam.");
|
||||||
|
JS;
|
||||||
|
}
|
||||||
|
|
||||||
|
function acceptmarked() {
|
||||||
|
$numComments = 0;
|
||||||
|
$folderID = 0;
|
||||||
|
$deleteList = '';
|
||||||
|
|
||||||
|
if($_REQUEST['Comments']) {
|
||||||
|
foreach($_REQUEST['Comments'] as $commentid) {
|
||||||
|
$comment = DataObject::get_one('PageComment', "`PageComment`.ID = $commentid");
|
||||||
|
if($comment) {
|
||||||
|
$comment->IsSpam = false;
|
||||||
|
$comment->NeedsModeration = false;
|
||||||
|
$comment->write();
|
||||||
|
$numComments++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
user_error("No comments in $commentList could be found!", E_USER_ERROR);
|
||||||
|
}
|
||||||
|
|
||||||
|
echo <<<JS
|
||||||
|
$deleteList
|
||||||
|
$('Form_EditForm').getPageFromServer($('Form_EditForm_ID').value);
|
||||||
|
statusMessage("Accepted $numComments comments.");
|
||||||
JS;
|
JS;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user