Skip to content

Commit a0baaa5

Browse files
committed
MC-31168: [2.3.x] Mark core payment methods as deprecated in Admin
1 parent 06337ef commit a0baaa5

File tree

6 files changed

+25
-0
lines changed

6 files changed

+25
-0
lines changed

app/code/Magento/Authorizenet/etc/adminhtml/system.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<section id="payment">
1111
<group id="authorizenet_directpost" translate="label" type="text" sortOrder="34" showInDefault="1" showInWebsite="1" showInStore="1">
1212
<label>Authorize.Net Direct Post (Deprecated)</label>
13+
<attribute type="displayIn">deprecated_payment_methods</attribute>
1314
<field id="active" translate="label" type="select" sortOrder="10" showInDefault="1" showInWebsite="1" showInStore="0" canRestore="1">
1415
<label>Enabled</label>
1516
<source_model>Magento\Config\Model\Config\Source\Yesno</source_model>

app/code/Magento/AuthorizenetAcceptjs/etc/adminhtml/system.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<section id="payment">
1111
<group id="authorizenet_acceptjs" translate="label" type="text" sortOrder="34" showInDefault="1" showInWebsite="1" showInStore="1">
1212
<label>Authorize.Net (Deprecated)</label>
13+
<attribute type="displayIn">deprecated_payment_methods</attribute>
1314
<field id="active" translate="label" type="select" sortOrder="10" showInDefault="1" showInWebsite="1" showInStore="0" canRestore="1">
1415
<label>Enabled</label>
1516
<source_model>Magento\Config\Model\Config\Source\Yesno</source_model>

app/code/Magento/Paypal/Model/Config/Structure/PaymentSectionModifier.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ class PaymentSectionModifier
2020
'recommended_solutions',
2121
'other_paypal_payment_solutions',
2222
'other_payment_methods',
23+
'deprecated_payment_methods',
2324
];
2425

2526
/**

app/code/Magento/Paypal/Test/Unit/Model/Config/Structure/PaymentSectionModifierTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ class PaymentSectionModifierTest extends \PHPUnit\Framework\TestCase
1515
'recommended_solutions',
1616
'other_paypal_payment_solutions',
1717
'other_payment_methods',
18+
'deprecated_payment_methods',
1819
];
1920

2021
/**
@@ -145,6 +146,7 @@ public function testMovedToTargetSpecialGroup()
145146
],
146147
],
147148
],
149+
'deprecated_payment_methods' => [],
148150
],
149151
$modifiedStructure,
150152
'Some group is not moved correctly'

app/code/Magento/Paypal/etc/adminhtml/system.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@
3636
<fieldset_css>paypal-top-section payments-other-header</fieldset_css>
3737
<frontend_model>\Magento\Config\Block\System\Config\Form\Fieldset</frontend_model>
3838
</group>
39+
<group id="deprecated_payment_methods" translate="label" sortOrder="5" showInDefault="1" showInWebsite="1" showInStore="1">
40+
<label>Deprecated Payment Methods:</label>
41+
<comment><![CDATA[<b>Note:</b> These payment methods have been deprecated because they are no longer compliant. We recommend that these payment method to be disabled to prevent new orders, since the payment processor might not support them. Please migrate to the official payment methods extensions from Magento Marketplace instead and disable deprecated payment integrations as soon as possible.]]></comment>
42+
<attribute type="expanded">1</attribute>
43+
<fieldset_css>paypal-top-section payments-other-header deprecated-message</fieldset_css>
44+
<frontend_model>\Magento\Config\Block\System\Config\Form\Fieldset</frontend_model>
45+
</group>
3946
</section>
4047
<section id="payment_all_paypal" showInDefault="0" showInWebsite="0" showInStore="0">
4148
<include path="Magento_Paypal::system/paypal_payflowpro.xml"/>
@@ -381,5 +388,8 @@
381388
<group id="paypal_payflowpro_nz" extends="payment_all_paypal/paypal_payflowpro"/>
382389
</group>
383390
</section>
391+
<section id="deprecated_payment_methods" extends="payment" showInDefault="0" showInWebsite="0" showInStore="0">
392+
<label>Deprecated Payment Methods:</label>
393+
</section>
384394
</system>
385395
</config>

app/design/adminhtml/Magento/backend/Magento_Config/web/css/source/_module.less

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,3 +148,13 @@
148148
}
149149
}
150150
}
151+
152+
.deprecated-message > .comment {
153+
background: #faecec;
154+
border: 1px solid #d6474a;
155+
border-radius: 3px;
156+
color: #d6474a;
157+
margin: 5px 0 0;
158+
padding: 3px 7px;
159+
position: relative;
160+
}

0 commit comments

Comments
 (0)