mirror of
https://github.com/silverstripe/silverstripe-comments
synced 2024-10-22 11:05:49 +02:00
64 lines
1.2 KiB
PHP
64 lines
1.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @package comments
|
|
*/
|
|
class CommentsGridFieldBulkAction extends GridFieldBulkActionHandler {
|
|
|
|
}
|
|
|
|
/**
|
|
* A {@link GridFieldBulkActionHandler} for bulk marking comments as spam
|
|
*
|
|
* @package comments
|
|
*/
|
|
class CommentsGridFieldBulkAction_Handlers extends CommentsGridFieldBulkAction {
|
|
|
|
private static $allowed_actions = array(
|
|
'spam',
|
|
'approve',
|
|
);
|
|
|
|
private static $url_handlers = array(
|
|
'spam' => 'spam',
|
|
'approve' => 'approve',
|
|
);
|
|
|
|
|
|
public function spam(SS_HTTPRequest $request) {
|
|
$ids = array();
|
|
|
|
foreach($this->getRecords() as $record) {
|
|
array_push($ids, $record->ID);
|
|
$record->markSpam();
|
|
}
|
|
|
|
$response = new SS_HTTPResponse(Convert::raw2json(array(
|
|
'done' => true,
|
|
'records' => $ids
|
|
)));
|
|
|
|
$response->addHeader('Content-Type', 'text/json');
|
|
|
|
return $response;
|
|
}
|
|
|
|
|
|
public function approve(SS_HTTPRequest $request) {
|
|
$ids = array();
|
|
|
|
foreach($this->getRecords() as $record) {
|
|
array_push($ids, $record->ID);
|
|
$record->markApproved();
|
|
}
|
|
|
|
$response = new SS_HTTPResponse(Convert::raw2json(array(
|
|
'done' => true,
|
|
'records' => $ids
|
|
)));
|
|
|
|
$response->addHeader('Content-Type', 'text/json');
|
|
|
|
return $response;
|
|
}
|
|
} |