本文整理汇总了PHP中Pim\Component\Catalog\Model\ProductInterface::removeGroup方法的典型用法代码示例。如果您正苦于以下问题:PHP ProductInterface::removeGroup方法的具体用法?PHP ProductInterface::removeGroup怎么用?PHP ProductInterface::removeGroup使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Pim\Component\Catalog\Model\ProductInterface
的用法示例。
在下文中一共展示了ProductInterface::removeGroup方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
function it_removes_groups_field($groupRepository, ProductInterface $product, GroupInterface $packGroup, GroupInterface $crossGroup, GroupTypeInterface $nonVariantType)
{
$groupRepository->findOneByIdentifier('pack')->willReturn($packGroup);
$groupRepository->findOneByIdentifier('cross')->willReturn($crossGroup);
$packGroup->getType()->willReturn($nonVariantType);
$crossGroup->getType()->willReturn($nonVariantType);
$nonVariantType->isVariant()->willReturn(false);
$product->removeGroup($packGroup)->shouldBeCalled();
$product->removeGroup($crossGroup)->shouldBeCalled();
$this->removeFieldData($product, 'groups', ['pack', 'cross']);
}
示例2:
function it_sets_variant_group_field($groupRepository, ProductInterface $product, GroupInterface $shirt, GroupInterface $cross, GroupInterface $up, GroupTypeInterface $variantType, GroupTypeInterface $nonVariantType)
{
$groupRepository->findOneByIdentifier('shirt')->willReturn($shirt);
$shirt->getType()->willReturn($variantType);
$variantType->isVariant()->willReturn(true);
$product->getGroups()->willReturn([$up, $cross]);
$up->getType()->willReturn($nonVariantType);
$nonVariantType->isVariant()->willReturn(false);
$cross->getType()->willReturn($variantType);
$variantType->isVariant()->willReturn(true);
$product->removeGroup($cross)->shouldBeCalled();
$product->addGroup($shirt)->shouldBeCalled();
$this->setFieldData($product, 'variant_group', 'shirt');
}
示例3: removeFieldData
/**
* {@inheritdoc}
*
* Expected data input format : ["group_code", "another_group_code"]
*/
public function removeFieldData(ProductInterface $product, $field, $data, array $options = [])
{
$this->checkData($field, $data);
$groups = [];
foreach ($data as $groupCode) {
$group = $this->groupRepository->findOneByIdentifier($groupCode);
if (null === $group) {
throw InvalidArgumentException::expected($field, 'existing group code', 'remover', 'groups', $groupCode);
}
if ($group->getType()->isVariant()) {
throw InvalidArgumentException::expected($field, 'non variant group code', 'remover', 'groups', $groupCode);
}
$groups[] = $group;
}
foreach ($groups as $group) {
$product->removeGroup($group);
}
}
示例4: setFieldData
/**
* {@inheritdoc}
*
* Expected data input format : ["group_code"]
*/
public function setFieldData(ProductInterface $product, $field, $data, array $options = [])
{
$this->checkData($field, $data);
$groups = [];
foreach ($data as $groupCode) {
$group = $this->groupRepository->findOneByIdentifier($groupCode);
if (null === $group) {
throw InvalidArgumentException::expected($field, 'existing group code', 'setter', 'groups', $groupCode);
} else {
$groups[] = $group;
}
}
$oldGroups = $product->getGroups();
foreach ($oldGroups as $group) {
$product->removeGroup($group);
}
foreach ($groups as $group) {
$product->addGroup($group);
}
}
示例5: setFieldData
/**
* {@inheritdoc}
*
* Expected data input format : "variant_group_code"
*/
public function setFieldData(ProductInterface $product, $field, $data, array $options = [])
{
$this->checkData($field, $data);
if (null !== $data) {
$variantGroup = $this->groupRepository->findOneByIdentifier($data);
if (null === $variantGroup) {
throw InvalidArgumentException::expected($field, 'existing variant group code', 'setter', 'variant_group', $data);
}
if (!$variantGroup->getType()->isVariant()) {
throw InvalidArgumentException::expected($field, 'variant group code', 'setter', 'variant_group', $data);
}
}
$existingGroups = $product->getGroups();
foreach ($existingGroups as $group) {
if ($group->getType()->isVariant()) {
$product->removeGroup($group);
}
}
if (null !== $data) {
$product->addGroup($variantGroup);
}
}
示例6: denormalizeGroups
/**
* Denormalize product groups
*
* @param string $data
* @param string $format
* @param array $context
* @param ProductInterface $product
*/
protected function denormalizeGroups($data, $format, array $context, ProductInterface $product)
{
foreach ($product->getGroups() as $group) {
$product->removeGroup($group);
}
$groupCodes = strlen($data) > 0 ? explode(",", $data) : [];
foreach ($groupCodes as $groupCode) {
$product->addGroup($this->serializer->denormalize($groupCode, $this->groupClass, $format, $context));
}
}