custom/plugins/ZweiPunktSidebarBannerSW6/src/ZweiPunktSidebarBannerSW6.php line 25

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace ZweiPunktSidebarBannerSW6;
  4. use Shopware\Core\Framework\Plugin;
  5. use Shopware\Core\Framework\Plugin\Context\ActivateContext;
  6. use Shopware\Core\Framework\Plugin\Context\DeactivateContext;
  7. use Shopware\Core\Framework\Plugin\Context\InstallContext;
  8. use Shopware\Core\Framework\Plugin\Context\UninstallContext;
  9. /**
  10.  * Hallo :-)
  11.  * Sie können uns bei Fragen zum Plugin unter der Mailadresse
  12.  * team@zwei.gmbh kontaktieren. Auf Wunsch nehmen wir auch
  13.  * individuelle Anpassungen vor.
  14.  *
  15.  * Eine Liste unserer Plugins finden Sie unter:
  16.  * https://store.shopware.com/zweipunkt-gmbh.html
  17.  *
  18.  * Beste Grüße
  19.  * Ihr Team der ZweiPunkt GmbH
  20.  */
  21. class ZweiPunktSidebarBannerSW6 extends Plugin
  22. {
  23.     public const PLUGIN_NAME 'ZweiPunktSidebarBannerSW6';
  24.     public function install(InstallContext $installContext): void
  25.     {
  26.         parent::install($installContext);
  27.     }
  28.     public function uninstall(UninstallContext $uninstallContext): void
  29.     {
  30.         parent::uninstall($uninstallContext);
  31.     }
  32.     public function activate(ActivateContext $activateContext): void
  33.     {
  34.         parent::activate($activateContext);
  35.     }
  36.     public function deactivate(DeactivateContext $deactivateContext): void
  37.     {
  38.         parent::deactivate($deactivateContext);
  39.     }
  40. }