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-multishipping
Model
Payment
Method
Specification
Enabled.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Multishipping\Model\Payment\Method\Specification
;
7
8
use
Magento\Payment\Model\Method\Specification\AbstractSpecification
;
9
13
class
Enabled
extends
AbstractSpecification
14
{
18
const
FLAG_ALLOW_MULTIPLE_ADDRESS
=
'allow_multiple_address'
;
19
23
public
function
isSatisfiedBy
($paymentMethod)
24
{
25
return
isset(
26
$this->methodsInfo[$paymentMethod][self::FLAG_ALLOW_MULTIPLE_ADDRESS]
27
) && $this->methodsInfo[$paymentMethod][
self::FLAG_ALLOW_MULTIPLE_ADDRESS
];
28
}
29
}
Magento\Payment\Model\Method\Specification\AbstractSpecification
Definition:
AbstractSpecification.php:17
Magento\Multishipping\Model\Payment\Method\Specification
Definition:
Enabled.php:6
Magento\Multishipping\Model\Payment\Method\Specification\Enabled\FLAG_ALLOW_MULTIPLE_ADDRESS
const FLAG_ALLOW_MULTIPLE_ADDRESS
Definition:
Enabled.php:18
Magento\Multishipping\Model\Payment\Method\Specification\Enabled\isSatisfiedBy
isSatisfiedBy($paymentMethod)
Definition:
Enabled.php:23
Magento\Multishipping\Model\Payment\Method\Specification\Enabled
Definition:
Enabled.php:13