mirror of
https://github.com/colymba/GridFieldBulkEditingTools.git
synced 2024-10-22 11:05:57 +02:00
767e151c06
Bulk actions are now handled by separate classes and should extend GridFieldBulkActionHandler. Bulk action matching should be defined in $url_handlers
39 lines
842 B
PHP
39 lines
842 B
PHP
<?php
|
|
/**
|
|
*
|
|
* @author colymba
|
|
* @package GridFieldBulkEditingTools
|
|
*/
|
|
class GridFieldBulkActionUnlinkHandler extends GridFieldBulkActionHandler
|
|
{
|
|
/**
|
|
* List of action handling methods
|
|
*/
|
|
private static $allowed_actions = array('unlink');
|
|
|
|
/**
|
|
* URL handling rules.
|
|
*/
|
|
private static $url_handlers = array(
|
|
'unlink' => 'unlink'
|
|
);
|
|
|
|
/**
|
|
* Unlink the selected records passed from the unlink bulk action
|
|
*
|
|
* @param SS_HTTPRequest $request
|
|
* @return SS_HTTPResponse List of affected records ID
|
|
*/
|
|
public function unlink(SS_HTTPRequest $request)
|
|
{
|
|
$ids = $this->getRecordIDList();
|
|
$this->gridField->list->removeMany($ids);
|
|
|
|
$response = new SS_HTTPResponse(Convert::raw2json(array(
|
|
'done' => true,
|
|
'records' => $ids
|
|
)));
|
|
$response->addHeader('Content-Type', 'text/json');
|
|
return $response;
|
|
}
|
|
} |