akki-team/sylius-settable-channel-plugin

1.0.0 2024-09-09 13:12 UTC

This package is auto-updated.

Last update: 2025-03-09 14:13:46 UTC


README

Overview

This plugin allows you to set the channel context directly, with a Channel or a ChannelCode thanks to the SettableChannelContextInterface.

Very useful in your symfony/command and symfony/messenger where channel context cannot be determined because there is no request.

See the methods available for the SettableChannelContextInterface.

Installation

  1. Install the plugin to your project with the following command:
$ composer require akki-team/sylius-settable-channel-plugin
  1. After the installation, check that the plugin is correctly declared in your project in the file config/bundles.php.
 return [
    ...
    Akki\SyliusSettableChannelPlugin\AkkiSyliusSettableChannelPlugin::class => ['all' => true],
];
  1. You can now inject the SettableChannelContextInterface in your services and set the channel context directly.
$this->settableChannelContext->setChannel($channel);