2013-12-21 00:19:11 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @package comments
|
|
|
|
*/
|
|
|
|
class CommentsGridFieldBulkAction extends GridFieldBulkActionHandler {
|
2015-04-16 04:40:16 +02:00
|
|
|
|
2013-12-21 00:19:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A {@link GridFieldBulkActionHandler} for bulk marking comments as spam
|
|
|
|
*
|
|
|
|
* @package comments
|
|
|
|
*/
|
2015-04-13 05:41:18 +02:00
|
|
|
class CommentsGridFieldBulkAction_Handlers extends CommentsGridFieldBulkAction {
|
2015-04-16 04:40:16 +02:00
|
|
|
|
2013-12-21 00:19:11 +01:00
|
|
|
private static $allowed_actions = array(
|
2015-04-16 04:40:16 +02:00
|
|
|
'spam',
|
|
|
|
'approve',
|
2013-12-21 00:19:11 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
private static $url_handlers = array(
|
2015-04-16 04:40:16 +02:00
|
|
|
'spam' => 'spam',
|
|
|
|
'approve' => 'approve',
|
2013-12-21 00:19:11 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
|
2015-04-16 04:40:16 +02:00
|
|
|
public function spam(SS_HTTPRequest $request) {
|
2013-12-21 00:19:11 +01:00
|
|
|
$ids = array();
|
2015-04-16 04:40:16 +02:00
|
|
|
|
|
|
|
foreach($this->getRecords() as $record) {
|
2013-12-21 00:19:11 +01:00
|
|
|
array_push($ids, $record->ID);
|
|
|
|
|
|
|
|
$record->Moderated = 1;
|
|
|
|
$record->IsSpam = 1;
|
|
|
|
$record->write();
|
|
|
|
}
|
|
|
|
|
|
|
|
$response = new SS_HTTPResponse(Convert::raw2json(array(
|
|
|
|
'done' => true,
|
|
|
|
'records' => $ids
|
|
|
|
)));
|
|
|
|
|
|
|
|
$response->addHeader('Content-Type', 'text/json');
|
|
|
|
|
2015-04-16 04:40:16 +02:00
|
|
|
return $response;
|
2013-12-21 00:19:11 +01:00
|
|
|
}
|
2015-04-13 05:41:18 +02:00
|
|
|
|
|
|
|
|
2015-04-16 04:40:16 +02:00
|
|
|
public function approve(SS_HTTPRequest $request) {
|
2015-04-13 05:41:18 +02:00
|
|
|
$ids = array();
|
|
|
|
|
|
|
|
foreach($this->getRecords() as $record) {
|
|
|
|
array_push($ids, $record->ID);
|
|
|
|
|
|
|
|
$record->Moderated = 1;
|
|
|
|
$record->IsSpam = 0;
|
|
|
|
$record->write();
|
|
|
|
}
|
|
|
|
|
|
|
|
$response = new SS_HTTPResponse(Convert::raw2json(array(
|
|
|
|
'done' => true,
|
|
|
|
'records' => $ids
|
|
|
|
)));
|
|
|
|
|
|
|
|
$response->addHeader('Content-Type', 'text/json');
|
|
|
|
|
|
|
|
return $response;
|
|
|
|
}
|
2013-12-21 00:19:11 +01:00
|
|
|
}
|