// Fix bulk deletion of attributes

This commit is contained in:
tDidierjean
2012-02-14 17:34:08 +00:00
parent 6e1a031163
commit ca772b3b92
3 changed files with 26 additions and 1 deletions

View File

@@ -660,4 +660,28 @@ class AdminAttributesGroupsControllerCore extends AdminController
}
}
/**
* Overrides parent to delete items from sublist
*
* @param $token
* @return mixed
*/
public function processBulkDelete($token)
{
// If we are deleting attributes instead of attribute_groups
if (Tools::getIsset('attributeBox'))
{
$this->className = 'Attribute';
$this->table = 'attribute';
$this->boxes = Tools::getValue($this->table.'Box');
}
$result = parent::processBulkDelete($token);
// Restore vars
$this->className = 'AttributeGroup';
$this->table = 'attribute_group';
return $result;
}
}