Browse Source

Merge branch 'develop' of https://forge.laclic.fr/Laclic/CaracoleBundle into develop

packProduct
Fabien Normand 2 years ago
parent
commit
5a929456f9
2 changed files with 8 additions and 14 deletions
  1. +2
    -14
      Definition/Field/Product/ProductCategoryFieldDefinition.php
  2. +6
    -0
      Twig/StoreTwigExtension.php

+ 2
- 14
Definition/Field/Product/ProductCategoryFieldDefinition.php View File

'createdAt', 'createdAt',
'updatedAt', 'updatedAt',
'status', 'status',
'saleStatus'
'saleStatus',
'isEligibleTicketRestaurant'
]); ]);
} }


]; ];
} }


public function configurePanelMain()
{
return [
'section',
'title',
'parent',
'description',
'isEligibleTicketRestaurant',
'saleStatus',
'status',
];
}

public function configureFields(): array public function configureFields(): array
{ {
$productCategoryArray = $this->productCategoryStore $productCategoryArray = $this->productCategoryStore

+ 6
- 0
Twig/StoreTwigExtension.php View File

new TwigFunction('merchant_current', [$this, 'getMerchantCurrent']), new TwigFunction('merchant_current', [$this, 'getMerchantCurrent']),
new TwigFunction('user_merchant_current', [$this, 'getUserMerchantCurrent']), new TwigFunction('user_merchant_current', [$this, 'getUserMerchantCurrent']),
new TwigFunction('section_current', [$this, 'getSectionCurrent']), new TwigFunction('section_current', [$this, 'getSectionCurrent']),
new TwigFunction('section_default', [$this, 'getSectionDefault']),
new TwigFunction('section_current_default', [$this, 'getSectionCurrentDefault']), new TwigFunction('section_current_default', [$this, 'getSectionCurrentDefault']),
new TwigFunction('section_current_visited', [$this, 'getSectionCurrentVisited']), new TwigFunction('section_current_visited', [$this, 'getSectionCurrentVisited']),
new TwigFunction('is_out_of_sections', [$this, 'isOutOfSections']), new TwigFunction('is_out_of_sections', [$this, 'isOutOfSections']),
return $this->sectionResolver->getCurrent(); return $this->sectionResolver->getCurrent();
} }


public function getSectionDefault(): ?SectionInterface
{
return $this->sectionStore->setMerchant($this->merchantResolver->getCurrent())->getOneDefault();
}

public function getSectionCurrentDefault(): ?SectionInterface public function getSectionCurrentDefault(): ?SectionInterface
{ {
return $this->sectionResolver->getCurrent(true); return $this->sectionResolver->getCurrent(true);

Loading…
Cancel
Save