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
Component
ComponentFile.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Framework\Component
;
7
11
class
ComponentFile
12
{
18
private
$componentType;
19
25
private
$componentName;
26
32
private
$path;
33
41
public
function
__construct
($componentType, $componentName, $fullPath)
42
{
43
$this->componentType = $componentType;
44
$this->componentName = $componentName;
45
$this->path = $fullPath;
46
}
47
53
public
function
getComponentType
()
54
{
55
return
$this->componentType;
56
}
57
63
public
function
getComponentName
()
64
{
65
return
$this->componentName;
66
}
67
73
public
function
getFullPath
()
74
{
75
return
$this->path;
76
}
77
}
Magento\Framework\Component
Definition:
ComponentFile.php:6
Magento\Framework\Component\ComponentFile
Definition:
ComponentFile.php:11
Magento\Framework\Component\ComponentFile\getComponentName
getComponentName()
Definition:
ComponentFile.php:63
Magento\Framework\Component\ComponentFile\__construct
__construct($componentType, $componentName, $fullPath)
Definition:
ComponentFile.php:41
Magento\Framework\Component\ComponentFile\getFullPath
getFullPath()
Definition:
ComponentFile.php:73
Magento\Framework\Component\ComponentFile\getComponentType
getComponentType()
Definition:
ComponentFile.php:53