mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-03 14:14:36 -04:00
* Fix for comparing delete contacts change diffKeys to diff() * Client create * Client Settings * Working on localization * Refactor DataTables * protyping blade vs pure vue * Rebuild test module * Generic notes module * Small Client Notes Module * Tests for TabMenu Trait * implements tab pills in client screen * Integrate Modules
38 lines
496 B
PHP
38 lines
496 B
PHP
<?php
|
|
|
|
namespace App\Datatables;
|
|
|
|
|
|
class EntityDatatable
|
|
{
|
|
|
|
/**
|
|
* Returns the columns to be displayed and their key/values
|
|
* @return array Columns and key/value option pairs
|
|
*
|
|
* To be used to show/hide columns
|
|
*/
|
|
public function columns()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* Display options for the ajax request
|
|
* @return array url, type, data
|
|
*/
|
|
public function ajax()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* Builds the datatable
|
|
* @return DataTable returns a DataTable instance
|
|
*/
|
|
public function build()
|
|
{
|
|
|
|
}
|
|
|
|
} |