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-google-adwords
Model
Config
Source
ValueType.php
Go to the documentation of this file.
1
<?php
8
namespace
Magento\GoogleAdwords\Model\Config\Source
;
9
14
class
ValueType
implements
\Magento\Framework\Option\ArrayInterface
15
{
21
public
function
toOptionArray
()
22
{
23
return
[
24
[
25
'value'
=>
\Magento\GoogleAdwords\Helper\Data::CONVERSION_VALUE_TYPE_DYNAMIC
,
26
'label'
=>
__
(
'Dynamic'
),
27
],
28
[
29
'value'
=>
\Magento\GoogleAdwords\Helper\Data::CONVERSION_VALUE_TYPE_CONSTANT
,
30
'label'
=>
__
(
'Constant'
)
31
]
32
];
33
}
34
}
__
__()
Definition:
__.php:13
Magento\Framework\Option\ArrayInterface
Definition:
ArrayInterface.php:11
Magento\GoogleAdwords\Model\Config\Source\ValueType
Definition:
ValueType.php:14
Magento\GoogleAdwords\Model\Config\Source\ValueType\toOptionArray
toOptionArray()
Definition:
ValueType.php:21
Magento\GoogleAdwords\Helper\Data\CONVERSION_VALUE_TYPE_DYNAMIC
const CONVERSION_VALUE_TYPE_DYNAMIC
Definition:
Data.php:78
Magento\GoogleAdwords\Model\Config\Source
Definition:
Language.php:8
Magento\GoogleAdwords\Helper\Data\CONVERSION_VALUE_TYPE_CONSTANT
const CONVERSION_VALUE_TYPE_CONSTANT
Definition:
Data.php:80