瀏覽代碼

ProductFamilyRepository : ajout maxResult à findByTerms

master
Guillaume 4 年之前
父節點
當前提交
d5517af379
共有 1 個檔案被更改,包括 11 行新增0 行删除
  1. +11
    -0
      ShopBundle/Repository/ProductFamilyRepository.php

+ 11
- 0
ShopBundle/Repository/ProductFamilyRepository.php 查看文件

@@ -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() ;
}
}

Loading…
取消
儲存