本文整理汇总了PHP中Pim\Bundle\CatalogBundle\Model\ProductValueInterface::setMedia方法的典型用法代码示例。如果您正苦于以下问题:PHP ProductValueInterface::setMedia方法的具体用法?PHP ProductValueInterface::setMedia怎么用?PHP ProductValueInterface::setMedia使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Pim\Bundle\CatalogBundle\Model\ProductValueInterface
的用法示例。
在下文中一共展示了ProductValueInterface::setMedia方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
function it_updates_normalized_product_template_values_if_media_values_have_been_handled($normalizer, ProductTemplateInterface $imageTemplate, ProductTemplateInterface $textTemplate, ProductValueInterface $imageValue, ProductValueInterface $textValue, FileInterface $imageMedia)
{
$normalizer->normalize(Argument::cetera())->willReturn([]);
$imageTemplate->getValues()->willReturn([$imageValue]);
$imageValue->getMedia()->willReturn($imageMedia);
$imageMedia->isRemoved()->willReturn(true);
$imageValue->setMedia(null)->shouldBeCalled();
$imageTemplate->setValuesData([])->shouldBeCalled();
$textTemplate->getValues()->willReturn([$textValue]);
$textTemplate->setValuesData([])->shouldNotBeCalled();
$this->handleProductTemplateMedia($imageTemplate);
$this->handleProductTemplateMedia($textTemplate);
}
示例2: duplicateMedia
/**
* TODO: remove this method after the refactoring of the product media manager
*
* @param ProductInterface $product
* @param ProductValueInterface $fromValue
* @param ProductValueInterface $toValue
*/
protected function duplicateMedia(ProductInterface $product, ProductValueInterface $fromValue, ProductValueInterface $toValue)
{
if (null === $toValue->getMedia()) {
$media = $this->mediaFactory->createMedia();
$toValue->setMedia($media);
}
$this->mediaManager->duplicate($fromValue->getMedia(), $toValue->getMedia(), $this->mediaManager->generateFilenamePrefix($product, $fromValue));
}
示例3: setProductFile
/**
* @param ProductValueInterface $productValue
* @param ProductValueInterface $value
*/
protected function setProductFile(ProductValueInterface $productValue, ProductValueInterface $value)
{
if (null === ($media = $productValue->getMedia())) {
$media = new $this->productMediaClass();
$productValue->setMedia($media);
}
$file = $value->getMedia()->getFile();
if ($file) {
$media->setFile($file);
} else {
$media->setRemoved(true);
}
}