Преглед на файлове

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…
Отказ
Запис