-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from magento/2.3-develop
update branch
- Loading branch information
Showing
339 changed files
with
5,608 additions
and
2,428 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
app/code/Magento/Authorizenet/Block/Adminhtml/Order/View/Info/PaymentDetails.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
declare(strict_types=1); | ||
|
||
namespace Magento\Authorizenet\Block\Adminhtml\Order\View\Info; | ||
|
||
use Magento\Framework\Phrase; | ||
use Magento\Payment\Block\ConfigurableInfo; | ||
|
||
/** | ||
* Payment information block for Authorize.net payment method | ||
*/ | ||
class PaymentDetails extends ConfigurableInfo | ||
{ | ||
/** | ||
* Returns localized label for payment info block | ||
* | ||
* @param string $field | ||
* @return string | Phrase | ||
*/ | ||
protected function getLabel($field) | ||
{ | ||
return __($field); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
app/code/Magento/Braintree/Test/Mftf/ActionGroup/AdminOrderBraintreeFillActionGroup.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
--> | ||
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="../../../../../../../dev/tests/acceptance/vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/Test/etc/actionGroupSchema.xsd"> | ||
|
||
<actionGroup name="AdminOrderBraintreeFillActionGroup"> | ||
<!--Select Braintree Payment method on Admin Order Create Page--> | ||
<click stepKey="chooseBraintree" selector="{{NewOrderSection.creditCardBraintree}}"/> | ||
<waitForPageLoad stepKey="waitForBraintreeConfigs" time="5"/> | ||
<click stepKey="openCardTypes" selector="{{NewOrderSection.openCardTypes}}"/> | ||
<waitForPageLoad stepKey="waitForCardTypes" time="3"/> | ||
<click stepKey="chooseCardType" selector="{{NewOrderSection.masterCard}}"/> | ||
<waitForPageLoad stepKey="waitForCardSelected" time="3"/> | ||
|
||
<!--Choose Master Card from drop-down list--> | ||
<switchToIFrame stepKey="switchToCardNumber" selector="{{NewOrderSection.cardFrame}}"/> | ||
<fillField stepKey="fillCardNumber" selector="{{NewOrderSection.creditCardNumber}}" userInput="{{PaymentAndShippingInfo.cardNumber}}"/> | ||
<waitForPageLoad stepKey="waitForFillCardNumber" time="1"/> | ||
<switchToIFrame stepKey="switchBackFromCard"/> | ||
|
||
<!--Fill expire date--> | ||
<switchToIFrame stepKey="switchToExpirationMonth" selector="{{NewOrderSection.monthFrame}}"/> | ||
<fillField stepKey="fillMonth" selector="{{NewOrderSection.expirationMonth}}" userInput="{{PaymentAndShippingInfo.month}}"/> | ||
<waitForPageLoad stepKey="waitForFillMonth" time="1"/> | ||
<switchToIFrame stepKey="switchBackFromMonth"/> | ||
<switchToIFrame stepKey="switchToExpirationYear" selector="{{NewOrderSection.yearFrame}}"/> | ||
<fillField stepKey="fillYear" selector="{{NewOrderSection.expirationYear}}" userInput="{{PaymentAndShippingInfo.year}}"/> | ||
<waitForPageLoad stepKey="waitForFillYear" time="1"/> | ||
<switchToIFrame stepKey="switchBackFromYear"/> | ||
|
||
<!--Fill CVW code--> | ||
<switchToIFrame stepKey="switchToCVV" selector="{{NewOrderSection.cvvFrame}}"/> | ||
<fillField stepKey="fillCVV" selector="{{NewOrderSection.cvv}}" userInput="{{PaymentAndShippingInfo.cvv}}"/> | ||
<wait stepKey="waitForFillCVV" time="1"/> | ||
<switchToIFrame stepKey="switchBackFromCVV"/> | ||
</actionGroup> | ||
</actionGroups> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,7 @@ | |
<requiredEntity type="merchant_id">MerchantId</requiredEntity> | ||
<requiredEntity type="public_key">PublicKey</requiredEntity> | ||
<requiredEntity type="private_key">PrivateKey</requiredEntity> | ||
<requiredEntity type="active">Status</requiredEntity> | ||
</entity> | ||
<entity name="BraintreeTitle" type="title"> | ||
<data key="value">Credit Card (Braintree)</data> | ||
|
@@ -128,7 +129,7 @@ | |
<data key="firstName">John</data> | ||
<data key="lastName">Smith</data> | ||
<data key="password">admin123</data> | ||
<data key="email">[email protected]</data> | ||
<data key="email" unique="prefix">[email protected]</data> | ||
</entity> | ||
|
||
<entity name="PaymentAndShippingInfo" type="data"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.