fond-of-spryker/category-extend-page-search

Extend Spryker Category-Page-Search Module

1.0.0-RC1 2019-08-02 13:27 UTC

This package is auto-updated.

Last update: 2024-03-23 12:56:06 UTC


README

Build Status PHP from Travis config license

Extend Spryker Category-Page-Search Module, inject plugins to extend PageMap.

Installation

composer require fond-of-spryker/category-page-search

After that register the new CategoryNodeDataPageMapBuilder into your SearchDependencyProvider

protected function getSearchPageMapPlugins()
{
    return [
        // ...
        new CategoryNodeDataPageMapBuilder(),
        // ...
    ];
}

There are already to examples to show how it works, take a look into:

src/FondOfSpryker/Zed/CategoryExtendPageSearch/Communication/Plugin/PageMapExpander/CategoryIdPageMapExpanderPlugin
src/FondOfSpryker/Zed/CategoryExtendPageSearch/Communication/Plugin/PageMapExpander/CategoryKeyPageMapExpanderPlugin
src/FondOfSpryker/Zed/CategoryExtendPageSearch/Communication/CategoryExtendPageSearchCommunicationFactory::getCategoryPageMapExpanderPlugins