custom/plugins/ZweiPunktVariantsTableOverview/src/ZweiPunktVariantsTableOverview.php line 23

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