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-config
Model
Config
Export
ExcludeList.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Config\Model\Config\Export
;
7
15
class
ExcludeList
16
{
20
private
$configs;
21
25
public
function
__construct
(array $configs = [])
26
{
27
$this->configs = $configs;
28
}
29
37
public
function
isPresent
(
$path
)
38
{
39
return
!empty($this->configs[
$path
]);
40
}
41
48
public
function
get
()
49
{
50
return
array_keys(
51
array_filter(
52
$this->configs,
53
function
(
$value
) {
54
return
filter_var(
$value
, FILTER_VALIDATE_BOOLEAN);
55
}
56
)
57
);
58
}
59
}
Magento\Config\Model\Config\Export\ExcludeList
Definition:
ExcludeList.php:15
$value
$value
Definition:
gender.phtml:16
Magento\Config\Model\Config\Export
Definition:
Comment.php:6
Magento\Config\Model\Config\Export\ExcludeList\isPresent
isPresent($path)
Definition:
ExcludeList.php:37
Magento\Config\Model\Config\Export\ExcludeList\__construct
__construct(array $configs=[])
Definition:
ExcludeList.php:25
$path
$path
Definition:
import_with_filesystem_images.php:14