2019-01-03 09:23:01 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Default OrderBy
|
2019-01-03 10:13:47 +00:00
|
|
|
*
|
|
|
|
|
* * Accepted Values = Array
|
2019-01-03 09:23:01 +00:00
|
|
|
*/
|
|
|
|
|
'defaultOrder' => [
|
|
|
|
|
'column' => 'id',
|
|
|
|
|
'direction' => 'desc'
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Select distinct records only
|
|
|
|
|
*
|
2019-01-03 10:13:47 +00:00
|
|
|
* Accepted Values = True || False
|
|
|
|
|
*/
|
|
|
|
|
'distinct' => true,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Default pagination
|
|
|
|
|
*
|
|
|
|
|
* Accepted Values = integer
|
2019-01-03 09:23:01 +00:00
|
|
|
*/
|
2019-01-03 10:13:47 +00:00
|
|
|
'pagination' => 10
|
2019-01-03 09:23:01 +00:00
|
|
|
];
|