netinventors / shopware6-plugin-installer
Shopware 6 plugin installer
7.0.1
2025-04-02 14:43 UTC
Requires
- php: >=8.2
- doctrine/dbal: ^4.2
- shopware/core: >=6.7.0.0 <6.8.0.0 || 6.7.x-dev
- symfony/dependency-injection: ~7.2.0
- symfony/filesystem: ^7.2.0
- symfony/finder: ^7.2.0
Requires (Dev)
README
Example usage:
<?php
declare(strict_types=1);
namespace NetInventors\ExamplePlugin;
use NetInventors\Shopware6PluginInstaller\Database\DatabaseUninstaller;
use NetInventors\Shopware6PluginInstaller\FlowBuilder\FlowBuilderInstaller;
use NetInventors\Shopware6PluginInstaller\FlowBuilder\FlowBuilderUninstaller;
use NetInventors\Shopware6PluginInstaller\FlowBuilder\FlowBuilderUpdater;
use NetInventors\Shopware6PluginInstaller\MailTemplate\MailTemplateInstaller;
use NetInventors\Shopware6PluginInstaller\MailTemplate\MailTemplateUninstaller;
use NetInventors\Shopware6PluginInstaller\MailTemplate\MailTemplateUpdater;
use NetInventors\Shopware6PluginInstaller\PluginInstaller;
use NetInventors\Shopware6PluginInstaller\PluginUpdater;
use NetInventors\Shopware6PluginInstaller\PluginUninstaller;
use Shopware\Core\Framework\Plugin;
use Shopware\Core\Framework\Plugin\Context\InstallContext;
use Shopware\Core\Framework\Plugin\Context\UninstallContext;
use Shopware\Core\Framework\Plugin\Context\UpdateContext;
use Symfony\Component\DependencyInjection\ContainerInterface;
class ExamplePlugin extends Plugin
{
private const FALLBACK_ISO_CODE = 'en-GB';
public function install(InstallContext $installContext): void
{
parent::install($installContext);
if (!$this->container instanceof ContainerInterface) {
return;
}
$pluginInstaller = new PluginInstaller();
$pluginInstaller->registerInstaller(new MailTemplateInstaller(
$this->container,
__DIR__,
self::FALLBACK_ISO_CODE,
));
$pluginInstaller->registerInstaller(new FlowBuilderInstaller($this->container, __DIR__));
$pluginInstaller->install($installContext);
}
public function update(UpdateContext $updateContext): void
{
parent::update($updateContext);
if (!$this->container instanceof ContainerInterface) {
return;
}
$pluginUpdater = new PluginUpdater();
$pluginUpdater->registerUpdater(new MailTemplateUpdater($this->container, __DIR__, self::FALLBACK_ISO_CODE));
$pluginUpdater->registerUpdater(new FlowBuilderUpdater($this->container, __DIR__));
$pluginUpdater->update($updateContext);
}
public function uninstall(UninstallContext $uninstallContext): void
{
parent::uninstall($uninstallContext);
if (!$this->container instanceof ContainerInterface || $uninstallContext->keepUserData()) {
return;
}
$pluginUninstaller = new PluginUninstaller();
$pluginUninstaller->registerUninstaller(new DatabaseUninstaller($this->container, __NAMESPACE__, __DIR__));
$pluginUninstaller->registerUninstaller(new FlowBuilderUninstaller($this->container, __DIR__));
$pluginUninstaller->registerUninstaller(new MailTemplateUninstaller($this->container, __DIR__));
$pluginUninstaller->uninstall($uninstallContext);
}
public function executeComposerCommands(): bool
{
return true;
}
}