2018-10-29 14:16:17 +11:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
/*
|
|
|
|
|
* Default table attributes when generating the table.
|
|
|
|
|
*/
|
|
|
|
|
'table' => [
|
2018-11-02 21:54:46 +11:00
|
|
|
'class' => 'table table-hover',
|
|
|
|
|
'id' => 'ninja',
|
2018-10-29 14:16:17 +11:00
|
|
|
],
|
|
|
|
|
/*
|
|
|
|
|
* 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'],
|
|
|
|
|
];
|