Sfoglia il codice sorgente

Merge branch 'develop'

master
Guillaume 2 anni fa
parent
commit
c822bb6fa1
1 ha cambiato i file con 6 aggiunte e 4 eliminazioni
  1. +6
    -4
      Resolver/MerchantResolver.php

+ 6
- 4
Resolver/MerchantResolver.php Vedi File

@@ -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)

Loading…
Annulla
Salva