Procházet zdrojové kódy

Correctif MerchantResolver

master
Guillaume před 2 roky
rodič
revize
1f074292a1
1 změnil soubory, kde provedl 6 přidání a 4 odebrání
  1. +6
    -4
      Resolver/MerchantResolver.php

+ 6
- 4
Resolver/MerchantResolver.php Zobrazit soubor

@@ -127,11 +127,13 @@ class MerchantResolver

public function getUrl(SectionInterface $section)
{
if ($this->urlResolver->isServerLocalhost()) {
return $this->router->generate('frontend_home', ['section' => $section->getSlug()], UrlGeneratorInterface::ABSOLUTE_URL);
} else {
return $this->settingSolver->getSettingValue($section->getMerchant(), MerchantSettingDefinition::SETTING_URL);
$url = $this->settingSolver->getSettingValue($section->getMerchant(), MerchantSettingDefinition::SETTING_URL);
if(!$section->getIsDefault()) {
$url .= $section->getSlug();
}

return$url;
}

public function getMerchantUser(UserInterface $user = null)

Načítá se…
Zrušit
Uložit