Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

23 lines
525B

  1. <?php
  2. namespace common\repositories;
  3. use common\models\CreditHistory;
  4. class CreditHistoryRepository
  5. {
  6. /**
  7. * Retourne les options de base nécessaires à la fonction de recherche.
  8. *
  9. * @return array
  10. */
  11. public static function defaultOptionsSearch()
  12. {
  13. return [
  14. 'with' => [],
  15. 'join_with' => [],
  16. 'orderby' => CreditHistory::tableName() . '.date ASc',
  17. 'attribute_id_producer' => CreditHistory::tableName() . '.id_producer'
  18. ];
  19. }
  20. }