fawno / cakephp-datatables-helpers
DataTables Helpers for CakePHP 4.0
Installs: 37
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:cakephp-plugin
Requires
- php: >=7.2
- cakephp/cakephp: >=4.3
- cakephp/plugin-installer: ^1.3
Requires (Dev)
- cakephp/cakephp-codesniffer: ^4.5
- phpunit/phpunit: ~8.5.0 || ^9.3
README
CakePHP 4.x Helpers to generate HTML with DataTables
How to... ?
Installation
If you want the latest version of the plugin:
- Add the plugin to your
composer.json
(see below if you want to use another branch / version):
composer require fawno/cakephp-datatables-helpers:dev-master
// Or the following if you want to use the stable version:
composer require fawno/cakephp-datatables-helpers:@stable
- Load the plugin in your
src/Application.php
:
$this->addPlugin('DataTables');
- Load the helpers you want in your
View/AppView.php
:
$this->loadHelper('Table', [ 'className' => 'DataTables.Table', ]);