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-checkout
Model
Adminhtml
BillingAddressDisplayOptions.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Checkout\Model\Adminhtml
;
7
8
use
Magento\Framework\Option\ArrayInterface
;
9
14
class
BillingAddressDisplayOptions
implements
ArrayInterface
15
{
25
public
function
toOptionArray
()
26
{
27
return
[
28
[
29
'label'
=>
__
(
'Payment Method'
),
30
'value'
=> 0
31
],
32
[
33
'label'
=>
__
(
'Payment Page'
),
34
'value'
=> 1
35
]
36
];
37
}
38
}
Magento\Checkout\Model\Adminhtml
Definition:
BillingAddressDisplayOptions.php:6
Magento\Checkout\Model\Adminhtml\BillingAddressDisplayOptions\toOptionArray
toOptionArray()
Definition:
BillingAddressDisplayOptions.php:25
__
__()
Definition:
__.php:13
Magento\Framework\Option\ArrayInterface
Definition:
ArrayInterface.php:11
Magento\Checkout\Model\Adminhtml\BillingAddressDisplayOptions
Definition:
BillingAddressDisplayOptions.php:14