All Projects → monsieurbiz → SyliusCmsPagePlugin

monsieurbiz / SyliusCmsPagePlugin

Licence: MIT license
A Sylius plugin to manage your CMS pages

Programming Languages

PHP
23972 projects - #3 most used programming language
Makefile
30231 projects
Twig
543 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to SyliusCmsPagePlugin

SyliusPayUPlugin
PayU payment plugin for Sylius applications.
Stars: ✭ 21 (-19.23%)
Mutual labels:  sylius, sylius-plugin
SyliusBannerPlugin
Add Banners to your Sylius projects with this plugin
Stars: ✭ 13 (-50%)
Mutual labels:  sylius, sylius-plugin
SyliusSettingsPlugin
Provide some custom settings to your favorite Sylius shop!
Stars: ✭ 17 (-34.62%)
Mutual labels:  sylius, sylius-plugin
SyliusFeedPlugin
Create feeds in your Sylius shop
Stars: ✭ 20 (-23.08%)
Mutual labels:  sylius, sylius-plugin
SyliusAkeneoPlugin
This Sylius plugin allows you to import data from Akeneo PIM
Stars: ✭ 17 (-34.62%)
Mutual labels:  sylius, sylius-plugin
SyliusInvoicingPlugin
This plugin enables generating invoices in Sylius platform application.
Stars: ✭ 21 (-19.23%)
Mutual labels:  sylius, sylius-plugin
SyliusSchedulerCommandPlugin
Schedule Symfony Commands in your Sylius
Stars: ✭ 25 (-3.85%)
Mutual labels:  sylius, sylius-plugin
SyliusReportPlugin
Report Plugin for Sylius. This plugin add a report interface to the Sylius administration. Some reports comes with this bundle but you can create your custom reports.
Stars: ✭ 25 (-3.85%)
Mutual labels:  sylius, sylius-plugin
SyliusWishlistPlugin
This plugin allows you to integrate wishlist features with Sylius platform app.
Stars: ✭ 51 (+96.15%)
Mutual labels:  sylius, sylius-plugin
CoopTilleulsSyliusClickNCollectPlugin
Sell and deliver securely during the COVID-19 pandemic!
Stars: ✭ 77 (+196.15%)
Mutual labels:  sylius, sylius-plugin
CustomerOrderCancellationPlugin
Plugin that allows customers to cancel the placed order before it is processed.
Stars: ✭ 22 (-15.38%)
Mutual labels:  sylius, sylius-plugin
SyliusInvoicePlugin
A Plugin for Sylius to generate invoices (! deprecated, use sylius/invoicing-plugin instead)
Stars: ✭ 13 (-50%)
Mutual labels:  sylius
PayPalPlugin
Official integration with PayPal Commerce Platform
Stars: ✭ 21 (-19.23%)
Mutual labels:  sylius
BootstrapTheme
Sylius Bootstrap theme with build process based on Webpack Encore
Stars: ✭ 85 (+226.92%)
Mutual labels:  sylius
Monofony
Main repository for all Monofony bundles
Stars: ✭ 47 (+80.77%)
Mutual labels:  sylius
sitemap-plugin
Sitemap Plugin for Sylius eCommerce platform
Stars: ✭ 68 (+161.54%)
Mutual labels:  sylius
SyliusMolliePlugin
Sylius Mollie payment gateway integration.
Stars: ✭ 1 (-96.15%)
Mutual labels:  sylius
SyliusCustomOptionsPlugin
A Sylius plugin that adds customer options
Stars: ✭ 42 (+61.54%)
Mutual labels:  sylius
Jedisjeux
Boardgames website, based on Symfony framework and Sylius.
Stars: ✭ 13 (-50%)
Mutual labels:  sylius
SyliusProductBundlePlugin
This plugin allows you to create new products by bundling existing products together.
Stars: ✭ 17 (-34.62%)
Mutual labels:  sylius-plugin

Monsieur Biz logo      Sylius logo
Monsieur Biz is a Sylius Extension Artisan partner

CMS Pages

CMS Page Plugin license Tests Status Security Status

This plugins allows you to add manage CMS pages using the Rich Editor.

If you want to know more about our editor, see the Rich Editor Repository

Example of CMS page creation

Installation

composer require monsieurbiz/sylius-cms-page-plugin

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

<?php

return [
    //..
    MonsieurBiz\SyliusCmsPagePlugin\MonsieurBizSyliusCmsPagePlugin::class => ['all' => true],
];

Then create the config file in config/packages/monsieurbiz_sylius_cms_page_plugin.yaml :

imports:
    - { resource: "@MonsieurBizSyliusCmsPagePlugin/Resources/config/config.yaml" }

Finally import the routes in config/routes/monsieurbiz_sylius_cms_page_plugin.yaml :

monsieurbiz_cms_page_admin:
    resource: "@MonsieurBizSyliusCmsPagePlugin/Resources/config/routing/admin.yaml"
    prefix: /%sylius_admin.path_name%

monsieurbiz_cms_page_shop:
    resource: "@MonsieurBizSyliusCmsPagePlugin/Resources/config/routing/shop.yaml"
    prefix: /{_locale}

Migrations

Make a doctrine migration diff :

bin/console doctrine:migrations:diff

Then run it :

bin/console doctrine:migrations:migrate

Example of complete CMS Page

Admin form with preview

Admin full form

Front display

Front full display

Create custom elements

You can customize and create custom elements in your page.
In order to do that, you can check the Rich Editor custom element creation

SEO Friendly

You can define for every page the meta title, meta description and meta keywords.

Troubleshooting

Locale not found

We've added a new LocaleContext (LastChanceLocaleContext) because the locale isn't set in the request when the condition on the route is applied.
Therefore, if you still have an issue with multiple locales in your project, you may need to add another LocaleContext in order to find out your locale. The system will take care of the rest.

Contributing

You can open an issue or a Pull Request if you want! 😘
Thank you!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].