瀏覽代碼

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…
取消
儲存