mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
d430600e1e
* Fixes for datatables * Implement a BaseModel * Working on reusable header data model * Working on adding session variables * Clean up header data * Random Data Seeder * working on searching datatables across relationships. * Working on transforming primary keys between client and server facinglogic * Updated assets
17 lines
397 B
PHP
17 lines
397 B
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
* Default table attributes when generating the table.
|
|
*/
|
|
'table' => [
|
|
'class' => 'table table-hover',
|
|
'id' => 'ninja',
|
|
],
|
|
/*
|
|
* Default condition to determine if a parameter is a callback or not
|
|
* Callbacks needs to start by those terms or they will be casted to string
|
|
*/
|
|
'callback' => ['$', '$.', 'function'],
|
|
];
|