-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added configuration for custom redirect url
- Loading branch information
1 parent
c59164b
commit a947653
Showing
6 changed files
with
62 additions
and
14 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
code/Bitpay/BPCheckout/Model/Config/Source/Cancelstatus.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,23 @@ | ||
<?php | ||
/** | ||
* Copyright © 2015 Magento. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
namespace Bitpay\BPCheckout\Model\Config\Source; | ||
|
||
/** | ||
*Refund Status Model | ||
*/ | ||
class Cancelstatus implements \Magento\Framework\Option\ArrayInterface | ||
{ | ||
|
||
public function toOptionArray() | ||
{ | ||
|
||
return [ | ||
['value' => 'cancel', 'label' => __('True')], | ||
['value' => 'ignore', 'label' => __('False')] | ||
]; | ||
|
||
} | ||
} |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"description": "", | ||
"type": "magento2-module", | ||
"license": "mit", | ||
"version":"4.09.2102", | ||
"version":"5.01.2102", | ||
"authors": [ | ||
{ | ||
"email": "[email protected]", | ||
|
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