Customising Categories
<?php
namespace My\Nosto\Model\Service;
use Nosto\Tagging\Model\Service\Product\Category\CategoryServiceInterface;
use Magento\Catalog\Model\Category;
use Magento\Catalog\Model\Product;
use Magento\Store\Api\Data\StoreInterface;
class MyCategoryServive implements CategoryServiceInterface
{
/**
* Method used to return a single category string for given category object
* @param Category $category
* @param StoreInterface $store
* @return null|string
*/
public function getCategory(Category $category, StoreInterface $store) {
//ToDo Implement logic
}
/**
* Method used to return list of strings representing categories for a given product
* @param Product $product
* @param StoreInterface $store
* @return array
*/
public function getCategories(Product $product, StoreInterface $store) {
}
}Last updated