Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

PageFactory.php 673B

3 år sedan
3 år sedan
3 år sedan
3 år sedan
12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace Lc\CaracoleBundle\Factory\Site;
  3. use Lc\CaracoleBundle\Context\MerchantContextTrait;
  4. use Lc\CaracoleBundle\Context\SectionContextTrait;
  5. use Lc\CaracoleBundle\Model\Section\SectionInterface;
  6. use Lc\SovBundle\Factory\Site\PageFactory as SovPageFactory;
  7. use Lc\SovBundle\Model\Site\PageInterface;
  8. class PageFactory extends SovPageFactory
  9. {
  10. use MerchantContextTrait;
  11. use SectionContextTrait;
  12. public function create(): PageInterface
  13. {
  14. $page = parent::create();
  15. $page->setMerchant($this->merchant);
  16. if(!is_null($this->section)) {
  17. $page->setSection($this->section);
  18. }
  19. return $page;
  20. }
  21. }