PHPackages                             3brs/sylius-extended-channels-plugin - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. 3brs/sylius-extended-channels-plugin

ActiveSylius-plugin

3brs/sylius-extended-channels-plugin
====================================

Extended channels plugin for Sylius

v1.3.0(5y ago)0751MITPHPPHP ^7.3

Since Feb 28Pushed 1y agoCompare

[ Source](https://github.com/3BRS/sylius-extended-channels-plugin)[ Packagist](https://packagist.org/packages/3brs/sylius-extended-channels-plugin)[ RSS](/packages/3brs-sylius-extended-channels-plugin/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (24)Versions (13)Used By (0)

 [ ![](https://camo.githubusercontent.com/bb0c16caf210bea68e0e59fc11e0844dc47097f9aeb8b388c3de5f1414d4d1c0/68747470733a2f2f33627273312e667261312e63646e2e6469676974616c6f6365616e7370616365732e636f6d2f336272732f6c6f676f2f334252532d6c6f676f2d73796c6975732d3230302e706e67) ](https://www.3brs.com)

Extended Channels Plugin
 [ ![](https://camo.githubusercontent.com/e3fdc29d64b030e7e875431c2d54acbd6ab186bf161f120c41bcdcd566e4d24e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f336272732f73796c6975732d657874656e6465642d6368616e6e656c732d706c7567696e2e737667) ](https://packagist.org/packages/3brs/sylius-extended-channels-plugin "License") [ ![](https://camo.githubusercontent.com/25a53f0a08a9c073e90e4e0a01f80bd9e891a2aeebd8deab76766bee4504c490/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f336272732f73796c6975732d657874656e6465642d6368616e6e656c732d706c7567696e2e737667) ](https://packagist.org/packages/3brs/sylius-extended-channels-plugin "Version") [ ![](https://camo.githubusercontent.com/71c09d2df65bbe77e16a4711e88e630d64f05a94234f6e8fee52f2c60fcbc1b3/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f336272732f73796c6975732d657874656e6465642d6368616e6e656c732d706c7567696e2f6d61737465722e737667) ](http://travis-ci.com/3brs/sylius-extended-channels-plugin "Build status")
 [![Approved by Sylius](https://camo.githubusercontent.com/5b98e02f3693c16fd3f40037251d70ca5e1ecd2a11608dd21c9c7e3933b8942e/68747470733a2f2f73796c6975732e636f6d2f6173736574732f62616467652d617070726f7665642d62792d73796c6975732e706e67)](https://camo.githubusercontent.com/5b98e02f3693c16fd3f40037251d70ca5e1ecd2a11608dd21c9c7e3933b8942e/68747470733a2f2f73796c6975732e636f6d2f6173736574732f62616467652d617070726f7665642d62792d73796c6975732e706e67)
================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================

[](#extended-channels-plugin--------------------------------------------------------)

Features
--------

[](#features)

- Duplicate product and product variant
- Bulk action to set categories for products
- Mark Taxon as external link so taxonomy can be used for creating custom menus with links anywhere
- Download current exchange rates
- Update product prices using downloaded or custom exchange rates
- Set channel timezone
- Set channel phone
- Send copy of order mail to custom email address per channel
- When SMTP is unavailable, it prevents error 500 on order submit but logs the error and submits the order
- Cancel unpaid orders for certain payment method
- Allows to change the code for the product and product variant
- Administration for Hello Bars (you can use your own types)

 [![](https://raw.githubusercontent.com/3BRS/sylius-extended-channels-plugin/master/doc/admin.png)](https://raw.githubusercontent.com/3BRS/sylius-extended-channels-plugin/master/doc/admin.png)

Installation
------------

[](#installation)

1. Run `$ composer require mangoweb-sylius/sylius-extended-channels`.
2. Add plugin classes to your `config/bundles.php`:

    ```
    return [
       ...
       MangoSylius\ExtendedChannelsPlugin\MangoSyliusExtendedChannelsPlugin::class => ['all' => true],
    ];
    ```
3. Your Entity `Channel` has to implement `\MangoSylius\ExtendedChannelsPlugin\Model\ExtendedChannelInterface`. You can use Trait `MangoSylius\ExtendedChannelsPlugin\Model\ExtendedChannelTrait`.
4. Your Entity `Taxon` has to implement `\MangoSylius\ExtendedChannelsPlugin\Model\ExternalLinkTaxonInterface`. You can use Trait `MangoSylius\ExtendedChannelsPlugin\Model\ExternalLinkTaxonTrait`.
5. Include template `{{ include('@MangoSyliusExtendedChannelsPlugin/Channel/extendedChannelForm.html.twig') }}` in `@SyliusAdmin/Channel/_form.html.twig`.
6. Add `{{ form_row(form.externalLink) }}` to template in `@SyliusAdmin/Taxon/_form.html.twig`.
7. Replace inner content of ` ... ` with `{{ include('@MangoSyliusExtendedChannelsPlugin/Grid/bulkActions.html.twig') }}` in `@SyliusAdmin/Grid/_default.html.twig`.
8. Add resource to `config/packeges/_sylius.yaml`

    ```
    imports:
         ...
         - { resource: "@MangoSyliusExtendedChannelsPlugin/Resources/config/resources.yml" }
    ```
9. Add routing to `config/_routes.yaml`

    ```
    mango_sylius_extended_channels:
        resource: '@MangoSyliusExtendedChannelsPlugin/Resources/config/routing.yml'
        prefix: /admin
    ```

For guide to use your own entity see [Sylius docs - Customizing Models](https://docs.sylius.com/en/1.7/customization/model.html)

### Optional

[](#optional)

Run `src/Migrations/basic-data/timezones-data.sql` for load the timezones table. (Recommended, otherwise the timezone select will be empty)

Usage
-----

[](#usage)

### Commands

[](#commands)

- Updates exchange rates (you need to define currencies first in Sylius admin)

    ```
    mango:exchange-rates:update
    ```
- Update Product prices by exchange rates, from `sourceChannel` (primary value, won't be changed) to `targetChannel`. You can run this after the previous command to update by downloaded rates or you can run it without the previous one to update the prices with your custom exchange rates set in Sylius admin.

    ```
    mango:product:update-price sourceChannel targetChannel
    ```
- Remove orders that are not paid for a configured period and for certain shipping methods. This allows to keep unpaid orders which are e.g. to be paid at personal pickup, therefore needs to stay unpaid for a couple of hours / days. Configuration parameters:

    - `sylius_order.order_expiration_period`
    - `sylius_order.expiration_method_codes`

    ```
    mango:cancel-unpaid-orders
    ```
- You can use events to modify an object when you duplicate it

    - `mango-sylius-extended-channels.duplicate.product.before-persist`
    - `mango-sylius-extended-channels.duplicate.product.after-persist`
    - `mango-sylius-extended-channels.duplicate.product-variant.before-persist`
    - `mango-sylius-extended-channels.duplicate.product-variant.after-persist`
- You can use event after bulk category assignment

    - `mango-sylius-extended-channels.products.after_bulk_categories`
- You can change the types of Hello bars

    ```
    parameters:
        mangoweb_sylius_extended_channels_hello_bar_types:
            error: 'Error'
            success: 'Success'
            info: 'Info'
            warning: 'Warning'
    ```
- Use the Twig function for listing Hello Bars

    - `mangoweb_sylius_available_hello_bars()`
    - `mangoweb_sylius_available_hello_bars_by_type(type)`

Development
-----------

[](#development)

### Usage

[](#usage-1)

- Create symlink from .env.dist to .env or create your own .env file
- Develop your plugin in `/src`
- See `bin/` for useful commands

### Testing

[](#testing)

After your changes you must ensure that the tests are still passing.

```
$ composer install
$ bin/console doctrine:schema:create -e test
$ bin/behat
$ bin/phpstan.sh
$ bin/ecs.sh
```

License
-------

[](#license)

This library is under the MIT license.

Credits
-------

[](#credits)

Developed by [3BRS](https://3brs.com)
Forked from [manGoweb](https://github.com/mangoweb-sylius/SyliusExtendedChannelsPlugin).

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance32

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 61.5% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~63 days

Recently: every ~36 days

Total

10

Last Release

2058d ago

Major Versions

v0.4.1 → v1.0.02020-04-28

PHP version history (2 changes)v0.2.0PHP ^7.1

v1.0.0PHP ^7.3

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/2500352?v=4)[Johan Hornof](/maintainers/hornofj)[@hornofj](https://github.com/hornofj)

![](https://avatars.githubusercontent.com/u/13216499?v=4)[Vašo](/maintainers/VasoOppelt)[@VasoOppelt](https://github.com/VasoOppelt)

![](https://www.gravatar.com/avatar/ab23998c28b111996e4b3357f20929d6904a97ac21724750e1dfafd6a09791e4?d=identicon)[ondrej-kuhnel](/maintainers/ondrej-kuhnel)

---

Top Contributors

[![ondrej-kuhnel](https://avatars.githubusercontent.com/u/6840281?v=4)](https://github.com/ondrej-kuhnel "ondrej-kuhnel (24 commits)")[![hornofj](https://avatars.githubusercontent.com/u/2500352?v=4)](https://github.com/hornofj "hornofj (9 commits)")[![MathieuDelmarre](https://avatars.githubusercontent.com/u/60355887?v=4)](https://github.com/MathieuDelmarre "MathieuDelmarre (2 commits)")[![radekbernatek](https://avatars.githubusercontent.com/u/3998427?v=4)](https://github.com/radekbernatek "radekbernatek (2 commits)")[![VasoOppelt](https://avatars.githubusercontent.com/u/13216499?v=4)](https://github.com/VasoOppelt "VasoOppelt (1 commits)")[![xdanik](https://avatars.githubusercontent.com/u/7594682?v=4)](https://github.com/xdanik "xdanik (1 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/3brs-sylius-extended-channels-plugin/health.svg)

```
[![Health](https://phpackages.com/badges/3brs-sylius-extended-channels-plugin/health.svg)](https://phpackages.com/packages/3brs-sylius-extended-channels-plugin)
```

###  Alternatives

[bitbag/elasticsearch-plugin

BitBag Elasticsearch plugin for Sylius.

133482.7k](/packages/bitbag-elasticsearch-plugin)[sylius/refund-plugin

Plugin provides basic refunds functionality for Sylius application.

691.7M14](/packages/sylius-refund-plugin)[stefandoorn/sitemap-plugin

Sitemap Plugin for Sylius

851.0M](/packages/stefandoorn-sitemap-plugin)[sylius/paypal-plugin

PayPal plugin for Sylius.

451.4M4](/packages/sylius-paypal-plugin)[monsieurbiz/sylius-rich-editor-plugin

A Rich Editor plugin for Sylius.

75380.8k6](/packages/monsieurbiz-sylius-rich-editor-plugin)[webgriffe/sylius-akeneo-plugin

Plugin allowing to import products data from Akeneo PIM to your Sylius store.

2477.8k](/packages/webgriffe-sylius-akeneo-plugin)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
