소스 검색

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

reduction
Guillaume 4 년 전
부모
커밋
3cb1d30767
1개의 변경된 파일13개의 추가작업 그리고 0개의 파일을 삭제
  1. +13
    -0
      ShopBundle/Model/Merchant.php

+ 13
- 0
ShopBundle/Model/Merchant.php 파일 보기

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

Loading…
취소
저장