// Update image when updated

This commit is contained in:
Jerome Nadaud
2013-10-18 17:41:36 +02:00
parent 0599d4f056
commit 964f546b0b
3 changed files with 27 additions and 1 deletions
@@ -560,4 +560,20 @@ class AdminStatusesControllerCore extends AdminController
$this->initOrdersReturnsList();
return parent::filterToField($key, $filter);
}
protected function afterImageUpload()
{
parent::afterImageUpload();
if (($id_order_state = (int)Tools::getValue('id_order_state')) &&
isset($_FILES) && count($_FILES) && file_exists(_PS_ORDER_STATE_IMG_DIR_.$id_order_state.'.gif'))
{
$current_file = _PS_TMP_IMG_DIR_.'order_state_mini_'.$id_order_state.'_'.$this->context->shop->id.'.gif';
if (file_exists($current_file))
unlink($current_file);
}
return true;
}
}