fawno / cakephp-datatables-helpers
CakePHP 4.0 的 DataTables 辅助工具
0.0.7
2024-05-16 12:03 UTC
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 辅助工具,用于生成带有 DataTables 的 HTML
如何...
安装
如果您想获取插件的最新版本
- 将插件添加到您的
composer.json
文件中(如果您想使用其他分支/版本,请参阅下面)
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
- 在您的
src/Application.php
文件中加载插件
$this->addPlugin('DataTables');
$this->loadHelper('Table', [ 'className' => 'DataTables.Table', ]);