BUGFIX AssetAdmin->delete() is now allowed, and redirects to parent folder automatically

This commit is contained in:
Ingo Schommer 2012-06-14 20:21:04 +02:00
parent eaf05a6a7c
commit a64cf8c27b
1 changed files with 16 additions and 0 deletions

View File

@ -24,6 +24,7 @@ class AssetAdmin extends LeftAndMain implements PermissionProvider{
public static $allowed_actions = array(
'addfolder',
'delete',
'DeleteItemsForm',
'getsubtree',
'movemarked',
@ -305,6 +306,21 @@ JS
return $content;
}
public function delete($data, $form) {
$className = $this->stat('tree_class');
$record = DataObject::get_by_id($className, Convert::raw2sql($data['ID']));
if($record && !$record->canDelete()) return Security::permissionFailure();
if(!$record || !$record->ID) throw new HTTPResponse_Exception("Bad record ID #" . (int)$data['ID'], 404);
$parentID = $record->ParentID;
$record->delete();
$this->setCurrentPageID(null);
$this->response->addHeader('X-Status', rawurlencode(_t('LeftAndMain.DELETED', 'Deleted.')));
$this->response->addHeader('X-Pjax', 'Content');
return $this->redirect(Controller::join_links($this->Link('show'), $parentID ? $parentID : 0));
}
public function getSearchContext() {
$context = singleton('File')->getDefaultSearchContext();