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
ModuleContext.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Setup\Model
;
7
8
use
Magento\Framework\Setup\ModuleContextInterface
;
9
15
class
ModuleContext
implements
ModuleContextInterface
16
{
22
private
$version;
23
29
public
function
__construct
($version)
30
{
31
$this->version = $version;
32
}
33
37
public
function
getVersion
()
38
{
39
return
$this->version;
40
}
41
}
Magento\Setup\Model\ModuleContext
Definition:
ModuleContext.php:15
Magento\Framework\Setup\ModuleContextInterface
Definition:
ModuleContextInterface.php:13
Magento\Setup\Model\ModuleContext\__construct
__construct($version)
Definition:
ModuleContext.php:29
Magento\Setup\Model
Definition:
ConfigOptionsListCollectorTest.php:6
Magento\Setup\Model\ModuleContext\getVersion
getVersion()
Definition:
ModuleContext.php:37