<?php
declare(strict_types=1);
namespace C108IconBoxes;
use Shopware\Core\Framework\Plugin;
use Shopware\Core\Framework\Plugin\Context\InstallContext;
use Shopware\Core\Framework\Plugin\Context\ActivateContext;
use Shopware\Core\Framework\Plugin\Context\DeactivateContext;
use Shopware\Core\Framework\Plugin\Context\UninstallContext;
use Shopware\Core\Framework\Plugin\Context\UpdateContext;
class C108IconBoxes extends Plugin
{
public function install(InstallContext $context): void
{
}
public function postInstall(InstallContext $context): void
{
}
public function update(UpdateContext $context): void
{
}
public function postUpdate(UpdateContext $context): void
{
}
public function activate(ActivateContext $activateContext): void
{
}
public function deactivate(DeactivateContext $context): void
{
}
public function uninstall(UninstallContext $context): void
{
parent::uninstall($context);
if ($context->keepUserData()) {
return;
}
}
}