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
View
Asset
PreProcessor
MinificationFilenameResolver.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Framework\View\Asset\PreProcessor
;
7
8
use
Magento\Framework\View\Asset\Minification
;
9
13
class
MinificationFilenameResolver
implements
FilenameResolverInterface
14
{
18
const
FILE_PART
=
'.min.'
;
19
23
private
$minification;
24
30
public
function
__construct
(
Minification
$minification)
31
{
32
$this->minification = $minification;
33
}
34
41
public
function
resolve
(
$path
)
42
{
43
if
(!$this->minification->isEnabled(pathinfo(
$path
, PATHINFO_EXTENSION))) {
44
return
$path
;
45
}
46
47
return
str_replace(self::FILE_PART,
'.'
,
$path
);
48
}
49
}
Magento\Framework\View\Asset\Minification
Definition:
Minification.php:16
Magento\Framework\View\Asset\PreProcessor\MinificationFilenameResolver\resolve
resolve($path)
Definition:
MinificationFilenameResolver.php:41
Magento\Framework\View\Asset\PreProcessor
Magento\Framework\View\Asset\PreProcessor\FilenameResolverInterface
Definition:
FilenameResolverInterface.php:11
Magento\Framework\View\Asset\PreProcessor\MinificationFilenameResolver\FILE_PART
const FILE_PART
Definition:
MinificationFilenameResolver.php:18
Magento\Framework\View\Asset\PreProcessor\MinificationFilenameResolver
Definition:
MinificationFilenameResolver.php:13
Magento\Framework\View\Asset\PreProcessor\MinificationFilenameResolver\__construct
__construct(Minification $minification)
Definition:
MinificationFilenameResolver.php:30
$path
$path
Definition:
import_with_filesystem_images.php:14