tmsolution/datagrid-bundle

Symfony2 bundle for logging

v1.0.0-RC2 2016-03-03 12:07 UTC

This package is not auto-updated.

Last update: 2024-10-26 18:22:47 UTC


README

by Damian Piela damian.piela@tmsolution.pl

Description

DataGridBundle is a set of tools for presenting entity data in a coherent and legible form. Additionally, it allows you to make use of new functionalities by adding supplementary buttons, or to display adjustable amount of data acoording to predefined values. DataGridBundle uses apy/datagrid-bundle.

Installation

In order to install the bundle, add:

//composer require

"tmsolution/datagrid-bundle": "1.*"
"apy/datagrid-bundle": "2.1.15"

to your project's composer.json file. Later, enable your bundle in the app's kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new APY\DataGridBundle\APYDataGridBundle(),
        new Core\ModelBundle\CoreModelBundle(),
        new TMSolution\DataGridBundle\TMSolutionDataGridBundle()
    );
}