Pārlūkot izejas kodu

Merchant model : ajout d'une méthode permettant de récupérer une config donnée.

reduction
Guillaume pirms 4 gadiem
vecāks
revīzija
3cb1d30767
1 mainītis faili ar 13 papildinājumiem un 0 dzēšanām
  1. +13
    -0
      ShopBundle/Model/Merchant.php

+ 13
- 0
ShopBundle/Model/Merchant.php Parādīt failu

@@ -165,6 +165,19 @@ abstract class Merchant extends AbstractDocumentEntity
return $this;
}

public function getMerchantConfig($name)
{
if($this->getMerchantConfigs()) {
foreach($this->getMerchantConfigs() as $merchantConfig) {
if($merchantConfig->getName() == $name) {
return $merchantConfig->getValue() ;
}
}
}

return false ;
}

public function getAddress(): ?Address
{
return $this->address;

Notiek ielāde…
Atcelt
Saglabāt