本文整理汇总了PHP中Pim\Component\Catalog\Model\ProductInterface::getAssociationForTypeCode方法的典型用法代码示例。如果您正苦于以下问题:PHP ProductInterface::getAssociationForTypeCode方法的具体用法?PHP ProductInterface::getAssociationForTypeCode怎么用?PHP ProductInterface::getAssociationForTypeCode使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Pim\Component\Catalog\Model\ProductInterface
的用法示例。
在下文中一共展示了ProductInterface::getAssociationForTypeCode方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: addProductsAndGroupsToAssociations
/**
* Add products and groups to associations
*
* @param ProductInterface $product
* @param mixed $data
*/
protected function addProductsAndGroupsToAssociations(ProductInterface $product, $data)
{
foreach ($data as $typeCode => $items) {
$association = $product->getAssociationForTypeCode($typeCode);
if (null === $association) {
throw InvalidArgumentException::expected('associations', 'existing association type code', 'adder', 'association', $typeCode);
}
$this->addAssociatedProducts($association, $items['products']);
$this->addAssociatedGroups($association, $items['groups']);
}
}
示例2: theFollowingAssociationsForTheProduct
/**
* @Given /^the following associations for the (product "([^"]+)"):$/
*/
public function theFollowingAssociationsForTheProduct(ProductInterface $owner, $id, TableNode $values)
{
$rows = $values->getHash();
foreach ($rows as $row) {
$association = $owner->getAssociationForTypeCode($row['type']);
if (null === $association) {
$associationType = $this->getContainer()->get('pim_catalog.repository.association_type')->findOneBy(['code' => $row['type']]);
$association = new Association();
$association->setAssociationType($associationType);
$owner->addAssociation($association);
}
$association->addProduct($this->getProduct($row['product']));
}
$this->getProductSaver()->save($owner, ['recalculate' => false]);
}
示例3: denormalizeAssociations
/**
* Denormalize product associations
*
* @param string &$data
* @param string $format
* @param array $context
* @param ProductInterface $product
*
* @throws \RuntimeException
*/
protected function denormalizeAssociations(&$data, $format, array $context, ProductInterface $product)
{
foreach ($product->getAssociations() as $association) {
foreach ($association->getGroups() as $group) {
$association->removeGroup($group);
}
foreach ($association->getProducts() as $prod) {
$association->removeProduct($prod);
}
}
// Get association field names and add associations
$assocFieldNames = $this->assocFieldResolver->resolveAssociationColumns();
foreach ($assocFieldNames as $assocFieldName) {
if (isset($data[$assocFieldName])) {
if (strlen($data[$assocFieldName]) > 0) {
list($associationTypeCode, $part) = explode('-', $assocFieldName);
$association = $product->getAssociationForTypeCode($associationTypeCode);
$association = $this->serializer->denormalize($data[$assocFieldName], $this->associationClass, $format, ['entity' => $association, 'association_type_code' => $associationTypeCode, 'part' => $part] + $context);
if (!$product->getAssociationForTypeCode($associationTypeCode)) {
$product->addAssociation($association);
}
}
unset($data[$assocFieldName]);
}
}
foreach (array_keys($data) as $fieldName) {
if (null !== ($matches = $this->extractAssociationFieldNameInfos($fieldName))) {
throw new \RuntimeException(sprintf('Association type "%s" does not exist anymore', $matches['assoc_type_code']));
}
}
}