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-sales-sequence
Model
Config.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\SalesSequence\Model
;
7
14
class
Config
15
{
26
protected
$defaultValues
= [
27
'prefix'
=>
''
,
28
'suffix'
=>
''
,
29
'startValue'
=> 1,
30
'step'
=> 1,
31
'warningValue'
=> 4294966295,
32
'maxValue'
=> 4294967295
33
];
34
41
public
function
get
($key =
null
)
42
{
43
if
(!array_key_exists($key, $this->defaultValues)) {
44
return
null
;
45
}
46
return
$this->defaultValues[$key];
47
}
48
}
Magento\SalesSequence\Model
Definition:
Builder.php:6
Magento\SalesSequence\Model\Config
Definition:
Config.php:14
Magento\SalesSequence\Model\Config\$defaultValues
$defaultValues
Definition:
Config.php:26