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
Translate
Js
Config.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Framework\Translate\Js
;
7
11
class
Config
12
{
18
protected
$dictionaryEnabled
;
19
25
protected
$dictionaryFileName
;
26
31
public
function
__construct
(
$dictionaryEnabled
=
false
,
$dictionaryFileName
=
null
)
32
{
33
$this->
dictionaryEnabled
=
$dictionaryEnabled
;
34
$this->dictionaryFileName =
$dictionaryFileName
;
35
}
36
42
public
function
dictionaryEnabled
()
43
{
44
return
$this->dictionaryEnabled
;
45
}
46
52
public
function
getDictionaryFileName
()
53
{
54
return
$this->dictionaryFileName
;
55
}
56
}
Magento\Framework\Translate\Js\Config\getDictionaryFileName
getDictionaryFileName()
Definition:
Config.php:52
Magento\Framework\Translate\Js\Config\__construct
__construct($dictionaryEnabled=false, $dictionaryFileName=null)
Definition:
Config.php:31
Magento\Framework\Translate\Js\Config
Definition:
Config.php:11
Magento\Framework\Translate\Js
Definition:
Config.php:6
Magento\Framework\Translate\Js\Config\dictionaryEnabled
dictionaryEnabled()
Definition:
Config.php:42
Magento\Framework\Translate\Js\Config\$dictionaryEnabled
$dictionaryEnabled
Definition:
Config.php:18
Magento\Framework\Translate\Js\Config\$dictionaryFileName
$dictionaryFileName
Definition:
Config.php:25