Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ayman-benmada/sylius-backoffice-plugin

The Backoffice plugin allows you to change back office color and channel logo
https://github.com/ayman-benmada/sylius-backoffice-plugin

backoffice style sylius sylius-plugin symfony

Last synced: 29 days ago
JSON representation

The Backoffice plugin allows you to change back office color and channel logo

Awesome Lists containing this project

README

        

Sylius Backoffice Plugin


The Backoffice plugin allows you to change back office color and channel logo

![presentation photo](https://github.com/ayman-benmada/Sylius-Backoffice-Plugin/blob/main/src/Resources/public/presentation.png?raw=true)

## Installation

Require plugin with composer :

```bash
composer require abenmada/sylius-backoffice-plugin
```

Change your `config/bundles.php` file to add the line for the plugin :

```php
['all' => true],
]
```

Then create the config file in `config/packages/abenmada_backoffice_plugin.yaml` :

```yaml
imports:
- { resource: "@BackofficePlugin/Resources/config/services.yaml" }
```

Update the entity `src/Entity/Channel/Channel.php` :

```php
images = new ArrayCollection();
parent::__construct();
}
}
```

Run the migration :
```bash
bin/console doctrine:migration:migrate
```