custom/plugins/C108Hotspots/src/C108Hotspots.php line 12

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