Ver código fonte

ProductFamilyRepository : ajout maxResult à findByTerms

master
Guillaume 4 anos atrás
pai
commit
d5517af379
1 arquivos alterados com 11 adições e 0 exclusões
  1. +11
    -0
      ShopBundle/Repository/ProductFamilyRepository.php

+ 11
- 0
ShopBundle/Repository/ProductFamilyRepository.php Ver arquivo

@@ -60,4 +60,15 @@ class ProductFamilyRepository extends BaseRepository implements DefaultRepositor

return $categoriesArray;
}

public function findByTerms($terms, $maxResults = false)
{
$query = $this->findByMerchantQuery() ;
$query->andWhere('e.title LIKE :terms');
$query->setParameter('terms', '%'.$terms.'%') ;
if($maxResults) {
$query->setMaxResults($maxResults) ;
}
return $query->getQuery()->getResult() ;
}
}

Carregando…
Cancelar
Salvar