<?php declare(strict_types=1);
namespace ZweiPunktVariantsTableOverview;
use Shopware\Core\Framework\Plugin;
use Shopware\Core\Framework\Plugin\Context\ActivateContext;
use Shopware\Core\Framework\Plugin\Context\DeactivateContext;
use Shopware\Core\Framework\Plugin\Context\InstallContext;
use Shopware\Core\Framework\Plugin\Context\UninstallContext;
/**
* Hallo :-)
* Sie können uns bei Fragen zum Plugin unter der Mailadresse
* team@zwei.gmbh kontaktieren. Auf Wunsch nehmen wir auch
* individuelle Anpassungen vor.
*
* Eine Liste unserer Plugins finden Sie unter:
* https://store.shopware.com/zweipunkt-gmbh.html
*
* Beste Grüße
* Ihr Team der ZweiPunkt GmbH
*/
class ZweiPunktVariantsTableOverview extends Plugin
{
public const PLUGIN_NAME = 'ZweiPunktVariantsTableOverview';
public function install(InstallContext $installContext): void
{
parent::install($installContext);
}
public function uninstall(UninstallContext $uninstallContext): void
{
parent::uninstall($uninstallContext);
}
public function activate(ActivateContext $activateContext): void
{
parent::activate($activateContext);
}
public function deactivate(DeactivateContext $deactivateContext): void
{
parent::deactivate($deactivateContext);
}
}