19 lines
255 B
PHP
19 lines
255 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
return [
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Default OrderBy
|
||
|
|
*/
|
||
|
|
'defaultOrder' => [
|
||
|
|
'column' => 'id',
|
||
|
|
'direction' => 'desc'
|
||
|
|
],
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Select distinct records only
|
||
|
|
*
|
||
|
|
* @type True || False
|
||
|
|
*/
|
||
|
|
'distinct' => true
|
||
|
|
];
|