Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

CreditHistoryRepository.php 618B

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