// Update image when updated

This commit is contained in:
Jerome Nadaud
2013-10-18 17:41:36 +02:00
committed by gRoussac
parent be13f82b30
commit 12276f41fb
3 changed files with 27 additions and 1 deletions

View File

@@ -718,6 +718,11 @@ class AdminManufacturersControllerCore extends AdminController
(int)$image_type['height']
);
}
$current_logo_file = _PS_TMP_IMG_DIR_.'manufacturer_mini_'.$id_manufacturer.'_'.$this->context->shop->id.'.jpg';
if ($res && file_exists($current_logo_file))
unlink($current_logo_file);
}
if (!$res)
@@ -725,7 +730,7 @@ class AdminManufacturersControllerCore extends AdminController
return $res;
}
protected function beforeDelete($object)
{
return true;

View File

@@ -539,4 +539,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;
}
}

View File

@@ -354,6 +354,11 @@ class AdminSuppliersControllerCore extends AdminController
if (!ImageManager::resize($file, _PS_SUPP_IMG_DIR_.$id_supplier.'-'.stripslashes($image_type['name']).'.jpg', (int)$image_type['width'], (int)$image_type['height']))
$return = false;
}
$current_logo_file = _PS_TMP_IMG_DIR_.'supplier_mini_'.$id_supplier.'_'.$this->context->shop->id.'.jpg';
if (file_exists($current_logo_file))
unlink($current_logo_file);
}
return $return;
}