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
framework
Url
RouteParamsPreprocessorComposite.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Framework\Url
;
7
11
class
RouteParamsPreprocessorComposite
implements
RouteParamsPreprocessorInterface
12
{
16
private
$routeParamsPreprocessors;
17
21
public
function
__construct
(array $routeParamsPreprocessors = [])
22
{
23
$this->routeParamsPreprocessors = $routeParamsPreprocessors;
24
}
25
29
public
function
execute
($areaCode, $routePath, $routeParams)
30
{
31
foreach
($this->routeParamsPreprocessors as $preprocessor) {
32
$routeParams = $preprocessor->execute($areaCode, $routePath, $routeParams);
33
}
34
35
return
$routeParams;
36
}
37
}
Magento\Framework\Url\RouteParamsPreprocessorComposite\execute
execute($areaCode, $routePath, $routeParams)
Definition:
RouteParamsPreprocessorComposite.php:29
Magento\Framework\Url\RouteParamsPreprocessorInterface
Definition:
RouteParamsPreprocessorInterface.php:11
Magento\Framework\Url\RouteParamsPreprocessorComposite
Definition:
RouteParamsPreprocessorComposite.php:11
Magento\Framework\Url
Definition:
Decoder.php:6
Magento\Framework\Url\RouteParamsPreprocessorComposite\__construct
__construct(array $routeParamsPreprocessors=[])
Definition:
RouteParamsPreprocessorComposite.php:21