* @copyright 2007-2022 PrestaShop SA * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) * International Registered Trademark & Property of PrestaShop SA */ if (!defined('_PS_VERSION_')) { exit; } /** * Manually remove the legacy controller. It has been deleted from the project but remain present while upgrading the module. * * @return bool */ function upgrade_module_5_0_3($module) { $path = __DIR__ . '/../AdminSelfUpgrade.php'; if (file_exists($path)) { $result = @unlink($path); if ($result !== true) { PrestaShopLogger::addLog('Could not delete deprecated controller AdminSelfUpgrade.php. ' . $result, 3); return false; } } return true; }