zephyr/editable-bundle

Zephyr EditableBundle

dev-master / 2.0.x-dev 2016-04-04 00:52 UTC

This package is auto-updated.

Last update: 2024-03-12 05:47:36 UTC


README

Add the vendor

composer require zephyr/editable-bundle

Add in AppKernel

<?php

use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\Config\Loader\LoaderInterface;

class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = [
            // ...
            new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
            // ...
         ];
         // ...
    }
    // ...
}

Use Cases

Custom formtype for administration

Use the formtype. Save process is included in the submit action.

<?php
//...
        $builder
            ->add('a_virtual_field', EditableType::class_name, ['reference'=>'nom_reference', 'page'=>'nom_page']
//...

ESI render for front

{{ render_esi(controller('ZephyrEditableBundle:Content:show', {'reference'=>'nom_reference', 'page'=>'page'})) }}

Media management

Add dependants bundles

vichuploader

Administration

Administration pages are availables :

  • /content: content edition
  • /media: media edition

Installation

Add dependants bundles

jsrouting sgdatatables

Add routes

Routes are prefixables and importables :

zephyr_editable:
    resource: "@ZephyrEditableBundle/Resources/config/routing.yml"
    prefix: /admin/editable

Override the layout

Create a file in :

app/Resources/ZephyrUserBundle/views/layout.html.twig

Security