fawno / cakephp-datatables-helpers

CakePHP 4.0 的 DataTables 辅助工具

安装次数: 32

依赖者: 0

建议者: 0

安全: 0

星标: 0

关注者: 2

分支: 0

开放问题: 0

类型:cakephp-plugin

0.0.7 2024-05-16 12:03 UTC

This package is auto-updated.

Last update: 2024-09-16 12:52:51 UTC


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',
]);