This is a package for Shopware 5 plugins. It adds support for the Klarna OrderManagement API and also includes a UI in the shopware backend. If using this package, you will need to implement Klarna Payments order Klarna Checkout yourself.
Via Composer
$ composer require k10r/klarna-ordermanagement
In your Shopware plugin entry file, you need to specify the following container parameters:
- Plugin name
public function build(ContainerBuilder $containerBuilder)
{
parent::build($containerBuilder);
$containerBuilder->setParameter('bestit_klarna.plugin_name', 'ExamplePluginName');
}
And you will also need to register our dependencies:
public function build(ContainerBuilder $containerBuilder)
{
parent::build($containerBuilder);
//
$dependencyInjectionExtensions = [
\BestitKlarnaOrderManagement\Components\DependencyInjection\DependencyInjectionExtension::class
];
foreach ($dependencyInjectionExtensions as $dependencyInjectionExtension) {
if (!class_exists($dependencyInjectionExtension)) {
continue;
}
$dependencyInjectionExtension = new $dependencyInjectionExtension();
if (!$dependencyInjectionExtension instanceof \BestitKlarnaOrderManagement\Components\DependencyInjection\DependencyInjectionExtensionInterface) {
continue;
}
$dependencyInjectionExtension->injectDependencies($containerBuilder);
}
}
Then you can use the OMInstaller
for any ohter necessary setup:
public function install(InstallContext $context)
{
// ...
$this->getOmInstaller()->install($this, $context);
// ...
}
public function uninstall(UninstallContext $context)
{
// ...
$this->getOmInstaller()->uninstall($this, $context);
// ...
}
public function update(UpdateContext $context)
{
// ...
$this->getOmInstaller()->update($this, $context);
// ...
}
protected function getOmInstaller()
{
if ($this->omInstaller !== null) {
return $this->omInstaller;
}
$this->omInstaller = new OmInstaller($this->container->get('shopware.snippet_database_handler'));
return $this->omInstaller;
}
See the docs for more information.
Please see CHANGELOG for more information on what has changed recently.
The MIT License (MIT). Please see License File for more information.