Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
module-catalog
Model
Layer
Search
ItemCollectionProvider.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Catalog\Model\Layer\Search
;
7
8
use
Magento\Catalog\Model\Layer\ItemCollectionProviderInterface
;
9
use Magento\Catalog\Model\ResourceModel\Product\CollectionFactory;
10
11
class
ItemCollectionProvider
implements
ItemCollectionProviderInterface
12
{
16
private
$collectionFactory;
17
21
public
function
__construct
(CollectionFactory $collectionFactory)
22
{
23
$this->collectionFactory = $collectionFactory;
24
}
25
30
public
function
getCollection
(\
Magento
\Catalog\Model\
Category
$category
)
31
{
32
return
$this->collectionFactory->create();
33
}
34
}
$category
$category
Definition:
catalog_category_with_slash.php:7
Magento\Catalog\Model\Layer\Search\ItemCollectionProvider\__construct
__construct(CollectionFactory $collectionFactory)
Definition:
ItemCollectionProvider.php:21
Magento\Catalog\Model\Layer\Category
Definition:
Category.php:12
Magento\Catalog\Model\Layer\Search\ItemCollectionProvider
Definition:
ItemCollectionProvider.php:11
Magento\Catalog\Model\Layer\Search
Definition:
CollectionFilter.php:6
Magento
Magento\Catalog\Model\Layer\Search\ItemCollectionProvider\getCollection
getCollection(\Magento\Catalog\Model\Category $category)
Definition:
ItemCollectionProvider.php:30
Magento\Catalog\Model\Layer\ItemCollectionProviderInterface
Definition:
ItemCollectionProviderInterface.php:14