dnafactory / module-fake-configurable
Questo modulo crea finti configurabili (associabili a qualsiasi tipologia di prodotti). In questo modo è possibile creare url differenti per prodotti e beneficiare visivamente delle configurazioni.
Installs: 4 617
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 2
Open Issues: 0
Type:magento2-module
Requires
- php: ^7.1|^8.1
- dnafactory/core: ^1
This package is not auto-updated.
Last update: 2025-03-31 12:34:50 UTC
README
#Fake Configurable
composer require dnafactory/fake-configurable
Questo modulo crea finti configurabili (associabili a qualsiasi tipologia di prodotti). In questo modo è possibile creare url differenti per prodotti e beneficiare visivamente delle configurazioni.
Facade & Usage
All associated product are called "brother"
<?php namespace DNAFactory\FakeConfigurable\Api; use Magento\Catalog\Api\Data\ProductInterface; use Magento\Catalog\Model\ResourceModel\Product\Link\Collection as LinkCollection; use Magento\Catalog\Model\ResourceModel\Product\Link\Product\Collection as ProductCollection; interface BrotherManagementInterface { public function getBrotherProducts(ProductInterface $product): array; public function getBrotherProductIds(ProductInterface $product): array; public function getBrotherProductCollection(ProductInterface $product): ProductCollection; public function getBrotherLinkCollection(ProductInterface $product): LinkCollection; }