* @copyright 2021 DIGITAL RETAIL TECHNOLOGIES SL * @license https://opensource.org/licenses/MIT The MIT License * * Don't forget to prefix your containers with your own identifier * to avoid any conflicts with others containers. */ if (!defined('_PS_VERSION_')) { exit; } /** * Upgrade module to version sample * * @param \RetailCRM $module * * @return bool */ function upgrade_module_sample($module) { if ('retailcrm' != $module->name) { return false; } return $module->removeOldFiles(['sample']); }