custom/plugins/econdLoader/src/econdLoader.php line 11

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Ecd\econdLoader;
  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. class econdLoader extends Plugin
  9. {
  10.     public function install(InstallContext $context): void
  11.     {
  12.         parent::install($context);
  13.     }
  14.     public function uninstall(UninstallContext $context): void
  15.     {
  16.         parent::uninstall($context);
  17.     }
  18.     public function activate(ActivateContext $context): void
  19.     {
  20.         parent::activate($context);
  21.     }
  22.     public function deactivate(DeactivateContext $context): void
  23.     {
  24.         parent::deactivate($context);
  25.     }
  26. }