Fab 4年前
コミット
7278dbed73
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() ;
}
}

読み込み中…
キャンセル
保存