All Projects → webinarium → DataTablesBundle

webinarium / DataTablesBundle

Licence: MIT license
Symfony bundle for DataTables plugin.

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to DataTablesBundle

Datatables Bundle
DataTables bundle for Symfony
Stars: ✭ 142 (+992.31%)
Mutual labels:  symfony-bundle, datatables
Datatablesbundle
This Bundle integrates the jQuery DataTables plugin into your Symfony application.
Stars: ✭ 334 (+2469.23%)
Mutual labels:  symfony-bundle, datatables
DynamicParametersBundle
[UNMAINTAINED] Runtime retrieval of parameters from environment variables for Symfony
Stars: ✭ 42 (+223.08%)
Mutual labels:  symfony-bundle
logi-filter-builder
advanced SQL filter builder. Demo:
Stars: ✭ 23 (+76.92%)
Mutual labels:  datatables
LexikMailerBundle
This Symfony2 bundle allow you to manage some HTML email templates stored in your database. Templates are written with Twig and use I18N. You can also create some layouts to decorate your email.
Stars: ✭ 81 (+523.08%)
Mutual labels:  symfony-bundle
MsalsasVotingBundle
Provides voting/rating management for your Symfony project.
Stars: ✭ 14 (+7.69%)
Mutual labels:  symfony-bundle
supervisor-bundle
Easily update your @Supervisor configuration by using annotations in Symfony commands.
Stars: ✭ 35 (+169.23%)
Mutual labels:  symfony-bundle
SonataFormatterBundle
Symfony SonataFormatterBundle
Stars: ✭ 78 (+500%)
Mutual labels:  symfony-bundle
mjml-bundle
✉️ Symfony bundle for MJML
Stars: ✭ 87 (+569.23%)
Mutual labels:  symfony-bundle
SinchBundle
📦 Provides integration with Sinch.com SMS API.
Stars: ✭ 12 (-7.69%)
Mutual labels:  symfony-bundle
datatable-examples
Using DataTables plug-in for jQuery
Stars: ✭ 29 (+123.08%)
Mutual labels:  datatables
RulerZBundle
Symfony Bundle for RulerZ
Stars: ✭ 38 (+192.31%)
Mutual labels:  symfony-bundle
ant-table-extensions
Export, Search extensions to Ant Design's Table component.
Stars: ✭ 43 (+230.77%)
Mutual labels:  datatables
GuzzleBundleOAuth2Plugin
OAuth2 Plugin for GuzzleBundle
Stars: ✭ 13 (+0%)
Mutual labels:  symfony-bundle
laravel-datatables-editor
Laravel DataTables Editor Integration.
Stars: ✭ 105 (+707.69%)
Mutual labels:  datatables
features-bundle
Symfony bundle for managing feature tags
Stars: ✭ 18 (+38.46%)
Mutual labels:  symfony-bundle
bundle-dependency
Symfony Bundle Dependency Component
Stars: ✭ 18 (+38.46%)
Mutual labels:  symfony-bundle
AtoumBundle
This bundle provides a simple integration of atoum into Symfony 2.
Stars: ✭ 44 (+238.46%)
Mutual labels:  symfony-bundle
vite-bundle
Integration with your Symfony app & Vite
Stars: ✭ 56 (+330.77%)
Mutual labels:  symfony-bundle
annotation-cache-bundle
Annotation based caching for services inside a symfony container
Stars: ✭ 16 (+23.08%)
Mutual labels:  symfony-bundle

PHP Latest Stable Version Build Status Code Coverage Scrutinizer Code Quality

DataTables Symfony bundle

This bundle helps to implement data source actions for DataTables JavaScript plugin when it's used in server-side processing mode.

Requirements

PHP needs to be a minimum version of PHP 7.0.

Symfony must be of 2.7 or above.

Installation

Step 1: Download the Bundle

Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:

composer require webinarium/datatables-bundle

This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.

Step 2: Enable the Bundle

If you are using Symfony 3 or below, enable the bundle by adding it to the list of registered bundles in the app/AppKernel.php file of your project:

public function registerBundles()
{
    $bundles = [
        // ...
        new DataTables\DataTablesBundle(),
    ];
}

Development

./vendor/bin/php-cs-fixer fix
XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-html=vendor/coverage

Usage

Please see the complete usage example here.

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].