Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ayman-benmada/sylius-backoffice-plugin
- Owner: ayman-benmada
- License: mit
- Created: 2024-05-01T12:27:58.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-12T19:28:20.000Z (8 months ago)
- Last Synced: 2024-11-21T18:12:00.192Z (about 1 month ago)
- Topics: backoffice, style, sylius, sylius-plugin, symfony
- Language: PHP
- Homepage:
- Size: 575 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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
```