custom/plugins/NenoHeroSlider/src/NenoHeroSlider.php line 10

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Neno\HeroSlider;
  3. use Doctrine\DBAL\Connection;
  4. use Shopware\Core\Framework\Plugin;
  5. use Shopware\Core\Framework\Plugin\Context\InstallContext;
  6. use Shopware\Core\Framework\Plugin\Context\UninstallContext;
  7. class NenoHeroSlider extends Plugin
  8. {
  9.     public function install(InstallContext $installContext): void
  10.     {
  11.         if ($this->isCategorySlideColumnExisting()) {
  12.             // This fixes a cross-compatibility bug with ConfiguratorTheme
  13.             /**
  14.              * @var Connection $connection
  15.              */
  16.             $connection $this->container->get(Connection::class);
  17.             $connection->executeUpdate('ALTER TABLE `category` DROP COLUMN `heroSliderSlides`');
  18.         }
  19.         parent::install($installContext);
  20.     }
  21.     public function postInstall(InstallContext $installContext): void
  22.     {
  23.         parent::postInstall($installContext);
  24.         if (!$this->isCategorySlideColumnExisting()) {
  25.             // See install method:
  26.             // we are not sure if we only partially migrated,
  27.             // so we need to monkey patch category.heroSliderSlides back in
  28.             // if it does not exist
  29.             /**
  30.              * @var Connection $connection
  31.              */
  32.             $connection $this->container->get(Connection::class);
  33.             $connection->executeUpdate('ALTER TABLE `category` ADD COLUMN `heroSliderSlides` binary(16) NULL');
  34.         }
  35.     }
  36.     public function uninstall(UninstallContext $context): void
  37.     {
  38.         parent::uninstall($context);
  39.         $connection $this->container->get(Connection::class);
  40.         if ($this->isCategorySlideColumnExisting()) {
  41.             $connection->executeUpdate('ALTER TABLE `category` DROP COLUMN `heroSliderSlides`');
  42.         }
  43.         if ($context->keepUserData()) {
  44.             return;
  45.         }
  46.         $connection->executeUpdate('DROP TABLE IF EXISTS `neno_hero_slider_slide_category`');
  47.         $connection->executeUpdate('DROP TABLE IF EXISTS `neno_hero_slider_slide_translation`');
  48.         $connection->executeUpdate('DROP TABLE IF EXISTS `neno_hero_slider_slide`');
  49.     }
  50.     private function isCategorySlideColumnExisting() {
  51.         /**
  52.          * @var Connection $connection
  53.          */
  54.         $connection $this->container->get(Connection::class);
  55.         $sm $connection->getSchemaManager();
  56.         $categoryColumns $sm->listTableColumns('category');
  57.         $exists false;
  58.         foreach ($categoryColumns as $column) {
  59.             if ($column->getName() === 'heroSliderSlides') {
  60.                 $exists true;
  61.                 break;
  62.             }
  63.         }
  64.         return $exists;
  65.     }
  66. }