Skip to content

Latest commit

 

History

History
63 lines (47 loc) · 1.25 KB

01-install.md

File metadata and controls

63 lines (47 loc) · 1.25 KB

Installation

Bundle setup

Require this bundle with composer:

$ composer require sidus/datagrid-bundle "1.4.*"

Add the bundle to AppKernel.php

<?php
/**
 * app/AppKernel.php
 */
class AppKernel
{
    public function registerBundles()
    {
        $bundles = [
            // ...

            // Required
            new WhiteOctober\PagerfantaBundle\WhiteOctoberPagerfantaBundle(),
            
            // Optional, see the benefits of this bundle here: https://github.com/VincentChalnot/SidusBaseBundle
            new Sidus\BaseBundle\SidusBaseBundle(),
            
            // Required
            new Sidus\FilterBundle\SidusFilterBundle(),
            
            // Required, obviously
            new Sidus\DataGridBundle\SidusDataGridBundle(),

            // ...
        ];
    }
}

Setup basic configuration

This step is strongly recommended although optional.

Enable Symfony's Translator component:

framework:
    translator: { fallbacks: ['%locale%'] } # Uncomment this line
    # ...

Enable the proper form template:

twig:
    # ...
    form_themes:
        - 'bootstrap_4_layout.html.twig'
        - '@SidusDataGrid/Form/bootstrap4.html.twig' # Also available in bootstrap3 flavor