|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <?php
-
- namespace Lc\CaracoleBundle\Twig;
-
- use Lc\CaracoleBundle\Repository\Config\TaxRateStore;
- use Lc\CaracoleBundle\Repository\Config\UnitStore;
- use Lc\CaracoleBundle\Repository\Merchant\MerchantRepositoryQuery;
- use Lc\CaracoleBundle\Repository\Merchant\MerchantStore;
- use Lc\CaracoleBundle\Repository\Product\ProductCategoryStore;
- use Lc\CaracoleBundle\Repository\Reminder\ReminderStore;
- use Lc\CaracoleBundle\Repository\Section\SectionRepository;
- use Lc\CaracoleBundle\Repository\Section\SectionRepositoryInterface;
- use Lc\CaracoleBundle\Repository\Section\SectionRepositoryQuery;
- use Lc\CaracoleBundle\Repository\Section\SectionStore;
- use Lc\CaracoleBundle\Resolver\MerchantResolver;
- use Lc\CaracoleBundle\Resolver\SectionResolver;
- use Lc\ShopBundle\Context\UnitInterface;
- use Twig\Extension\AbstractExtension;
- use Twig\TwigFunction;
-
- class StoreTwigExtension extends AbstractExtension
- {
- protected MerchantStore $merchantStore;
- protected SectionStore $sectionStore;
- protected ReminderStore $reminderStore;
- protected MerchantResolver $merchantResolver;
- protected SectionResolver $sectionResolver;
- protected UnitStore $unitStore;
- protected TaxRateStore $taxRateStore;
- protected ProductCategoryStore $productCategoryStore;
-
- public function __construct(
- MerchantResolver $merchantResolver,
- SectionResolver $sectionResolver,
- MerchantStore $merchantStore,
- SectionStore $sectionStore,
- ReminderStore $reminderStore,
- UnitStore $unitStore,
- TaxRateStore $taxRateStore,
- ProductCategoryStore $productCategoryStore
- ) {
- $this->merchantResolver = $merchantResolver;
- $this->sectionResolver = $sectionResolver;
- $this->merchantStore = $merchantStore;
- $this->sectionStore = $sectionStore;
- $this->reminderStore = $reminderStore;
- $this->unitStore = $unitStore;
- $this->taxRateStore = $taxRateStore;
- $this->productCategoryStore = $productCategoryStore;
- }
-
- public function getFunctions()
- {
- return array(
- new TwigFunction('carac_sections', [$this, 'getSections']),
- new TwigFunction('carac_section_current', [$this, 'getSectionCurrent']),
- new TwigFunction('carac_merchants', [$this, 'getMerchants']),
- new TwigFunction('carac_reminders', [$this, 'getReminders']),
- new TwigFunction('carac_units', [$this, 'getUnits']),
- new TwigFunction('carac_tax_rates', [$this, 'getTaxRates']),
- new TwigFunction('carac_reduction_cart_codes', [$this, 'getTaxRates']),
- new TwigFunction('carac_product_categories', [$this, 'getProductCategories']),
- );
- }
-
- public function getProductCategories()
- {
- return $this->productCategoryStore
- ->setSection($this->sectionResolver->getCurrent())
- ->getParent(false);
- }
-
- public function getSections()
- {
- return $this->sectionStore
- ->setMerchant($this->merchantResolver->getCurrent())
- ->getOnline();
- }
-
- public function getSectionCurrent()
- {
- return $this->sectionResolver->getCurrent();
- }
-
- public function getMerchants()
- {
- return $this->merchantStore->getOnline();
- }
-
- public function getReminders($params = [])
- {
- return $this->reminderStore
- ->setMerchant($this->merchantResolver->getCurrent())
- ->setSection($this->sectionResolver->getCurrent())
- ->get($params);
- }
-
- public function getUnits()
- {
- return $this->unitStore->getAsArray();
- }
-
- public function getTaxRates()
- {
- return $this->taxRateStore->setMerchant($this->merchantResolver->getCurrent())->getAsArray();
- }
-
- public function getReductionCartCodes()
- {
- //TODO mettre à jour une fois les repo fait
- return array();
- }
-
-
- }
|