当前位置: 首页>>代码示例>>PHP>>正文


PHP ProductValueInterface::getProduct方法代码示例

本文整理汇总了PHP中Pim\Component\Catalog\Model\ProductValueInterface::getProduct方法的典型用法代码示例。如果您正苦于以下问题:PHP ProductValueInterface::getProduct方法的具体用法?PHP ProductValueInterface::getProduct怎么用?PHP ProductValueInterface::getProduct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Pim\Component\Catalog\Model\ProductValueInterface的用法示例。


在下文中一共展示了ProductValueInterface::getProduct方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1:

 function it_does_not_add_value_if_already_present(ProductValueInterface $notPresent, ProductInterface $product, AttributeInterface $attribute, ProductValueInterface $present, ProductInterface $anotherProduct)
 {
     $notPresent->getProduct()->willReturn($product);
     $notPresent->getData()->willReturn('new-data');
     $notPresent->getAttribute()->willReturn($attribute);
     $notPresent->getLocale()->willReturn(null);
     $notPresent->getScope()->willReturn(null);
     $attribute->getCode()->willReturn('sku');
     $this->addValue($notPresent)->shouldReturn(true);
     $present->getProduct()->willReturn($anotherProduct);
     $present->getData()->willReturn('new-data');
     $present->getAttribute()->willReturn($attribute);
     $present->getLocale()->willReturn(null);
     $present->getScope()->willReturn(null);
     $attribute->getCode()->willReturn('sku');
     $this->addValue($present)->shouldReturn(false);
 }
开发者ID:alexisfroger,项目名称:pim-community-dev,代码行数:17,代码来源:UniqueValuesSetSpec.php

示例2: addValue

 /**
  * Return true if value has been added, else if value already exists inside the set
  *
  * @param ProductValueInterface $productValue
  *
  * @return bool
  */
 public function addValue(ProductValueInterface $productValue)
 {
     $product = $productValue->getProduct();
     $productIdentifier = $this->getProductIdentifier($product);
     $productValueData = $this->getValueData($productValue);
     $uniqueValueCode = $this->getUniqueValueCode($productValue);
     if (isset($this->uniqueValues[$uniqueValueCode][$productValueData])) {
         $storedIdentifier = $this->uniqueValues[$uniqueValueCode][$productValueData];
         if ($storedIdentifier !== $productIdentifier) {
             return false;
         }
     }
     if (!isset($this->uniqueValues[$uniqueValueCode])) {
         $this->uniqueValues[$uniqueValueCode] = [];
     }
     if (!isset($this->uniqueValues[$uniqueValueCode][$productValueData])) {
         $this->uniqueValues[$uniqueValueCode][$productValueData] = $productIdentifier;
     }
     return true;
 }
开发者ID:alexisfroger,项目名称:pim-community-dev,代码行数:27,代码来源:UniqueValuesSet.php

示例3: hasAlreadyValidatedTheSameValue

 /**
  * Checks if the same exact value has already been processed on a different product instance
  *
  * When validates values for a VariantGroup there is not product related to the value
  *
  * @param ProductValueInterface $productValue
  *
  * @return bool
  */
 protected function hasAlreadyValidatedTheSameValue(ProductValueInterface $productValue)
 {
     if (null !== $productValue->getProduct()) {
         return false === $this->uniqueValuesSet->addValue($productValue);
     }
     return false;
 }
开发者ID:a2xchip,项目名称:pim-community-dev,代码行数:16,代码来源:UniqueValueValidator.php


注:本文中的Pim\Component\Catalog\Model\ProductValueInterface::getProduct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。