mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-03 05:37:17 -04:00
* Fixes for MakesHash trait * Client List DataTables * Data table dependencies * Confirmation URLs * Wire up firing events for notification emails
17 lines
414 B
PHP
17 lines
414 B
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
* Default table attributes when generating the table.
|
|
*/
|
|
'table' => [
|
|
'class' => 'table',
|
|
'id' => 'table table-striped table-bordered',
|
|
],
|
|
/*
|
|
* 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'],
|
|
];
|