custom/plugins/C108IconBoxes/src/C108IconBoxes.php line 14

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace C108IconBoxes;
  4. use Shopware\Core\Framework\Plugin;
  5. use Shopware\Core\Framework\Plugin\Context\InstallContext;
  6. use Shopware\Core\Framework\Plugin\Context\ActivateContext;
  7. use Shopware\Core\Framework\Plugin\Context\DeactivateContext;
  8. use Shopware\Core\Framework\Plugin\Context\UninstallContext;
  9. use Shopware\Core\Framework\Plugin\Context\UpdateContext;
  10. class C108IconBoxes extends Plugin
  11. {
  12.     public function install(InstallContext $context): void
  13.     {
  14.     }
  15.     public function postInstall(InstallContext $context): void
  16.     {
  17.     }
  18.     public function update(UpdateContext $context): void
  19.     {
  20.     }
  21.     public function postUpdate(UpdateContext $context): void
  22.     {
  23.     }
  24.     public function activate(ActivateContext $activateContext): void
  25.     {
  26.     }
  27.     public function deactivate(DeactivateContext $context): void
  28.     {
  29.     }
  30.     public function uninstall(UninstallContext $context): void
  31.     {
  32.         parent::uninstall($context);
  33.         if ($context->keepUserData()) {
  34.             return;
  35.         }
  36.     }
  37. }