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
magento2-base
setup
src
Magento
Setup
Model
PhpInformation.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\Setup\Model
;
8
14
class
PhpInformation
15
{
16
20
const
XDEBUG_NESTED_LEVEL
= 200;
21
27
protected
$current
= [];
28
33
public
function
getRequiredMinimumXDebugNestedLevel
()
34
{
35
return
self::XDEBUG_NESTED_LEVEL
;
36
}
37
43
public
function
getCurrent
()
44
{
45
if
(!$this->current) {
46
$this->current = array_map(
function
($ext) {
47
return
str_replace(
' '
,
'-'
, strtolower($ext));
48
}, get_loaded_extensions());
49
}
50
return
$this->current
;
51
}
52
}
Magento\Setup\Model\PhpInformation\$current
$current
Definition:
PhpInformation.php:27
Magento\Setup\Model\PhpInformation
Definition:
PhpInformation.php:14
Magento\Setup\Model
Definition:
ConfigOptionsListCollectorTest.php:6
Magento\Setup\Model\PhpInformation\getCurrent
getCurrent()
Definition:
PhpInformation.php:43
Magento\Setup\Model\PhpInformation\getRequiredMinimumXDebugNestedLevel
getRequiredMinimumXDebugNestedLevel()
Definition:
PhpInformation.php:33
Magento\Setup\Model\PhpInformation\XDEBUG_NESTED_LEVEL
const XDEBUG_NESTED_LEVEL
Definition:
PhpInformation.php:20