![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/app/code/Amasty/Label/Setup/ |
<?php declare(strict_types=1); /** * @author Amasty Team * @copyright Copyright (c) Amasty (https://www.amasty.com) * @package Product Labels for Magento 2 */ namespace Amasty\Label\Setup; use Amasty\Label\Model\ResourceModel\Label; use Magento\Framework\Setup\ModuleContextInterface; use Magento\Framework\Setup\SchemaSetupInterface; use Magento\Framework\Setup\UninstallInterface; class Uninstall implements UninstallInterface { public const FLAT_LABEL_TABLE = 'am_label'; public const AMASTY_LABEL_STORE_TABLE = 'amasty_label_store'; public const AMASTY_LABEL_CUSTOMER_GROUP_TABLE = 'amasty_label_customer_group'; public const AMASTY_LABEL_CATALOG_PARTS_TABLE = 'amasty_label_catalog_parts'; public const AMASTY_LABEL_INDEX_TABLE = 'amasty_label_index'; public const AMASTY_LABEL_TOOLTIP_TABLE = 'amasty_label_tooltip'; public const MODULE_TABLES = [ self::AMASTY_LABEL_STORE_TABLE, self::AMASTY_LABEL_CUSTOMER_GROUP_TABLE, self::AMASTY_LABEL_CATALOG_PARTS_TABLE, self::AMASTY_LABEL_INDEX_TABLE, self::AMASTY_LABEL_TOOLTIP_TABLE, Label::TABLE_NAME ]; /** * @SuppressWarnings(PHPMD.UnusedFormalParameter) * * @param SchemaSetupInterface $setup * @param ModuleContextInterface $context */ public function uninstall(SchemaSetupInterface $setup, ModuleContextInterface $context) { $setup->startSetup(); $connection = $setup->getConnection(); foreach (self::MODULE_TABLES as $table) { $tableName = $setup->getTable($table); if ($connection->isTableExists($tableName)) { $connection->dropTable($tableName); } } $setup->endSetup(); } }