本文整理汇总了PHP中Pim\Bundle\CatalogBundle\Model\ProductInterface::removeCategory方法的典型用法代码示例。如果您正苦于以下问题:PHP ProductInterface::removeCategory方法的具体用法?PHP ProductInterface::removeCategory怎么用?PHP ProductInterface::removeCategory使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Pim\Bundle\CatalogBundle\Model\ProductInterface
的用法示例。
在下文中一共展示了ProductInterface::removeCategory方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
function it_removes_categories_to_a_product($categoryRepository, CategoryInterface $bookCategory, CategoryInterface $penCategory, CategoryInterface $bluePenCategory, ProductInterface $bookProduct, ProductInterface $bluePenProduct)
{
$categoryRepository->findOneByIdentifier('book_category')->willReturn($bookCategory);
$bookProduct->removeCategory($bookCategory)->shouldBeCalled();
$categoryRepository->findOneByIdentifier('pen_category')->willReturn($penCategory);
$categoryRepository->findOneByIdentifier('blue_pen_category')->willReturn($bluePenCategory);
$bluePenProduct->removeCategory($penCategory)->shouldBeCalled();
$bluePenProduct->removeCategory($bluePenCategory)->shouldBeCalled();
$this->removeFieldData($bookProduct, 'categories', ['book_category']);
$this->removeFieldData($bluePenProduct, 'categories', ['pen_category', 'blue_pen_category']);
}
示例2:
function it_applies_on_related_products($saver, RemoveEvent $event, CategoryInterface $object, ProductInterface $product)
{
$saver->saveAll([$product], ['flush' => 'expected_flush_value', 'recalculate' => false, 'schedule' => false])->shouldBeCalled();
$event->getSubject()->willReturn($object);
$event->getArgument('flush')->willReturn('expected_flush_value');
$object->getProducts()->willReturn([$product]);
$product->removeCategory($object)->shouldBeCalled();
$this->postRemove($event)->shouldReturn(null);
}
示例3:
function it_sets_category_field($categoryRepository, ProductInterface $product, CategoryInterface $mug, CategoryInterface $shirt, CategoryInterface $men)
{
$categoryRepository->findOneByIdentifier('mug')->willReturn($mug);
$categoryRepository->findOneByIdentifier('shirt')->willReturn($shirt);
$product->getCategories()->willReturn([$men]);
$product->removeCategory($men)->shouldBeCalled();
$product->addCategory($mug)->shouldBeCalled();
$product->addCategory($shirt)->shouldBeCalled();
$this->setFieldData($product, 'categories', ['mug', 'shirt']);
}
示例4:
function it_dispatches_an_event_when_removing_a_category($eventDispatcher, $objectManager, CategoryInterface $category, ProductInterface $product1, ProductInterface $product2)
{
$category->isRoot()->willReturn(false);
$category->getProducts()->willReturn([$product1, $product2]);
$product1->removeCategory($category)->shouldBeCalled();
$product2->removeCategory($category)->shouldBeCalled();
$eventDispatcher->dispatch(CategoryEvents::PRE_REMOVE_CATEGORY, Argument::type('Symfony\\Component\\EventDispatcher\\GenericEvent'))->shouldBeCalled();
$objectManager->remove($category)->shouldBeCalled();
$this->remove($category, ['flush' => false]);
}
示例5: removeFieldData
/**
* {@inheritdoc}
*
* Expected data input format : ["category_code", "another_category_code"]
*/
public function removeFieldData(ProductInterface $product, $field, $data, array $options = [])
{
$this->checkData($field, $data);
$categories = [];
foreach ($data as $categoryCode) {
$category = $this->categoryRepository->findOneByIdentifier($categoryCode);
if (null === $category) {
throw InvalidArgumentException::expected($field, 'existing category code', 'remover', 'category', $categoryCode);
}
$categories[] = $category;
}
foreach ($categories as $categoryToRemove) {
$product->removeCategory($categoryToRemove);
}
}
示例6:
function it_dispatches_an_event_when_removing_a_category($eventDispatcher, $objectManager, $optionsResolver, $productSaver, CategoryInterface $category, ProductInterface $product1, ProductInterface $product2)
{
$optionsResolver->resolveRemoveOptions(['flush' => true])->willReturn(['flush' => true]);
$category->getId()->willReturn(12);
$category->isRoot()->willReturn(false);
$category->getProducts()->willReturn([$product1, $product2]);
$product1->removeCategory($category)->shouldBeCalled();
$product2->removeCategory($category)->shouldBeCalled();
$eventDispatcher->dispatch(CategoryEvents::PRE_REMOVE_CATEGORY, Argument::type('Akeneo\\Component\\StorageUtils\\Event\\RemoveEvent'))->shouldBeCalled();
$objectManager->remove($category)->shouldBeCalled();
$objectManager->flush()->shouldBeCalled();
$eventDispatcher->dispatch(CategoryEvents::POST_REMOVE_CATEGORY, Argument::type('Akeneo\\Component\\StorageUtils\\Event\\RemoveEvent'))->shouldBeCalled();
$productSaver->saveAll([$product1, $product2], ['flush' => true, 'recalculate' => false, 'schedule' => false])->shouldBeCalled();
$this->remove($category, ['flush' => true]);
}
示例7: setFieldData
/**
* {@inheritdoc}
*
* Expected data input format : ["category_code"]
*/
public function setFieldData(ProductInterface $product, $field, $data, array $options = [])
{
$this->checkData($field, $data);
$categories = [];
foreach ($data as $categoryCode) {
$category = $this->getCategory($categoryCode);
if (null === $category) {
throw InvalidArgumentException::expected($field, 'existing category code', 'setter', 'category', $categoryCode);
} else {
$categories[] = $category;
}
}
$oldCategories = $product->getCategories();
foreach ($oldCategories as $category) {
$product->removeCategory($category);
}
foreach ($categories as $category) {
$product->addCategory($category);
}
}
示例8: denormalizeCategories
/**
* Denormalize product categories
*
* @param string $data
* @param string $format
* @param array $context
* @param ProductInterface $product
*/
protected function denormalizeCategories($data, $format, array $context, ProductInterface $product)
{
foreach ($product->getCategories() as $category) {
$product->removeCategory($category);
}
$categoryCodes = strlen($data) > 0 ? explode(",", $data) : array();
foreach ($categoryCodes as $categoryCode) {
$product->addCategory($this->serializer->denormalize($categoryCode, $this->categoryClass, $format, $context));
}
}