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-payment
Model
Method
Substitution.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\Payment\Model\Method
;
8
14
class
Substitution
extends
AbstractMethod
15
{
19
const
CODE
=
'substitution'
;
20
24
const
INFO_KEY_TITLE
=
'method_title'
;
25
29
protected
$_code
=
self::CODE
;
30
34
protected
$_infoBlockType
= \Magento\Payment\Block\Info\Substitution::class;
35
41
public
function
getTitle
()
42
{
43
return
$this->
getInfoInstance
()->getAdditionalInformation(self::INFO_KEY_TITLE);
44
}
45
}
Magento\Payment\Model\Method\Substitution\getTitle
getTitle()
Definition:
Substitution.php:41
Magento\Payment\Model\Method\Substitution
Definition:
Substitution.php:14
Magento\Payment\Model\Method\Substitution\INFO_KEY_TITLE
const INFO_KEY_TITLE
Definition:
Substitution.php:24
Magento\Payment\Model\Method\AbstractMethod\getInfoInstance
getInfoInstance()
Definition:
AbstractMethod.php:554
Magento\Payment\Model\Method
Definition:
AbstractMethod.php:7
Magento\Payment\Model\Method\AbstractMethod
Definition:
AbstractMethod.php:30
Magento\Payment\Model\Method\Substitution\CODE
const CODE
Definition:
Substitution.php:19
Magento\Payment\Model\Method\Substitution\$_code
$_code
Definition:
Substitution.php:29
Magento\Payment\Model\Method\Substitution\$_infoBlockType
$_infoBlockType
Definition:
Substitution.php:34