forked from BitBagCommerce/SyliusCmsPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFrequentlyAskedQuestionRepository.php
More file actions
executable file
·56 lines (49 loc) · 1.91 KB
/
Copy pathFrequentlyAskedQuestionRepository.php
File metadata and controls
executable file
·56 lines (49 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
/*
* This file has been created by developers from BitBag.
* Feel free to contact us once you face any issues or want to start
* another great project.
* You can find more information about us on https://bitbag.shop and write us
* an email on mikolaj.krol@bitbag.pl.
*/
declare(strict_types=1);
namespace BitBag\SyliusCmsPlugin\Repository;
use BitBag\SyliusCmsPlugin\Entity\FrequentlyAskedQuestionInterface;
use Doctrine\ORM\QueryBuilder;
use Sylius\Bundle\ResourceBundle\Doctrine\ORM\EntityRepository;
class FrequentlyAskedQuestionRepository extends EntityRepository implements FrequentlyAskedQuestionRepositoryInterface
{
public function createListQueryBuilder(string $localeCode): QueryBuilder
{
return $this->createQueryBuilder('o')
->addSelect('translation')
->leftJoin('o.translations', 'translation', 'WITH', 'translation.locale = :localeCode')
->setParameter('localeCode', $localeCode)
;
}
public function findEnabledOrderedByPosition(string $localeCode, string $channelCode): array
{
return $this->createQueryBuilder('o')
->leftJoin('o.translations', 'translation')
->innerJoin('o.channels', 'channels')
->where('translation.locale = :localeCode')
->andWhere('o.enabled = true')
->andWhere('channels.code = :channelCode')
->orderBy('o.position', 'ASC')
->setParameter('localeCode', $localeCode)
->setParameter('channelCode', $channelCode)
->getQuery()
->getResult()
;
}
public function findOneEnabledByCode(string $code): ?FrequentlyAskedQuestionInterface
{
return $this->createQueryBuilder('o')
->where('o.code = :code')
->andWhere('o.enabled = true')
->setParameter('code', $code)
->getQuery()
->getOneOrNullResult()
;
}
}