synergitech/fuel-datatables

v1.0.0 2020-04-29 08:55 UTC

This package is auto-updated.

Last update: 2024-04-29 03:57:08 UTC


README

Build status

Implement DataTables with FuelPHP's ORM

Installation

$ composer require synergitech/fuel-datatables

Basic Usage

You need to call the setAllowedColumns() function to define which columns can be accessed and returned.

class API extends Controller_Rest
{
  public function get_index()
  {
      $datatable = \SynergiTech\DataTables\DataTable::fromGet(\Model\YourModel::class);
      $datatable->setAllowedColumns([
         'id',
         'uuid',
         'name',
         'related_model.name',
         'created_at',
         'updated_at'
      ]);

      return $this->response($datatable->getResponse());
  }
}

Customize query

If you wish to do more complex ORM queries, you can simply call the getQuery() function which will return the FuelPHP ORM's query object, which you can then manipulate as you need to.

$datatable->getQuery()
   ->where('id', ">", 0)
   ->related("group")
   ->where("group.name", "!=", "guests")
   ->related("another_relation");

Row formatters

You can provide custom callbacks that will be executed for each row to be returned in the response. You can use this to manipulate each row in the response.

$datatable->addRowFormatter(function ($model, $outputRow) {
    $outputRow['example'] = count($model->a_many_relation);
    return $outputRow;
});

XSS filtering

To make it easier for you to manage filtering your output, you can ask for all or specific rows to be encoded on output. By default, we leave XSS filtering up to you.

Escape all columns

$datatable->setEscapedColumns();

With exceptions:

$datatable->setEscapedColumns()
    ->setRawColumns(['html_body']);

Escape some columns

$datatable->setEscapedColumns(['id', 'slug']);

Turn off escaping

$datatable->setEscapedColumns([]);

Pre-requisites