瀏覽代碼

Frontend : actualités (list, view)

reduction
Guillaume 4 年之前
父節點
當前提交
f8b68ae78c
共有 1 個檔案被更改,包括 9 行新增6 行删除
  1. +9
    -6
      ShopBundle/Repository/NewsRepository.php

+ 9
- 6
ShopBundle/Repository/NewsRepository.php 查看文件

@@ -19,12 +19,15 @@ class NewsRepository extends BaseRepository implements DefaultRepositoryInterfac
return NewsInterface::class;
}

public function findLastNewsHome()
public function findLatests($maxResults = 0)
{
return $this->findByMerchantQuery()
->orderBy('e.date', 'DESC')
->setMaxResults(2)
->getQuery()
->getResult();
$result = $this->findByMerchantQuery()
->orderBy('e.date', 'DESC') ;

if($maxResults) {
$result->setMaxResults($maxResults) ;
}

return $result->getQuery()->getResult() ;
}
}

Loading…
取消
儲存