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-authorizenet
view
adminhtml
templates
order
view
info
fraud_details.phtml
Go to the documentation of this file.
1
<?php
7
// @codingStandardsIgnoreFile
11
$payment
=
$block
->getPayment();
12
$fraudDetails
=
$payment
->getAdditionalInformation(
'fraud_details'
);
13
?>
14
15
<?php
if
(!empty(
$fraudDetails
)): ?>
16
<div
class
=
"admin__page-section-item-title"
>
17
<span
class
=
"title"
><?=
$block
->escapeHtml(
__
(
'Fraud Detection '
)) ?></span>
18
</div>
19
20
<div
class
=
"admin__page-section-item-content"
>
21
<div
class
=
"order-payment-additional"
>
22
<?php
if
(!empty(
$fraudDetails
[
'fds_filter_action'
])): ?>
23
<?=
$block
->escapeHtml(
__
(
'FDS Filter Action'
)) ?>:
24
<?=
$block
->escapeHtml(
$fraudDetails
[
'fds_filter_action'
]) ?>
25
</br>
26
<?php
endif
; ?>
27
28
<?php
if
(!empty(
$fraudDetails
[
'avs_response'
])): ?>
29
<?=
$block
->escapeHtml(
__
(
'AVS Response'
)) ?>:
30
<?=
$block
->escapeHtml(
$fraudDetails
[
'avs_response'
]) ?>
31
</br>
32
<?php
endif
; ?>
33
34
<?php
if
(!empty(
$fraudDetails
[
'card_code_response'
])): ?>
35
<?=
$block
->escapeHtml(
__
(
'Card Code Response'
)) ?>:
36
<?=
$block
->escapeHtml(
$fraudDetails
[
'card_code_response'
]) ?>
37
</br>
38
<?php
endif
; ?>
39
40
<?php
if
(!empty(
$fraudDetails
[
'cavv_response'
]) || (
$fraudDetails
[
'cavv_response'
] === 0)): ?>
41
<?=
$block
->escapeHtml(
__
(
'CAVV Response'
)) ?>:
42
<?=
$block
->escapeHtml(
$fraudDetails
[
'cavv_response'
]) ?>
43
</br>
44
<?php
endif
; ?>
45
46
<?php
if
(!empty(
$fraudDetails
[
'fraud_filters'
])): ?>
47
<b><?=
$block
->escapeHtml(
__
(
'Fraud Filters'
)) ?>:
48
</b></br>
49
<?php
foreach
(
$fraudDetails
[
'fraud_filters'
] as $filter): ?>
50
<?=
$block
->escapeHtml($filter[
'name'
]) ?>:
51
<?=
$block
->escapeHtml($filter[
'action'
]) ?>
52
</br>
53
<?php
endforeach
; ?>
54
<?php
endif
; ?>
55
</div>
56
</div>
57
<?php
endif
; ?>
$payment
$payment
Definition:
fraud_details.phtml:11
endif
if(!empty( $fraudDetails))(__( 'Fraud Detection ')) ?></span ></div >< div class endif
Definition:
fraud_details.phtml:24
endforeach
foreach( $this->main as $item) endforeach
Definition:
side-menu.phtml:10
__
__()
Definition:
__.php:13
$block
$block
Definition:
block.php:8
$fraudDetails
$fraudDetails
Definition:
fraud_details.phtml:12