Product Configuration feature integration
Edit on GitHubThis is the Beta version of the feature and is therefore subject to changes.
This document describes how to integrate the Product Configuration feature into a Spryker project.
Install feature core
Follow the steps below to install the Product Configuration feature core.
Prerequisites
To start feature integration, overview and install the necessary features:
NAME | VERSION |
---|---|
Spryker Core | 202108.0 |
Cart | 202108.0 |
Checkout | 202108.0 |
Product | 202108.0 |
Prices | 202108.0 |
Inventory Management | 202108.0 |
Order Management | 202108.0 |
1) Install required modules using Composer
Run the following command(s) to install the required modules:
composer require spryker-feature/configurable-product:"202108.0" --update-with-dependencies
Make sure that the following modules have been installed:
MODULE | EXPECTED DIRECTORY |
---|---|
ProductConfiguration | vendor/spryker/product-configuration |
ProductConfigurationExtension | vendor/spryker/product-configuration-extension |
ProductConfigurationDataImport | vendor/spryker/product-configuration-data-import |
ProductConfigurationGui | vendor/spryker/product-configuration-gui |
ProductConfigurationStorage | vendor/spryker/product-configuration-storage |
ProductConfigurationStorageExtension | vendor/spryker/product-configuration-storage-extension |
SalesProductConfiguration | vendor/spryker/sales-product-configuration |
SalesProductConfigurationGui | vendor/spryker/sales-product-configuration-gui |
SalesProductConfigurationGuiExtension | vendor/spryker/sales-product-configuration-gui-extension |
QuoteRequestExtension | vendor/spryker/quote-request-extension |
2) Set up the configuration
Add the following configuration to your project:
CONFIGURATION | SPECIFICATION | NAMESPACE |
---|---|---|
ProductConfigurationConstants::SPRYKER_PRODUCT_CONFIGURATOR_ENCRYPTION_KEY | Provides an encryption key for checksum validation. It is used for the checksum generation of the product configurator data based on the provided key. | Spryker\Shared\ProductConfiguration\ProductConfigurationConstants |
ProductConfigurationConstants::SPRYKER_PRODUCT_CONFIGURATOR_HEX_INITIALIZATION_VECTOR | Provides a hex initialization vector for checksum validation. It is used as a hex initialization vector for the checksum generation of product configurator data. | Spryker\Shared\ProductConfiguration\ProductConfigurationConstants |
KernelConstants::DOMAIN_WHITELIST | Defines a set of whitelist domains that every external URL is checked against before redirecting. | Spryker\Shared\Kernel\KernelConstants |
config/Shared/config_default.php
<?php
use Spryker\Shared\Kernel\KernelConstants;
use Spryker\Shared\ProductConfiguration\ProductConfigurationConstants;
// >>> Product Configuration
$config[ProductConfigurationConstants::SPRYKER_PRODUCT_CONFIGURATOR_ENCRYPTION_KEY] = getenv('SPRYKER_PRODUCT_CONFIGURATOR_ENCRYPTION_KEY') ?: 'change123';
$config[ProductConfigurationConstants::SPRYKER_PRODUCT_CONFIGURATOR_HEX_INITIALIZATION_VECTOR] = getenv('SPRYKER_PRODUCT_CONFIGURATOR_HEX_INITIALIZATION_VECTOR') ?: '0c1ffefeebdab4a3d839d0e52590c9a2';
$config[KernelConstants::DOMAIN_WHITELIST][] = getenv('SPRYKER_PRODUCT_CONFIGURATOR_HOST');
To make sure that the changes have been applied, check that the exemplary product configurator opens at http://date-time-configurator-example.mysprykershop.com
.
3) Set up database schema and transfer objects
Set up database schema and transfer objects as follows:
- For entity changes to trigger events, adjust the schema definition:
src/Pyz/Zed/ProductConfiguration/Persistence/Propel/Schema/spy_product_configuration.schema.xml
<?xml version="1.0"?>
<database xmlns="spryker:schema-01" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="zed" xsi:schemaLocation="spryker:schema-01 https://static.spryker.com/schema-01.xsd"
namespace="Orm\Zed\ProductConfiguration\Persistence"
package="src.Orm.Zed.ProductConfiguration.Persistence">
<table name="spy_product_configuration">
<behavior name="event">
<parameter name="spy_product_configuration_all" column="*"/>
</behavior>
</table>
</database>
AFFECTED ENTITY | TRIGGERED EVENTS |
---|---|
spy_product_configuration | Entity.spy_product_configuration.create Entity.spy_product_configuration.update Entity.spy_product_configuration.delete |
src/Pyz/Zed/ProductConfigurationStorage/Persistence/Propel/Schema/spy_product_configuration_storage.schema.xml
<?xml version="1.0"?>
<database xmlns="spryker:schema-01"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
name="zed"
xsi:schemaLocation="spryker:schema-01 https://static.spryker.com/schema-01.xsd"
namespace="Orm\Zed\ProductConfigurationStorage\Persistence"
package="src.Orm.Zed.ProductConfigurationStorage.Persistence">
<table name="spy_product_configuration_storage">
<behavior name="synchronization">
<parameter name="queue_pool" value="synchronizationPool"/>
</behavior>
</table>
</database>
- Apply database changes and generate entity and transfer changes:
console transfer:generate
console propel:install
console transfer:generate
Make sure that the following changes have been applied by checking your database:
DATABASE ENTITY | TYPE | EVENT |
---|---|---|
spy_product_configuration | table | created |
spy_product_configuration_storage | table created | |
spy_sales_order_item_configuration | table | created |
Make sure that the following changes have been triggered in transfer objects:
TRANSFER | TYPE | EVENT | PATH |
---|---|---|---|
ProductConfigurationTransfer | class | created | src/Generated/Shared/Transfer/ProductConfigurationTransfer |
ProductConfigurationInstanceTransfer | class | created | src/Generated/Shared/Transfer/ProductConfigurationInstanceTransfer |
ItemTransfer | class | created | src/Generated/Shared/Transfer/ItemTransfer |
ProductConfigurationFilterTransfer | class | created | src/Generated/Shared/Transfer/ProductConfigurationFilterTransfer |
FilterTransfer | class | created | src/Generated/Shared/Transfer/FilterTransfer |
ProductConfigurationCollectionTransfer | class | created | src/Generated/Shared/Transfer/ProductConfigurationCollectionTransfer |
CartChangeTransfer | class | created | src/Generated/Shared/Transfer/CartChangeTransfer |
QuoteTransfer | class | created | src/Generated/Shared/Transfer/QuoteTransfer |
CheckoutErrorTransfer | class | created | src/Generated/Shared/Transfer/CheckoutErrorTransfer |
CheckoutResponseTransfer | class | created | src/Generated/Shared/Transfer/CheckoutResponseTransfer |
ProductConfiguratorResponseProcessorResponseTransfer | class | created | src/Generated/Shared/Transfer/ProductConfiguratorResponseProcessorResponseTransfer |
MessageTransfer | class | created | src/Generated/Shared/Transfer/MessageTransfer |
ProductConfiguratorResponseTransfer | class | created | src/Generated/Shared/Transfer/ProductConfiguratorResponseTransfer |
ProductConfiguratorRequestTransfer | class | created | src/Generated/Shared/Transfer/ProductConfiguratorRequestTransfer |
ProductConfiguratorRedirectTransfer | class | created | src/Generated/Shared/Transfer/ProductConfiguratorRedirectTransfer |
ProductConfiguratorRequestDataTransfer | class | created | src/Generated/Shared/Transfer/ProductConfiguratorRequestDataTransfer |
CustomerTransfer | class | created | src/Generated/Shared/Transfer/CustomerTransfer |
StoreTransfer | class | created | src/Generated/Shared/Transfer/StoreTransfer |
CurrencyTransfer | class | created | src/Generated/Shared/Transfer/CurrencyTransfer |
PriceProductTransfer | class | created | src/Generated/Shared/Transfer/PriceProductTransfer |
CartItemQuantityTransfer | class | created | src/Generated/Shared/Transfer/CartItemQuantity |
ProductConfigurationAggregationTransfer | class | created | src/Generated/Shared/Transfer/ProductConfigurationAggregation |
PriceProductFilterTransfer | class | created | src/Generated/Shared/Transfer/PriceProductFilter |
PriceProductDimensionTransfer | class | created | src/Generated/Shared/Transfer/PriceProductDimension |
PriceProductTransfer | class | created | src/Generated/Shared/Transfer/PriceProduct |
ProductConcreteTransfer | class | created | src/Generated/Shared/Transfer/ProductConcrete |
MoneyValueTransfer | class | created | src/Generated/Shared/Transfer/MoneyValue |
ItemReplaceTransfer | class | created | src/Generated/Shared/Transfer/ItemReplace |
QuoteResponseTransfer | class | created | src/Generated/Shared/Transfer/QuoteResponse |
QuoteErrorTransfer | class | created | src/Generated/Shared/Transfer/QuoteError |
SalesProductConfigurationTemplateTransfer | class | created | src/Generated/Shared/Transfer/SalesProductConfigurationTemplate |
SalesOrderItemConfigurationTransfer | class | created | src/Generated/Shared/Transfer/SalesOrderItemConfiguration |
4) Set up behavior
Set up the following behaviors:
- Set up Publishers and a Queue processor:
PLUGIN | SPECIFICATION | PREREQUISITES | NAMESPACE |
---|---|---|---|
ProductConfigurationWritePublisherPlugin | Updates product configuration when triggered by provided product configuration events. | None | Spryker\Zed\ProductConfigurationStorage\Communication\Plugin\Publisher\ProductConfiguration |
ProductConfigurationDeletePublisherPlugin | Removes all data from the product configuration storage when triggered by provided product configuration events. | None | Spryker\Zed\ProductConfigurationStorage\Communication\Plugin\Publisher\ProductConfiguration |
SynchronizationStorageQueueMessageProcessorPlugin | Reads messages from the synchronisation queue and saves them to the storage. | None | \Spryker\Zed\Synchronization\Communication\Plugin\Queue |
src/Pyz/Zed/Publisher/PublisherDependencyProvider.php
<?php
namespace Pyz\Zed\Publisher;
use Spryker\Zed\ProductConfigurationStorage\Communication\Plugin\Publisher\ProductConfiguration\ProductConfigurationDeletePublisherPlugin;
use Spryker\Zed\ProductConfigurationStorage\Communication\Plugin\Publisher\ProductConfiguration\ProductConfigurationWritePublisherPlugin;
use Spryker\Zed\Publisher\PublisherDependencyProvider as SprykerPublisherDependencyProvider;
class PublisherDependencyProvider extends SprykerPublisherDependencyProvider
{
/**
* @return \Spryker\Zed\PublisherExtension\Dependency\Plugin\PublisherPluginInterface[]
*/
protected function getPublisherPlugins(): array
{
return array_merge(
$this->getProductConfigurationStoragePlugins()
);
}
/**
* @return \Spryker\Zed\PublisherExtension\Dependency\Plugin\PublisherPluginInterface[]
*/
protected function getProductConfigurationStoragePlugins()
{
return [
new ProductConfigurationWritePublisherPlugin(),
new ProductConfigurationDeletePublisherPlugin(),
];
}
}
src/Pyz/Zed/Queue/QueueDependencyProvider.php
<?php
namespace Pyz\Zed\Queue;
use Spryker\Shared\ProductConfigurationStorage\ProductConfigurationStorageConfig;
use Spryker\Zed\Kernel\Container;
use Spryker\Zed\Queue\QueueDependencyProvider as SprykerDependencyProvider;
use Spryker\Zed\Synchronization\Communication\Plugin\Queue\SynchronizationStorageQueueMessageProcessorPlugin;
class QueueDependencyProvider extends SprykerDependencyProvider
{
/**
* @param \Spryker\Zed\Kernel\Container $container
*
* @return \Spryker\Zed\Queue\Dependency\Plugin\QueueMessageProcessorPluginInterface[]
*/
protected function getProcessorMessagePlugins(Container $container): array
{
return [
ProductConfigurationStorageConfig::PRODUCT_CONFIGURATION_SYNC_STORAGE_QUEUE => new SynchronizationStorageQueueMessageProcessorPlugin(),
];
}
}
Make sure that, after creating a product configuration, you can find the corresponding record in the spy_product_configuration_storage
table.
- Setup re-generate and re-sync features by setting up the following plugins:
PLUGIN | SPECIFICATION | PREREQUISITES | NAMESPACE |
---|---|---|---|
ProductConfigurationPublisherTriggerPlugin | Triggers publish events for product configuration data. | None | Spryker\Zed\ProductConfigurationStorage\Communication\Plugin\Publisher |
ProductConfigurationSynchronizationDataRepositoryPlugin | Allows synchronizing the content of the entire spy_product_configuration_storage table into the storage. |
None | Spryker\Zed\ProductConfigurationStorage\Communication\Plugin\Synchronization |
src/Pyz/Zed/Publisher/PublisherDependencyProvider.php
<?php
namespace Pyz\Zed\Publisher;
use Spryker\Zed\ProductConfigurationStorage\Communication\Plugin\Publisher\ProductConfigurationPublisherTriggerPlugin;
use Spryker\Zed\Publisher\PublisherDependencyProvider as SprykerPublisherDependencyProvider;
class PublisherDependencyProvider extends SprykerPublisherDependencyProvider
{
/**
* @return \Spryker\Zed\PublisherExtension\Dependency\Plugin\PublisherTriggerPluginInterface[]
*/
protected function getPublisherTriggerPlugins(): array
{
return [
new ProductConfigurationPublisherTriggerPlugin(),
];
}
}
src/Pyz/Zed/ProductConfigurationStorage/ProductConfigurationStorageConfig.php
<?php
namespace Pyz\Zed\ProductConfigurationStorage;
use Pyz\Zed\Synchronization\SynchronizationConfig;
use Spryker\Zed\ProductConfigurationStorage\ProductConfigurationStorageConfig as SprykerProductConfigurationStorageConfig;
class ProductConfigurationStorageConfig extends SprykerProductConfigurationStorageConfig
{
/**
* @return string|null
*/
public function getProductConfigurationSynchronizationPoolName(): ?string
{
return SynchronizationConfig::DEFAULT_SYNCHRONIZATION_POOL_NAME;
}
}
src/Pyz/Zed/Synchronization/SynchronizationDependencyProvider.php
<?php
namespace Pyz\Zed\Synchronization;
use Spryker\Zed\ProductConfigurationStorage\Communication\Plugin\Synchronization\ProductConfigurationSynchronizationDataRepositoryPlugin;
use Spryker\Zed\Synchronization\SynchronizationDependencyProvider as SprykerSynchronizationDependencyProvider;
class SynchronizationDependencyProvider extends SprykerSynchronizationDependencyProvider
{
/**
* @return \Spryker\Zed\SynchronizationExtension\Dependency\Plugin\SynchronizationDataPluginInterface[]
*/
protected function getSynchronizationDataPlugins(): array
{
return [
new ProductConfigurationSynchronizationDataRepositoryPlugin(),
];
}
}
Make sure that the product configuration trigger plugin works correctly:
-
Fill the
spy_product_configuration
table with some data. -
Run the
console publish:trigger-events -r product_configuration
command. -
Make sure that the
spy_product_configuration_storage
table has been filled with respective data. -
Make sure that, in your system, storage entries are displayed with the
kv:product_configuration:sku
mask.
Make sure that the product configuration synchronization plugin works correctly:
-
Fill the
spy_product_configuration_storage
table with some data. -
Run the
console sync:data -r product_configuration
command. -
Make sure that, in your system, the storage entries are displayed with the
kv:product_configuration:sku
mask.
- Set up quantity counter plugins:
PLUGIN | SPECIFICATION | PREREQUISITES | NAMESPACE |
---|---|---|---|
ProductConfigurationCartItemQuantityCounterStrategyPlugin | Finds a provided item in a provided cart. Counts the item quantity by the item SKU and the product configuration instance. Returns the item quantity. | None | Spryker\Zed\ProductConfiguration\Communication\Plugin\Availability |
ProductConfigurationCartItemQuantityCounterStrategyPlugin | Finds a provided item in a provided cart. Counts the item quantity by the item SKU and the product configuration instance. Returns the item quantity. | None | Spryker\Zed\ProductConfiguration\Communication\Plugin\AvailabilityCartConnector |
ProductConfigurationCartItemQuantityCounterStrategyPlugin | Finds a provided item in a provided changed cart. Counts the item quantity by the item SKU and the product configuration instance in add and subtract directions. Returns the item quantity. | None | Spryker\Zed\ProductConfiguration\Communication\Plugin\PriceCartConnector |
src/Pyz/Zed/Availability/AvailabilityDependencyProvider.php
<?php
namespace Pyz\Zed\Availability;
use Spryker\Zed\Availability\AvailabilityDependencyProvider as SprykerAvailabilityDependencyProvider;
use Spryker\Zed\ProductConfiguration\Communication\Plugin\Availability\ProductConfigurationCartItemQuantityCounterStrategyPlugin;
class AvailabilityDependencyProvider extends SprykerAvailabilityDependencyProvider
{
/**
* @return \Spryker\Zed\AvailabilityExtension\Dependency\Plugin\CartItemQuantityCounterStrategyPluginInterface[]
*/
protected function getCartItemQuantityCounterStrategyPlugins(): array
{
return [
new ProductConfigurationCartItemQuantityCounterStrategyPlugin(),
];
}
}
src/Pyz/Zed/AvailabilityCartConnector/AvailabilityCartConnectorDependencyProvider.php
<?php
namespace Pyz\Zed\AvailabilityCartConnector;
use Spryker\Zed\AvailabilityCartConnector\AvailabilityCartConnectorDependencyProvider as SprykerAbstractBundleDependencyProvider;
use Spryker\Zed\ProductConfiguration\Communication\Plugin\AvailabilityCartConnector\ProductConfigurationCartItemQuantityCounterStrategyPlugin;
class AvailabilityCartConnectorDependencyProvider extends SprykerAbstractBundleDependencyProvider
{
/**
* @return \Spryker\Zed\AvailabilityCartConnectorExtension\Dependency\Plugin\CartItemQuantityCounterStrategyPluginInterface[]
*/
public function getCartItemQuantityCounterStrategyPlugins(): array
{
return [
new ProductConfigurationCartItemQuantityCounterStrategyPlugin(),
];
}
}
src/Pyz/Zed/PriceCartConnector/PriceCartConnectorDependencyProvider.php
<?php
namespace Pyz\Zed\PriceCartConnector;
use Spryker\Zed\PriceCartConnector\PriceCartConnectorDependencyProvider as SprykerPriceCartConnectorDependencyProvider;
use Spryker\Zed\ProductConfiguration\Communication\Plugin\PriceCartConnector\ProductConfigurationCartItemQuantityCounterStrategyPlugin;
class PriceCartConnectorDependencyProvider extends SprykerPriceCartConnectorDependencyProvider
{
/**
* @return \Spryker\Zed\PriceCartConnectorExtension\Dependency\Plugin\CartItemQuantityCounterStrategyPluginInterface[]
*/
protected function getCartItemQuantityCounterStrategyPlugins(): array
{
return [
new ProductConfigurationCartItemQuantityCounterStrategyPlugin(),
];
}
}
Make sure that the product configuration item quantity counter plugins work correctly:
-
Configure a configurable product.
-
Add the product to the cart.
-
Make sure that the product has been successfully added to the cart.
- Set up cart plugins:
PLUGIN | SPECIFICATION | PREREQUISITES | NAMESPACE |
---|---|---|---|
ProductConfigurationGroupKeyItemExpanderPlugin | Expands the items that have a product configuration instance property with a group key. | None | Spryker\Zed\ProductConfiguration\Communication\Plugin\Cart |
ProductConfigurationCartChangeRequestExpanderPlugin | Expands provided changed cart items with product configuration instances. | None | Spryker\Client\ProductConfigurationStorage\Plugin\Cart |
ProductConfigurationPersistentCartRequestExpanderPlugin | Expands provided changed persistent cart items with product configuration instances. | None | Spryker\Client\ProductConfigurationStorage\Plugin\PersistentCart |
src/Pyz/Zed/Cart/CartDependencyProvider.php
<?php
namespace Pyz\Zed\Cart;
use Spryker\Zed\Cart\CartDependencyProvider as SprykerCartDependencyProvider;
use Spryker\Zed\ProductConfiguration\Communication\Plugin\Cart\ProductConfigurationGroupKeyItemExpanderPlugin;
class CartDependencyProvider extends SprykerCartDependencyProvider
{
/**
* @param \Spryker\Zed\Kernel\Container $container
*
* @return \Spryker\Zed\CartExtension\Dependency\Plugin\ItemExpanderPluginInterface[]
*/
protected function getExpanderPlugins(Container $container): array
{
return [
new ProductConfigurationGroupKeyItemExpanderPlugin(),
];
}
}
src/Pyz/Client/Cart/CartDependencyProvider.php
<?php
namespace Pyz\Client\Cart;
use Spryker\Client\Cart\CartDependencyProvider as SprykerCartDependencyProvider;
use Spryker\Client\ProductConfigurationStorage\Plugin\Cart\ProductConfigurationCartChangeRequestExpanderPlugin;
class CartDependencyProvider extends SprykerCartDependencyProvider
{
/**
* @return \Spryker\Client\CartExtension\Dependency\Plugin\CartChangeRequestExpanderPluginInterface[]
*/
protected function getAddItemsRequestExpanderPlugins()
{
return [
new ProductConfigurationCartChangeRequestExpanderPlugin(),
];
}
}
src/Pyz/Client/PersistentCart/PersistentCartDependencyProvider.php
<?php
namespace Pyz\Client\PersistentCart;
use Spryker\Client\PersistentCart\PersistentCartDependencyProvider as SprykerPersistentCartDependencyProvider;
use Spryker\Client\ProductConfigurationStorage\Plugin\PersistentCart\ProductConfigurationPersistentCartRequestExpanderPlugin;
class PersistentCartDependencyProvider extends SprykerPersistentCartDependencyProvider
{
/**
* @return \Spryker\Client\PersistentCartExtension\Dependency\Plugin\PersistentCartChangeExpanderPluginInterface[]
*/
protected function getChangeRequestExtendPlugins(): array
{
return [
new ProductConfigurationPersistentCartRequestExpanderPlugin(),
];
}
}
Make sure that the cart plugins work correctly:
-
Configure a configurable product.
-
Add the configured product to cart.
-
Make sure that the product has been successfully added to cart.
- Set up checkout plugins:
PLUGIN | SPECIFICATION | PREREQUISITES | NAMESPACE |
---|---|---|---|
ProductConfigurationCheckoutPreConditionPlugin | Returns true if all product configuration items in a quote are complete. Otherwise, returns false . |
None | Spryker\Zed\ProductConfiguration\Communication\Plugin\Checkout |
src/Pyz/Zed/Checkout/CheckoutDependencyProvider.php
<?php
namespace Pyz\Zed\Checkout;
use Spryker\Zed\Checkout\CheckoutDependencyProvider as SprykerCheckoutDependencyProvider;
use Spryker\Zed\ProductConfiguration\Communication\Plugin\Checkout\ProductConfigurationCheckoutPreConditionPlugin;
class CheckoutDependencyProvider extends SprykerCheckoutDependencyProvider
{
/**
* @param \Spryker\Zed\Kernel\Container $container
*
* @return \Spryker\Zed\CheckoutExtension\Dependency\Plugin\CheckoutPreConditionPluginInterface[]
*/
protected function getCheckoutPreConditions(Container $container)
{
return [
new ProductConfigurationCheckoutPreConditionPlugin(),
];
}
}
Make sure that checkout plugins work correctly:
-
Add a configurable product to cart without completing its configuration.
-
Try to place an order with the product.
-
Make sure that the order is not placed and you get an error message about incomplete configuration.
- Set up product management plugins:
PLUGIN | SPECIFICATION | PREREQUISITES | NAMESPACE |
---|---|---|---|
ProductConfigurationTableDataExpanderPlugin | Expands product items with a configurable product type if they have a configuration. | None | Spryker\Zed\ProductConfigurationGui\Communication\Plugin\ProductManagement |
src/Pyz/Zed/ProductManagement/ProductManagementDependencyProvider.php
<?php
namespace Pyz\Zed\ProductManagement;
use Spryker\Zed\ProductConfigurationGui\Communication\Plugin\ProductManagement\ProductConfigurationTableDataExpanderPlugin;
use Spryker\Zed\ProductManagement\ProductManagementDependencyProvider as SprykerProductManagementDependencyProvider;
class ProductManagementDependencyProvider extends SprykerProductManagementDependencyProvider
{
/**
* @return \Spryker\Zed\ProductManagementExtension\Dependency\Plugin\ProductTableDataExpanderPluginInterface[]
*/
protected function getProductTableDataExpanderPlugins(): array
{
return [
new ProductConfigurationTableDataExpanderPlugin(),
];
}
}
Check that product management plugins work correctly:
-
Add the configuration to the product via data import.
-
In the Back Office, go to Catalog > Products.
-
Find a product with a configuration that you created before.
-
Check that product is marked as configurable.
- Set up sales plugins:
PLUGIN | SPECIFICATION | PREREQUISITES | NAMESPACE |
---|---|---|---|
ProductConfigurationOrderItemExpanderPlugin | Expands items with product configuration. | None | Spryker\Zed\SalesProductConfiguration\Communication\Plugin\Sales |
ProductConfigurationOrderPostSavePlugin | Persists product configuration from ItemTransfer in Quote to the sales_order_item_configuration table. |
None | Spryker\Zed\SalesProductConfiguration\Communication\Plugin\Sales |
src/Pyz/Zed/Sales/SalesDependencyProvider.php
<?php
namespace Pyz\Zed\Sales;
use Spryker\Zed\Sales\SalesDependencyProvider as SprykerSalesDependencyProvider;
use Spryker\Zed\SalesProductConfiguration\Communication\Plugin\Sales\ProductConfigurationOrderItemExpanderPlugin;
use Spryker\Zed\SalesProductConfiguration\Communication\Plugin\Sales\ProductConfigurationOrderPostSavePlugin;
class SalesDependencyProvider extends SprykerSalesDependencyProvider
{
/**
* @return \Spryker\Zed\SalesExtension\Dependency\Plugin\OrderItemExpanderPluginInterface[]
*/
protected function getOrderItemExpanderPlugins(): array
{
return [
new ProductConfigurationOrderItemExpanderPlugin(),
];
}
/**
* @return \Spryker\Zed\SalesExtension\Dependency\Plugin\OrderPostSavePluginInterface[]
*/
protected function getOrderPostSavePlugins(): array
{
return [
new ProductConfigurationOrderPostSavePlugin(),
];
}
}
Make sure that sales plugins work correctly:
-
Configure a configurable product.
-
Place an order with the product.
-
Check that that the
spy_sales_order_item_configuration
database table contains a record with the configurable order item.
- Set up price product plugins:
PLUGIN | SPECIFICATION | PREREQUISITES | NAMESPACE |
---|---|---|---|
ProductConfigurationPriceProductExpanderPlugin | Expands the list of price product transfers with product configuration prices. | None | Spryker\Zed\ProductConfiguration\Communication\Plugin\PriceCartConnector |
ProductConfigurationPriceProductFilterPlugin | Filters out all but product configuration prices. | None | Spryker\Service\ProductConfigurationStorage\Plugin\PriceProduct |
ProductConfigurationPriceProductVolumeFilterPlugin | Finds a corresponding volume price for a provided quantity. | None | Spryker\Service\ProductConfigurationStorage\Plugin\PriceProduct |
ProductConfigurationStoragePriceDimensionPlugin | Returns product configuration prices. If a product configuration instance or prices weren’t set, returns an empty array . | None | Spryker\Client\ProductConfigurationStorage\Plugin\PriceProductStorage |
ProductConfigurationStorageVolumePriceExtractorPlugin | Extracts additional product configuration volume prices from price product data. | None | Spryker\Client\ProductConfigurationStorage\Plugin |
src/Pyz/Zed/PriceCartConnector/PriceCartConnectorDependencyProvider.php
<?php
namespace Pyz\Zed\PriceCartConnector;
use Spryker\Zed\PriceCartConnector\PriceCartConnectorDependencyProvider as SprykerPriceCartConnectorDependencyProvider;
use Spryker\Zed\ProductConfiguration\Communication\Plugin\PriceCartConnector\ProductConfigurationPriceProductExpanderPlugin;
class PriceCartConnectorDependencyProvider extends SprykerPriceCartConnectorDependencyProvider
{
/**
* @return \Spryker\Zed\PriceCartConnectorExtension\Dependency\Plugin\PriceProductExpanderPluginInterface[]
*/
protected function getPriceProductExpanderPlugins(): array
{
return [
new ProductConfigurationPriceProductExpanderPlugin(),
];
}
}
src/Pyz/Service/PriceProduct/PriceProductDependencyProvider.php
<?php
namespace Pyz\Service\PriceProduct;
use Spryker\Service\PriceProduct\PriceProductDependencyProvider as SprykerPriceProductDependencyProvider;
use Spryker\Service\ProductConfigurationStorage\Plugin\PriceProduct\ProductConfigurationPriceProductFilterPlugin;
use Spryker\Service\ProductConfigurationStorage\Plugin\PriceProduct\ProductConfigurationPriceProductVolumeFilterPlugin;
class PriceProductDependencyProvider extends SprykerPriceProductDependencyProvider
{
/**
* @return \Spryker\Service\PriceProductExtension\Dependency\Plugin\PriceProductFilterPluginInterface[]
*/
protected function getPriceProductDecisionPlugins(): array
{
return array_merge([
new ProductConfigurationPriceProductFilterPlugin(),
new ProductConfigurationPriceProductVolumeFilterPlugin(),
], parent::getPriceProductDecisionPlugins());
}
}
src/Pyz/Client/PriceProductStorage/PriceProductStorageDependencyProvider.php
<?php
namespace Pyz\Client\PriceProductStorage;
use Spryker\Client\PriceProductStorage\PriceProductStorageDependencyProvider as SprykerPriceProductStorageDependencyProvider;
use Spryker\Client\ProductConfigurationStorage\Plugin\PriceProductStorage\ProductConfigurationPriceFilterExpanderPlugin;
use Spryker\Client\ProductConfigurationStorage\Plugin\PriceProductStorage\ProductConfigurationStoragePriceDimensionPlugin;
class PriceProductStorageDependencyProvider extends SprykerPriceProductStorageDependencyProvider
{
/**
* @return \Spryker\Client\PriceProductStorageExtension\Dependency\Plugin\PriceProductStoragePriceDimensionPluginInterface[]
*/
public function getPriceDimensionStorageReaderPlugins(): array
{
return [
new ProductConfigurationStoragePriceDimensionPlugin(),
];
}
/**
* @return \Spryker\Client\PriceProductStorageExtension\Dependency\Plugin\PriceProductFilterExpanderPluginInterface[]
*/
protected function getPriceProductFilterExpanderPlugins(): array
{
return [
new ProductConfigurationPriceFilterExpanderPlugin(),
];
}
}
src/Pyz/Client/ProductConfigurationStorage/ProductConfigurationStorageDependencyProvider.php
<?php
namespace Pyz\Client\ProductConfigurationStorage;
use Spryker\Client\ProductConfigurationStorage\Plugin\ProductConfigurationStorageVolumePriceExtractorPlugin;
use Spryker\Client\ProductConfigurationStorage\ProductConfigurationStorageDependencyProvider as SprykerProductConfigurationStorageDependencyProvider;
class ProductConfigurationStorageDependencyProvider extends SprykerProductConfigurationStorageDependencyProvider
{
/**
* @return \Spryker\Client\ProductConfigurationStorageExtension\Dependency\Plugin\ProductConfigurationStoragePriceExtractorPluginInterface[]
*/
protected function getProductConfigurationStoragePriceExtractorPlugins(): array
{
return [
new ProductConfigurationStorageVolumePriceExtractorPlugin(),
];
}
}
Make sure that the product configuration price overrides the default product price:
-
Configure a configurable product with a regular price and a volume price.
-
Add the product to the cart with the amount required for the volume prices to apply.
-
Make sure that the volume price applies.
- Set up availability plugins:
PLUGIN | SPECIFICATION | PREREQUISITES | NAMESPACE |
---|---|---|---|
ProductConfigurationAvailabilityStorageStrategyPlugin | Checks if a product configuration provides an availability for a product. | None | Spryker\Client\ProductConfigurationStorage\Plugin\AvailabilityStorage |
src/Pyz/Client/AvailabilityStorage/AvailabilityStorageDependencyProvider.php
<?php
namespace Pyz\Client\AvailabilityStorage;
use Spryker\Client\AvailabilityStorage\AvailabilityStorageDependencyProvider as SprykerAvailabilityStorageDependencyProvider;
use Spryker\Client\ProductConfigurationStorage\Plugin\AvailabilityStorage\ProductConfigurationAvailabilityStorageStrategyPlugin;
class AvailabilityStorageDependencyProvider extends SprykerAvailabilityStorageDependencyProvider
{
/**
* @return \Spryker\Client\AvailabilityStorageExtension\Dependency\Plugin\AvailabilityStorageStrategyPluginInterface[]
*/
public function getAvailabilityStorageStrategyPlugins(): array
{
return [
new ProductConfigurationAvailabilityStorageStrategyPlugin(),
];
}
}
Make sure that availability plugins work correctly:
-
Configure a configurable product that has a regular availability.
-
Make sure that you cannot add to cart more items than available for the configuration.
- Set up product plugins:
PLUGIN | SPECIFICATION | PREREQUISITES | NAMESPACE |
---|---|---|---|
ProductViewProductConfigurationExpanderPlugin | Expands a product with a configuration. | None | Spryker\Client\ProductConfigurationStorage\Plugin\ProductStorage |
src/Pyz/Client/ProductStorage/ProductStorageDependencyProvider.php
<?php
namespace Pyz\Client\ProductStorage;
use Spryker\Client\ProductConfigurationStorage\Plugin\ProductStorage\ProductViewProductConfigurationExpanderPlugin;
use Spryker\Client\ProductStorage\ProductStorageDependencyProvider as SprykerProductStorageDependencyProvider;
class ProductStorageDependencyProvider extends SprykerProductStorageDependencyProvider
{
/**
* @return \Spryker\Client\ProductStorage\Dependency\Plugin\ProductViewExpanderPluginInterface[]
*/
protected function getProductViewExpanderPlugins()
{
return [
new ProductViewProductConfigurationExpanderPlugin(),
];
}
}
Make sure that on the Product Details page of a configurable product, you can see product configuration information.
- Set up product configuration plugins:
PLUGIN | SPECIFICATION | PREREQUISITES | NAMESPACE |
---|---|---|---|
ProductConfiguratorAccessTokenRequestPlugin | Builds a product configurator redirect URL from a configurator response. | None | Spryker\Client\ProductConfiguration\Plugin |
ProductConfiguratorCheckSumResponsePlugin | Validates a response trough a validators stack. | None | Spryker\Client\ProductConfigurationStorage\Plugin\ProductConfiguration |
src/Pyz/Client/ProductConfiguration/ProductConfigurationDependencyProvider.php
<?php
namespace Pyz\Client\ProductConfiguration;
use Spryker\Client\ProductConfiguration\Plugin\ProductConfiguratorAccessTokenRequestPlugin;
use Spryker\Client\ProductConfiguration\ProductConfigurationDependencyProvider as SprykerProductConfigurationDependencyProvider;
use Spryker\Client\ProductConfigurationStorage\Plugin\ProductConfiguration\ProductConfiguratorCheckSumResponsePlugin;
/**
* @method \Spryker\Client\ProductConfiguration\ProductConfigurationConfig getConfig()
*/
class ProductConfigurationDependencyProvider extends SprykerProductConfigurationDependencyProvider
{
/**
* @return \Spryker\Client\ProductConfigurationExtension\Dependency\Plugin\ProductConfiguratorRequestPluginInterface
*/
protected function getDefaultProductConfiguratorRequestPlugin(): ProductConfiguratorRequestPluginInterface
{
return new ProductConfiguratorAccessTokenRequestPlugin();
}
/**
* @return \Spryker\Client\ProductConfigurationExtension\Dependency\Plugin\ProductConfiguratorResponsePluginInterface
*/
protected function getDefaultProductConfiguratorResponsePlugin(): ProductConfiguratorResponsePluginInterface
{
return new ProductConfiguratorCheckSumResponsePlugin();
}
}
Make sure that product configuration plugins work correctly:
-
Make sure that you can access the Configurator page from the Product Details page.
-
Make sure that you can save a product configuration.
- Set up product configuration check plugins for the quote request module:
PLUGIN | SPECIFICATION | PREREQUISITES | NAMESPACE |
---|---|---|---|
ProductConfigurationQuoteRequestQuoteCheckPlugin | Validates product configuration before the quote request creation. | None | Spryker\Client\ProductConfiguration\Plugin\QuoteRequest |
Pyz\Client\QuoteRequest\QuoteRequestDependencyProvider
<?php
namespace Pyz\Client\QuoteRequest;
use Spryker\Client\ProductConfiguration\Plugin\QuoteRequest\ProductConfigurationQuoteRequestQuoteCheckPlugin;
use Spryker\Client\QuoteApproval\Plugin\QuoteRequest\QuoteApprovalQuoteRequestQuoteCheckPlugin;
use Spryker\Client\QuoteRequest\QuoteRequestDependencyProvider as SprykerQuoteRequestDependencyProvider;
class QuoteRequestDependencyProvider extends SprykerQuoteRequestDependencyProvider
{
/**
* @return \Spryker\Client\QuoteRequestExtension\Dependency\Plugin\QuoteRequestQuoteCheckPluginInterface[]
*/
protected function getQuoteRequestQuoteCheckPlugins(): array
{
return [
new ProductConfigurationQuoteRequestQuoteCheckPlugin(),
];
}
}
Make sure the plugins work correctly:
-
Add a configurable product with incomplete configuration to a cart.
-
Check that the Checkout and Request for quote buttons are not available.
- Set up product configuration validation plugins for the quote request module:
PLUGIN | SPECIFICATION | PREREQUISITES | NAMESPACE |
---|---|---|---|
ProductConfigurationQuoteRequestValidatorPlugin | Validates customers’ quote requests with the validators stack. | None | Spryker\Zed\ProductConfiguration\Communication\Plugin\QuoteRequest |
ProductConfigurationQuoteRequestUserValidatorPlugin | Validates agents assists’ quote requests with the validators stack. | None | Spryker\Zed\ProductConfiguration\Communication\Plugin\QuoteRequest |
src/Pyz/Zed/QuoteRequest/QuoteRequestDependencyProvider.php
<?php
namespace Pyz\Zed\QuoteRequest;
use Spryker\Zed\ProductConfiguration\Communication\Plugin\QuoteRequest\ProductConfigurationQuoteRequestUserValidatorPlugin;
use Spryker\Zed\ProductConfiguration\Communication\Plugin\QuoteRequest\ProductConfigurationQuoteRequestValidatorPlugin;
use Spryker\Zed\QuoteRequest\QuoteRequestDependencyProvider as SprykerQuoteRequestDependencyProvider;
class QuoteRequestDependencyProvider extends SprykerQuoteRequestDependencyProvider
{
/**
* @return \Spryker\Zed\QuoteRequestExtension\Dependency\Plugin\QuoteRequestValidatorPluginInterface[]
*/
protected function getQuoteRequestValidatorPlugins(): array
{
return [
new ProductConfigurationQuoteRequestValidatorPlugin(),
];
}
/**
* @return \Spryker\Zed\QuoteRequestExtension\Dependency\Plugin\QuoteRequestUserValidatorPluginInterface[]
*/
protected function getQuoteRequestUserValidatorPlugins(): array
{
return [
new ProductConfigurationQuoteRequestUserValidatorPlugin(),
];
}
}
- Log in as an agent assist.
- Add a configurable product with incomplete configuration to a cart.
- Select Save or Save and Back to Edit.
- Make sure that the validation error message appears.
5) Import data
The following imported entities will be used as product configurations in Spryker. Follow the steps to import product configuration data:
- Prepare data according to your requirements using the following demo data:
data/import/product_configuration.csv
>concrete_sku,configurator_key,is_complete,default_configuration,default_display_data
093_24495843,DATE_TIME_CONFIGURATOR,0,"{""time_of_day"": ""2""}","{""Preferred time of the day"": ""Afternoon"", ""Date"": ""9.09.2020""}"
COLUMN | REQUIRED | DATA TYPE | DATA EXAMPLE | DATA EXPLANATION |
---|---|---|---|---|
concrete_sku | ✓ | string | 093_24495843 | Unique product identifier. |
configurator_key | ✓ | string | DATE_TIME_CONFIGURATOR | Unique identifier of a product configurator to be used for this product. |
is_complete | boolean | 0 | Defines if product configuration complete by default. | |
default_configuration | text | "{""time_of_day"": ""2""}" |
Defines default configuration. | |
default_display_data | text | "{""Preferred time of the day"": ""Afternoon"", ""Date"": ""9.09.2020""}" |
Defines default display data for the configuration. |
- Register the following data import plugins:
PLUGIN | SPECIFICATION | PREREQUISITES | NAMESPACE |
---|---|---|---|
ProductConfigurationDataImportPlugin | Imports product configuration data. | None | \Spryker\Zed\ProductConfigurationDataImport\Communication\Plugin |
src/Pyz/Zed/DataImport/DataImportDependencyProvider.php
<?php
namespace Pyz\Zed\DataImport;
use Spryker\Zed\ProductConfigurationDataImport\Communication\Plugin\ProductConfigurationDataImportPlugin;
use Spryker\Zed\DataImport\DataImportDependencyProvider as SprykerSynchronizationDependencyProvider;
class DataImportDependencyProvider extends SprykerDataImportDependencyProvider
{
/**
* @return array
*/
protected function getDataImporterPlugins(): array
{
return [
new ProductConfigurationDataImportPlugin(),
];
}
}
- Import data:
console data:import product-configuration
Make sure that the configured data has been added to the spy_product_cofiguration
table.
Install feature frontend
Follow the steps below to install the feature front end.
Prerequisites
Overview and install the necessary features before beginning the integration step.
NAME | VERSION |
---|---|
Spryker Core | 202108.0 |
Product | 202108.0 |
1) Install the required modules using Composer
Install the required modules:
composer require "spryker-feature/product-labels:"202108.0" --update-with-dependencies
Make sure that the following modules have been installed:
MODULE | EXPECTED DIRECTORY |
---|---|
ProductConfigurationWidget | vendor/spryker-shop/product-configuration-widget |
ProductConfigurationWidgetExtension | vendor/spryker-shop/product-configuration-widget-extension |
ProductConfiguratorGatewayPage | vendor/spryker-shop/product-configurator-gateway-page |
2) Add translations
Add translations as follows:
- Append glossary according to your configuration:
>product_configuration.checkout.validation.error.is_not_complete,"Product configuration is not completed.",en_US
product_configuration.checkout.validation.error.is_not_complete,"Die Produktkonfiguration ist nicht abgeschlossen.",de_DE
product_configuration_widget.configure,Configure,en_US
product_configuration_widget.configure,Konfigurieren,de_DE
product_configuration_widget.complete,"Configuration complete!",en_US
product_configuration_widget.complete,"Konfiguration abgeschlossen!",de_DE
product_configuration_widget.not_complete,"Configuration is not complete.",en_US
product_configuration_widget.not_complete,"Die Konfiguration ist nicht abgeschlossen.",de_DE
product_configuration_widget.quote_not_valid,"This cart can't be processed. Please configure items inside the cart.",en_US
product_configuration_widget.quote_not_valid,"Dieser Warenkorb kann nicht bearbeitet werden. Bitte konfigurieren Sie Artikel im Warenkorb.",de_DE
product_configurator_gateway_page.source_type_not_blank,"Source is required parameter",en_US
product_configurator_gateway_page.source_type_not_blank,"Source ist erforderlicher Parameter",de_DE
product_configurator_gateway_page.sku_not_blank,"Product SKU is required parameter",en_US
product_configurator_gateway_page.sku_not_blank,"Produkt-SKU ist ein erforderlicher Parameter",de_DE
product_configurator_gateway_page.quantity_required,"Quantity is required parameter",en_US
product_configurator_gateway_page.quantity_required,"Menge ist Parameter erforderlich",de_DE
product_configuration.validation.error.not_valid_response_checksum,"Not valid response checksum provided",en_US
product_configuration.validation.error.not_valid_response_checksum,"Keine gültige Antwortprüfsumme angegeben",de_DE
product_configuration.validation.error.expired_timestamp,"Expired timestamp was provided",en_US
product_configuration.validation.error.expired_timestamp,"Der abgelaufene Zeitstempel wurde bereitgestellt",de_DE
product_configuration_storage.validation.error.group_key_is_not_provided,"Group key must be provided",en_US
product_configuration_storage.validation.error.group_key_is_not_provided,"Gruppenschlüssel muss angegeben werden",de_DE
product_configuration.access_token.request.error.can_not_obtain_access_token,"Can not obtain access token",en_US
product_configuration.access_token.request.error.can_not_obtain_access_token,"Zugriffstoken kann nicht abgerufen werden",de_DE
product_configuration.error.configured_item_not_found_in_cart,Configured product '%sku%' was not found.,en_US
product_configuration.error.configured_item_not_found_in_cart,'%sku%' des kofigurierbaren Produkts wurde nicht gefunden.,de_DE
product_configuration.error.availability.failed,The product has an availability of %availability%.,en_US
product_configuration.error.availability.failed,Das Produkt hat eine Verfügbarkeit von %availability%.,de_DE
product_configuration.quote_request.validation.error.incomplete,You must finish the configuration of the products to validate the quote.,en_US
product_configuration.quote_request.validation.error.incomplete,"Sie müssen die Konfiguration der Produkte abschließen, um das Angebot zu validieren.",de_DE
- Import data:
console data:import glossary
Make sure that in the database the configured data has been added to the spy_glossary
table.
3) Enable controllers
Enable controllers as follows:
- Register the following route provider on the Storefront:
PROVIDER | NAMESPACE |
---|---|
ProductConfiguratorGatewayPageRouteProviderPlugin | SprykerShop\Yves\ProductConfiguratorGatewayPage\Plugin\Router |
src/Pyz/Yves/Router/RouterDependencyProvider.php
<?php
namespace Pyz\Yves\Router;
use Spryker\Yves\Router\RouterDependencyProvider as SprykerRouterDependencyProvider;
use SprykerShop\Yves\ProductConfiguratorGatewayPage\Plugin\Router\ProductConfiguratorGatewayPageRouteProviderPlugin;
class RouterDependencyProvider extends SprykerRouterDependencyProvider
{
/**
* @return \Spryker\Yves\RouterExtension\Dependency\Plugin\RouteProviderPluginInterface[]
*/
protected function getRouteProvider(): array
{
$routeProviders = [
new ProductConfiguratorGatewayPageRouteProviderPlugin(),
];
}
}
Make sure that the yves.mysprykershop.com/product-configurator-gateway/request
and yves.mysprykershop.com/product-configurator-gateway/response
routes are available for POST
requests.
- Register the following reorder item expander plugin:
PLUGIN | SPECIFICATION | PREREQUISITES | NAMESPACE |
---|---|---|---|
ProductConfigurationReorderItemExpanderPlugin | Expands items with product configuration based on data from order items. | None | SprykerShop\Yves\SalesProductConfigurationWidget\Plugin\CustomerReorderWidget |
src/Pyz/Yves/CustomerReorderWidget/CustomerReorderWidgetDependencyProvider.php
<?php
namespace Pyz\Yves\CustomerReorderWidget;
use SprykerShop\Yves\CustomerReorderWidget\CustomerReorderWidgetDependencyProvider as SprykerCustomerReorderWidgetDependencyProvider;
use SprykerShop\Yves\SalesProductConfigurationWidget\Plugin\CustomerReorderWidget\ProductConfigurationReorderItemExpanderPlugin;
class CustomerReorderWidgetDependencyProvider extends SprykerCustomerReorderWidgetDependencyProvider
{
/**
* @return \SprykerShop\Yves\CustomerReorderWidgetExtension\Dependency\Plugin\ReorderItemExpanderPluginInterface[]
*/
protected function getReorderItemExpanderPlugins(): array
{
return [
new ProductConfigurationReorderItemExpanderPlugin(),
];
}
}
Make sure that the reorder expander plugin works:
-
Order with a configurable product.
-
Go to the Order history page on the Storefront.
-
Select Reorder next to the order with the configurable product.
-
Check that, in the cart, the configurable product has the configuration from the previous order.
-
Set up widgets as follows:
-
Register the following plugins to enable widgets:
PLUGIN | SPECIFICATION | PREREQUISITES | NAMESPACE |
---|---|---|---|
ProductConfigurationCartItemDisplayWidget | Displays the product configuration of cart items. | None | SprykerShop\Yves\ProductConfigurationWidget\Widget |
ProductConfigurationCartPageButtonWidget | Displays the product configuration button for configurable cart items. | None | SprykerShop\Yves\ProductConfigurationWidget\Widget |
ProductConfigurationProductDetailPageButtonWidget | Displays the product configuration button for configurable products. | None | SprykerShop\Yves\ProductConfigurationWidget\Widget |
ProductConfigurationProductViewDisplayWidget | Displays the product configuration of configurable products. | None | SprykerShop\Yves\ProductConfigurationWidget\Widget |
ProductConfigurationQuoteValidatorWidget | Displays if the configuration of configurable cart items is valid. | None | SprykerShop\Yves\ProductConfigurationWidget\Widget |
ProductConfigurationOrderItemDisplayWidget | Displays the product configuration of order items. | None | SprykerShop\Yves\SalesProductConfigurationWidget\Widget |
src/Pyz/Yves/ShopApplication/ShopApplicationDependencyProvider.php
<?php
namespace Pyz\Yves\ShopApplication;
use SprykerShop\Yves\ProductConfigurationWidget\Widget\ProductConfigurationCartItemDisplayWidget;
use SprykerShop\Yves\ProductConfigurationWidget\Widget\ProductConfigurationCartPageButtonWidget;
use SprykerShop\Yves\ProductConfigurationWidget\Widget\ProductConfigurationProductDetailPageButtonWidget;
use SprykerShop\Yves\ProductConfigurationWidget\Widget\ProductConfigurationProductViewDisplayWidget;
use SprykerShop\Yves\ProductConfigurationWidget\Widget\ProductConfigurationQuoteValidatorWidget;
use SprykerShop\Yves\SalesProductConfigurationWidget\Widget\ProductConfigurationOrderItemDisplayWidget;
use SprykerShop\Yves\ShopApplication\ShopApplicationDependencyProvider as SprykerShopApplicationDependencyProvider;
class ShopApplicationDependencyProvider extends SprykerShopApplicationDependencyProvider
{
/**
* @return string[]
*/
protected function getGlobalWidgets(): array
{
return [
ProductConfigurationCartPageButtonWidget::class,
ProductConfigurationCartItemDisplayWidget::class,
ProductConfigurationProductDetailPageButtonWidget::class,
ProductConfigurationProductViewDisplayWidget::class,
ProductConfigurationOrderItemDisplayWidget::class,
ProductConfigurationQuoteValidatorWidget::class,
];
}
}
Make sure that the following widgets have been registered by adding the respective code snippets to a Twig template:
WIDGET | VERIFICATION |
---|---|
ProductConfigurationCartItemDisplayWidget | {% widget 'ProductConfigurationCartItemDisplayWidget' args [...] only %}{% endwidget %} |
ProductConfigurationCartPageButtonWidget | {% widget 'ProductConfigurationCartPageButtonWidget' args [...] only %}{% endwidget %} |
ProductConfigurationProductDetailPageButtonWidget | {% widget 'ProductConfigurationProductDetailPageButtonWidget' args [...] only %}{% endwidget %} |
ProductConfigurationProductViewDisplayWidget | {% widget 'ProductConfigurationProductViewDisplayWidget' args [...] only %}{% endwidget %} |
ProductConfigurationQuoteValidatorWidget | {% widget 'ProductConfigurationQuoteValidatorWidget' args [...] only %}{% endwidget %} |
ProductConfigurationOrderItemDisplayWidget | {% widget 'ProductConfigurationOrderItemDisplayWidget' args [...] only %}{% endwidget %} |
- Enable Javascript and CSS changes:
console frontend:yves:build
Make sure that product configuration data is displayed on the Product Details and Cart pages.
Install an example date-time product configurator
Follow the steps below to install an exemplary date-time product configurator.
Prerequisites
Overview and install the necessary features before beginning the integration step.
NAME | VERSION |
---|---|
Spryker Core | 202108.0 |
Product | 202108.0 |
1) Install the required modules using Composer
Run the following command(s) to install the required modules:
composer require "spryker-shop/date-time-configurator-page-example:"202108.0" --update-with-dependencies
Make sure that the following modules have been installed:
MODULE | EXPECTED DIRECTORY |
---|---|
DateTimeConfiguratorPageExample | vendor/spryker-shop/date-time-configurator-page-example |
2) Configure an endpoint
Configure an endpoint:
- Define a new front controller for the date-time configurator:
public/Configurator/index.php
<?php
use SprykerShop\Configurator\DateTimeConfiguratorPageExample\ConfiguratorPage;
use Symfony\Component\HttpFoundation\Response;
define('APPLICATION', 'CONFIGURATOR');
defined('APPLICATION_ROOT_DIR') || define('APPLICATION_ROOT_DIR', dirname(__DIR__, 2));
require_once APPLICATION_ROOT_DIR . '/vendor/autoload.php';
$configuratorPage = new ConfiguratorPage();
$response = $configuratorPage->render();
if ($response instanceof Response) {
$response->send();
}
echo $response;
- Adjust a Deploy file to enable the new endpoint:
deploy.*.yml
version: "0.1"
namespace: spryker_demo
tag: '1.0'
environment: docker.dev
image:
environment:
SPRYKER_PRODUCT_CONFIGURATOR_HOST: date-time-configurator-example.spryker.local
SPRYKER_PRODUCT_CONFIGURATOR_PORT: 80
SPRYKER_PRODUCT_CONFIGURATOR_ENCRYPTION_KEY: 'change123'
SPRYKER_PRODUCT_CONFIGURATOR_HEX_INITIALIZATION_VECTOR: '0c1ffefeebdab4a3d839d0e52590c9a2'
...
groups:
EU:
region: EU
applications:
yves_eu:
application: yves
endpoints:
date-time-configurator-example.spryker.local:
entry-point: Configurator
...
- Fetch the changes and restart the application with the endpoint enabled:
docker/sdk boot deploy.yml
docker/sdk up
- Add the endpoint to your
hosts
file:
/etc/hosts
127.0.0.1 date-time-configurator-example.spryker.local
Make sure that the http://date-time-configurator-example.spryker.local/
endpoint is accessible.
3) Add translations
Add translations as follows:
- Append glossary according to your configuration:
demo_date_time_configurator_page.checkout.validation.error.price_is_not_valid,"Product configuration price is not valid",en_US
demo_date_time_configurator_page.checkout.validation.error.price_is_not_valid,"Der Produktkonfigurationspreis ist ungültig",de_DE
- Import data:
console data:import glossary
Make sure that the configured data has been added to the spy_glossary
table.
4) Set up behavior
Set up behavior as follows:
- Set up the following plugins:
PLUGIN | SPECIFICATION | PREREQUISITES | NAMESPACE |
---|---|---|---|
ExampleDateTimeConfiguratorAvailabilityStrategyPlugin | Returns true if a product configuration instance exists and has an appropriate configurator key. |
None | SprykerShop\Zed\DateTimeConfiguratorPageExample\Communication\Plugin\Availability |
ExampleDateTimeProductConfigurationRenderStrategyPlugin | Decodes JSON configuration data. | None | SprykerShop\Yves\DateTimeConfiguratorPageExample\Plugin\ProductConfigurationWidget |
ExampleDateTimeProductConfigurationRenderStrategyPlugin | Decodes JSON configuration data. | None | SprykerShop\Zed\DateTimeConfiguratorPageExample\Communication\Plugin\SalesProductConfigurationGui |
src/Pyz/Zed/Availability/AvailabilityDependencyProvider.php
<?php
namespace Pyz\Zed\Availability;
use Spryker\Zed\Availability\AvailabilityDependencyProvider as SprykerAvailabilityDependencyProvider;
use SprykerShop\Zed\DateTimeConfiguratorPageExample\Communication\Plugin\Availability\ExampleDateTimeConfiguratorAvailabilityStrategyPlugin;
class AvailabilityDependencyProvider extends SprykerAvailabilityDependencyProvider
{
/**
* @return \Spryker\Zed\AvailabilityExtension\Dependency\Plugin\AvailabilityStrategyPluginInterface[]
*/
protected function getAvailabilityStrategyPlugins(): array
{
return [
new ExampleDateTimeConfiguratorAvailabilityStrategyPlugin(),
];
}
}
src/Pyz/Zed/Availability/AvailabilityDependencyProvider.php
<?php
namespace Pyz\Zed\Availability;
use Spryker\Zed\Availability\AvailabilityDependencyProvider as SprykerAvailabilityDependencyProvider;
use SprykerShop\Zed\DateTimeConfiguratorPageExample\Communication\Plugin\Availability\ExampleDateTimeConfiguratorAvailabilityStrategyPlugin;
class AvailabilityDependencyProvider extends SprykerAvailabilityDependencyProvider
{
/**
* @return \Spryker\Zed\AvailabilityExtension\Dependency\Plugin\AvailabilityStrategyPluginInterface[]
*/
protected function getAvailabilityStrategyPlugins(): array
{
return [
new ExampleDateTimeConfiguratorAvailabilityStrategyPlugin(),
];
}
}
src/Pyz/Zed/SalesProductConfigurationGui/SalesProductConfigurationGuiDependencyProvider.php
<?php
namespace Pyz\Zed\SalesProductConfigurationGui;
use Spryker\Zed\SalesProductConfigurationGui\SalesProductConfigurationGuiDependencyProvider as SprykerSalesProductConfigurationGuiDependencyProvider;
use SprykerShop\Zed\DateTimeConfiguratorPageExample\Communication\Plugin\SalesProductConfigurationGui\ExampleDateTimeProductConfigurationRenderStrategyPlugin;
class SalesProductConfigurationGuiDependencyProvider extends SprykerSalesProductConfigurationGuiDependencyProvider
{
/**
* @return \Spryker\Zed\SalesProductConfigurationGuiExtension\Dependency\Plugin\ProductConfigurationRenderStrategyPluginInterface[]
*/
protected function getProductConfigurationRenderStrategyPlugins(): array
{
return [
new ExampleDateTimeProductConfigurationRenderStrategyPlugin(),
];
}
}
Make sure that the Twig configuration method getZedDirectoryPathPatterns
has been expanded with additional paths for ExampleDateTimeProductConfigurationRenderStrategyPlugin
.
src/Pyz/Zed/Twig/TwigConfig.php
<?php
namespace Pyz\Zed\Twig;
use Spryker\Zed\Twig\TwigConfig as SprykerTwigConfig;
class TwigConfig extends SprykerTwigConfig
{
public function getZedDirectoryPathPatterns(): array
{
$directories = array_merge(
glob('vendor/spryker/spryker/Bundles/*/src/*/Zed/*/Presentation', GLOB_NOSORT | GLOB_ONLYDIR),
glob('vendor/spryker/spryker-shop/Bundles/*/src/*/Zed/*/Presentation', GLOB_NOSORT | GLOB_ONLYDIR)
);
$directories = array_merge(
$directories,
parent::getZedDirectoryPathPatterns()
);
sort($directories);
return $directories;
}
}
src/Pyz/Zed/SalesProductConfigurationGui/SalesProductConfigurationGuiDependencyProvider.php
<?php
namespace Pyz\Zed\SalesProductConfigurationGui;
use Spryker\Zed\SalesProductConfigurationGui\SalesProductConfigurationGuiDependencyProvider as SprykerSalesProductConfigurationGuiDependencyProvider;
use SprykerShop\Zed\DateTimeConfiguratorPageExample\Communication\Plugin\SalesProductConfigurationGui\ExampleDateTimeProductConfigurationRenderStrategyPlugin;
class SalesProductConfigurationGuiDependencyProvider extends SprykerSalesProductConfigurationGuiDependencyProvider
{
/**
* @return \Spryker\Zed\SalesProductConfigurationGuiExtension\Dependency\Plugin\ProductConfigurationRenderStrategyPluginInterface[]
*/
protected function getProductConfigurationRenderStrategyPlugins(): array
{
return [
new ExampleDateTimeProductConfigurationRenderStrategyPlugin(),
];
}
}
src/Pyz/Yves/SalesProductConfigurationWidget/SalesProductConfigurationWidgetDependencyProvider.php
<?php
namespace Pyz\Yves\SalesProductConfigurationWidget;
use SprykerShop\Yves\DateTimeConfiguratorPageExample\Plugin\SalesProductConfigurationWidget\ExampleDateTimeSalesProductConfigurationRenderStrategyPlugin;
use SprykerShop\Yves\SalesProductConfigurationWidget\SalesProductConfigurationWidgetDependencyProvider as SprykerSalesProductConfigurationWidgetDependencyProvider;
class SalesProductConfigurationWidgetDependencyProvider extends SprykerSalesProductConfigurationWidgetDependencyProvider
{
/**
* @return \SprykerShop\Yves\SalesProductConfigurationWidgetExtension\Dependency\Plugin\SalesProductConfigurationRenderStrategyPluginInterface[]
*/
protected function getSalesProductConfigurationRenderStrategyPlugins(): array
{
return [
new ExampleDateTimeSalesProductConfigurationRenderStrategyPlugin(),
];
}
}
src/Pyz/Client/ProductConfiguration/ProductConfigurationDependencyProvider.php
<?php
namespace Pyz\Client\ProductConfiguration;
use Spryker\Client\ProductConfiguration\ProductConfigurationDependencyProvider as SprykerProductConfigurationDependencyProvider;
use SprykerShop\Client\DateTimeConfiguratorPageExample\Plugin\ProductConfiguration\ExampleDateTimeProductConfiguratorRequestExpanderPlugin;
/**
* @method \Spryker\Client\ProductConfiguration\ProductConfigurationConfig getConfig()
*/
class ProductConfigurationDependencyProvider extends SprykerProductConfigurationDependencyProvider
{
/**
* @return \Spryker\Client\ProductConfigurationExtension\Dependency\Plugin\ProductConfiguratorRequestExpanderInterface[]
*/
protected function getProductConfigurationRequestExpanderPlugins(): array
{
return [
new ExampleDateTimeProductConfiguratorRequestExpanderPlugin(),
];
}
}
- Set up the
DateTimeProductConfiguratorBuildFrontendConsole
console command inConsoleDependencyProvider
to be able to build the frontend assets for the configurator application.
src/Pyz/Zed/Console/ConsoleDependencyProvider.php
<?php
namespace Pyz\Zed\Console;
use Spryker\Zed\Console\ConsoleDependencyProvider as SprykerConsoleDependencyProvider;
use SprykerShop\Zed\DateTimeConfiguratorPageExample\Communication\Console\DateTimeProductConfiguratorBuildFrontendConsole;
class ConsoleDependencyProvider extends SprykerConsoleDependencyProvider
{
/**
* @param \Spryker\Zed\Kernel\Container $container
*
* @return \Symfony\Component\Console\Command\Command[]
*/
protected function getConsoleCommands(Container $container): array
{
return [
new DateTimeProductConfiguratorBuildFrontendConsole(),
];
}
}
- Build the front-end application of the date-time configurator:
console frontend:date-time-product-configurator:build
Make sure that the front-end part has been built:
-
Check that the folder
public/Configurator/dist
exists, and it’s not empty. -
Check that you can access the configurator at
https://date-time-configurator-example.mysprykershop.com/
.
Thank you!
For submitting the form